

/* ========================
   VARIABLES & SETUP
   ======================== */
:root {
    /* Brand Colors */
    --clr-bg: #f6e4d6;
    /* Pale cream/bg */
    --clr-brand-primary: #971557;
    /* Deep Maroon */
    --clr-brand-secondary: #5f1d4f;
    /* Dark Purple */
    --clr-brand-accent: #b88997;
    /* Dusty Rose */

    /* Flavour Colors (Maintained for product differentiation) */
    --clr-lemon: #f6e853;
    --clr-guava: #c76466;
    --clr-jeera: #d1782f;
    --clr-mojito: #8badac;
    --clr-blueberry: #71d2f0;
    --clr-mango: #b6d055;

    /* Text */
    --clr-text-main: #19142e;
    /* Navy/Dark */
    --clr-text-light: #ffffff;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-brand: 'GTEestiBold', 'Outfit', sans-serif;

    /* Effects */
    --transition: all 0.3s ease-in-out;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hard: 8px 8px 0px rgba(120, 29, 66, 0.2);
    --radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    overflow-x: hidden;
    /* optional subtle texture */
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v20h2v2H20v-1.5zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2z' fill='%23000000' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* Screen reader only - for SEO and accessibility */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Hide content initially for entrance animations */
.is-loading .navbar,
.is-loading .hero-content,
.is-loading .hero-visuals {
    opacity: 0;
    visibility: hidden;
}

.is-loading {
    overflow: hidden;
}

/* ========================
   GLOBAL COMPONENTS
   ======================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-light {
    color: var(--clr-text-light);
}

.mb-4 {
    margin-bottom: 2rem;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--clr-brand-primary);
    font-weight: 900;
}

.py-section {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--clr-brand-primary);
    color: var(--clr-text-light);
    box-shadow: 0 4px 15px rgba(120, 29, 66, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(120, 29, 66, 0.6);
    background-color: var(--clr-brand-secondary);
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-brand-primary);
    border: 3px solid var(--clr-brand-primary);
}

.btn-secondary:hover {
    background-color: var(--clr-brand-primary);
    color: var(--clr-text-light);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.3rem;
}

/* ========================
   BRAND IMAGES
   ======================== */
.brand-img-loader {
    height: 4rem;
    width: auto;
    object-fit: contain;
}

.brand-img-nav {
    height: 2.2rem;
    width: auto;
    object-fit: contain;
}

.brand-img-hero {
    width: 600px;
    max-width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(4px 4px 0px white) drop-shadow(8px 8px 0px rgba(120, 29, 66, 0.2));
}

.brand-img-footer {
    height: 3rem;
    width: auto;
    object-fit: contain;
}

/* ========================
   LOADING SCREEN
   ======================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--clr-brand-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-logo {
    color: var(--clr-bg);
    font-size: 4rem;
    font-family: var(--font-brand);
    font-weight: normal;
    letter-spacing: 4px;
    animation: pulse 1.5s infinite;

}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.8;
    }
}

/* ========================
   NAVIGATION
   ======================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 251, 240, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 2rem;
    font-family: var(--font-brand);
    font-weight: normal;
    color: var(--clr-brand-primary);
    letter-spacing: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    transition: var(--transition);
}

.scrolled .logo {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
    margin-right: -10px;
}

.navbar.scrolled .nav-logo-img {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    margin-right: 12px;
    visibility: visible;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px; /* Unified gap */
}

.nav-links > a, 
.dropdown-trigger {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--clr-brand-primary);
    font-weight: 700;
    font-size: 1.0rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--clr-brand-primary);
    font-weight: 700;
    font-size: 1.0rem; /* Slightly smaller for better fit */
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:not(.nav-btn):not(.nav-whatsapp):hover {
    color: var(--clr-brand-secondary);
}

.nav-links .nav-btn {
    background-color: var(--clr-brand-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
}

.nav-links .nav-btn:hover {
    background-color: var(--clr-brand-secondary);
    color: white;
}

.nav-links .nav-whatsapp {
    background-color: #25D366;
    color: white !important;
    border: 2px solid white;
    border-radius: 50px;
    padding: 6px 14px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    max-width: 180px;
    overflow: hidden;
}

/* Desktop Visibility & Smooth Shift Logic */
@media (min-width: 769px) {
    body.scrolled-past-hero .nav-whatsapp {
        opacity: 0;
        max-width: 0;
        padding-left: 0;
        padding-right: 0;
        margin-left: -15px; /* Cleanly offsets the flex gap */
        visibility: hidden;
        pointer-events: none;
        transform: scale(0.9);
    }
}

.nav-links .nav-whatsapp:hover {
    transform: translateY(-2px) !important;
    background-color: #128C7E;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.nav-links .nav-whatsapp i {
    font-size: 1.4rem;
}

.mobile-nav-group {
    display: none;
    align-items: center;
}

.nav-whatsapp-mobile {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--clr-brand-primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    /* Offset for nav */
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-subhead {
    font-size: 1.5rem;
    margin-bottom: -10px;
    /* pull down close to big text */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-head {
    font-family: var(--font-brand);
    font-size: 8rem;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--clr-brand-primary);
    text-shadow: 4px 4px 0px white, 8px 8px 0px rgba(120, 29, 66, 0.2);
    transform: rotate(-3deg);
    padding-top: 0px;
}

.hero-subhead2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-brand-primary);
    text-align: right;
    width: 600px;
    max-width: 90%;
    margin-top: -30px;
    margin-bottom: 30px;
    padding-right: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2%;
}

.hero-desc {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #555;
    background: rgba(255, 255, 255, 0.6);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 8px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, auto) auto;
    gap: 12px;
    margin-bottom: 30px;
    align-items: center;
}

.hero-features span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-brand-secondary);
    background: rgba(151, 21, 87, 0.08);
    padding: 10px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(151, 21, 87, 0.1);
    transition: var(--transition);
}

.hero-features span:hover {
    background: rgba(151, 21, 87, 0.15);
    transform: translateY(-2px);
}

.hero-features i {
    color: var(--clr-brand-primary);
}

.pop-chip-wrapper {
    grid-column: 3;
    grid-row: 1 / span 2;
    display: flex;
    align-items: center;
}

.pop-chip {
    height: 100%;
    min-height: 75px;
    min-width: 75px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    cursor: pointer !important;
    background: rgba(151, 21, 87, 0.12) !important;
    border: 2px solid var(--clr-brand-primary) !important;
    border-radius: 16px !important;
    padding: 12px !important;
    gap: 5px !important;
    box-shadow: 0 4px 15px rgba(151, 21, 87, 0.1);
    transition: var(--transition);
}

.pop-chip:hover {
    background: rgba(151, 21, 87, 0.22) !important;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(151, 21, 87, 0.2);
}

.pop-chip .emoji {
    font-size: 1.8rem;
}

.pop-chip .pop-text {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--clr-brand-primary);
    line-height: 1.2;
}

/* Custom Pretty Tooltip */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.9);
    background: linear-gradient(135deg, var(--clr-brand-primary), var(--clr-brand-secondary));
    color: white;
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    width: 230px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 12px 30px rgba(151, 21, 87, 0.35), 0 4px 10px rgba(0,0,0,0.2);
    z-index: 2005;
    white-space: normal;
}

[data-tooltip]::after {
    content: "";
    position: absolute;
    bottom: calc(100% + 7px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    border: 8px solid transparent;
    border-top-color: var(--clr-brand-primary);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2005;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-visuals {
    position: relative;
    width: 50%;
    height: 600px;
    z-index: 1;
    pointer-events: auto;
}

.mascot-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

/* Actual Mascot Image */
.mascot-img {
    width: 500px;
    max-width: 100%;
    filter: drop-shadow(10px 20px 30px rgba(151, 21, 87, 0.4));
    pointer-events: auto;
}

.floating-fruit {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    filter: drop-shadow(4px 4px 10px rgba(151, 21, 87, 0.25));
    animation: float 4s ease-in-out infinite;
    z-index: 5;
    pointer-events: auto;
}

.hover-fruit,
.hover-mascot {
    display: inline-block;
    cursor: pointer;
    pointer-events: auto;
}

.fruit-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    font-size: 3.5rem;
}

.fruit-2 {
    top: 12%;
    right: 1%;
    animation-delay: 0.5s;
    font-size: 4rem;
}

.fruit-3 {
    bottom: 15%;
    left: 5%;
    animation-delay: 1s;
    font-size: 3rem;
}

.fruit-4 {
    bottom: 10%;
    right: 15%;
    animation-delay: 1.5s;
    font-size: 4.5rem;
}

.fruit-5 {
    top: 45%;
    left: 5%;
    animation-delay: 2s;
    font-size: 2.5rem;
}

.fruit-6 {
    top: 40%;
    right: 1%;
    animation-delay: 2.5s;
    font-size: 3rem;
}

.mascot-container::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(151, 21, 87, 0.15) 0%, transparent 65%);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* ========================
   FLAVOURS SECTION
   ======================== */
.flavours {
    background-color: #fff;
    padding: 100px 0;
    position: relative;
}

.section-header .title {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.section-header .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.flavour-media-container {
    width: 100%;
    max-width: 100%;
    margin-bottom: 60px;
    border-radius: 0;
    overflow: hidden;
    border: 0;
    background: #fcf5e8;
}

.flavour-media-container video,
.flavour-media-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .flavour-media-container {
        margin-bottom: 40px;
    }
}

.flavour-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 60px;
}

.flavour-item.reverse {
    flex-direction: row-reverse;
}

.flavour-visual {
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    transition: var(--transition);
}

.flavour-item:hover .flavour-visual {
    transform: scale(1.05) rotate(2deg);
}

.bottle-placeholder {
    width: 80px;
    height: 250px;
    border-radius: 40px 40px 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    box-shadow: -15px 0 20px rgba(0, 0, 0, 0.1) inset, 10px 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.4);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.bottle-img {
    height: 320px;
    width: auto;
    object-fit: contain;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.75)) drop-shadow(15px 25px 30px rgba(0, 0, 0, 0.25));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
}

.flavour-item:hover .bottle-img {
    transform: scale(1.15) rotate(3deg);
    filter: drop-shadow(0 0 50px rgba(255, 255, 255, 1)) drop-shadow(15px 25px 30px rgba(0, 0, 0, 0.35));
}

.liquid-splash {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    transform: translate(-50%, -50%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
    opacity: 0.85;
    animation: splashMorph 6s ease-in-out infinite alternate;
    box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.08);
    /* slight soft shadow to feel alive */
}

.liquid-splash::before {
    content: '';
    position: absolute;
    inset: -15px;
    /* Pushes out slightly larger to create the second layer */
    background: inherit;
    /* Copies the linear-gradient flawlessly */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.6;
    filter: brightness(1.2);
    /* Lighter contrast against the inner core */
    z-index: -1;
    animation: splashMorph 4.5s ease-in-out infinite alternate-reverse;
}

@keyframes splashMorph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
}

/* Beautiful, clean solid gradients for the blobs */
.lime-splash {
    background: linear-gradient(135deg, var(--clr-lemon), #ffc107);
}

.pink-splash {
    background: linear-gradient(135deg, var(--clr-guava), #ff4d6d);
}

.brown-splash {
    background: linear-gradient(135deg, var(--clr-jeera), #d4a373);
}

.mint-splash {
    background: linear-gradient(135deg, var(--clr-mojito), #64dfdf);
}

.blue-splash {
    background: linear-gradient(135deg, var(--clr-blueberry), #4d88ff);
}

.green-splash {
    background: linear-gradient(135deg, var(--clr-mango), #4df09d);
}

.fruit-deco {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

.lemon {
    top: -20px;
    right: -20px;
}

.guava {
    bottom: -20px;
    left: -20px;
}

.jeera {
    top: 50%;
    right: -40px;
}

.mint {
    top: -30px;
    left: 50%;
}

.blueberry {
    bottom: 10px;
    right: -20px;
}

.raw-mango {
    top: 20px;
    left: -30px;
}

.badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: var(--clr-brand-secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 900;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.4);
    z-index: 3;
    animation: pop 2s infinite alternate;
}

.badge-lemon { background-color: var(--clr-lemon); color: var(--clr-text-main); box-shadow: 0 5px 15px rgba(246, 232, 83, 0.5); }
.badge-guava { background-color: var(--clr-guava); color: #fff; box-shadow: 0 5px 15px rgba(199, 100, 102, 0.5); }
.badge-jeera { background-color: var(--clr-jeera); color: #fff; box-shadow: 0 5px 15px rgba(209, 120, 47, 0.5); }
.badge-mojito { background-color: var(--clr-mojito); color: var(--clr-text-main); box-shadow: 0 5px 15px rgba(139, 173, 172, 0.5); }
.badge-blueberry { background-color: var(--clr-blueberry); color: var(--clr-text-main); box-shadow: 0 5px 15px rgba(113, 210, 240, 0.5); }
.badge-mango { background-color: var(--clr-mango); color: var(--clr-text-main); box-shadow: 0 5px 15px rgba(182, 208, 85, 0.5); }

@keyframes pop {
    0% {
        transform: rotate(15deg) scale(1);
    }

    100% {
        transform: rotate(18deg) scale(1.1);
    }
}

.marquee-content {
    animation: marqueeScroll 10s linear infinite;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-30%);
    }
}

.flavour-info {
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.flavour-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    padding: 4px 12px;
    border-radius: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tagline-lemon { background: rgba(246, 232, 83, 0.15); color: #d4c300; }
.tagline-guava { background: rgba(199, 100, 102, 0.15); color: #c76466; }
.tagline-jeera { background: rgba(209, 120, 47, 0.15); color: #d1782f; }
.tagline-mojito { background: rgba(139, 173, 172, 0.15); color: #6a8c8b; }
.tagline-blueberry { background: rgba(113, 210, 240, 0.15); color: #4b90b8; }
.tagline-mango { background: rgba(182, 208, 85, 0.15); color: #7a8e2e; }

.flavour-info h3 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--clr-text-main);
    position: relative;
    display: inline-block;
}

.flavour-info h3::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 10px;
    background-color: rgba(120, 29, 66, 0.1);
    bottom: 5px;
    left: 0;
    z-index: -1;
}

.flavour-info p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
}

/* ========================
   WHY TINGLY
   ======================== */
.why-tingly {
    background-color: var(--clr-bg);
    padding-top: 50px; /* Reduced from default 100px */
}

.mt-5 {
    margin-top: 2rem; /* Reduced to fit with features on one screen */
}

.why-tingly .section-header .subtitle {
    margin-bottom: 30px;
}

.sells-best-container h3 {
    font-size: 1.8rem;
    color: var(--clr-brand-secondary);
    font-weight: 800;
}

.sells-best-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Equal columns on desktop */
    gap: 15px;
    margin-top: 20px;
    max-width: 1000px; /* Center container on desktop */
    margin-left: auto;
    margin-right: auto;
}

.sell-pill {
    background: #fff;
    padding: 12px 15px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center; /* Center content within equal pills */
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--clr-brand-primary);
    border: 1px solid rgba(151, 21, 87, 0.1);
    transition: var(--transition);
    /* Allow text wrap to prevent screen ruling on mobile */
    text-align: center;
    line-height: 1.2;
}

.sell-pill span {
    display: inline-block;
}

.sell-pill:hover {
    transform: translateY(-5px);
    border-color: var(--clr-brand-primary);
    box-shadow: 0 10px 20px rgba(151, 21, 87, 0.15);
}

.sell-pill .emoji {
    font-size: 1.3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--clr-brand-primary);
    box-shadow: var(--shadow-hard);
}

.icon-wrap {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.5;
}

/* ========================
   BRAND STORY
   ======================== */
.brand-story {
    background: linear-gradient(135deg, #fff, var(--clr-bg));
    padding-top: 50px; /* Reduced from default 100px */
}

.brand-story h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.story-card {
    background: #fff;
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.story-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: rgba(120, 29, 66, 0.1);
    font-family: serif;
    line-height: 1;
}

.story-card p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.story-card strong {
    font-size: 1.5rem;
    color: var(--clr-brand-primary);
}

/* ========================
   PARTNER SECTION
   ======================== */
.partner {
    background-color: var(--clr-brand-primary);
    color: var(--clr-text-light);
    position: relative;
    overflow: hidden;
}

.partner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.partner .container {
    position: relative;
    z-index: 2;
}

.partner .title {
    font-size: 3.5rem;
    color: var(--clr-text-light);
    margin-bottom: 15px;
}

.partner .subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

.partner .features-grid {
    gap: 20px;
    margin-top: 30px;
}

.partner .feature-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--clr-text-light);
    text-align: center;
    padding: 25px 20px;
}

.partner .feature-card h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.partner .feature-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
}

.partner .feature-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.partner .icon-wrap {
    font-size: 2.2rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.partner .btn-primary {
    background-color: var(--clr-bg);
    color: var(--clr-brand-primary);
}

.partner .btn-primary:hover {
    background-color: var(--clr-brand-secondary);
    color: var(--clr-text-light);
}

.partner .btn-primary.text-dark-hover:hover {
    color: var(--clr-brand-primary);
    background-color: #fff;
}

/* ========================
   CONTACT SECTION
   ======================== */
.contact {
    background-color: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.contact-details p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--clr-brand-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-brand-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(120, 29, 66, 0.1);
}

.submit-btn {
    width: 100%;
    border-radius: 10px;
}

/* ========================
   FOOTER
   ======================== */
.footer {
    background-color: #222;
    color: #fff;
    padding-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h2 {
    font-family: var(--font-brand);
    font-weight: normal;
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.footer-brand p {
    color: #aaa;
    font-size: 1.1rem;
}

.footer-links p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-social a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--clr-brand-secondary);
}

.footer-bottom {
    background-color: #111;
    text-align: center;
    padding: 20px 0;
    color: #666;
    font-size: 0.9rem;
}

/* ========================
   REFACTORED INLINE STYLES
   ======================== */

.marquee-section {
    background-color: var(--clr-lemon);
    color: var(--clr-brand-primary);
    padding: 25px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 5px solid var(--clr-brand-primary);
    border-bottom: 5px solid var(--clr-brand-primary);
    transform: rotate(-1.5deg) scale(1.05);
    margin: 50px 0;
    position: relative;
    z-index: 10;
}

.marquee-content {
    display: inline-block;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.platforms-banner {
    background-color: var(--clr-bg);
    color: var(--clr-brand-primary);
    padding: 50px 0;
    border-bottom: 2px dashed rgba(120, 29, 66, 0.2);
}

.platforms-banner h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--clr-bg);
    margin-bottom: 25px;
}

.platforms-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.platforms-list>span {
    opacity: 0.6;
    font-style: italic;
}

.platform-chip {
    padding: 8px 16px;
    background: rgba(120, 29, 66, 0.05);
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s;
}

.platform-chip:hover {
    background: rgba(120, 29, 66, 0.15);
}

.packaging-banner {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: var(--radius);
    border: 2px dashed rgba(120, 29, 66, 0.2);
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.packaging-banner h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.packaging-banner p {
    font-size: 1.2rem;
    color: #555;
}

#testimonials .title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.testimonial-grid .stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-grid p {
    font-style: italic;
    margin-bottom: 15px;
}

.footer-info-block {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #ccc;
}

.footer-contact-block {
    margin-top: 15px;
}

.footer-contact-block p:first-child {
    margin-bottom: 5px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--clr-brand-accent);
}

.footer-social i {
    font-size: 2.2rem;
}

.footer-social span {
    font-size: 1.2rem;
    margin-top: 2px;
}

.footer-credits {
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-credits a {
    color: inherit;
    text-decoration: underline;
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */
@media (max-width: 1200px) {
    .hero-head {
        font-size: 7rem;
    }

    .hero-visuals {
        width: 45%;
    }
}

@media (max-width: 992px) {
    .hero-head {
        font-size: 5.5rem;
    }

    .hero-visuals {
        opacity: 0.3;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        transform: none;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        z-index: 1;
        pointer-events: none;
    }

    .flavour-item {
        flex-direction: column !important;
        gap: 40px;
        text-align: center;
    }

    .flavour-info h3::after {
        left: 20%;
        width: 60%;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .nav-links {
        gap: 12px;
    }
    .nav-links a {
        font-size: 0.85rem;
    }
    .nav-links .nav-whatsapp, 
    .nav-links .nav-btn {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--clr-bg);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 15px 0;
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .nav-links .nav-whatsapp {
        display: none !important;
    }

    .mobile-nav-group {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .nav-whatsapp-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background-color: #25D366;
        color: white !important;
        border-radius: 50%;
        font-size: 1.4rem;
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    }

    .hamburger {
        display: flex;
    }

    .hero {
        height: 100svh;
        min-height: 500px;
        padding-bottom: 30px;
        padding-top: 80px; /* Reduced to bring content up */
        display: flex;
        align-items: center;
    }

    .hero .container {
        flex-direction: column;
        justify-content: center;
        gap: 10px; /* Tighter gap */
    }
    
    .hero-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        justify-items: center;
        margin-bottom: 15px;
    }

    .hero-features span {
        font-size: 0.75rem;
        padding: 6px 10px;
        width: 100%;
        justify-content: center;
        border-radius: 12px;
    }

    .hero-content {
        position: relative;
        text-align: center;
        margin: 0 auto;
        z-index: 10;
        padding-top: 0px; /* Tighten for mobile */
    }

    .pop-chip-wrapper {
        display: none !important;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .hero-head {
        font-size: 3rem;
        transform: rotate(0deg);
        line-height: 1.1;
        margin-bottom: 15px; /* Added space to prevent subhead collision */
    }

    .brand-img-hero {
        max-width: 70%; /* Reduced to fit both buttons */
    }

    .hero-subhead {
        white-space: nowrap;
        font-size: clamp(0.9rem, 4vw, 1.3rem);
    }

    .hero-subhead2 {
        white-space: nowrap;
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        text-align: right;
        margin-top: 3px; /* Tighter fit */
        width: 100%;
        padding-right: 0;
    }

    .hero-desc {
        white-space: nowrap;
        font-size: clamp(0.75rem, 3.5vw, 1rem);
        margin-bottom: 15px;
    }

    .hero-visuals {
        display: flex;
        opacity: 1;
        width: 100%;
        height: clamp(140px, 28vh, 180px); /* Shorter visual area */
        position: relative;
        justify-content: center;
        align-items: center;
        z-index: 1;
        pointer-events: auto;
        margin-bottom: 10px;
        order: -1;
        /* Put visuals at the top */
    }

    .floating-fruit {
        font-size: 2rem;
        /* Smaller fruits on mobile */
    }

    .mascot-img {
        width: 190px; /* More compact mascot */
    }

    /* Reposition fruits to avoid overlapping on mobile */
    .fruit-1 {
        top: 0%;
        left: 0%;
        transform: scale(0.8);
    }

    .fruit-2 {
        top: 5%;
        right: 0%;
        transform: scale(0.9);
    }

    .fruit-3 {
        bottom: 2%;
        left: 5%;
        transform: scale(0.7);
    }

    .fruit-4 {
        bottom: 15%;
        right: 5%;
        transform: scale(0.8);
    }

    .fruit-5 {
        top: 40%;
        left: 15%;
        transform: scale(0.6);
    }

    .fruit-6 {
        top: 35%;
        right: -10%;
        transform: scale(0.7);
    }
    
    .hero-actions .btn {
         padding: 10px 20px; /* Smaller buttons on mobile to fit */
    }

    .section-header .title {
        font-size: 2.5rem;
    }

    .partner .title {
        font-size: 2.2rem;
    }

    .benefits-list {
        flex-direction: column;
        gap: 15px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .loader-logo {
        font-size: 2.5rem;
    }

    .story-card {
        padding: 25px;
    }

    .brand-story h2 {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    .story-card::before {
        left: 10px;
        font-size: 5rem;
        top: -10px;
    }

    .story-card p {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .story-card strong {
        font-size: 1.2rem;
    }

    .flavour-item {
        min-height: 100svh;
        justify-content: center;
        padding: 80px 0;
        /* More padding to isolate */
        margin-bottom: 0px;
        scroll-snap-align: start;
    }

    /* Enable snap on body for mobile to strictly group sections */
    html {
        scroll-snap-type: y mandatory;
    }

    .hero,
    .flavours,
    .brand-story,
    .why-tingly,
    .testimonials,
    .partner,
    .contact,
    .footer {
        scroll-snap-align: start;
    }

    .flavour-list {
        display: block;
        /* ensure snapping per item */
    }

    .badge {
        top: 20px;
        right: 15px;
        transform: rotate(15deg);
        padding: 5px 12px;
        font-size: 0.75rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .flavour-info h3 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .flavour-info p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .section-header .title {
        font-size: 2.2rem;
        margin-bottom: 5px;
    }

    .section-header .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .features-grid {
        gap: 15px;
        margin-top: 25px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .icon-wrap {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .feature-card h4 {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .sells-best-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* Prevent overflow */
        gap: 8px; /* Tighter on mobile */
    }

    .sell-pill {
        font-size: 0.85rem;
        padding: 10px 8px;
        border-radius: 12px; /* Less rounded to fit two columns */
        height: 100%;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-head {
        font-size: 2.8rem;
    }

    .flavour-visual {
        width: 250px;
        height: 320px;
    }

    .bottle-placeholder {
        height: 200px;
    }

    .liquid-splash {
        width: 200px;
        height: 200px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .btn-large {
        padding: 15px 30px;
    }

    .contact-info h2 {
        font-size: 2.5rem;
    }
}/* ==========================================================================
   DROPDOWN NAVBAR
   ========================================================================== */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    cursor: pointer;
}

.dropdown-trigger i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 200px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block !important;
    padding: 12px 25px !important;
    color: var(--clr-brand-primary) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: background 0.3s;
    text-align: left !important;
    margin: 0 !important;
}

.dropdown-menu a:hover {
    background: #fdf6f0;
    color: var(--clr-brand-accent) !important;
}

/* ========================
   PLATFORMS BANNER (ORIGINAL)
   ======================== */
.platforms-banner {
    background-color: var(--clr-brand-primary);
    color: white;
    padding: 60px 0;
}

.platforms-banner h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 900;
}

.platforms-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.platforms-list span {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.platform-chip {
    padding: 10px 25px;
    background-color: white;
    color: var(--clr-brand-primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.platform-chip:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: var(--clr-brand-accent);
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ========================
   MODAL STYLES (ENHANCED)
   ======================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    display: none; /* Controlled by JS but set flex here for centering when active */
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fcfcfc;
    width: 95%;
    max-width: 1100px;
    height: auto;
    max-height: 90vh;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    position: relative;
    animation: modal-zoom-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    overflow: hidden;
}

@keyframes modal-zoom-in {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-footer {
    padding: 20px 30px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    border-radius: 0 0 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

/* Managed Color for View Distributors Button */
.btn-distributor-view {
    background-color: var(--clr-brand-accent) !important;
    color: white !important;
    border: none !important;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 123, 84, 0.3);
}

.btn-distributor-view:hover {
    background-color: var(--clr-brand-primary) !important;
    transform: translateY(-2px);
}

@keyframes modal-slide-in {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--clr-brand-primary);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.close-modal {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--clr-brand-accent);
}

.modal-search-bar {
    padding: 20px 30px;
    position: relative;
    background: #fff;
}

.modal-search-bar input {
    width: 100%;
    padding: 15px 50px 15px 25px;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 1rem;
    transition: 0.3s;
    outline: none;
}

.modal-search-bar input:focus {
    border-color: var(--clr-brand-primary);
    box-shadow: 0 0 10px rgba(151, 21, 87, 0.1);
}

.modal-search-bar i {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.modal-body {
    padding: 0;
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: auto; /* Handles both scrolls for sticky logic to work */
    position: relative;
    background: #fff;
}

.table-responsive {
    width: 100%;
}

/* Custom Scrollbar for Modal */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding-left: 20px;
        background: transparent;
    }
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    .modal-header h2 {
        font-size: 1.4rem;
    }
}
.play-pop-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1005;
    background-color: var(--clr-brand-primary);
    color: white;
    border: 3px solid white;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(120, 29, 66, 0.4);
    transition: var(--transition);
    font-family: inherit;
    animation: gentle-bounce 4s infinite ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50px);
}

.scrolled-past-hero .play-pop-btn {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.pop-chip {
    cursor: pointer !important;
    background: rgba(151, 21, 87, 0.12) !important;
    border: 1px solid var(--clr-brand-primary) !important;
    transition: var(--transition);
}

.pop-chip:hover {
    background: rgba(151, 21, 87, 0.2) !important;
    transform: scale(1.05) translateY(-2px);
}

@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.play-pop-btn:hover {
    transform: scale(1.1) !important;
    background-color: var(--clr-brand-secondary);
    box-shadow: 0 12px 30px rgba(120, 29, 66, 0.6);
}

.play-pop-btn .btn-icon {
    font-size: 1.4rem;
}

.play-pop-btn .btn-text {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* ========================
   WHATSAPP BUTTON (FLOATING)
   ======================== */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1005;
    background-color: #25D366;
    color: white;
    border: 3px solid white;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    font-family: inherit;
    animation: gentle-bounce 4s infinite ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
}

.scrolled-past-hero .whatsapp-btn {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-btn:hover {
    transform: scale(1.1) !important;
    background-color: #128C7E;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn .btn-icon {
    font-size: 1.4rem;
}

.whatsapp-btn .btn-text {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .play-pop-btn {
        bottom: 15px;
        left: 15px;
        padding: 0;
        width: 45px;
        height: 45px;
        justify-content: center;
        border-radius: 50%;
        transform: translateX(-50px);
    }
    .play-pop-btn .btn-text {
        display: none;
    }
    .pop-chip {
        display: none !important;
    }
    .scrolled-past-hero .play-pop-btn {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .whatsapp-btn {
        bottom: 15px;
        right: 15px;
        padding: 0;
        width: 45px;
        height: 45px;
        justify-content: center;
        border-radius: 50%;
        transform: translateX(50px);
    }
    .whatsapp-btn .btn-text {
        display: none;
    }
    .scrolled-past-hero .whatsapp-btn {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    [data-tooltip]::before {
        left: 0; /* Align with left edge of button */
        transform: translateY(10px) scale(0.9);
        width: 250px;
        font-size: 0.75rem;
        padding: 10px 14px;
        bottom: calc(100% + 15px);
        text-align: left; /* looks better slightly wider and left aligned on mobile */
    }

    [data-tooltip]::after {
        left: 22px; /* Point to center of the 45px button */
        transform: translateY(5px);
    }
    
    /* Disable default hover pseudo-classes on phone */
    [data-tooltip]:hover::before,
    [data-tooltip]:hover::after {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px) scale(0.9);
    }
    
    /* Show ONLY when the JS applies the class */
    [data-tooltip].show-tooltip::before,
    [data-tooltip].show-tooltip::after {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }
}

/* ==========================================================================
   FAQ & DISTRIBUTORS SECTIONS (SEO/AI UPGRADE)
   ========================================================================== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--clr-brand-primary);
    transition: transform 0.3s ease;
    text-align: left;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--clr-brand-primary);
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

.distributors-table-wrapper {
    margin-top: 40px;
    overflow-x: auto;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.distributors-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.distributors-table th {
    position: sticky;
    top: 0;
    margin-top: 0;
    z-index: 25;
    background-color: var(--clr-brand-primary) !important;
    color: white !important;
    padding: 20px 25px;
    text-align: left;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: none;
}

.distributors-table td {
    padding: 18px 25px;
    border-bottom: 1px solid #f1f1f1;
    vertical-align: middle;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Content Aware Sizing */
.distributors-table th:nth-child(1),
.distributors-table td:nth-child(1) { width: 18%; font-weight: 600; }
.distributors-table th:nth-child(2),
.distributors-table td:nth-child(2) { width: 25%; font-weight: 700; color: #111; }
.distributors-table th:nth-child(3),
.distributors-table td:nth-child(3) { width: 22%; white-space: nowrap; font-weight: 800; color: var(--clr-brand-primary); }
.distributors-table th:nth-child(4),
.distributors-table td:nth-child(4) { width: 35%; color: #666; word-wrap: break-word; min-width: 250px; }

.distributors-table tr:hover td {
    background-color: #fdf8f9;
}

/* Unified Button Sizes for Partner Section */
.partner .hero-actions,
.partner .mt-5 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partner .btn {
    min-width: 280px;
    height: 65px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 30px !important;
    font-size: 1.1rem !important; /* Forces symmetry */
    line-height: 1 !important;
}

@media (max-width: 768px) {
    .partner .btn {
        min-width: 100%;
        height: 60px;
    }
}

.footer-nav {
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .footer-nav {
        gap: 10px;
    }
}
