/* --- VIRAS BRAND STYLE SHEET --- */

/* Reset and Base Rules */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.25s ease;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --charcoal-color: #171513;
}

/* Theme definition */
body.dark-theme {
    --bg-primary: #171513; /* Charcoal */
    --bg-secondary: #1F1C1A;
    --bg-tertiary: #2D2724;
    --bg-glass: rgba(23, 21, 19, 0.92);
    
    --text-primary: #FAF8F3; /* Off White */
    --text-secondary: #E8D4B5; /* Warm Cream */
    --text-muted: #8F847C;
    
    --border-color: rgba(232, 212, 181, 0.15);
    --gold-color: #B68A3A; /* Muted Antique Gold */
    --gold-hover: #E8D4B5;
    --card-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    --glow-color: rgba(165, 75, 52, 0.2);
    
    --terracotta-color: #A54B34; /* Terracotta Main Accent */
    --beige-header-bg: #2D2724;
}

body.light-theme {
    --bg-primary: #FAF8F3; /* Ivory */
    --bg-secondary: #FAF8F3;
    --bg-tertiary: #F4EBDD; /* Warm Cream */
    --bg-glass: rgba(250, 248, 243, 0.95);
    
    --text-primary: #111111; /* Near Black */
    --text-secondary: #321D16; /* Deep Brown */
    --text-muted: #57524E;
    
    --border-color: rgba(50, 29, 22, 0.12); /* Deep brown border blend */
    --gold-color: #B58A3A; /* Muted Gold */
    --gold-hover: #A63F25; /* Terracotta */
    --card-shadow: 0 8px 30px rgba(50, 29, 22, 0.02);
    --glow-color: rgba(166, 63, 37, 0.15);
    
    --terracotta-color: #A63F25; /* Terracotta */
    --beige-header-bg: #caae8c; /* Soft Clay Peach */
}

/* Base Body Styles */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Typography Utilities */
.font-serif {
    font-family: var(--font-heading);
}

.font-muted {
    color: var(--text-secondary);
}

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

.text-gold {
    color: var(--gold-color);
}

.font-gold {
    color: var(--gold-color);
    letter-spacing: 0.15em;
}

.tracking-wide {
    letter-spacing: 0.15em;
}

.block {
    display: block;
}

.hidden {
    display: none !important;
}

.position-relative {
    position: relative;
}

/* Containers & Grid */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    margin-bottom: 48px;
}

.section-header .subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.section-header .section-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-header .divider {
    height: 1px;
    width: 60px;
    background-color: var(--gold-color);
    margin: 16px auto;
}

.section-header .section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0 auto;
}

.max-w-md {
    max-width: 600px;
}

.max-w-sm {
    max-width: 480px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }

/* Buttons styling */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary {
    background-color: var(--terracotta-color);
    color: #FAF8F3;
    border-color: var(--terracotta-color);
    border-radius: 4px;
}

.btn-primary:hover {
    background-color: #8c3f2b;
    border-color: #8c3f2b;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
    border-radius: 4px;
}

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

.btn-outline {
    background-color: transparent;
    color: var(--terracotta-color);
    border-color: var(--terracotta-color);
    border-radius: 4px;
}

.btn-outline:hover {
    background-color: var(--terracotta-color);
    color: #FAF8F3;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 10px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Main Header & Navbar Styles */
.announcement-bar {
    background-color: var(--terracotta-color);
    color: #FAF8F3;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    z-index: 1000;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.announcement-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateX(20px);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    white-space: nowrap;
    width: 100%;
    text-align: center;
    padding: 0 24px;
    box-sizing: border-box;
    pointer-events: none;
}

.announcement-slide.active {
    opacity: 1;
    transform: translate(-50%, -50%) translateX(0);
    pointer-events: auto;
}

.announcement-slide.exit {
    opacity: 0;
    transform: translate(-50%, -50%) translateX(-20px);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--beige-header-bg);
    border-bottom: 1px solid rgba(50, 29, 22, 0.08);
    box-shadow: 0 2px 10px rgba(50, 29, 22, 0.01); /* almost no shadow at the top of page */
    transition: box-shadow 0.35s ease, background-color 0.35s ease;
}

.header-row-top {
    height: 140px; /* restored to earlier version height */
    display: flex;
    align-items: center;
    transition: height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.header-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.justify-center {
    justify-content: center !important;
}

.brand-logo-image-wrapper {
    width: 64px; /* decreased to fit 140px header beautifully */
    height: 64px;
    margin-bottom: 8px; /* decreased spacing */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease, width 0.35s cubic-bezier(0.25, 1, 0.5, 1), height 0.35s cubic-bezier(0.25, 1, 0.5, 1), margin-bottom 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    background: transparent;
    filter: drop-shadow(0 2px 10px rgba(50, 29, 22, 0.15));
    opacity: 0;
    transform: translateY(8px);
    animation: logoEntrance 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.1s;
}

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

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.brand-logo-container:hover .brand-logo-image-wrapper {
    transform: scale(1.18) rotate(6deg);
    filter: drop-shadow(0 6px 18px rgba(182, 138, 58, 0.6));
    animation-play-state: paused;
}

.brand-logo-container:hover .brand-logo-img {
    transform: scale(1.08);
}

.brand-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    line-height: 1.05;
    cursor: pointer;
}

/* Left search widget button */
.header-left-search {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.search-trigger-btn {
    display: flex;
    align-items: center;
    background-color: rgba(50, 29, 22, 0.05); /* Soft, light brown tint */
    border: 1px solid rgba(50, 29, 22, 0.08);
    padding: 10px 18px;
    border-radius: 8px;
    width: 260px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.search-trigger-btn:hover {
    background-color: rgba(50, 29, 22, 0.09);
    border-color: rgba(50, 29, 22, 0.15);
}

.search-placeholder-text {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 10px;
}

/* Right utilities widget group */
.header-right-utilities {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    justify-self: end;
}

/* Currency selector widget */
.currency-dropdown-container {
    position: relative;
}

.currency-selector-btn {
    background: none;
    border: 1px solid rgba(59, 36, 27, 0.12);
    padding: 8px 12px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.currency-selector-btn:hover {
    border-color: var(--terracotta-color);
}

.currency-dropdown-list {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background-color: #FAF8F3;
    border: 1px solid rgba(59, 36, 27, 0.15);
    border-radius: 4px;
    width: 150px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: none;
    flex-direction: column;
    z-index: 1001;
}

.currency-dropdown-list.active {
    display: flex;
}

.currency-option {
    background: none;
    border: none;
    padding: 10px 16px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.currency-option:hover,
.currency-option.active {
    background-color: var(--bg-tertiary);
    color: var(--terracotta-color);
}

/* Delivery details tooltip */
.delivery-tooltip-container {
    position: relative;
}

.delivery-tooltip-card {
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translate(50%, 8px);
    background-color: #FAF8F3;
    border: 1px solid rgba(59, 36, 27, 0.15);
    border-radius: 4px;
    padding: 12px 16px;
    width: 210px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: none;
    flex-direction: column;
    text-align: left;
    z-index: 1001;
}

.delivery-tooltip-container:hover .delivery-tooltip-card {
    display: flex;
}

.tooltip-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--terracotta-color);
    margin-bottom: 4px;
}

.tooltip-text {
    font-size: 11.5px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Category Navigation Strip */
.category-navigation-strip {
    background-color: #FAF8F3;
    border-top: 1px solid rgba(59, 36, 27, 0.08);
    border-bottom: 1px solid rgba(59, 36, 27, 0.08);
    height: 48px;
    display: flex;
    align-items: center;
}

.category-strip-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.category-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.category-nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: color 0.25s ease;
}

.category-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--gold-color);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), left 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-nav-link:hover {
    color: var(--gold-color);
}

.category-nav-link:hover::after {
    left: 0;
    width: 100%;
}

.category-nav-link.active {
    color: var(--gold-color);
}

.category-nav-link.active::after {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

/* Utilities Row */
.header-utilities {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Select element styled for header */
.currency-dropdown-wrapper {
    position: relative;
}

.currency-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    padding-right: 18px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
    outline: none;
}

.currency-select:hover {
    border-color: var(--gold-color);
}

/* Navigation Link Container (All links grouped on Left) */
.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 2;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex: 1.5;
}

/* Hover swap transitions for product cards */
.product-card-img.primary-img {
    transition: opacity 0.4s ease-in-out;
}

.product-card-img.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.product-card:hover .product-card-img.primary-img {
    opacity: 0;
}

.product-card:hover .product-card-img.hover-img {
    opacity: 1;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: color 0.25s ease;
    padding: 8px 0;
    position: relative;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--terracotta-color);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--terracotta-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

@keyframes logoShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.brand-logo {
    font-family: var(--font-body), sans-serif;
    font-size: 36px; /* scaled down to fit 140px header beautifully */
    font-weight: 800;
    letter-spacing: 0.24em;
    color: #321D16;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), font-size 0.35s cubic-bezier(0.25, 1, 0.5, 1), letter-spacing 0.35s cubic-bezier(0.25, 1, 0.5, 1), margin-bottom 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    line-height: 1;
    margin-bottom: 4px; /* decreased spacing before tagline */
    opacity: 0;
    animation: brandWordmarkEntrance 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.4s;
}

/* Ensure the logo text stands out in dark theme */
body.dark-theme .brand-logo {
    color: #FAF8F3;
}

@keyframes brandWordmarkEntrance {
    to {
        opacity: 1;
        letter-spacing: 0.16em; /* Settle into final 0.16em spacing */
    }
}

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

.brand-logo-container:hover .brand-logo {
    transform: scale(1.04);
}

.brand-subtitle {
    font-family: var(--font-body), sans-serif;
    font-size: 11px; /* scaled down to fit 140px header beautifully */
    font-weight: 600;
    letter-spacing: 0.26em; /* 0.22–0.30em letter-spacing */
    text-transform: uppercase;
    color: #321D16;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.2;
    transition: opacity 0.35s ease, font-size 0.35s ease, margin-top 0.35s ease;
    opacity: 0;
    animation: taglineEntrance 0.45s ease-out forwards;
    animation-delay: 0.6s; /* 200ms delay after VIRAS start */
}

/* Logo breathing glow animation */
@keyframes logoGlint {
    0% {
        filter: drop-shadow(0 2px 6px rgba(182, 138, 58, 0.25));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 6px 20px rgba(182, 138, 58, 0.55));
        transform: scale(1.03);
    }
    100% {
        filter: drop-shadow(0 2px 6px rgba(182, 138, 58, 0.25));
        transform: scale(1);
    }
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.header-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
    position: relative;
    padding: 6px;
}

.icon-btn:hover {
    color: var(--gold-color);
    transform: scale(1.15);
}

.icon-btn i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

/* Theme icon tilt rotate on hover */
.icon-btn#theme-btn:hover i {
    transform: rotate(30deg);
}

/* Cart button lift bounce on hover */
.icon-btn.cart-btn:hover {
    transform: scale(1.15) translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--gold-color);
    color: #121110;
    font-size: 8px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Loader Screen Styles */
.intro-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121110; /* Always dark for intro mystery */
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.intro-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

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

.golden-droplet {
    width: 16px;
    height: 16px;
    background-color: var(--gold-color);
    border-radius: 80% 0 55% 50% / 55% 0 80% 50%;
    transform: rotate(-45deg) scale(0);
    margin: 0 auto 24px;
    animation: dropletFade 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    box-shadow: 0 0 20px var(--gold-color);
}

.loader-logo {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #eae4d9;
    opacity: 0;
    transform: translateY(15px);
    animation: textSlideUp 1.5s 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.loader-tagline {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #8c8273;
    margin-top: 8px;
    opacity: 0;
    animation: textFadeIn 1.5s 2s ease forwards;
}

@keyframes dropletFade {
    0% {
        transform: rotate(-45deg) translateY(-80px) scale(0.2);
        opacity: 0;
    }
    30% {
        transform: rotate(-45deg) translateY(0) scale(1);
        opacity: 1;
    }
    60% {
        transform: rotate(-45deg) scale(1.6);
        border-radius: 50%;
    }
    100% {
        transform: rotate(-45deg) scale(0);
        opacity: 0;
    }
}

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

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

/* SPA Panel Structure */
.view-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    min-height: calc(100vh - var(--header-height) - 100px);
    padding-bottom: 60px;
}

.view-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* --- VIEW: HOME STYLES --- */

/* Hero Section */
.hero-section {
    position: relative;
    height: 536px; /* Precise height ratio 1439x536 */
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-section {
        height: 240px;
    }
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: translateX(-100%); /* Enters from left */
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}

.hero-slide.active {
    z-index: 2;
    transform: translateX(0);
    opacity: 1;
}

.hero-slide.prev-slide {
    z-index: 1;
    transform: translateX(100%); /* Exits to right */
    opacity: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active .hero-bg-img {
    transform: scale(1);
}

/* Arrow controls overlaying on slide sides */
.hero-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    z-index: 20;
    padding: 24px;
    opacity: 0.6;
    transition: opacity 0.2s ease, color 0.2s ease;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-arrow-btn:hover {
    opacity: 1;
    color: var(--terracotta-color);
}

.hero-arrow-btn.prev {
    left: 16px;
}

.hero-arrow-btn.next {
    right: 16px;
}

/* Hero Text Overlay & Localized Gradient Shadow */
.hero-localized-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    pointer-events: none;
    transition: background 0.6s ease;
}

.hero-localized-overlay.theme-light {
    background: radial-gradient(circle at 30% 50%, rgba(247, 243, 234, 0.85) 0%, rgba(247, 243, 234, 0.45) 45%, rgba(247, 243, 234, 0) 75%);
}

.hero-localized-overlay.theme-dark {
    background: radial-gradient(circle at 30% 50%, rgba(23, 21, 19, 0.85) 0%, rgba(23, 21, 19, 0.45) 45%, rgba(23, 21, 19, 0) 75%);
}

.hero-localized-overlay.theme-dark .hero-title,
.hero-localized-overlay.theme-dark .hero-description {
    color: #FAF8F3;
}

.hero-localized-overlay.theme-dark .hero-subtitle {
    color: rgba(250, 248, 243, 0.8);
}

.hero-content {
    max-width: 580px;
    margin-left: 8%;
    padding: 40px;
    pointer-events: auto;
    text-align: left;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800; /* Inter 800 */
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 16.5px;
    font-weight: 400; /* Inter 400 */
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Slider HUD controls */
.hero-hud-controls {
    display: none !important;
}

.hero-page-counter {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

.hero-bullet-indicators {
    display: flex;
    gap: 12px;
}

.hero-bullet-indicators .bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    opacity: 0.5;
}

.hero-bullet-indicators .bullet.active {
    background-color: var(--terracotta-color);
    transform: scale(1.2);
    opacity: 1;
}

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

/* Section Header Alignment with Flex Action Right */
.section-header-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: none;
    position: relative;
}

.section-header-row::after {
    content: '♦'; /* Elegant diamond accent */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: var(--terracotta-color);
    background-color: inherit;
    padding: 0 10px;
    z-index: 2;
}

.section-header-row::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background-color: rgba(165, 75, 52, 0.25);
    z-index: 1;
}

.section-header-left {
    text-align: center;
}

.section-link-action {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--terracotta-color);
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-fast);
    margin-top: 16px;
    display: inline-block;
}

/* --- PREMIUM SECTION HEADER & DIVIDER OVERHAUL --- */
.premium-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-bottom: 24px;
}

.premium-section-header .section-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em; /* 2.5px letter spacing */
    font-weight: 600;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.premium-section-header .section-heading {
    font-family: var(--font-body);
    font-size: 32px; /* 28–34px desktop */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2E1C15; /* Deep Brown */
    margin-bottom: 8px;
    line-height: 1.2;
}

body.dark-theme .premium-section-header .section-heading {
    color: #FAF8F3;
}

.premium-section-header .section-description {
    font-family: var(--font-body);
    font-size: 16px; /* 16–18px desktop */
    color: rgba(46, 28, 21, 0.75); /* Deep Brown with slightly reduced opacity */
    max-width: 550px; /* 500-600px max width */
    margin-bottom: 18px;
    line-height: 1.5;
}

body.dark-theme .premium-section-header .section-description {
    color: rgba(250, 248, 243, 0.7);
}

/* Signature Divider: ────────── ◇ ────────── */
.premium-section-header .signature-divider {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
    width: 160px; /* 120-180px width */
}

.premium-section-header .divider-line {
    height: 1px;
    width: 65px;
    background-color: rgba(181, 138, 58, 0.45); /* Muted gold line, 1px height, opacity 35-50% */
}

.premium-section-header .divider-diamond {
    font-size: 8px; /* 6-8px size */
    color: var(--gold-color);
    line-height: 1;
}

/* View All link: uppercase, letter spacing 1.5px, weight 600, color terracotta */
.premium-section-header .section-view-all {
    font-family: var(--font-body);
    font-size: 12px; /* 12-13px */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em; /* 1.5px letter-spacing */
    color: var(--terracotta-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 40px; /* 35-45px margin */
    transition: color 0.25s ease;
}

.premium-section-header .section-view-all:hover {
    color: var(--gold-color);
}

.premium-section-header .section-view-all .arrow {
    display: inline-block;
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-section-header .section-view-all:hover .arrow {
    transform: translateX(4px); /* Moves arrow 4px to the right on hover */
}

/* --- SECTION REVEAL ANIMATIONS ON SCROLL --- */
.premium-section-header .section-eyebrow,
.premium-section-header .section-heading,
.premium-section-header .section-description,
.premium-section-header .divider-diamond,
.premium-section-header .section-view-all {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-section-header .divider-line {
    width: 0;
    transition: width 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Staggered delays on section reveal */
.revealed .premium-section-header .section-eyebrow,
.reveal-visible .premium-section-header .section-eyebrow,
.revealed.premium-section-header .section-eyebrow,
.reveal-visible.premium-section-header .section-eyebrow {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.08s;
}

.revealed .premium-section-header .section-heading,
.reveal-visible .premium-section-header .section-heading,
.revealed.premium-section-header .section-heading,
.reveal-visible.premium-section-header .section-heading {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.18s;
}

.revealed .premium-section-header .section-description,
.reveal-visible .premium-section-header .section-description,
.revealed.premium-section-header .section-description,
.reveal-visible.premium-section-header .section-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.28s;
}

.revealed .premium-section-header .divider-line,
.reveal-visible .premium-section-header .divider-line,
.revealed.premium-section-header .divider-line,
.reveal-visible.premium-section-header .divider-line {
    width: 65px;
    transition-delay: 0.38s;
}

.revealed .premium-section-header .divider-diamond,
.reveal-visible .premium-section-header .divider-diamond,
.revealed.premium-section-header .divider-diamond,
.reveal-visible.premium-section-header .divider-diamond {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition-delay: 0.48s;
}

.revealed .premium-section-header .section-view-all,
.reveal-visible .premium-section-header .section-view-all,
.revealed.premium-section-header .section-view-all,
.reveal-visible.premium-section-header .section-view-all {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.58s;
}

/* Mobile responsive overrides */
@media (max-width: 768px) {
    .premium-section-header .section-eyebrow {
        font-size: 10px;
        margin-bottom: 6px;
    }
    
    .premium-section-header .section-heading {
        font-size: 26px; /* 24–28px */
        margin-bottom: 6px;
    }
    
    .premium-section-header .section-description {
        font-size: 14px; /* 14–16px */
        margin-bottom: 12px;
        padding: 0 16px;
    }
    
    .premium-section-header .signature-divider {
        width: 120px; /* 100-130px */
        margin-bottom: 10px;
    }
    
    .premium-section-header .divider-line {
        width: 45px;
    }
    
    .revealed .premium-section-header .divider-line,
    .reveal-visible .premium-section-header .divider-line,
    .revealed.premium-section-header .divider-line,
    .reveal-visible.premium-section-header .divider-line {
        width: 45px;
    }
    
    .premium-section-header .section-view-all {
        margin-bottom: 24px;
    }
}

/* --- MINIMAL SECTION HEADER (NEW LAUNCH) --- */
.new-launches-section {
    background-color: #FAF8F3 !important; /* Keep existing ivory */
    padding: 70px 0 !important; /* 60–80px top/bottom padding */
}

.minimal-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-bottom: 60px; /* 50–70px bottom padding before product cards */
}

.minimal-section-title {
    font-family: var(--font-body), sans-serif;
    font-size: 32px; /* 28-34px desktop */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary); /* Dark near-black text */
    margin-bottom: 18px; /* 15-20px gap */
    line-height: 1.2;
}

body.dark-theme .minimal-section-title {
    color: #FAF8F3;
}

.minimal-section-view-all {
    font-family: var(--font-body), sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--terracotta-color); /* existing brand rust-gold */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.25s ease;
}

.minimal-section-view-all:hover {
    color: var(--gold-color);
}

.minimal-section-view-all .minimal-arrow {
    display: inline-block;
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.minimal-section-view-all:hover .minimal-arrow {
    transform: translateX(5px); /* slightly increased arrow movement */
}

/* Entrance Animations */
.minimal-section-header .minimal-section-title,
.minimal-section-header .minimal-section-view-all {
    opacity: 0;
    transform: translateY(10px); /* 8-12px rise */
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Triggered by viewport IntersectionObserver adding reveal-visible */
.reveal-visible .minimal-section-header .minimal-section-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.reveal-visible .minimal-section-header .minimal-section-view-all {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s; /* slight delay */
}

/* Responsive Mobile Layout */
@media (max-width: 768px) {
    .new-launches-section {
        padding: 50px 0 !important;
    }
    
    .minimal-section-header {
        margin-bottom: 35px;
    }
    
    .minimal-section-title {
        font-size: 26px; /* balanced wrapping */
        max-width: 160px; /* wraps "NEW LAUNCH" to two lines: NEW and LAUNCH */
        margin-bottom: 12px;
        line-height: 1.3;
    }
}

.section-link-action:hover {
    opacity: 0.8;
}

.subtitle-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--terracotta-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}
    box-shadow: var(--card-shadow);
}

.card-icon-container {
    font-size: 36px;
    margin-bottom: 20px;
}

.philosophy-card h4 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.philosophy-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Scent Memory Section */
.scent-memory-section {
    background-color: var(--bg-secondary);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.5s ease;
}

.memory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.memory-card {
    height: 380px;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.memory-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease;
    z-index: 1;
}

.memory-card:hover .memory-card-bg {
    transform: scale(1.08);
}

/* Background image overrides for the memories using generated assets */
.memory-card[data-memory="rain"] .memory-card-bg {
    background-image: linear-gradient(rgba(24,23,22,0.3), rgba(24,23,22,0.85)), url('assets/mitti_attar.jpg') !important;
}
.memory-card[data-memory="garden"] .memory-card-bg {
    background-image: linear-gradient(rgba(24,23,22,0.3), rgba(24,23,22,0.85)), url('assets/ruh_gulab.jpg') !important;
}
.memory-card[data-memory="festive"] .memory-card-bg {
    background-image: linear-gradient(rgba(24,23,22,0.3), rgba(24,23,22,0.85)), url('assets/chandan_attar.jpg') !important;
}

.memory-card-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    color: #eae4d9 !important; /* Keep readable text in memory cards always */
}

.memory-emoji {
    font-size: 28px;
    display: block;
    margin-bottom: 12px;
}

.memory-card h4 {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.memory-card p {
    font-size: 13.5px;
    color: rgba(234, 228, 217, 0.7);
    line-height: 1.5;
    margin-bottom: 20px;
}

.memory-btn {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-color);
    transition: var(--transition-fast);
}

.memory-card:hover .memory-btn {
    padding-left: 8px;
}

/* Scent Wheel Component */
.category-section {
    padding: 80px 0;
}

.scent-wheel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.scent-wheel-tilt-wrapper {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.scent-wheel-graphic {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.wheel-spin-container {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.wheel-sector {
    position: absolute;
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
    transform-origin: 0% 0%;
    transform: rotate(var(--rotation)) skew(30deg); /* Skews for 6 equal parts */
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
    background-color: var(--bg-secondary);
}

.wheel-sector span {
    position: absolute;
    top: 25%;
    left: 25%;
    transform: skew(-30deg) rotate(-45deg);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.wheel-sector:hover {
    background-color: var(--gold-color);
}

.wheel-sector:hover span {
    color: #121110;
}

.wheel-center {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.wheel-center .center-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold-color);
}

.scent-wheel-details {
    max-width: 320px;
}

.scent-wheel-details h4 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 12px;
}

.scent-wheel-details p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Product Cards Grid Common */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.product-card {
    background-color: transparent;
    border: none;
    border-radius: 0;
    overflow: visible; /* Allow shadows and slide offsets to overflow cleanly */
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.product-card:hover {
    border-color: transparent;
    box-shadow: none;
}

.card-img-wrapper {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background-color: #FAFAFA;
    overflow: hidden;
    border-radius: 8px; /* Elegant rounded card border */
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
}

.product-card:hover .card-img-wrapper {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    border-color: rgba(165, 75, 52, 0.15);
}

.product-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-card-img {
    transform: scale(1.04);
}

.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--terracotta-color);
    color: #ffffff;
    padding: 4px 8px;
    font-size: 10.5px;
    font-weight: 700;
    border-radius: 0;
    z-index: 5;
    letter-spacing: 0.05em;
}

.product-card-info {
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    background: transparent;
    transition: var(--transition-fast);
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin-bottom: 6px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-fast);
    text-align: center;
    text-transform: uppercase;
}

.product-card-title:hover {
    color: var(--terracotta-color);
}

.product-card-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
    text-align: center;
}

.rating-stars {
    font-size: 12px;
    color: var(--gold-color);
    letter-spacing: 0.05em;
}

.reviews-count {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.product-card-prices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    text-align: center;
    margin-top: 4px;
}

.price-from {
    display: none;
}

.price-sale {
    font-weight: 700;
    color: var(--text-primary);
}

.price-compare {
    font-size: 12.5px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-card-add-btn {
    background-color: var(--terracotta-color);
    color: #FFFFFF;
    border: none;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 12px;
    border-radius: 30px;
    width: 100%;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 12px;
    display: block;
}

.product-card-add-btn:hover {
    background-color: #8c472e;
}

.product-card-qty-widget {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--terracotta-color);
    color: #FFFFFF;
    border: none;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    padding: 12px;
    border-radius: 30px;
    width: 100%;
    margin-top: 12px;
    box-shadow: 0 4px 12px rgba(165, 75, 52, 0.2);
}

.product-card-qty-widget .qty-dec-btn,
.product-card-qty-widget .qty-inc-btn {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.product-card-qty-widget .qty-dec-btn:hover,
.product-card-qty-widget .qty-inc-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.product-card-qty-widget .qty-display-val {
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-heading);
    min-width: 20px;
    text-align: center;
}

/* Discovery Promo Section */
.discovery-promo-section {
    background-color: var(--terracotta-color);
    padding: 80px 0;
    color: #FAF8F3;
}

.discovery-promo-section .promo-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.discovery-promo-section .promo-img-container {
    border: none;
    padding: 0;
    background: none;
    overflow: hidden;
}

.discovery-promo-section .promo-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.discovery-promo-section .promo-content {
    text-align: left;
}

.discovery-promo-section .promo-content .subtitle {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(250, 248, 243, 0.9);
    display: block;
    margin-bottom: 8px;
}

.discovery-promo-section .promo-content .section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800; /* Inter 800 */
    line-height: 1.15;
    color: #FAF8F3;
    margin-top: 8px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.discovery-promo-section .promo-desc-line {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    color: rgba(250, 248, 243, 0.95);
    margin-bottom: 16px;
}

.discovery-promo-section .promo-long-desc {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(250, 248, 243, 0.8);
    margin-bottom: 32px;
}

.discovery-promo-section .add-discovery-btn {
    background-color: #FAF8F3 !important;
    color: var(--terracotta-color) !important;
    border: none !important;
    padding: 14px 32px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    font-size: 12px !important;
    border-radius: 4px !important;
}

.discovery-promo-section .add-discovery-btn:hover {
    background-color: #e8d4b5 !important;
    color: #3b241b !important;
}

/* Making of an Attar Timeline */
.distillation-timeline-section {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 48px auto 0;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 1px;
    height: 100%;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-img {
    position: absolute;
    left: -32px;
    top: 0;
    width: 32px;
    height: 32px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 2;
    transition: var(--transition-fast);
}

.timeline-item:hover .timeline-img {
    border-color: var(--gold-color);
    box-shadow: 0 0 10px var(--glow-color);
    transform: scale(1.1);
}

.timeline-content {
    padding-left: 16px;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Gifting Section */
.gifting-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-image: linear-gradient(rgba(18, 17, 16, 0.8), rgba(18, 17, 16, 0.9)), url('assets/hero_attar.jpg');
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

body.light-theme .gifting-section {
    background-image: linear-gradient(rgba(246, 244, 238, 0.85), rgba(246, 244, 238, 0.95)), url('assets/hero_attar.jpg');
}

.text-white-muted {
    color: rgba(234, 228, 217, 0.7);
}

body.light-theme .text-white-muted {
    color: var(--text-secondary);
}

body.light-theme .text-white {
    color: var(--text-primary) !important;
}

.gifting-chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 32px;
}

.gift-chip {
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(234, 228, 217, 0.3);
    padding: 8px 18px;
    border-radius: 20px;
    color: #eae4d9;
    background-color: rgba(255, 255, 255, 0.03);
}

body.light-theme .gift-chip {
    border-color: var(--border-color);
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

/* Community Reviews Section */
.reviews-section {
    padding: 80px 0;
}

.reviews-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.review-filter-btn {
    background: none;
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.review-filter-btn:hover,
.review-filter-btn.active {
    border-color: var(--gold-color);
    color: var(--gold-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review-author {
    font-weight: 600;
    font-size: 13.5px;
}

.review-rating {
    color: var(--gold-color);
    font-size: 10px;
}

.review-text {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    font-style: italic;
}

.review-product-tag {
    margin-top: auto;
    font-size: 9px;
    font-weight: 700;
    color: var(--gold-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- VIEW: SHOP PAGE STYLES --- */
.shop-page-container {
    display: flex;
    gap: 40px;
    padding-top: 40px;
}

.shop-filters-sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: calc(var(--header-height) + 20px);
    max-height: calc(100vh - var(--header-height) - 60px);
    overflow-y: auto;
    padding-right: 12px;
}

/* Elegant scrollbar styling for sidebar */
.shop-filters-sidebar::-webkit-scrollbar {
    width: 4px;
}

.shop-filters-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.shop-filters-sidebar::-webkit-scrollbar-thumb {
    background-color: rgba(165, 75, 52, 0.25);
    border-radius: 4px;
}

.shop-filters-sidebar::-webkit-scrollbar-thumb:hover {
    background-color: var(--terracotta-color);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.filter-header h4 {
    font-size: 20px;
    font-weight: 400;
}

.clear-filters-btn {
    background: none;
    border: none;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    text-decoration: underline;
    transition: var(--transition-fast);
}

.clear-filters-btn:hover {
    color: var(--gold-color);
}

.filter-group {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.filter-checkbox-label,
.filter-radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-checkbox-label input,
.filter-radio-label input {
    accent-color: var(--gold-color);
    width: 14px;
    height: 14px;
}

.filter-checkbox-label:hover,
.filter-radio-label:hover {
    color: var(--gold-color);
}

.shop-products-content {
    flex-grow: 1;
}

.shop-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.results-count {
    font-size: 13px;
    color: var(--text-secondary);
}

.sort-selector-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-selector-container label {
    font-size: 12.5px;
    color: var(--text-secondary);
}

.sort-select {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    font-size: 12.5px;
    cursor: pointer;
    outline: none;
}

.sort-select:focus {
    border-color: var(--gold-color);
}

/* Override cards layout in shop to fill column space nicely */
.shop-products-content .products-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 0;
}

/* --- VIEW: PRODUCT DETAIL STYLES --- */
.detail-page-container {
    padding-top: 40px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.detail-visuals-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-large-img-container {
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    aspect-ratio: 1;
    overflow: hidden;
}

.detail-large-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info-panel {
    display: flex;
    flex-direction: column;
}

.detail-family-badge {
    font-size: 10px;
    font-weight: 700;
    color: var(--gold-color);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.detail-title {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 6px;
}

.detail-tagline {
    font-size: 16px;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 16px;
}

.detail-rating-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.review-count-label {
    font-size: 12.5px;
    color: var(--text-muted);
}

.detail-description {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.detail-notes-pyramid {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 24px;
    margin-bottom: 28px;
}

.pyramid-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
    color: var(--text-muted);
}

.pyramid-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.pyramid-row:last-child {
    margin-bottom: 0;
}

.pyramid-label {
    width: 80px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--gold-color);
}

.pyramid-values {
    font-size: 13.5px;
    color: var(--text-primary);
}

.detail-metrics-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 20px 24px;
}

.metric-bar-wrapper {
    display: flex;
    align-items: center;
}

.metric-label {
    width: 90px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
}

.metric-track {
    flex-grow: 1;
    height: 4px;
    background-color: var(--bg-tertiary);
    position: relative;
    margin: 0 16px;
}

.metric-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--gold-color);
}

.metric-value {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-color);
    width: 25px;
    text-align: right;
}

/* Sizing Selector */
.size-selector-group {
    margin-bottom: 28px;
}

.selector-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.size-chips {
    display: flex;
    gap: 12px;
}

.size-chip {
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 10px 18px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.size-chip.active {
    border-color: var(--gold-color);
    color: var(--gold-color);
    background-color: var(--bg-tertiary);
}

.size-chip:hover:not(.active) {
    border-color: var(--text-secondary);
}

/* Sample checkbox add-on */
.sample-checkbox-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.sample-checkbox-card input {
    accent-color: var(--gold-color);
    width: 16px;
    height: 16px;
}

.sample-text-wrap {
    display: flex;
    flex-direction: column;
}

.sample-title {
    font-size: 13.5px;
    font-weight: 600;
}

.sample-desc {
    font-size: 11.5px;
    color: var(--text-muted);
}

.detail-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.quantity-controller {
    display: flex;
    border: 1px solid var(--border-color);
    height: 46px;
    background-color: var(--bg-secondary);
}

.quantity-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    width: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.quantity-btn:hover {
    color: var(--gold-color);
}

.quantity-val {
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.detail-add-bag-btn {
    flex-grow: 1;
    height: 46px;
    border: none;
    background-color: var(--gold-color);
    color: #121110;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}

.detail-add-bag-btn:hover {
    background-color: var(--gold-hover);
    box-shadow: 0 0 15px var(--glow-color);
}

/* Sensory portrayal what smell like */
.sensory-portrait-box {
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.sensory-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
}

.sensory-portrait-box p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

/* Wear timing section */
.wear-occasions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.occasion-chip {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 12px;
    color: var(--text-secondary);
}

/* --- VIEW: SCENT FINDER QUIZ STYLES --- */
.finder-container {
    max-width: 680px;
    padding-top: 60px;
}

.finder-quiz-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 48px;
    border-radius: 2px;
    box-shadow: var(--card-shadow);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quiz-step {
    display: none;
    animation: quizFadeUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.quiz-step.active {
    display: block;
}

@keyframes quizFadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-progress {
    font-size: 9.5px;
    font-weight: 700;
    color: var(--gold-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
    text-align: center;
}

.question-title {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 32px;
}

.quiz-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.quiz-option-card {
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    padding: 24px;
    border-radius: 2px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-fast);
}

.quiz-option-card:hover {
    border-color: var(--gold-color);
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
}

.option-emoji {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.quiz-option-card h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}

.quiz-option-card p {
    font-size: 11.5px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Result rendering style */
.portrait-result-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 32px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.match-percentage {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-color);
    letter-spacing: 0.08em;
    background-color: var(--bg-secondary);
    padding: 4px 10px;
    border-radius: 10px;
    margin-bottom: 16px;
}

.portrait-result-card h3 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 8px;
}

.result-notes-sub {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-style: italic;
}

.result-desc {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
    text-align: center;
    margin-bottom: 24px;
}

/* --- VIEW: CUSTOM BLENDER STYLES --- */
.builder-page-container {
    padding-top: 40px;
}

.builder-workspace-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    margin-top: 40px;
    align-items: start;
}

.builder-preview-panel {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.custom-bottle-visualizer {
    position: relative;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 300px;
    perspective: 1000px;
}

.bottle-glow {
    position: absolute;
    width: 140px;
    height: 240px;
    border-radius: 40px;
    background: radial-gradient(circle, var(--gold-color) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(20px);
    z-index: 1;
    transition: var(--transition-smooth);
}

.custom-bottle-image-container {
    position: absolute;
    z-index: 2;
    width: 190px;
    height: 270px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: scale(0.95) rotateY(45deg);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.custom-bottle-image-container.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
    pointer-events: auto;
}

.custom-bottle-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottle-svg {
    position: absolute;
    z-index: 2;
    opacity: 0;
    transform: scale(0.95) rotateY(-45deg);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    width: 160px;
    height: 280px;
}

.bottle-svg.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
    pointer-events: auto;
}

.custom-bottle-label-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-glass);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold-color);
    padding: 10px 16px;
    text-align: center;
    border-radius: 4px;
    width: 130px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.custom-bottle-label-overlay span {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.custom-bottle-label-overlay small {
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 2px;
}

.custom-formula-summary h4 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 4px;
}

.custom-notes-list {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.custom-attar-price {
    font-size: 22px;
    font-weight: 500;
    color: var(--gold-color);
}

.builder-controls-panel {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.builder-control-section {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 32px;
}

.step-indicator {
    font-size: 9px;
    font-weight: 700;
    color: var(--gold-color);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 4px;
}

.builder-control-section h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
}

.fs-sm {
    font-size: 12.5px;
}

.mb-2 {
    margin-bottom: 16px;
}

.control-options-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
}

.builder-radio-label {
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: var(--transition-fast);
}

.builder-radio-label input {
    display: none; /* Hide radio button, show style on label */
}

.builder-radio-label .option-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    transition: var(--transition-fast);
}

.builder-radio-label .option-desc {
    font-size: 12px;
    color: var(--text-muted);
}

.builder-radio-label.active {
    border-color: var(--gold-color);
    box-shadow: 0 0 10px var(--glow-color);
}

.builder-radio-label.active .option-title {
    color: var(--gold-color);
}

.slider-wrapper {
    margin-top: 16px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.range-slider {
    width: 100%;
    accent-color: var(--gold-color);
    background-color: var(--bg-tertiary);
    height: 4px;
    cursor: pointer;
}

/* --- VIEW: OUR STORY STYLES --- */
.story-page-container {
    padding-top: 40px;
}

.story-editorial-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    margin-top: 40px;
    align-items: center;
}

.story-text-column p {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.story-quote {
    border-left: 2px solid var(--gold-color);
    padding-left: 24px;
    font-style: italic;
    font-size: 20px;
    color: var(--text-primary);
    line-height: 1.4;
}

.story-visual-column {
    border: 1px solid var(--border-color);
    padding: 16px;
    background-color: var(--bg-secondary);
}

.story-editorial-img {
    width: 100%;
    height: auto;
    display: block;
}

.editorial-image-caption {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

/* --- VIEW: JOURNAL STYLES --- */
.journal-page-container {
    padding-top: 40px;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.journal-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.journal-card:hover {
    border-color: var(--gold-color);
    transform: translateY(-6px);
    box-shadow: var(--card-shadow);
}

.journal-card-img {
    padding-top: 60%;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-tertiary);
}

.journal-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.journal-tag {
    font-size: 9px;
    font-weight: 700;
    color: var(--gold-color);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: block;
}

.journal-card h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.3;
}

.journal-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
}

.read-more-link {
    margin-top: auto;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.journal-card:hover .read-more-link {
    color: var(--gold-color);
    padding-left: 4px;
}

/* --- OVERLAYS: CART DRAWER STYLES --- */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 200;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cart-drawer-overlay.active {
    display: block;
    opacity: 1;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 440px;
    max-width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    border-left: 1px solid var(--border-color);
    z-index: 210;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

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

.drawer-header {
    height: 70px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.drawer-title {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.cart-scroll-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cart-item-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.cart-item-meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.cart-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-color);
}

.cart-item-qty-selector {
    display: flex;
    border: 1px solid var(--border-color);
    height: 28px;
    background-color: var(--bg-secondary);
}

.qty-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    width: 24px;
    cursor: pointer;
    font-size: 12px;
}

.qty-val {
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.cart-empty-state {
    padding: 60px 0;
}

.empty-emoji {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.cart-footer {
    border-top: 1px solid var(--border-color);
    padding: 24px;
    background-color: var(--bg-secondary);
}

.coupon-section {
    margin-bottom: 20px;
}

.coupon-input-wrapper {
    display: flex;
    gap: 10px;
}

.coupon-input-wrapper input {
    flex-grow: 1;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    font-size: 12px;
    outline: none;
}

.coupon-input-wrapper input:focus {
    border-color: var(--gold-color);
}

.coupon-input-wrapper button {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    padding: 0 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.coupon-message {
    font-size: 11.5px;
    margin-top: 6px;
}

.coupon-message.success { color: var(--gold-color); }
.coupon-message.error { color: #d946ef; }

.cart-summary-costs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    color: var(--text-secondary);
}

.summary-line.total-line {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 600;
}

.checkout-btn {
    height: 48px;
}

/* --- OVERLAYS: CHECKOUT MODAL STYLES --- */
.checkout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.checkout-modal-overlay.active {
    display: flex;
}

.checkout-modal-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    width: 500px;
    max-width: 100%;
    padding: 32px;
    border-radius: 2px;
    position: relative;
    box-shadow: var(--card-shadow);
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.checkout-header h3 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.checkout-step {
    display: none;
}

.checkout-step.active {
    display: block;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.checkout-form input {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    font-size: 13px;
    outline: none;
    width: 100%;
}

.checkout-form input:focus {
    border-color: var(--gold-color);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.payment-option-label {
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    padding: 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: var(--transition-fast);
}

.payment-option-label input {
    display: none;
}

.payment-title {
    font-size: 13.5px;
    font-weight: 600;
}

.payment-subtext {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.payment-option-label.active {
    border-color: var(--gold-color);
    background-color: var(--bg-tertiary);
}

.success-checkmark {
    font-size: 48px;
    color: var(--gold-color);
    display: block;
    margin-bottom: 12px;
}

.success-title {
    font-size: 24px;
    font-weight: 400;
}

.order-receipt-card {
    background-color: var(--bg-secondary);
    border: 1px dashed var(--border-color);
    padding: 20px;
    text-align: left;
    max-height: 180px;
    overflow-y: auto;
}

.receipt-header {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.receipt-body {
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.receipt-line {
    display: flex;
    justify-content: space-between;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--bg-glass);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 95;
    transition: background-color 0.5s ease;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    gap: 4px;
    transition: var(--transition-fast);
}

.bottom-nav-item i {
    width: 18px;
    height: 18px;
}

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

/* Search Overlay Styling */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-glass);
    backdrop-filter: blur(15px);
    z-index: 150;
    display: none;
    animation: fadeIn 0.3s ease forwards;
}

.search-overlay.active {
    display: block;
}

.search-container {
    max-width: 600px;
    margin: 80px auto 0;
    padding: 0 24px;
}

.search-header {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid var(--gold-color);
    padding-bottom: 8px;
    align-items: center;
}

#search-input {
    flex-grow: 1;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    font-family: var(--font-heading);
    outline: none;
}

.search-results {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 400px;
    overflow-y: auto;
}

.search-hint {
    font-size: 13.5px;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    padding: 24px 0;
}

.search-result-item {
    display: flex;
    gap: 16px;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    padding: 12px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.search-result-item:hover {
    border-color: var(--gold-color);
    transform: translateX(4px);
}

.search-result-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.search-result-info h5 {
    font-size: 15px;
    font-weight: 600;
}

.search-result-info span {
    font-size: 11px;
    color: var(--text-muted);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Footer Section Styles */
.viras-footer {
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    padding: 60px 0 100px; /* Leave room for mobile bottom nav */
    transition: background-color 0.5s ease;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-primary);
}

.brand-moto {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 12px;
    max-width: 240px;
}

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

.social-links a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

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

.social-links i {
    width: 18px;
    height: 18px;
}

.footer-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-color);
    margin-bottom: 20px;
    display: block;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link-item {
    font-size: 12.5px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-link-item:hover {
    color: var(--gold-color);
    padding-left: 4px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 11.5px;
    color: var(--text-muted);
}

/* Theme Icons Visibility Toggle */
body.dark-theme .sun-icon { display: block; }
body.dark-theme .moon-icon { display: none; }
body.light-theme .sun-icon { display: none; }
body.light-theme .moon-icon { display: block; }

/* Responsive Media Queries */
.mobile-only {
    display: none !important;
}

@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: flex !important;
    }
    
    .philosophy-grid,
    .memory-grid,
    .products-grid,
    .shop-products-content .products-grid,
    .reviews-grid,
    .journal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .promo-grid,
    .story-editorial-grid,
    .builder-workspace-grid,
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .shop-page-container {
        flex-direction: column;
    }
    
    .shop-filters-sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }
    
    .filter-group {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .builder-preview-panel {
        position: relative;
        top: 0;
    }
}

@media (max-width: 600px) {
    .philosophy-grid,
    .memory-grid,
    .products-grid,
    .reviews-grid,
    .journal-grid,
    .footer-container,
    .shop-products-content .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-content {
        margin-left: 0;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .quiz-options-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-modal-card {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Drawer Overlay Styles */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    width: 280px;
    max-width: 85%;
    height: 100%;
    background-color: var(--bg-primary);
    border-right: 1px solid var(--border-color);
    border-left: none;
    z-index: 2000; /* overlay above main header */
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 35px rgba(23, 21, 19, 0.15);
}

.mobile-menu-drawer.active {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    gap: 14px;
    overflow-y: auto;
    flex-grow: 1;
}

/* Styled scrollbar for the mobile navigation link container */
.mobile-nav-links::-webkit-scrollbar {
    width: 3px;
}
.mobile-nav-links::-webkit-scrollbar-track {
    background: transparent;
}
.mobile-nav-links::-webkit-scrollbar-thumb {
    background: var(--gold-color);
    border-radius: 3px;
}

.mobile-nav-link {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.04);
    padding-bottom: 10px;
    display: block;
    transform: translateY(15px) scale(0.95);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease, color 0.25s ease, padding-left 0.25s ease;
}

.mobile-menu-drawer.active .mobile-nav-link {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Cascading pop animations for drawer menu buttons */
.mobile-menu-drawer.active .mobile-nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu-drawer.active .mobile-nav-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu-drawer.active .mobile-nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu-drawer.active .mobile-nav-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu-drawer.active .mobile-nav-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu-drawer.active .mobile-nav-link:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu-drawer.active .mobile-nav-link:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu-drawer.active .mobile-nav-link:nth-child(8) { transition-delay: 0.40s; }
.mobile-menu-drawer.active .mobile-nav-link:nth-child(9) { transition-delay: 0.45s; }

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--gold-color);
    border-bottom-color: var(--gold-color);
    padding-left: 10px;
    transform: scale(1.04) translateX(4px) !important;
}

/* Elegant close button micro-animations */
#close-menu-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(59, 36, 27, 0.04);
    color: var(--text-primary);
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

#close-menu-btn:hover {
    background-color: var(--terracotta-color);
    color: #FFFFFF;
    transform: rotate(90deg);
}

/* --- PREMIUM GLOW AND LIFT EFFECTS --- */

/* Product Cards default state shadows & lifts */
.product-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease !important;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(181, 138, 50, 0.12) !important;
    border-color: var(--gold-color) !important;
}

/* Philosophy cards hover states */
.philosophy-card {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.philosophy-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-color);
    box-shadow: 0 16px 35px rgba(181, 138, 50, 0.12) !important;
}

/* Memory cards default shadows */
.memory-card {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease !important;
}
.memory-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18) !important;
}

/* Click Press Micro-Animations */
.btn {
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease !important;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(181, 138, 50, 0.15);
}
.btn:active,
.quick-add-btn:active,
.scent-wheel-btn:active,
.nav-link:active {
    transform: scale(0.96) translateY(0) !important;
}

/* Custom premium checkboxes/radios for shop sidebar filters */
.filter-checkbox-label {
    display: flex;
    align-items: center;
    padding-left: 0;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}
.filter-checkbox-label input {
    display: none;
}
.filter-checkbox-label::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 3px;
    background-color: var(--bg-primary);
    margin-right: 10px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}
.filter-checkbox-label input:checked + ::before {
    background-color: var(--gold-color);
    border-color: var(--gold-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Custom Radios */
.filter-radio-label {
    display: flex;
    align-items: center;
    padding-left: 0;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}
.filter-radio-label input {
    display: none;
}
.filter-radio-label::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 50%;
    background-color: var(--bg-primary);
    margin-right: 10px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}
.filter-radio-label input:checked + ::before {
    border-color: var(--gold-color);
    background-color: var(--gold-color);
    box-shadow: inset 0 0 0 3px var(--bg-primary);
}

/* Shop Filters Sidebar Container Floating Shadow Card style */
.shop-filters-sidebar {
    background-color: var(--bg-secondary);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* --- SCROLL REVEAL SCENIC TRANSITIONS --- */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- BRAND PHILOSOPHY CARD IMAGES --- */
.card-image-wrapper {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    position: relative;
}

.card-real-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.philosophy-card:hover .card-real-image {
    transform: scale(1.08);
}

/* --- SUBTLE HEADING CONTRAST IN LIGHT THEME --- */
body.light-theme .hero-title,
body.light-theme .hero-description,
body.light-theme .hero-subtitle,
body.light-theme .hero-trust {
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.45) !important;
}

/* --- CINEMATIC 3D LOADER & CANVAS --- */
.spray-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

#loader-3d-title {
    display: block;
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: text3DReveal 1.8s 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    z-index: 2;
    position: relative;
}

@keyframes text3DReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        text-shadow: none;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        text-shadow: 
            0 1px 0 #b58a32, 
            0 2px 0 #9c7128, 
            0 3px 0 #855f1f, 
            0 4px 0 #6d4d17, 
            0 5px 0 #54390f, 
            0 12px 25px rgba(0, 0, 0, 0.75);
    }
}

/* --- SCENT WHEEL ACTIVE STATE & TILT --- */
.wheel-sector.active {
    background-color: var(--gold-color) !important;
}

.wheel-sector.active span {
    color: #121110 !important;
    font-weight: 800;
    font-size: 11px;
}

/* --- LOADER POETIC QUOTE --- */
.loader-quote {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.05em;
    color: #a3998b;
    margin-top: 20px;
    margin-bottom: 28px;
    opacity: 0;
    animation: loaderQuoteFade 1.5s 2.2s ease forwards;
}

@keyframes loaderQuoteFade {
    0% {
        opacity: 0;
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- LUXURY DIALOG MODALS & POPUPS --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 17, 16, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2000;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.quick-view-modal-content {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 820px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.active .quick-view-modal-content,
.modal-overlay.active .newsletter-modal-content {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s ease;
}

.modal-close-btn:hover {
    color: var(--gold-color);
}

.quick-view-modal-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    min-height: 480px;
}

.modal-image-panel {
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info-panel {
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-info-panel h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.modal-prices {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.modal-info-panel p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-selectors {
    margin-bottom: 24px;
}

.selector-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.size-options-wrapper {
    display: flex;
    gap: 12px;
}

.modal-size-btn {
    border: 1.5px solid var(--border-color);
    background: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-size-btn.active {
    border-color: var(--gold-color);
    color: var(--gold-color);
    background-color: rgba(197, 160, 89, 0.05);
}

.modal-actions-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.quantity-control-wrapper {
    display: flex;
    border: 1.5px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.quantity-control-wrapper button {
    background: none;
    border: none;
    width: 36px;
    height: 38px;
    font-size: 16px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.quantity-control-wrapper button:hover {
    background-color: var(--bg-secondary);
    color: var(--gold-color);
}

.quantity-control-wrapper input {
    border: none;
    border-left: 1.5px solid var(--border-color);
    border-right: 1.5px solid var(--border-color);
    width: 48px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    background: none;
    color: var(--text-primary);
}

/* Hide arrow spinner in number inputs */
.quantity-control-wrapper input::-webkit-outer-spin-button,
.quantity-control-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* --- NEWSLETTER POPUP STYLING --- */
.newsletter-modal-content {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 760px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.newsletter-image-panel {
    overflow: hidden;
}

.newsletter-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsletter-info-panel {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.newsletter-info-panel h3 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 8px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.newsletter-info-panel p {
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.newsletter-form-group {
    display: flex;
    width: 100%;
    margin-bottom: 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.newsletter-form-group input {
    flex-grow: 1;
    border: none;
    padding: 12px 16px;
    background: none;
    font-size: 13px;
    color: var(--text-primary);
}

.newsletter-form-group button {
    border: none;
    border-radius: 0;
    padding: 0 24px;
}

.no-thanks-link {
    font-size: 11px;
    font-weight: 500;
    text-decoration: underline;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.no-thanks-link:hover {
    color: var(--gold-color);
}

/* --- HOVER QUICK-VIEW ACTION OVERLAY ON CARDS --- */
.card-hover-actions {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    padding: 12px;
    display: flex;
    gap: 8px;
    transition: bottom 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 10;
}

.product-card:hover .card-hover-actions {
    bottom: 0;
}

.quick-view-btn {
    flex-shrink: 0;
    background-color: var(--bg-primary) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    border-radius: 4px !important;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.quick-view-btn:hover {
    color: var(--gold-color) !important;
    border-color: var(--gold-color) !important;
}

.quick-view-btn i {
    width: 18px;
    height: 18px;
}

.quick-add-btn {
    flex-grow: 1;
    margin: 0 !important;
    height: 44px !important;
    line-height: 44px !important;
    padding: 0 12px !important;
}

/* --- RESPONSIVE POPUPS --- */
@media (max-width: 768px) {
    .quick-view-modal-grid {
        grid-template-columns: 1fr;
    }
    .modal-image-panel {
        display: none;
    }
    .newsletter-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-image-panel {
        display: none;
    }
    .header-search-container {
        display: none !important;
    }
    .currency-dropdown-wrapper {
        display: none !important;
    }
    .header-row-top {
        height: 85px !important;
    }
    .brand-logo-container {
        padding: 4px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .brand-logo-image-wrapper {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 8px !important; /* 6-10px spacing */
    }
    .brand-logo {
        font-size: 32px !important; /* 30-36px */
        letter-spacing: 0.16em !important;
        line-height: 1.1 !important;
        margin-bottom: 4px !important;
        padding-left: 0 !important;
    }
    .brand-subtitle {
        font-size: 11px !important; /* 10-12px */
        letter-spacing: 0.22em !important;
        margin-top: 0 !important;
        line-height: 1.2 !important;
        opacity: 1 !important;
    }
}

/* --- 07. DISCOVERY / BUNDLES SECTION --- */
.discovery-bundles-section {
    background-color: var(--terracotta-color);
    padding: 100px 0;
    color: #FAF8F3;
}

.discovery-bundles-section .section-title {
    font-size: 38px;
    font-weight: 800; /* Inter 800 */
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #FAF8F3;
    letter-spacing: -0.01em;
}

.discovery-bundles-section .section-subtitle-text {
    font-size: 18px;
    font-weight: 500;
    color: rgba(250, 248, 243, 0.95);
    margin-bottom: 48px;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.bundle-card {
    background-color: #FAF8F3;
    color: var(--text-primary);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: var(--transition-smooth);
}

.bundle-card:hover {
    transform: translateY(-8px);
}

.bundle-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.bundle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bundle-card:hover .bundle-img {
    transform: scale(1.05);
}

.bundle-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bundle-info h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.bundle-qty {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.bundle-desc {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.bundle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.bundle-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--terracotta-color);
}

.bundle-footer .btn {
    padding: 10px 20px;
    font-size: 11px;
}

/* --- 08. PREMIUM COLLECTION SECTION --- */
.premium-collection-section {
    background-color: #3B241B; /* Dark Brown */
    padding: 100px 0;
    color: #F7F3EA;
}

.premium-collection-section .section-title {
    font-size: 38px;
    font-weight: 800;
    color: #F7F3EA;
    letter-spacing: -0.01em;
}

.premium-collection-section .promo-long-desc {
    color: rgba(247, 243, 238, 0.8);
    line-height: 1.6;
}

.btn-outline-white {
    background-color: transparent;
    color: #F7F3EA;
    border: 1px solid #F7F3EA;
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: var(--transition-fast);
}

.btn-outline-white:hover {
    background-color: #F7F3EA;
    color: #3B241B;
}

/* --- 09. CUSTOM ATTAR TEASER SECTION --- */
.custom-teaser-section {
    background-color: #F7F3EA; /* Warm Cream */
    padding: 100px 0;
}

.custom-teaser-section .teaser-desc-line {
    font-size: 20px;
    font-weight: 500;
    color: var(--terracotta-color);
    margin-bottom: 12px;
}

.custom-teaser-section .teaser-long-desc {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* --- 10. WHY VIRAS SECTION --- */
.why-viras-section {
    padding: 100px 0;
    background-color: #FAF8F3;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.why-viras-section .section-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.why-viras-section .divider {
    width: 60px;
    height: 2px;
    background-color: var(--terracotta-color);
    margin: 16px auto 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.value-card {
    text-align: left;
}

.value-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--terracotta-color);
    display: block;
    margin-bottom: 16px;
    opacity: 0.8;
}

.value-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- 12. FOOTER SECTION --- */
.viras-footer {
    background-color: #171513; /* Charcoal */
    color: #F7F3EA;
    padding: 80px 0 40px;
}

.viras-footer .footer-container {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1.6fr;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(247, 243, 238, 0.1);
    padding-bottom: 60px;
}

.viras-footer .footer-brand {
    text-align: left;
}

.viras-footer .footer-logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #F7F3EA;
    display: block;
}

.viras-footer .footer-subtitle {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
    margin-bottom: 16px;
}

.viras-footer .brand-moto {
    font-size: 13px;
    color: rgba(247, 243, 238, 0.7);
    line-height: 1.5;
}

.viras-footer .footer-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #FAF8F3;
    margin-bottom: 24px;
    text-transform: uppercase;
    display: block;
}

.viras-footer .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.viras-footer .footer-link-item {
    font-size: 13px;
    color: rgba(247, 243, 238, 0.75);
    text-decoration: none;
    transition: var(--transition-fast);
}

.viras-footer .footer-link-item:hover {
    color: var(--terracotta-color);
    padding-left: 2px;
}

.viras-footer .social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.viras-footer .social-link-item {
    font-size: 13px;
    color: rgba(247, 243, 238, 0.75);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.viras-footer .social-link-item:hover {
    color: var(--terracotta-color);
}

.viras-footer .footer-newsletter {
    text-align: left;
}

.viras-footer .newsletter-form {
    display: flex;
    margin-top: 12px;
}

.viras-footer .newsletter-form input {
    background-color: rgba(247, 243, 238, 0.08);
    border: 1px solid rgba(247, 243, 238, 0.15);
    border-radius: 4px 0 0 4px;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 12.5px;
    color: #FAF8F3;
    outline: none;
    width: 100%;
}

.viras-footer .newsletter-form input:focus {
    border-color: var(--terracotta-color);
}

.viras-footer .btn-subscribe {
    background-color: var(--terracotta-color);
    color: #FAF8F3;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-fast);
}

.viras-footer .btn-subscribe:hover {
    background-color: #8c3f2b;
}

.viras-footer .footer-bottom {
    padding-top: 30px;
    font-size: 12.5px;
    color: rgba(247, 243, 238, 0.5);
}

/* Responsive grid breaks */
@media (max-width: 992px) {
    .bundles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .viras-footer .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .discovery-bundles-section .section-title {
        font-size: 30px;
    }
    .bundles-grid {
        grid-template-columns: 1fr;
    }
    .teaser-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .values-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .viras-footer .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .viras-footer .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Trending search tag styling */
.search-trending-section {
    padding: 20px 0;
    text-align: left;
}

.trending-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.trending-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trend-tag {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.trend-tag:hover {
    background-color: var(--terracotta-color);
    color: #FAF8F3;
    border-color: var(--terracotta-color);
}

.bestseller-badge {
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 12px !important;
    background-color: var(--terracotta-color) !important;
    color: #FAF8F3 !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    padding: 5px 14px !important;
    border-radius: 30px !important; /* Premium rounded pill */
    text-transform: uppercase !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(250, 248, 243, 0.25) !important;
}

.new-badge {
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 12px !important;
    background-color: #B68A3A !important; /* Muted Antique Gold */
    color: #FAF8F3 !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    padding: 5px 14px !important;
    border-radius: 30px !important; /* Premium rounded pill */
    text-transform: uppercase !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(250, 248, 243, 0.25) !important;
}

.home-price-filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.price-filter-btn {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.price-filter-btn:hover {
    border-color: var(--terracotta-color);
    color: var(--terracotta-color);
}

.price-filter-btn.active {
    background-color: var(--terracotta-color);
    color: #FAF8F3;
    border-color: var(--terracotta-color);
}

/* --- OVERHAULED PRODUCT DETAIL PAGE STYLES --- */
.product-page-wrapper {
    padding: 40px 0 100px;
    background-color: transparent;
}

.detail-gallery-panel {
    display: flex;
    flex-direction: column;
}

.detail-gallery-container {
    display: flex;
    gap: 16px;
}

.detail-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 80px;
    flex-shrink: 0;
}

.detail-thumb-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    background-color: #FAFAFA;
    transition: var(--transition-fast);
}

.detail-thumb-img.active,
.detail-thumb-img:hover {
    border-color: var(--terracotta-color);
    transform: translateY(-2px);
}

.detail-main-img-wrapper {
    flex-grow: 1;
    position: relative;
    aspect-ratio: 1;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: #FAFAFA;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
}

.detail-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-fast);
    z-index: 5;
    color: var(--text-primary);
}

.detail-wishlist-btn:hover {
    transform: scale(1.1);
}

/* Scent Quiz Callout Card */
.scent-quiz-callout {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.quiz-callout-tag {
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #B68A3A;
    display: block;
    margin-bottom: 8px;
}

.scent-quiz-callout p {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.quiz-callout-link {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--terracotta-color);
    text-decoration: none;
    text-transform: uppercase;
}

/* Detail Right Info panel */
.detail-small-category {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    color: #B68A3A;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.detail-product-name {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.detail-short-tagline {
    font-size: 16px;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 16px;
}

.detail-rating-line {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.rating-stars-val {
    font-size: 13px;
    font-weight: 700;
}

.reviews-anchor-link {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: underline;
    cursor: pointer;
}

.detail-price-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.price-discount-percent {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    background-color: var(--terracotta-color);
    color: #FFFFFF;
    padding: 2px 8px;
}

.detail-short-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.detail-subheading {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Scent Visual profile */
.detail-scent-profile {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    margin-bottom: 32px;
}

.scent-profile-metrics {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-secondary);
}

.metric-row span:first-child {
    font-weight: 600;
}

/* Scent Notes */
.detail-scent-notes {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    margin-bottom: 32px;
}

.notes-three-levels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.note-level strong {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #B68A3A;
    display: block;
    margin-bottom: 4px;
}

.note-level p {
    font-size: 13.5px;
    color: var(--text-primary);
}

/* Size selectors radio styled chips */
.detail-size-selection {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    margin-bottom: 32px;
}

.size-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.size-radio-label {
    border: 1px solid var(--border-color);
    padding: 14px 20px;
    cursor: pointer;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-secondary);
    border-radius: 4px;
    text-transform: uppercase;
}

.size-radio-label input {
    display: none;
}

.size-radio-label.active {
    border-color: var(--terracotta-color);
    background-color: #FFFDF9;
    color: var(--terracotta-color);
    box-shadow: 0 4px 10px rgba(165, 75, 52, 0.02);
}

/* Action row */
.quantity-add-cart-row {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.qty-counter-input {
    display: flex;
    border: 1px solid var(--border-color);
    height: 48px;
    background-color: var(--bg-secondary);
    align-items: center;
    border-radius: 4px;
}

.qty-btn {
    background: none;
    border: none;
    width: 40px;
    height: 100%;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-num {
    width: 32px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

.btn-detail-add {
    flex-grow: 1;
    height: 48px;
    background-color: var(--terracotta-color);
    color: #FAF8F3;
    border: none;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 4px;
}

.btn-detail-add:hover {
    background-color: #8c3b28;
}

.btn-detail-buynow {
    width: 100%;
    height: 48px;
    background-color: #3B241B; /* Dark earthy brown */
    color: #FAF8F3;
    border: none;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 4px;
    margin-bottom: 32px;
}

.btn-detail-buynow:hover {
    background-color: #241510;
}

/* Pincode & coupon sections */
.detail-pincode-panel,
.detail-offers-panel {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    margin-bottom: 32px;
}

.pincode-prompt {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.pincode-input-group,
.coupon-apply-group {
    display: flex;
    gap: 8px;
    height: 40px;
}

.pincode-input-group input,
.coupon-apply-group input {
    flex-grow: 1;
    border: 1px solid var(--border-color);
    padding: 0 16px;
    font-size: 13px;
    background-color: var(--bg-secondary);
    border-radius: 4px;
    outline: none;
}

.pincode-input-group input:focus,
.coupon-apply-group input:focus {
    border-color: var(--terracotta-color);
}

.pincode-input-group button,
.coupon-apply-group button {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 0 20px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.pincode-input-group button:hover,
.coupon-apply-group button:hover {
    border-color: var(--terracotta-color);
    color: var(--terracotta-color);
}

.pincode-response-status,
.coupon-response-status {
    font-size: 12px;
    display: block;
    margin-top: 8px;
    font-weight: 600;
}

/* Coupon offers card */
.coupon-offer-card {
    background-color: var(--bg-secondary);
    border: 1px dashed var(--border-color);
    padding: 16px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.coupon-info strong {
    font-size: 14px;
    color: var(--terracotta-color);
    display: block;
    margin-bottom: 2px;
}

.coupon-info p {
    font-size: 12px;
    color: var(--text-secondary);
}

.coupon-copy-btn {
    background: none;
    border: 1px solid var(--terracotta-color);
    color: var(--terracotta-color);
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 2px;
}

.coupon-copy-btn:hover {
    background-color: var(--terracotta-color);
    color: #FAF8F3;
}

/* Trust row badges */
.detail-trust-row {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
}

.trust-badge-item {
    font-size: 11.5px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-badge-item i {
    width: 14px;
    height: 14px;
    color: #B68A3A;
}

/* BELOW FOLDFILTER sections */
.detail-about-section,
.detail-journey-section,
.detail-ingredients-section,
.detail-wear-section,
.detail-bestfor-section,
.detail-reviews-section,
.detail-related-section {
    border-top: 1px solid var(--border-color);
    padding: 80px 0;
}

.about-narrative-content p {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Journey Flowchart timeline styling */
.journey-flowchart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.journey-node {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 16px 24px;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.node-label {
    font-family: var(--font-body);
    font-size: 9.5px;
    font-weight: 700;
    color: #B68A3A;
    display: block;
    margin-bottom: 4px;
    letter-spacing: 0.1em;
}

.node-desc {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.journey-connector {
    font-size: 20px;
    color: var(--terracotta-color);
}

/* Ingredients Grid */
.ingredients-photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.ingredient-photo-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    background-color: var(--bg-secondary);
}

.ingredient-img {
    width: 100%;
    aspect-ratio: 1.5;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.ingredient-name {
    font-size: 13.5px;
    font-weight: 600;
    padding: 12px 8px;
    display: block;
}

/* How to Wear */
.wear-instructions-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.wear-instructions-content p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.wear-pulse-points-grid {
    display: flex;
    justify-content: space-around;
    gap: 16px;
}

.pulse-point-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pulse-icon {
    font-size: 28px;
}

.pulse-point-item span:last-child {
    font-size: 13px;
    font-weight: 600;
}

/* Best For spec sheets */
.bestfor-specs-table {
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    font-size: 13.5px;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row strong {
    color: var(--text-secondary);
}

.spec-row span {
    font-weight: 600;
    color: var(--text-primary);
}

/* Reviews Summary Block */
.reviews-summary-block {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-filters-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.review-tab-btn {
    background: none;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 30px;
}

.review-tab-btn:hover {
    border-color: var(--terracotta-color);
    color: var(--terracotta-color);
}

.review-tab-btn.active {
    background-color: var(--terracotta-color);
    color: #FAF8F3;
    border-color: var(--terracotta-color);
}

.reviews-list-container {
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    /* Hide Category navigation strip completely on mobile */
    .category-navigation-strip {
        display: none !important;
    }

    /* Balanced 3-column mobile header centering logo perfectly */
    .header-row-top {
        height: 85px;
    }
    .header-container {
        display: grid;
        grid-template-columns: 90px 1fr 90px;
        align-items: center;
        padding: 0 12px;
    }
    .mobile-left-controls {
        grid-column: 1;
        display: flex !important;
        align-items: center;
        gap: 6px;
        justify-self: start;
    }
    .menu-toggle-btn, .mobile-search-trigger {
        width: 38px;
        height: 38px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
    }
    .brand-logo-container {
        grid-column: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .header-right-utilities {
        grid-column: 3;
        justify-self: end;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 90px;
        height: 40px;
    }
    #cart-toggle-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }

    /* Dynamic Gallery */
    .detail-gallery-container {
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .detail-thumbnails {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 8px;
    }
    
    .detail-thumb-img {
        width: 64px;
        height: 64px;
        flex-shrink: 0;
    }
    
    .detail-product-name {
        font-size: 32px;
    }
    
    .ingredients-photos-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Sticky Bottom CTA Bar Styling */
.mobile-sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 12px 20px;
    display: none; /* Hidden on desktop */
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.05);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-info {
    display: flex;
    flex-direction: column;
}

.sticky-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.sticky-price {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--terracotta-color);
    margin-top: 2px;
}

.sticky-cta-btn {
    background-color: var(--terracotta-color);
    color: #FAF8F3;
    border: none;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.sticky-cta-btn:hover {
    background-color: #8c3b28;
}

@media (max-width: 768px) {
    .mobile-sticky-cta-bar {
        display: flex; /* Visible only on mobile */
    }
}

/* Scroll Down Arrow Indicator Styling */
.hero-scroll-down-btn {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(23, 21, 19, 0.5);
    border: 1px solid rgba(250, 248, 243, 0.3);
    color: #FAF8F3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.hero-scroll-down-btn:hover {
    background-color: var(--terracotta-color);
    border-color: var(--terracotta-color);
    color: #FAF8F3;
    transform: translateX(-50%) translateY(-4px);
}

.hero-scroll-down-btn i {
    width: 20px;
    height: 20px;
}

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

/* ==========================================================================
   VIEW: OUR STORY EXPERIENCE OVERHAUL
   ========================================================================== */

/* 1. Homepage Story Teaser Section */
.home-story-teaser-section {
    padding: 100px 0;
    background-color: #F7F3EA;
}

.story-teaser-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.teaser-images-column {
    display: flex;
    gap: 16px;
}

.teaser-img-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.teaser-img-card:hover {
    transform: translateY(-8px);
}

.teaser-img-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.teaser-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.teaser-img-card:hover .teaser-img-wrapper img {
    transform: scale(1.08);
}

.teaser-img-card span {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .story-teaser-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .teaser-images-column {
        flex-direction: column;
        gap: 24px;
    }
    .teaser-img-wrapper {
        height: 200px;
    }
}

/* 2. Story Opening Hero Section */
.story-opening-hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FAF8F3;
    overflow: hidden;
}

.story-opening-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.story-opening-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
}

.story-brand-tag {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.story-opening-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.story-opening-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}

.story-scroll-indicator {
    background: transparent;
    border: none;
    color: #FAF8F3;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin: 0 auto;
}

.story-scroll-indicator i {
    width: 20px;
    height: 20px;
    animation: bounce 2s infinite;
}

/* 3. Story Section Memory */
.story-section-memory {
    padding: 120px 20px;
    background-color: #FAF8F3;
}

.story-inner-container {
    max-width: 780px;
    margin: 0 auto;
}

.story-section-subtitle {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--terracotta-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.story-large-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.story-paragraph {
    font-family: var(--font-body);
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* 4. Story Roots Section */
.story-section-roots {
    padding: 100px 40px;
    background-color: #F7F3EA;
}

.story-grid-roots {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.roots-featured-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(23, 21, 19, 0.08);
}

.roots-visual-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.image-caption {
    font-family: var(--font-body);
    font-size: 11px;
    font-style: italic;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .story-grid-roots {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* 5. Ingredients scrolling */
.story-section-ingredients {
    padding: 100px 0;
    background-color: #FAF8F3;
    overflow: hidden;
}

.ingredients-horizontal-wrapper {
    width: 100%;
    overflow-x: auto;
    padding: 30px 40px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.ingredients-horizontal-wrapper::-webkit-scrollbar {
    display: none;
}

.ingredients-scroll-container {
    display: flex;
    gap: 32px;
    width: max-content;
}

.ingredient-story-card {
    width: 280px;
    background-color: #F7F3EA;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ingredient-story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(23, 21, 19, 0.05);
}

.ingredient-card-img-wrapper {
    width: 100%;
    height: 160px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.ingredient-story-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.ingredient-accords {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--terracotta-color);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.ingredient-story-card p {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* 6. Journey Section */
.story-section-journey {
    padding: 120px 40px;
    background-color: #F7F3EA;
}

.journey-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.journey-step-row {
    background-color: #FAF8F3;
    border: 1px solid rgba(59, 36, 27, 0.06);
    border-radius: 6px;
    padding: 24px;
    display: flex;
    gap: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.journey-step-num {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--terracotta-color);
    opacity: 0.5;
    transition: opacity 0.3s ease;
    line-height: 1;
}

.journey-step-content h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.journey-step-content p {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.journey-media-box {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.journey-infographic-img {
    width: 100%;
    max-width: 480px;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* Journey step row active state */
.journey-step-row.active {
    border-color: var(--terracotta-color);
    box-shadow: 0 12px 32px rgba(23, 21, 19, 0.04);
}

.journey-step-row.active .journey-step-num {
    opacity: 1;
}

.journey-step-row.active .journey-step-content h3 {
    color: var(--terracotta-color);
}

.journey-step-row.active .journey-step-content p {
    max-height: 120px;
    opacity: 1;
    margin-top: 4px;
}

.journey-step-row.active .journey-media-box {
    max-height: 400px;
    opacity: 1;
}

/* 7. Split screen split-col-tradition technology */
.story-section-split {
    display: flex;
    position: relative;
    min-height: 480px;
}

.split-col-tradition,
.split-col-technology {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.split-col-tradition {
    background-color: var(--terracotta-color);
    color: #FAF8F3;
    justify-content: flex-end;
}

.split-col-technology {
    background-color: #171513;
    color: #FAF8F3;
    justify-content: flex-start;
}

.split-col-content {
    max-width: 420px;
}

.split-tag {
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.split-col-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
}

.split-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.split-list li {
    font-family: var(--font-body);
    font-size: 14px;
    position: relative;
    padding-left: 20px;
    opacity: 0.85;
}

.split-list li::before {
    content: "♦";
    position: absolute;
    left: 0;
    color: var(--gold-color);
}

.split-headline-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FAF8F3;
    border: 1px solid rgba(23, 21, 19, 0.1);
    color: var(--text-primary);
    padding: 24px 40px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
}

.split-headline-overlay h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .story-section-split {
        flex-direction: column;
    }
    .split-col-tradition,
    .split-col-technology {
        padding: 60px 40px;
        justify-content: center;
    }
    .split-headline-overlay {
        position: static;
        transform: none;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

/* 8. Team Grid */
.story-section-team {
    padding: 120px 40px;
    background-color: #FAF8F3;
    border-top: 1px solid var(--border-color);
}

.team-cards-grid {
    max-width: 960px; /* Centered with generous spacing */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.team-member-card {
    background-color: #F7F3EA; /* subtle contrast */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(50, 29, 22, 0.01);
    border: 1px solid rgba(50, 29, 22, 0.05);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.team-member-card:hover {
    transform: translateY(-3px); /* 2–3px rise */
    box-shadow: 0 12px 30px rgba(50, 29, 22, 0.04);
}

.team-img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 5; /* exactly 4:5 portrait ratio */
    display: block;
    background-color: var(--bg-tertiary);
    overflow: hidden;
    position: relative;
}

.team-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-member-card:hover .team-img-placeholder img {
    transform: scale(1.02); /* 1.02x zoom on hover */
}

/* Individual crop settings to keep faces clearly visible */
.card-ritik .team-img-placeholder img {
    object-position: center 20%;
}

.card-ajay .team-img-placeholder img {
    object-position: center 12%;
}

.team-member-info {
    padding: 28px; /* generous internal spacing */
    text-align: left;
}

.team-role {
    font-family: var(--font-body), sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--gold-color);
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.team-member-info h4 {
    font-family: var(--font-body), sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.team-quote {
    font-family: var(--font-body), sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(50, 29, 22, 0.75);
    font-style: normal;
}

@media (max-width: 992px) {
    .team-cards-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 440px; /* Stack nicely, cards become full-width */
    }
}

/* 9. Story Letter Section */
.story-section-letter {
    padding: 100px 40px;
    background-color: #F7F3EA;
}

.letter-card-container {
    max-width: 780px;
    margin: 0 auto;
    background-color: #FAF8F3;
    border: 1px solid rgba(59, 36, 27, 0.08);
    border-radius: 8px;
    padding: 60px;
    box-shadow: 0 16px 48px rgba(23, 21, 19, 0.03);
}

.letter-text-box p {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.letter-signature {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--terracotta-color);
    margin-top: 32px;
    display: block;
}

@media (max-width: 600px) {
    .letter-card-container {
        padding: 32px 20px;
    }
}

/* 10. Payoff final section */
.story-section-payoff {
    position: relative;
    padding: 160px 20px;
    color: #FAF8F3;
    overflow: hidden;
}

.payoff-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.payoff-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.payoff-content h2 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.payoff-headline {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--gold-color);
}

.payoff-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-outline-white {
    background-color: transparent;
    border: 1px solid rgba(250, 248, 243, 0.6);
    color: #FAF8F3;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.btn-outline-white:hover {
    background-color: #FAF8F3;
    color: var(--charcoal-color);
    border-color: #FAF8F3;
}

@media (max-width: 600px) {
    .payoff-content h2 {
        font-size: 32px;
    }
    .payoff-actions {
        flex-direction: column;
        gap: 12px;
        max-width: 280px;
        margin: 24px auto 0 auto;
    }
    .payoff-actions .btn {
        margin: 0 !important;
        width: 100%;
    }
}

/* ==========================================================================
   VIEW: ADMIN DASHBOARD PANEL STYLING
   ========================================================================== */

#view-admin {
    background-color: #f3f0e8;
    padding: 0;
    min-height: 100vh;
}

.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

/* Sidebar navigation */
.admin-sidebar {
    background-color: var(--charcoal-color);
    color: #FAF8F3;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(250, 248, 243, 0.05);
}

.admin-sidebar-header {
    margin-bottom: 40px;
    padding: 0 8px;
}

.admin-logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.1em;
    display: block;
    color: #FAF8F3;
}

.admin-role-badge {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-color);
    text-transform: uppercase;
    margin-top: 4px;
    display: inline-block;
}

.admin-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-nav-btn {
    background: transparent;
    border: none;
    color: rgba(250, 248, 243, 0.65);
    padding: 12px 16px;
    border-radius: 4px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-fast);
}

.admin-nav-btn i {
    width: 16px;
    height: 16px;
    stroke-width: 2px;
}

.admin-nav-btn:hover {
    background-color: rgba(250, 248, 243, 0.05);
    color: #FAF8F3;
}

.admin-nav-btn.active {
    background-color: var(--terracotta-color);
    color: #FAF8F3;
}

/* Main panel layout */
.admin-main-panel {
    padding: 40px;
    overflow-y: auto;
}

.admin-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(59, 36, 27, 0.08);
    padding-bottom: 24px;
    margin-bottom: 32px;
}

.admin-top-bar h2 {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--text-primary);
}

/* Metrics Performance Dashboard cards */
.admin-metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.metric-card {
    background-color: #FAF8F3;
    border: 1px solid rgba(59, 36, 27, 0.06);
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.01);
}

.metric-title {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.metric-value {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.metric-status {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
}

.metric-status.success {
    color: #2e7d32;
}

/* Split panel grid */
.admin-dashboard-split {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 32px;
}

.admin-panel-card {
    background-color: #FAF8F3;
    border: 1px solid rgba(59, 36, 27, 0.06);
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.01);
}

.admin-panel-card h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-card-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: -12px;
    margin-bottom: 24px;
}

/* Table styles */
.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(59, 36, 27, 0.08);
}

.admin-table td {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--text-primary);
    padding: 16px;
    border-bottom: 1px solid rgba(59, 36, 27, 0.04);
    vertical-align: middle;
}

.admin-table tr:hover td {
    background-color: rgba(59, 36, 27, 0.01);
}

/* Badges */
.status-badge {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.status-badge.success {
    background-color: rgba(46, 125, 50, 0.08);
    color: #2e7d32;
}

.status-badge.warning {
    background-color: rgba(239, 108, 0, 0.08);
    color: #ef6c00;
}

.status-badge.danger {
    background-color: rgba(198, 40, 40, 0.08);
    color: #c62828;
}

/* Quick Action lists */
.quick-actions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Tab display logic */
.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

.tab-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.tab-header-row h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--text-primary);
}

/* Form inputs styling */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    background-color: #FAF8F3;
    border: 1px solid rgba(59, 36, 27, 0.15);
    border-radius: 4px;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--text-primary);
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    border-color: var(--terracotta-color);
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .col {
    flex: 1;
}

/* Product Editor layout */
.editor-back-bar {
    margin-bottom: 24px;
}

.btn-text {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--terracotta-color);
    cursor: pointer;
}

.editor-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
}

.editor-fields-column {
    background-color: #FAF8F3;
    border: 1px solid rgba(59, 36, 27, 0.06);
    border-radius: 6px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.01);
}

.editor-section-title {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--terracotta-color);
    border-bottom: 1px solid rgba(59, 36, 27, 0.08);
    padding-bottom: 8px;
    margin-top: 24px;
    margin-bottom: 16px;
}

.editor-section-title:first-of-type {
    margin-top: 0;
}

.form-actions-row {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.editor-preview-column {
    position: sticky;
    top: 120px;
    height: max-content;
}

.preview-card-wrapper {
    background-color: #FAF8F3;
    border: 1px solid rgba(59, 36, 27, 0.06);
    border-radius: 6px;
    padding: 32px;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.01);
}

.preview-card-wrapper .product-card {
    width: 260px;
}

/* Priority Sections Reordering list */
.homepage-sections-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-priority-row {
    background-color: #FAF8F3;
    border: 1px solid rgba(59, 36, 27, 0.08);
    border-radius: 6px;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-priority-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.drag-handle {
    cursor: grab;
    color: var(--text-muted);
    font-weight: 700;
}

.section-priority-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.section-priority-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-move {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-muted);
}

.btn-move:hover {
    color: var(--terracotta-color);
}

/* Modals styles */
.admin-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(23, 21, 19, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(4px);
}

.admin-modal-container {
    background-color: #FAF8F3;
    border-radius: 6px;
    width: 100%;
    max-width: 540px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(59, 36, 27, 0.08);
}

.admin-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(59, 36, 27, 0.08);
}

.admin-modal-header h4 {
    font-size: 18px;
    color: var(--text-primary);
}

.btn-close-modal {
    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
}

.admin-modal-body {
    padding: 24px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn-block {
    width: 100%;
}

/* Responsive Admin panel collapses */
@media (max-width: 992px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(250, 248, 243, 0.05);
        padding: 20px;
    }
    .admin-sidebar-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    .admin-nav-btn span {
        display: none;
    }
    .admin-metrics-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .admin-dashboard-split {
        grid-template-columns: 1fr;
    }
    .editor-grid {
        grid-template-columns: 1fr;
    }
    .editor-preview-column {
        position: static;
    }
}

@media (max-width: 600px) {
    .admin-metrics-row {
        grid-template-columns: 1fr;
    }
    .admin-main-panel {
        padding: 20px;
    }
}

/* Admin Login Portal styling */
.admin-login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FAF8F3;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.admin-login-card {
    background-color: #FAF8F3;
    border: 1px solid rgba(59, 36, 27, 0.08);
    border-radius: 6px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 16px 48px rgba(59, 36, 27, 0.04);
    text-align: center;
}

.admin-login-badge {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--terracotta-color);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.admin-login-card h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.admin-login-desc {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.5;
}

.admin-login-card .form-group {
    text-align: left;
}

/* --- SCROLLED MAIN HEADER SHRINK STYLES --- */
@media (min-width: 769px) {
    .main-header.scrolled {
        box-shadow: 0 4px 18px rgba(50, 29, 22, 0.08) !important;
    }
    
    .main-header.scrolled .header-row-top {
        height: 80px !important; /* shrinks from 140px to 80px */
    }
    
    .main-header.scrolled .brand-logo-image-wrapper {
        width: 44px !important;
        height: 44px !important;
        margin-bottom: 4px !important;
    }
    
    .main-header.scrolled .brand-logo {
        font-size: 28px !important; /* reduce from 48px to 28px */
        letter-spacing: 0.16em !important;
        line-height: 1 !important;
        margin-bottom: 0 !important;
    }
    
    .main-header.scrolled .brand-subtitle {
        font-size: 0px !important;
        margin-top: 0px !important;
        opacity: 0 !important;
        pointer-events: none !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}

/* --- FRAGRANCE TRACE WISP ANIMATION --- */
.scent-wisp-svg {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 48px;
    opacity: 0;
    pointer-events: none;
    animation: scentRise 2.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 1.1s;
}

@keyframes scentRise {
    0% {
        opacity: 0;
        transform: translate(-50%, 15px) scaleY(0.7) scaleX(0.8);
        stroke-dasharray: 60;
        stroke-dashoffset: 60;
    }
    15% {
        opacity: 0.75;
    }
    40% {
        stroke-dashoffset: 20;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -24px) scaleY(1.1) scaleX(1);
        stroke-dashoffset: 0;
        stroke-dasharray: 60;
    }
}
