:root {
    /* Primary Palette */
    --color-cream: #FAF9F6;
    --parchment: #F2E8D5;
    --color-red: #7A2A2E;
    --color-charcoal: #1A1A1A;
    --color-gold: #D4AF37;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Variables */
    --nav-height: 90px;
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    background-color: var(--color-cream);
    color: var(--color-charcoal);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
.wordmark {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background-color: var(--color-cream);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: rgba(241, 234, 215, 0.95);
    backdrop-filter: blur(10px);
}

.header-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.brand-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    height: 60px;
    width: auto;
    border-radius: 8px;
    mix-blend-mode: multiply;
}

.wordmark {
    font-size: 1.8rem;
    color: var(--color-red);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1; /* Tighter line-height to fit tagline closely */
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tagline {
    font-size: 0.65rem;
    color: var(--color-charcoal);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: 0.9;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-charcoal);
    padding: 10px;
    margin-left: 10px;
}

.mobile-menu-toggle i {
    width: 28px;
    height: 28px;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-charcoal);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-red);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.icon-btn:hover {
    color: var(--color-red);
    background-color: rgba(122, 42, 46, 0.05);
    transform: translateY(-2px);
}

.icon-btn svg {
    width: 24px;
    height: 24px;
}

.cart-icon {
    position: relative;
}

.notification-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 10px;
    height: 10px;
    background-color: var(--color-red);
    border-radius: 50%;
    border: 2px solid var(--color-cream);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--nav-height);
    overflow: hidden;
}

@keyframes ken-burns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -15px) rotate(2deg); }
    66% { transform: translate(-10px, -5px) rotate(-1deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/dynamic_hero_bg.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: ken-burns 25s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(241, 234, 215, 0.4), rgba(241, 234, 215, 0.1));
    z-index: 2;
}

/* Floating Depth Elements */
.floating-ingredient {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    opacity: 0.85;
}

.float-1 {
    width: 150px;
    top: 20%;
    right: 15%;
    filter: blur(4px);
    animation: float 20s ease-in-out infinite;
}

.float-2 {
    width: 120px;
    bottom: 25%;
    left: 10%;
    filter: blur(8px);
    animation: float 25s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Glassmorphism Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(184, 134, 11, 0.1);
    border-radius: 20px;
    padding: 3rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.hero-logo {
    width: 160px;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    mix-blend-mode: normal;
}

.title-primary {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.italic-serif {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: 2.2rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.bold-caps {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 3.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-red);
    display: block;
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-charcoal);
    margin-bottom: 2.5rem;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-gold);
    opacity: 0.8;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
    font-weight: 600;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-cream);
    border-color: var(--color-gold);
    position: relative;
    overflow: hidden;
}

/* Gold Shimmer Effect */
.gold-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.3) 50%, rgba(212, 175, 55, 0) 100%);
    transform: rotate(30deg) translateY(-50%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: rotate(30deg) translateY(-50%) translateX(-150%);
    }

    100% {
        transform: rotate(30deg) translateY(-50%) translateX(150%);
    }
}

.btn-primary:hover {
    background-color: #632225;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(122, 42, 46, 0.2);
}

/* --- The Trinity (Categories) --- */
.trinity {
    padding: 8rem 5%;
    text-align: center;
    position: relative;
}

.trinity-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--color-charcoal);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
}

.trinity:hover .carousel-nav {
    opacity: 1;
    visibility: visible;
}

.carousel-nav:hover {
    background: var(--color-gold);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: -25px; }
.next-btn { right: -25px; }

.carousel-nav i { width: 24px; height: 24px; }

.section-title {
    font-size: 3rem;
    color: var(--color-charcoal);
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--color-gold);
}

.trinity-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 30px;
    padding: 30px 5%; /* Increased padding to prevent box-shadow clipping on hover */
    margin: 0 -5%; 
    scroll-snap-type: x mandatory;
    scroll-padding: 5%;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

/* Hide scrollbar completely to use custom dot indicators */
.trinity-grid::-webkit-scrollbar {
    display: none;
}
.trinity-grid {
    scrollbar-width: none; /* Firefox */
}

/* Custom Dot Indicators */
.slider-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-bottom: 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(26, 26, 26, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 2px solid transparent;
}

.slider-dot:hover {
    background-color: rgba(26, 26, 26, 0.4);
}

.slider-dot.active {
    background-color: var(--color-gold);
    transform: scale(1.4);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Creative Focus Effect: Mute and shrink non-hovered siblings */
.trinity-grid:has(.trinity-card:hover) .trinity-card:not(:hover) {
    transform: scale(0.92);
    opacity: 0.8;
    filter: brightness(0.85);
}

.trinity-card {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: center; /* Better snap alignment */
    min-width: 340px;

    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
    cursor: pointer;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    background-color: var(--color-charcoal);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.trinity-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 4;
    pointer-events: none;
}

.premium-card.solid-bg {
    background-color: #f7f2e5;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.premium-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.3) 50%, rgba(26, 26, 26, 0) 100%);
    z-index: 2;
    transition: background 0.6s ease;
}

.solid-bg .premium-overlay {
    display: none;
}

.card-lift:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 25px rgba(212, 175, 55, 0.3);
    z-index: 10;
}

.card-lift:hover::before {
    opacity: 1;
}

.card-lift:hover .premium-bg-img {
    transform: scale(1.1);
}

.card-lift:hover .premium-overlay {
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(122, 42, 46, 0.6) 60%, rgba(26, 26, 26, 0.1) 100%);
}

.trinity-card .card-content {
    position: relative;
    z-index: 3;
    padding: 30px;
}

.premium-card h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--color-cream);
}

.solid-bg h3 {
    color: var(--color-red);
}

.premium-card p {
    color: rgba(241, 234, 215, 0.8);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.solid-bg p {
    color: var(--color-charcoal);
    margin-bottom: 0;
}

.premium-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.solid-bg .premium-link {
    color: var(--color-red);
    margin-top: 20px;
}

.trinity-card:hover .premium-link {
    opacity: 1;
    transform: translateY(0);
}

.apothecary-icon {
    width: 60px;
    height: 60px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

/* --- Utilities & Mobile --- */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.whatsapp-sticky svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
}

.bottom-nav {
    display: none; /* Hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--color-charcoal);
    font-size: 0.75rem;
}

.nav-item:hover,
.nav-item:active {
    color: var(--color-red);
}

/* Mobile Nav Overlay - Hidden by default on all screens */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-cream);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 40px 5%;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    visibility: hidden; /* Ensure it doesn't leak */
}

.mobile-nav-overlay.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 20px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-charcoal);
    font-weight: 600;
    text-transform: capitalize;
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .header {
        padding: 0 4%;
    }

    .search-btn, 
    .user-btn, 
    .cart-btn {
        display: none;
    }

    .header-center {
        display: none;
    }

    .header-left {
        flex: 2;
    }

    .header-right {
        gap: 8px;
    }

    .icon-btn {
        padding: 8px;
    }

    .header-logo {
        height: 40px;
    }

    .wordmark {
        font-size: 1.3rem;
    }

    .tagline {
        font-size: 0.55rem;
        letter-spacing: 0.05em;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .mobile-nav-links a {
        font-family: var(--font-heading);
        font-size: 2rem;
        color: var(--color-charcoal);
        font-weight: 600;
        text-transform: capitalize;
    }

    .mobile-nav-footer {
        margin-top: auto;
        padding-top: 40px;
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .trinity-grid {
        gap: 15px;
        padding: 20px 0;
    }

    .trinity-card {
        flex: 0 0 80vw; /* Improved peek: show 20% of next card */
        min-height: 400px;
        min-width: unset;
    }

    .carousel-nav {
        display: none; /* Hide arrows on small mobile, rely on swipe */
    }

    .trinity-container {
        padding: 0;
    }

    .whatsapp-sticky {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .bottom-nav {
        display: flex;
    }
}

/* Animations */
.dissolve-in {
    opacity: 0;
    animation: dissolve 1.5s ease-out forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out 0.5s forwards;
}

.fade-in-delayed {
    opacity: 0;
    animation: dissolve 1s ease-out 1s forwards;
}

@keyframes dissolve {
    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Toast Notifications --- */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.toast {
    background-color: var(--color-charcoal);
    color: var(--color-gold);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastSlideUp 0.3s ease-out forwards;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.toast.hide {
    animation: toastFadeOut 0.3s ease-in forwards;
}

.toast i {
    width: 20px;
    height: 20px;
}

@keyframes toastSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toastFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* --- Product Spotlight --- */
.spotlight {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    gap: 60px;
    background-color: #fff;
}

.spotlight-img {
    flex: 1;
    text-align: right;
}

.spotlight-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    margin-left: auto;
}

.spotlight-content {
    flex: 1;
    padding-right: 5%;
}

.section-title-left {
    font-size: 2.8rem;
    color: var(--color-charcoal);
    margin-bottom: 30px;
    line-height: 1.2;
}

.key-ingredients {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.ingredient-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-gold);
}

.ingredient-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.product-info {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* --- Golden Ingredient Scroll --- */
.ingredient-scroll-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--color-charcoal);
    color: var(--color-cream);
    overflow: hidden;
}

.ingredient-scroll-section .section-title {
    color: var(--color-cream);
}

.scroll-container {
    width: 100%;
    overflow: visible; /* Changed from hidden to prevent tooltip clipping */
    white-space: nowrap;
    position: relative;
    padding: 40px 0; /* Keep space for tooltip */
}

.scroll-track {
    display: inline-block;
    animation: scrollAnimation 20s linear infinite;
}

.scroll-track:hover {
    animation-play-state: paused;
}

.ingredient-item {
    display: inline-block;
    width: 200px;
    text-align: center;
    margin: 0 40px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.ingredient-item img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid var(--color-gold);
    transition: var(--transition-smooth);
}

.ingredient-item:hover img {
    box-shadow: 0 0 20px var(--color-gold);
    transform: scale(1.05);
}

.ingredient-item h4 {
    font-size: 1.2rem;
    color: var(--color-gold);
}

/* Tooltip */
.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--color-gold);
    color: var(--color-charcoal);
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: normal;
    width: max-content;
    max-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 10;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

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

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

@media (max-width: 768px) {
    .ingredient-scroll-section { padding: 50px 0; }
    .scroll-container { padding: 20px 0; }
    .ingredient-item { width: 140px; margin: 0 20px; }
    .ingredient-item img { width: 100px; height: 100px; }
    .ingredient-item h4 { font-size: 1rem; }
}

/* --- Trust & Clinic --- */
.trust-clinic {
    padding: 100px 5%;
    text-align: center;
    background-color: #EBF2ED;
}

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
}

.trust-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.trust-icon svg {
    width: 50px;
    height: 50px;
    color: var(--color-red);
}

.trust-icon span {
    font-weight: 600;
    color: var(--color-charcoal);
    font-size: 1.1rem;
}

.trust-clinic p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 40px;
    font-family: var(--font-heading);
    font-style: italic;
    color: #444;
}

.btn-outline {
    background: transparent;
    color: var(--color-red);
    border: 2px solid var(--color-red);
    padding: 16px 32px;
}

.btn-outline:hover {
    background: var(--color-red);
    color: var(--color-cream);
}

/* --- Footer --- */
.footer {
    background-color: var(--color-charcoal);
    color: #aaa;
    padding: 80px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer .wordmark {
    color: var(--color-cream);
    margin-bottom: 15px;
    display: block;
}

.footer-col h4 {
    color: var(--color-cream);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-col a {
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--color-gold);
}

.newsletter {
    display: flex;
    margin-bottom: 25px;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.newsletter input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter button {
    padding: 12px 20px;
    background: var(--color-gold);
    color: var(--color-charcoal);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--color-gold);
    color: var(--color-charcoal);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .section-title { font-size: 2.2rem; margin-bottom: 2.5rem; }

    .spotlight {
        flex-direction: column;
        padding: 60px 5%;
        gap: 40px;
        text-align: center;
    }

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

    .spotlight-img img {
        margin: 0 auto;
        max-width: 100%;
    }

    .spotlight-content {
        padding-right: 0;
    }

    .section-title-left {
        font-size: 2rem;
        text-align: center;
    }

    .key-ingredients {
        justify-content: center;
    }

    .product-info {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        font-size: 0.85rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-icons {
        flex-direction: column;
        gap: 30px;
    }
}

/* --- Product Details Page (product.html) --- */
.product-page {
    padding: calc(var(--nav-height) + 40px) 5% 100px;
    background-color: var(--color-cream);
    min-height: 100vh;
}

.breadcrumbs {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.breadcrumbs a {
    color: var(--color-charcoal);
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--color-red);
}

.breadcrumbs span {
    color: var(--color-gold);
    font-weight: 500;
}

.product-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Gallery Left Side */
.product-gallery {
    flex: 1;
    position: sticky;
    top: calc(var(--nav-height) + 40px);
}

.main-image-container {
    background-color: #fff;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.main-image-container img {
    height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.gallery-thumbnails {
    display: flex;
    gap: 15px;
}

.thumb {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.thumb.active {
    border-color: var(--color-gold);
}

/* Details Right Side */
.product-details-panel {
    flex: 1;
    padding-top: 20px;
}

.product-title {
    font-size: 3.5rem;
    color: var(--color-charcoal);
    line-height: 1.1;
    margin-bottom: 10px;
}

.product-subtitle {
    font-size: 1.2rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-price {
    font-size: 2rem;
    color: var(--color-red);
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 30px;
}

.product-price span {
    font-size: 0.85rem;
    color: #888;
    font-family: var(--font-body);
}

.product-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.spec-item i {
    color: var(--color-red);
    width: 24px;
    height: 24px;
}

.spec-item strong {
    display: block;
    color: var(--color-charcoal);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.spec-item span {
    color: #666;
    font-size: 0.9rem;
}

/* Add to Cart Area */
.add-to-cart-form {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.qty-btn {
    background: none;
    border: none;
    width: 50px;
    height: 56px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--color-charcoal);
    transition: background 0.2s;
}

.qty-btn:hover {
    background: rgba(0, 0, 0, 0.02);
}

.qty-input {
    width: 50px;
    height: 56px;
    border: none;
    text-align: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    -moz-appearance: textfield;
    appearance: none;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.full-width-btn {
    flex: 1;
    font-size: 1rem;
    padding: 16px 24px; /* Added horizontal padding to prevent text touching borders */
    text-align: center;
}

.trust-badges {
    display: flex;
    gap: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 25px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
}

.badge i {
    width: 18px;
    height: 18px;
    color: #25D366;
}

@media (max-width: 900px) {
    .product-page { padding-top: calc(var(--nav-height) + 20px); }
    .product-container {
        flex-direction: column;
        gap: 40px;
    }

    .product-gallery {
        position: relative;
        top: 0;
        width: 100%;
        padding: 0;
    }

    .main-image-container {
        padding: 20px;
        margin-bottom: 15px;
    }

    .main-image-container img {
        height: 350px;
    }

    .product-title { font-size: 2.2rem; }
    .product-subtitle { font-size: 1rem; }
    .product-price { font-size: 1.5rem; margin-bottom: 20px; padding-bottom: 20px; }

    .product-specs {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .spec-item { padding: 10px; background: rgba(255,255,255,0.5); border-radius: 8px; }

    .add-to-cart-form {
        flex-direction: column;
        gap: 15px;
    }

    .quantity-selector {
        width: 100%;
        justify-content: space-between;
    }

    .qty-btn, .qty-input {
        flex: 1;
        height: 50px;
    }

    .highlight-ingredients h3 { text-align: center; }
    .jump-link { display: block; text-align: center; }

    .formulation-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Product Page Ingredients --- */
.highlight-ingredients {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.highlight-ingredients h3 {
    font-size: 1.2rem;
    color: var(--color-charcoal);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.highlight-list {
    list-style: none;
    margin-bottom: 25px;
    display: grid;
    gap: 12px;
}

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    background-color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--color-charcoal);
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.highlight-list li:hover {
    transform: translateX(5px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.08);
}

.brand-icon {
    color: var(--color-gold);
    width: 20px;
    height: 20px;
}

.jump-link {
    display: inline-block;
    color: var(--color-red);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s;
}

.jump-link:hover {
    color: var(--color-charcoal);
}

/* --- Full Formulation Section --- */
.full-formulation-section {
    background-color: var(--color-cream);
    padding: 80px 5%;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.formulation-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.formulation-header .section-icon {
    color: var(--color-gold);
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.formulation-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 15px;
    line-height: 1.6;
}

.formulation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.premium-ingredient-card {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.premium-ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
    border-color: var(--color-gold);
}

.card-icon {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-red);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.card-info h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--color-charcoal);
    margin-bottom: 4px;
    font-weight: 600;
}

.card-label {
    display: block;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Interactive Header Components (Phase 3) --- */

/* Global Backdrop */
.overlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.close-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-charcoal);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.close-overlay:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* 1. Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: var(--color-cream);
    z-index: 999;
    padding: 60px 5%;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-overlay.active {
    transform: translateY(0);
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.search-container h2 {
    font-size: 2rem;
    color: var(--color-charcoal);
    margin-bottom: 30px;
}

.search-form {
    display: flex;
    position: relative;
    margin-bottom: 20px;
}

.search-form input {
    width: 100%;
    padding: 20px 60px 20px 20px;
    font-size: 1.2rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: #fff;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.search-form input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.search-form button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-charcoal);
    cursor: pointer;
    padding: 0;
}

.search-suggestions {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
    font-size: 0.9rem;
}

.search-suggestions a {
    color: var(--color-red);
    text-decoration: underline;
}

/* 2. Auth Modal */
.auth-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: #fff;
    width: 90%;
    max-width: 450px;
    border-radius: 16px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.auth-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.auth-content {
    padding: 40px;
}

.auth-header {
    display: flex;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.auth-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: #999;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.auth-tab.active {
    color: var(--color-charcoal);
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-gold);
}

.auth-form {
    display: none;
    flex-direction: column;
    gap: 15px;
}

.auth-form.active {
    display: flex;
}

.auth-form input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.forgot-pass {
    text-align: right;
    font-size: 0.85rem;
    color: var(--color-red);
}

/* 3. Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
    color: var(--color-charcoal);
}

.cart-header .close-overlay {
    position: relative;
    top: auto;
    right: auto;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.cart-item {
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: var(--color-cream);
    border-radius: 8px;
    padding: 5px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 1rem;
    color: var(--color-charcoal);
    margin-bottom: 5px;
}

.item-price {
    display: block;
    color: var(--color-red);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.quantity-selector.small {
    height: 36px;
    width: 100px;
}

.quantity-selector.small .qty-btn {
    width: 30px;
    height: 100%;
}

.quantity-selector.small .qty-input {
    width: 40px;
    height: 100%;
    font-size: 0.9rem;
}

.remove-item {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.remove-item:hover {
    color: var(--color-red);
}

.cart-footer {
    padding: 30px;
    background: var(--color-cream);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    color: var(--color-charcoal);
    margin-bottom: 10px;
}

.shipping-note {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}
/* --- Creative Hero Layout Upgrade --- */
.creative-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--nav-height) 5% 0;
    overflow: hidden;
    background-color: var(--color-charcoal);
}

.creative-hero-bg {
    position: absolute;
    top: -5%; left: -5%; width: 110%; height: 110%;
    background-image: url('../images/dynamic_hero_bg.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: blur(8px) brightness(0.4); 
}

.creative-hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at right center, transparent 0%, rgba(26,26,26,0.95) 100%);
    z-index: 2;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 2;
    opacity: 0.4;
    pointer-events: none;
}
.orb-1 { width: 400px; height: 400px; background: var(--color-gold); top: 10%; right: 10%; animation: float 15s infinite; }
.orb-2 { width: 500px; height: 500px; background: var(--color-red); bottom: -10%; left: -10%; animation: float 20s infinite reverse; }

.creative-hero-container {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left Text Column */
.hero-text-column {
    flex: 1;
    max-width: 650px;
}

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-cursive {
    display: block;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 3.5rem;
    color: var(--color-gold);
    margin-bottom: 0px;
    font-weight: 500;
}

.hero-caps {
    display: block;
    font-size: 4.5rem;
    text-transform: uppercase;
    color: var(--color-cream);
    letter-spacing: 0.05em;
    font-family: var(--font-body);
    line-height: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(241, 234, 215, 0.85);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-text-link {
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}
.btn-text-link:hover { color: var(--color-cream); gap: 12px; }

/* Right Visual Column */
.hero-visual-column {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}

.hero-product-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.main-hero-product {
    width: 100%;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,0.6));
    position: relative;
    z-index: 5;
    transform-origin: center;
}

.product-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; height: 90%;
    background: radial-gradient(circle, rgba(212,175,55,0.4) 0%, transparent 60%);
    z-index: 4;
    filter: blur(20px);
    pointer-events: none;
}

.hero-herb {
    position: absolute;
    z-index: 6;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    pointer-events: none;
}
.herb-1 { width: 160px; top: -15%; right: -10%; filter: blur(2px); }
.herb-2 { width: 100px; bottom: 30%; right: -25%; filter: blur(5px); }
.herb-3 { width: 250px; bottom: -20%; left: -25%; filter: blur(4px); }

.floating-badge {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px 24px;
    border-radius: 40px;
    color: var(--color-cream);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 7;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    pointer-events: none;
}
.floating-badge i { color: var(--color-gold); width: 20px; height: 20px; }
.badge-left { top: 15%; left: -20%; }

/* Scroll Mouse Icon */
.modern-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(241, 234, 215, 0.7);
}
.mouse-icon {
    width: 28px; height: 44px;
    border: 2px solid rgba(241, 234, 215, 0.5);
    border-radius: 20px;
    position: relative;
}
.wheel {
    width: 4px; height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    animation: scrollWheel 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}
@keyframes scrollWheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

.float-animation { animation: float 6s ease-in-out infinite; }
.float-slow { animation: float 10s ease-in-out infinite reverse; }
.float-fast { animation: float 4s ease-in-out infinite; }
.float-reverse { animation: float 8s ease-in-out infinite reverse; }

@media (max-width: 1200px) {
    .hero-caps { font-size: 3.5rem; }
    .hero-cursive { font-size: 3rem; }
}

@media (max-width: 1024px) {
    .creative-hero {
        padding-top: calc(var(--nav-height) + 40px);
        padding-bottom: 60px;
        min-height: auto;
    }
    .creative-hero-container { flex-direction: column; text-align: center; gap: 40px; }
    .hero-text-column { max-width: 100%; order: 1; }
    .hero-actions { justify-content: center; flex-direction: column; gap: 20px; }
    .hero-caps { font-size: 3rem; }
    .hero-cursive { font-size: 2.5rem; }
    .hero-subtitle { margin: 0 auto 2rem; font-size: 1.1rem; }
    .hero-visual-column { margin-top: 20px; padding: 0; order: 2; width: 100%; }
    .hero-product-wrapper { max-width: 400px; margin: 0 auto; }
    .floating-badge { display: none; }
    .herb-1 { width: 100px; top: -10%; right: 0; }
    .herb-2 { width: 80px; bottom: 10%; right: -10%; }
    .herb-3 { width: 150px; bottom: -10%; left: -10%; }
}

@media (max-width: 480px) {
    .hero-caps { font-size: 2.2rem; }
    .hero-cursive { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions .btn { width: 100%; }
    .main-hero-product { max-width: 280px; margin: 0 auto; }
}

/* --- Card Highlight --- */
.card-highlight {
    font-size: 0.8rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-top: -10px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* --- Unani Intro Section --- */
.unani-intro {
    padding: 8rem 5%;
    background-color: #fff;
    text-align: center;
}

.unani-intro-container {
    max-width: 900px;
    margin: 0 auto;
}

.unani-intro h2 {
    font-size: 2.5rem;
    color: var(--color-red);
    margin-bottom: 2rem;
}

.unani-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* --- Why Choose Us Section --- */
.why-choose-us {
    padding: 8rem 5%;
    background-color: var(--color-cream);
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.why-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    text-align: left;
    border-bottom: 3px solid transparent;
}

.why-item:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--color-gold);
}

.why-item h3 {
    color: var(--color-red);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-item p {
    font-size: 0.95rem;
    color: #555;
}

.why-item ul {
    list-style: none;
    margin-top: 10px;
}

.why-item ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.why-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

/* --- Fine Art Visual Enhancements --- */
.unani-intro {
    background: var(--parchment);
    position: relative;
    overflow: hidden;
    text-align: center; /* Center for a more balanced "Article" look */
}

.unani-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/p6.png');
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.unani-intro::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: url('../images/unani_heritage.png') no-repeat center;
    background-size: contain;
    opacity: 0.1;
    transform: translateY(-50%) rotate(-5deg);
    pointer-events: none;
    z-index: 0;
}

.unani-intro-container {
    position: relative;
    z-index: 1;
    padding: 120px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.unani-text {
    max-width: 900px;
    margin: 0 auto;
}

.unani-text p {
    margin-bottom: 25px;
    line-height: 1.9;
    color: #444;
}

.why-header {
    position: relative;
    padding-bottom: 60px;
    text-align: center;
}

.why-choose-us {
    position: relative;
    overflow: hidden;
    padding: 120px 5%;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: url('../images/natural_balance.png') no-repeat center;
    background-size: contain;
    opacity: 0.08;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.why-grid {
    position: relative;
    z-index: 1;
}

.why-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.03);
    padding: 40px;
    border-radius: 4px; /* More classic apothecary feel */
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
}

.why-item:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

/* --- Decorative Article Elements --- */
.decorative-leaf {
    position: absolute;
    color: var(--color-red);
    opacity: 0.1;
    font-size: 8rem;
    pointer-events: none;
    z-index: 0;
}

.leaf-1 {
    top: -20px;
    left: -20px;
    transform: rotate(-15deg);
}

.leaf-2 {
    bottom: -20px;
    right: -20px;
    transform: rotate(165deg);
}

.why-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    color: #666;
    margin-top: -10px;
    font-size: 1.1rem;
}

/* Section Separator: Cutout style */
.unani-intro::after, .why-choose-us::after {
    filter: grayscale(100%) contrast(1.2); /* Make them feel more like etchings */
}

.section-divider {
    height: 100px;
    background: var(--color-cream);
    position: relative;
    z-index: 2;
    mask: url('https://www.transparenttextures.com/patterns/p6.png'); /* Subtle texture on transition */
}
