/* =====================================================
   ARRAH — Premium Botanical Skincare Design System
   Inspired by: Dior Beauty + Forest Essentials + Charlotte Tilbury
   ===================================================== */

/* ─── Google Fonts Import ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
    /* Colors */
    --color-cream: #F8F4EE;
    --color-cream-light: #FCF9F5;
    --color-beige: #EDE3D7;
    --color-beige-dark: #DDD0C0;
    --color-gold: #C9A35B;
    --color-gold-light: #D4B87A;
    --color-gold-dark: #A8833F;
    --color-gold-shimmer: #E8D5A8;
    --color-forest: #0D483B;
    --color-forest-light: #166050;
    --color-forest-dark: #07261F;
    --color-charcoal: #1E1E1E;
    --color-charcoal-light: #2D2D2D;
    --color-white: #FFFFFF;
    --color-success: #2E7D32;
    --color-error: #C62828;
    --color-warning: #F57F17;

    /* Text Colors */
    --text-primary: #1E1E1E;
    --text-secondary: #5C5C5C;
    --text-muted: #8A8A8A;
    --text-light: #B5B5B5;
    --text-inverse: #FFFFFF;
    --text-gold: #C9A35B;

    /* Typography */
    --font-hero: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-heading: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    --text-8xl: 6rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Layout */
    --max-width: 1400px;
    --max-width-narrow: 900px;
    --max-width-wide: 1600px;
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    --container-padding: 60px;
    --container-padding-mobile: 20px;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    --border-color: #E0D5C7;
    --border-light: #F0E8DD;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(30, 30, 30, 0.05);
    --shadow-md: 0 4px 6px rgba(30, 30, 30, 0.07);
    --shadow-lg: 0 10px 25px rgba(30, 30, 30, 0.08);
    --shadow-xl: 0 20px 50px rgba(30, 30, 30, 0.1);
    --shadow-gold: 0 8px 30px rgba(201, 163, 91, 0.2);
    --shadow-card: 0 2px 20px rgba(30, 30, 30, 0.06);
    --shadow-hover: 0 15px 40px rgba(30, 30, 30, 0.12);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-slower: 700ms ease;
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-navbar: 500;
    --z-overlay: 600;
    --z-drawer: 700;
    --z-modal: 800;
    --z-popup: 900;
    --z-tooltip: 1000;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden; /* Prevent horizontal scrolling on iOS Safari */
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

ul, ol {
    list-style: none;
}

/* ─── Typography ─── */
.font-hero { font-family: var(--font-hero); }
.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-hero);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 { font-size: var(--text-7xl); }
h2 { font-size: var(--text-5xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

.hero-title {
    font-family: var(--font-hero);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.section-title {
    font-family: var(--font-hero);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 650px;
    line-height: 1.6;
}

.overline {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
}

.price {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
}

.price-compare {
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 400;
}

.price-save {
    color: var(--color-success);
    font-weight: 500;
    font-size: var(--text-sm);
}

/* ─── Container ─── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-wide {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ─── Section ─── */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-cream { background-color: var(--color-cream); }
.section-beige { background-color: var(--color-beige); }
.section-white { background-color: var(--color-white); }
.section-dark { background-color: var(--color-charcoal); color: var(--text-inverse); }
.section-forest { background-color: var(--color-forest); color: var(--text-inverse); }

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-header .overline {
    margin-bottom: var(--space-4);
    display: block;
}

.section-header .section-subtitle {
    margin: var(--space-4) auto 0;
}

/* ─── Gold Divider ─── */
.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin: var(--space-6) 0;
}

.gold-divider::before,
.gold-divider::after {
    content: '';
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.gold-divider .diamond {
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    transform: rotate(45deg);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 14px 36px;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--color-forest);
    color: var(--text-inverse);
    border-color: var(--color-forest);
}

.btn-primary:hover {
    background: var(--color-forest-light);
    border-color: var(--color-forest-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-white);
    border-color: var(--color-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-lg {
    padding: 16px 44px;
    font-size: var(--text-base);
    letter-spacing: 0.08em;
}

.btn-outline {
    background: transparent;
    color: var(--color-forest);
    border-color: var(--color-forest);
}

.btn-outline:hover {
    background: var(--color-forest);
    color: var(--text-inverse);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-outline-gold:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-forest);
    border-color: var(--color-white);
}

.btn-white:hover {
    background: var(--color-cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-dark {
    background: var(--color-charcoal);
    color: var(--text-inverse);
    border-color: var(--color-charcoal);
}

.btn-dark:hover {
    background: var(--color-charcoal-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 48px;
    font-size: var(--text-base);
}

.btn-sm {
    padding: 10px 24px;
    font-size: var(--text-xs);
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-block {
    width: 100%;
}

/* ─── Navbar ─── */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: var(--z-navbar);
    padding: 0 var(--container-padding);
    transition: all var(--transition-base);
    height: 80px;
    display: flex;
    align-items: center;
}

/* Navbar is always visible — initial state class is set in server-rendered HTML */
.navbar.navbar-transparent,
.navbar.navbar-solid,
.navbar.navbar-scrolled {
    opacity: 1;
}

.navbar-transparent {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-transparent .navbar-link {
    color: #FFFFFF !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4), 0 0 2px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.navbar-transparent .navbar-link:hover,
.navbar-transparent .navbar-link.active {
    color: var(--color-gold-light) !important;
    text-shadow: 0 1px 8px rgba(201, 163, 91, 0.4);
}

.navbar-transparent .navbar-link::after {
    background: var(--color-gold-light);
}

.navbar-transparent .navbar-action-btn {
    color: #FFFFFF !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.navbar-transparent .navbar-action-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-gold-light) !important;
}

.navbar-transparent .mobile-menu-btn span {
    background: var(--color-white);
}

.navbar-transparent .navbar-dropdown-arrow {
    color: #FFFFFF !important;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

.navbar-transparent .navbar-logo img {
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3)) brightness(1.1);
}

.navbar-scrolled {
    background: rgba(248, 244, 238, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border-light);
    height: 70px;
    top: 0;
}

.navbar-solid {
    background: rgba(248, 244, 238, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border-light);
}

.navbar-inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo img {
    height: 70px;
    width: auto;
    transition: all var(--transition-base);
    filter: drop-shadow(0 2px 8px rgba(201, 163, 91, 0.18));
}

.navbar-logo:hover img {
    transform: scale(1.04);
    filter: drop-shadow(0 4px 14px rgba(201, 163, 91, 0.38)) brightness(1.08);
}

.navbar-scrolled .navbar-logo img {
    height: 55px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: var(--space-10);
}

.navbar-link {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    position: relative;
    padding: var(--space-2) 0;
    transition: color var(--transition-base);
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

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

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

.navbar-actions {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.navbar-action-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-base);
    position: relative;
    color: var(--text-primary);
}

.navbar-action-btn:hover {
    background: var(--color-beige);
    color: var(--color-gold);
}

.navbar-action-btn svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--text-primary);
    transition: all var(--transition-base);
}

/* ─── Navbar Dropdown (Shop All) ─── */
.navbar-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-dropdown-arrow {
    width: 12px;
    height: 12px;
    margin-left: 4px;
    display: inline-block;
    vertical-align: middle;
    transition: transform var(--transition-base);
    stroke-width: 2.5;
}

.navbar-dropdown-wrapper:hover .navbar-dropdown-arrow {
    transform: rotate(180deg);
}

.navbar-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 520px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(30, 30, 30, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
    z-index: var(--z-dropdown);
    padding: 0;
}

.navbar-dropdown-wrapper:hover .navbar-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Bridge the gap between trigger and dropdown so hover doesn't break */
.navbar-dropdown::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}

/* Hide dropdown on mobile */
@media (max-width: 991px) {
    .navbar-dropdown {
        display: none !important;
    }
    .navbar-dropdown-arrow {
        display: none;
    }
}

.navbar-dropdown-inner {
    padding: 24px;
}

.navbar-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
}

.navbar-dropdown-title {
    font-family: var(--font-hero);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-forest);
    letter-spacing: -0.01em;
}

.navbar-dropdown-viewall {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    transition: color var(--transition-base);
}

.navbar-dropdown-viewall:hover {
    color: var(--color-gold-dark);
}

.navbar-dropdown-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

.navbar-dropdown-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 9px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-decoration: none;
    gap: 10px;
    border: 1px solid transparent;
}

.navbar-dropdown-product:hover {
    background: #F3EDE2;
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(201, 163, 91, 0.22), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.navbar-dropdown-product:hover .navbar-dropdown-product-name {
    color: var(--color-forest);
    font-weight: 600;
}

.navbar-dropdown-product-img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.navbar-dropdown-product:hover .navbar-dropdown-product-img {
    border-color: var(--color-gold);
    transform: scale(1.06);
    box-shadow: 0 6px 15px rgba(201, 163, 91, 0.18);
}

.navbar-dropdown-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navbar-dropdown-product-name {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
    max-width: 120px;
    text-shadow: none;
}

.navbar-dropdown-product-price {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-gold-dark);
    text-shadow: none;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--color-forest);
    color: var(--text-inverse);
    text-align: center;
    padding: 10px var(--container-padding);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.announcement-bar .gold {
    color: var(--color-gold-light);
    font-weight: 500;
}

/* ─── Hero Section ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--color-cream);
    padding-top: 130px; /* Increased from 80px to clear the header height */
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

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

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

.hero-overline {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.hero-overline::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color-gold);
}

.hero .hero-title {
    margin-bottom: var(--space-6);
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-10);
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-product-image {
    position: relative;
    z-index: 5;
    width: 100%;
    display: flex;
    justify-content: center;
    animation: heroCardFloat 6s ease-in-out infinite;
}

@keyframes heroCardFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-12px) translateX(4px); }
}

.hero-carousel-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 20px;
    width: 100%;
    max-width: 420px; /* Increased from 400px to widen the images slightly */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-carousel-media-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 1.2; /* Adjusted from 1 to widen the image area a bit while maintaining layout height */
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.15);
}

/* Advanced Direction-Aware Parallax Sliding Transitions */
.hero-carousel-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Entering transitions */
.hero-carousel-img.enter-right {
    transform: scale(1.1) translateX(100%);
    opacity: 0;
    z-index: 3;
}

.hero-carousel-img.enter-left {
    transform: scale(0.9) translateX(-100%);
    opacity: 0;
    z-index: 3;
}

/* Exiting transitions */
.hero-carousel-img.exit-left {
    transform: scale(0.9) translateX(-30%);
    opacity: 0;
    z-index: 1;
}

.hero-carousel-img.exit-right {
    transform: scale(1.1) translateX(30%);
    opacity: 0;
    z-index: 1;
}

/* Staggered Text Animations */
.hero-carousel-info-group {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-carousel-info-group.slide-fade-out {
    opacity: 0;
    transform: translateY(-15px);
}

.hero-carousel-info-group.slide-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-botanical {
    position: absolute;
    z-index: 2;
    opacity: 0.15;
    pointer-events: none;
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all var(--transition-base);
}

.hero-dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
}

/* ─── Product Card ─── */
.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
    border: 1px solid var(--border-light);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(201, 163, 91, 0.12);
    border-color: var(--color-gold-light);
}

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(180deg, var(--color-cream-light) 0%, var(--color-beige) 100%);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform var(--transition-slow);
}

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

.product-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-gold);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 5;
}

.product-card-wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all var(--transition-base);
    opacity: 0;
}

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

.product-card-wishlist:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

.product-card-wishlist svg {
    width: 18px;
    height: 18px;
}

.product-card-quick-add {
    display: none;
}

/* Always-visible Add to Cart button */
.product-card-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    background: var(--color-forest);
    color: var(--color-white);
    border: 2px solid var(--color-forest);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-card-add-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.product-card-add-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 163, 91, 0.35);
}

.product-card-add-btn:hover svg {
    transform: scale(1.15);
}

.product-card-add-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(201, 163, 91, 0.25);
}

.product-card-info {
    padding: 20px;
}

.product-card-name {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 500;
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.product-card-tagline {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-3);
}

.product-card-rating {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.stars {
    display: flex;
    gap: 2px;
    color: var(--color-gold);
}

.stars svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.rating-count {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.product-card-price .price {
    font-size: var(--text-lg);
}

.product-card-price .price-compare {
    font-size: var(--text-sm);
}

/* ─── Bundle Card ─── */
.bundle-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    position: relative;
}

.bundle-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.bundle-card.popular {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.bundle-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-white);
    text-align: center;
    padding: 8px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    z-index: 5;
}

.bundle-card-products {
    display: flex;
    justify-content: center;
    gap: -10px;
    padding: 30px 20px 20px;
    background: var(--color-cream-light);
}

.bundle-card.popular .bundle-card-products {
    padding-top: 50px;
}

.bundle-card-products img {
    width: 80px;
    height: 100px;
    object-fit: contain;
    margin: 0 -5px;
    transition: transform var(--transition-base);
}

.bundle-card:hover .bundle-card-products img:nth-child(2) {
    transform: translateY(-8px);
}

.bundle-card-info {
    padding: 24px;
    text-align: center;
}

.bundle-card-name {
    font-family: var(--font-hero);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.bundle-card-items {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-4);
}

.bundle-card-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.bundle-card-save {
    display: inline-block;
    background: rgba(46, 125, 50, 0.1);
    color: var(--color-success);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

/* ─── Routine Section ─── */
.routine-section {
    position: relative;
    padding: 65px 0;
}

.routine-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-5);
    flex-wrap: wrap;
}

.routine-step {
    text-align: center;
    position: relative;
}

.routine-step-image {
    width: 200px;
    height: 290px;
    margin: 0 auto var(--space-4);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all var(--transition-base);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(201, 163, 91, 0.1);
}

.routine-step:hover .routine-step-image {
    box-shadow: var(--shadow-gold);
    border-color: var(--color-gold-light);
    transform: translateY(-5px);
}

.routine-step-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-base);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.routine-step-name {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-1);
}

.routine-step-price {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.routine-arrow {
    color: var(--color-gold);
    font-size: var(--text-3xl);
    font-weight: 300;
    animation: arrowPulse 2s ease-in-out infinite;
}

/* ─── Concern Cards ─── */
.concern-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-6);
}

.concern-card {
    text-align: center;
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    cursor: pointer;
}

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

.concern-card-image {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-4);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-cream);
    transition: border-color var(--transition-base);
}

.concern-card:hover .concern-card-image {
    border-color: var(--color-gold);
}

.concern-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.concern-card-name {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─── Product Spotlight ─── */
.spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.spotlight.reverse {
    direction: rtl;
}

.spotlight.reverse > * {
    direction: ltr;
}

.spotlight-image {
    position: relative;
}

.spotlight-image img {
    border-radius: var(--radius-xl);
    max-height: 600px;
    margin: 0 auto;
    object-fit: contain;
}

.spotlight-image .floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-gold);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
}

.spotlight-info .overline {
    margin-bottom: var(--space-4);
}

.spotlight-info h3 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
}

.spotlight-info .tagline {
    font-family: var(--font-hero);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.spotlight-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.spotlight-benefit {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.spotlight-benefit-icon {
    width: 36px;
    height: 36px;
    background: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-forest);
    flex-shrink: 0;
}

.spotlight-benefit-icon svg {
    width: 18px;
    height: 18px;
}

.spotlight-rating {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.spotlight-rating-text {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.spotlight-price-block {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.spotlight-price-block .price {
    font-size: var(--text-3xl);
    font-weight: 700;
}

.spotlight-price-block .price-compare {
    font-size: var(--text-xl);
}

.spotlight-ctas {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.spotlight-recommended {
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-light);
}

.spotlight-recommended h5 {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--space-4);
}

.spotlight-recommended-items {
    display: flex;
    gap: var(--space-4);
}

.spotlight-recommended-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: var(--color-cream-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
}

.spotlight-recommended-item:hover {
    background: var(--color-cream);
    box-shadow: var(--shadow-sm);
}

.spotlight-recommended-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.spotlight-recommended-item span {
    font-size: var(--text-sm);
    font-weight: 500;
}

/* ─── Ingredients Section ─── */
.ingredients-scroll {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    padding-bottom: var(--space-6);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.ingredients-scroll::-webkit-scrollbar {
    display: none;
}

@media (min-width: 1024px) {
    .ingredients-scroll {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        padding-bottom: 0;
    }
}

.ingredient-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    text-align: center;
    padding: var(--space-8) var(--space-6);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold-light);
}

.ingredient-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-4);
    background: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
}

.ingredient-name {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 500;
    margin-bottom: var(--space-2);
}

.ingredient-benefit {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.5;
}

/* ─── Testimonials ─── */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    padding: var(--space-8);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto var(--space-4);
    overflow: hidden;
    border: 2px solid var(--color-gold-light);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-family: var(--font-hero);
    font-size: var(--text-base);
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-1);
}

.testimonial-location {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* ─── FAQ ─── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: var(--space-6) 0;
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color var(--transition-base);
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-base);
    flex-shrink: 0;
    color: var(--color-gold);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: var(--space-6);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: var(--text-sm);
}

/* ─── Newsletter ─── */
.newsletter-section {
    background: var(--color-forest);
    color: var(--text-inverse);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 163, 91, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: var(--space-8) auto 0;
    gap: 0;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: 1px solid rgba(255,255,255,0.2);
    border-right: none;
    background: rgba(255,255,255,0.1);
    color: var(--text-inverse);
    font-size: var(--text-base);
    border-radius: var(--radius-full) 0 0 var(--radius-full);
    outline: none;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-input:focus {
    border-color: var(--color-gold);
    background: rgba(255,255,255,0.15);
}

.newsletter-btn {
    padding: 16px 32px;
    background: var(--color-gold);
    color: var(--color-white);
    border: none;
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--transition-base);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--color-gold-dark);
}

/* ─── Footer ─── */
.footer {
    background: linear-gradient(180deg, #07261F 0%, #031411 100%);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
    border-top: 1.5px solid rgba(201, 163, 91, 0.25);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: var(--space-10);
    padding-bottom: 60px;
}

.footer-brand p {
    font-size: var(--text-sm);
    line-height: 1.8;
    margin-top: var(--space-4);
    max-width: 300px;
}

.footer-brand img {
    height: 80px;
    filter: drop-shadow(0 2px 10px rgba(201, 163, 91, 0.3));
    transition: transform var(--transition-base);
}
.footer-brand img:hover {
    transform: scale(1.04);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-white);
    margin-bottom: var(--space-6);
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    font-size: var(--text-sm);
    transition: color var(--transition-base);
}

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

.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: var(--space-6) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.4);
}

.footer-badges {
    display: flex;
    gap: var(--space-6);
    align-items: center;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.5);
}

.footer-badge svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
}

/* ─── Cart Drawer ─── */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    height: 100dvh;
    background: var(--color-white);
    z-index: var(--z-drawer);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    display: flex;
    flex-direction: column;
}

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

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--border-light);
}

.cart-drawer-title {
    font-family: var(--font-hero);
    font-size: var(--text-xl);
}

.cart-drawer-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--transition-base);
}

.cart-drawer-close:hover {
    background: var(--color-cream);
}

.cart-drawer-close svg {
    width: 20px;
    height: 20px;
}

/* Free Shipping Progress */
.shipping-progress {
    padding: var(--space-4) var(--space-6);
    background: var(--color-cream-light);
    border-bottom: 1px solid var(--border-light);
}

.shipping-progress-text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--space-2);
}

.shipping-progress-text strong {
    color: var(--color-forest);
    font-weight: 600;
}

.shipping-progress-bar {
    height: 4px;
    background: var(--color-beige);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.shipping-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold), var(--color-forest));
    border-radius: var(--radius-full);
    transition: width var(--transition-slow);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}

.cart-drawer-items {
    padding: var(--space-4) var(--space-6);
}

.cart-item {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-light);
}

.cart-item-image {
    width: 64px;
    height: 80px;
    background: var(--color-cream-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

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

.cart-item-name {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-1);
}

.cart-item-price {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-3);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    width: fit-content;
}

.cart-item-qty button {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    transition: background var(--transition-fast);
}

.cart-item-qty button:hover {
    background: var(--color-cream);
}

.cart-item-qty span {
    width: 36px;
    text-align: center;
    font-size: var(--text-sm);
    font-weight: 500;
}

.cart-item-remove {
    color: var(--text-muted);
    font-size: var(--text-xs);
    text-decoration: underline;
    margin-top: var(--space-2);
    display: inline-block;
}

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

/* Cart Upsell */
.cart-upsell {
    padding: var(--space-3) var(--space-6);
    border-top: 1px solid var(--border-light);
    background: var(--color-cream-light);
}

.cart-upsell-title {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--space-3);
}

.cart-upsell-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-3);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.cart-upsell-item img {
    width: 50px;
    height: 60px;
    object-fit: contain;
}

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

.cart-upsell-item-name {
    font-size: var(--text-sm);
    font-weight: 500;
}

.cart-upsell-item-price {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.cart-upsell-add {
    padding: 6px 16px;
    background: var(--color-forest);
    color: var(--text-inverse);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
    transition: background var(--transition-base);
}

.cart-upsell-add:hover {
    background: var(--color-forest-light);
}

.cart-drawer-footer {
    padding: var(--space-4) var(--space-6);
    border-top: 1px solid var(--border-light);
    background: var(--color-white);
    flex-shrink: 0;
}

.cart-coupon-input {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.cart-coupon-input input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    outline: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.cart-coupon-input button {
    padding: 10px 20px;
    background: var(--color-beige);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
}

.cart-coupon-input button:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

.cart-summary {
    margin-bottom: var(--space-4);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
}

.cart-summary-row.total {
    font-weight: 600;
    font-size: var(--text-lg);
    padding-top: var(--space-3);
    border-top: 1px solid var(--border-color);
    margin-top: var(--space-2);
}

.cart-checkout-btn {
    width: 100%;
    padding: 16px;
    background: var(--color-forest);
    color: var(--text-inverse);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.cart-checkout-btn:hover {
    background: var(--color-forest-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* ─── Sticky Purchase Bar ─── */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: var(--color-charcoal);
    color: var(--text-inverse);
    padding: 14px var(--container-padding);
    transform: translateY(100%);
    transition: transform var(--transition-base);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

.sticky-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-bar-product {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.sticky-bar-star {
    color: var(--color-gold);
    font-size: var(--text-lg);
}

.sticky-bar-name {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: var(--text-sm);
}

.sticky-bar-pricing {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.sticky-bar-pricing .price {
    color: var(--color-white);
    font-size: var(--text-lg);
}

.sticky-bar-pricing .price-compare {
    color: rgba(255,255,255,0.5);
    font-size: var(--text-sm);
}

.sticky-bar-save {
    background: rgba(46, 125, 50, 0.3);
    color: #4CAF50;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
}

.sticky-bar-btn {
    padding: 12px 32px;
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all var(--transition-base);
}

.sticky-bar-btn:hover {
    background: var(--color-gold-light);
    transform: translateY(-1px);
}

/* ─── Welcome Popup ─── */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: var(--z-popup);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    backdrop-filter: blur(4px);
}

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

.popup {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 90%;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-spring);
    box-shadow: var(--shadow-xl);
}

.popup-overlay.active .popup {
    transform: scale(1) translateY(0);
}

.popup-image {
    height: 200px;
    background: linear-gradient(135deg, var(--color-forest), var(--color-forest-dark));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.popup-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 163, 91, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.popup-coupon-code {
    font-family: var(--font-hero);
    font-size: var(--text-4xl);
    color: var(--color-gold);
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
}

.popup-body {
    padding: var(--space-8);
    text-align: center;
}

.popup-title {
    font-family: var(--font-hero);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.popup-subtitle {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin-bottom: var(--space-6);
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.popup-input {
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    text-align: center;
    font-size: var(--text-base);
    outline: none;
    transition: border-color var(--transition-base);
}

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

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    z-index: 10;
    transition: background var(--transition-base);
}

.popup-close:hover {
    background: rgba(255,255,255,0.3);
}

/* ─── Instagram Grid ─── */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(33, 74, 59, 0);
    transition: background var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-item:hover::after {
    background: rgba(33, 74, 59, 0.3);
}

/* ─── Trust Badges ─── */
.trust-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-4) 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--color-forest);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(201, 163, 91, 0.18);
    transition: all var(--transition-base);
    flex: 1 1 180px;
    justify-content: center;
}

.trust-badge:hover {
    transform: translateY(-2px);
    background: var(--color-white);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-sm);
}

.trust-badge-icon {
    width: 38px;
    height: 38px;
    background: var(--color-forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.trust-badge:hover .trust-badge-icon {
    background: var(--color-gold);
    transform: rotate(360deg);
}

.trust-badge-icon svg {
    width: 18px;
    height: 18px;
}

/* ─── Animations ─── */
@keyframes heroFloat {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(calc(-50% - 15px)) translateX(5px); }
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.5; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(5px); }
}

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

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

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 163, 91, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(201, 163, 91, 0); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.animate-fade-in.visible {
    opacity: 1;
}

/* ─── Utility Classes ─── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-gold { color: var(--color-gold); }
.text-forest { color: var(--color-forest); }
.text-white { color: var(--color-white); }
.text-muted { color: var(--text-muted); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.gap-10 { gap: var(--space-10); }
.gap-12 { gap: var(--space-12); }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 991px) {
    .grid-2, .grid-4, .grid-5 {
        grid-template-columns: 1fr;
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }

.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ─── AI Quiz Floating Button ─── */
.ai-quiz-btn {
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: var(--z-sticky);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-forest), var(--color-forest-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    animation: goldPulse 3s ease-in-out infinite;
    transition: transform var(--transition-base);
}

.ai-quiz-btn:hover {
    transform: scale(1.1);
}

.ai-quiz-btn svg {
    width: 28px;
    height: 28px;
}

.ai-quiz-tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    color: var(--text-primary);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    :root {
        --section-padding: 70px;
        --container-padding: 30px;
    }

    .navbar-menu { display: none; }
    .mobile-menu-btn { display: flex; }

    .hero-product-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        max-width: 300px;
        margin: var(--space-8) auto 0;
    }

    .hero {
        text-align: center;
        padding-top: 120px;
    }

    /* Hero grid → stack */
    .hero .container > div[style*="grid-template-columns: 1fr 1.1fr"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-ctas {
        justify-content: center;
    }

    .spotlight {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .spotlight.reverse {
        direction: ltr;
    }

    .concern-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 20px);
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    h1 { font-size: var(--text-5xl); }
    h2 { font-size: var(--text-4xl); }

    /* Brand story grid → stack */
    #brand-story .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    /* Product detail grid → stack */
    .grid.grid-2.gap-12 {
        grid-template-columns: 1fr !important;
        gap: var(--space-8) !important;
    }

    /* Product gallery sticky removal on tablet */
    .product-gallery-container {
        position: relative !important;
        top: 0 !important;
    }

    /* FBT section layout fix */
    div[style*="lg-flex-direction: row"] {
        flex-direction: column !important;
    }

    /* FBT pricing box full width on tablet */
    div[style*="max-width: 320px; border-left:"] {
        max-width: 100% !important;
        border-left: none !important;
        border-top: 1px solid var(--border-light) !important;
        padding-left: 0 !important;
        padding-top: 20px !important;
    }

    /* Grid-3 → 2 columns for shop products */
    .grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 36px;
        --container-padding: 16px;
    }

    .hero-title {
        font-size: var(--text-4xl);
    }

    .hero {
        min-height: auto !important;
        height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 40px !important;
    }

    /* Hero grid → stack for mobile */
    .hero .container > div[style*="grid-template-columns: 1fr 1.1fr"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .hero-carousel-card {
        max-width: 280px !important;
        margin: 0 auto;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 12px !important;
    }

    .hero-ctas .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .concern-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .routine-steps {
        flex-direction: column;
    }

    .routine-arrow {
        transform: rotate(90deg);
    }

    .routine-step-image {
        width: 180px !important;
        height: 260px !important;
    }

    .spotlight-benefits {
        grid-template-columns: 1fr;
    }

    .spotlight-image img {
        max-height: 350px !important;
    }

    .trust-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3);
    }

    .trust-badge {
        flex: none;
        padding: 10px 12px;
        font-size: 10px;
        justify-content: flex-start;
    }

    .trust-badge:last-child {
        grid-column: 1 / -1;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        border-radius: var(--radius-full);
        border-right: 1px solid rgba(255,255,255,0.2);
    }

    .newsletter-btn {
        border-radius: var(--radius-full);
    }

    .testimonial-card {
        flex: 0 0 calc(100% - 20px);
    }

    .sticky-bar-inner {
        flex-wrap: wrap;
        gap: var(--space-3);
        justify-content: center;
    }

    .sticky-bar-name {
        display: none;
    }

    /* Grid adjustments */
    .grid-2, .grid-3 {
        grid-template-columns: 1fr !important;
    }

    /* Product detail page mobile */
    .product-gallery-container {
        flex-direction: column-reverse !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .product-thumbnails {
        flex-direction: row !important;
        width: auto !important;
        justify-content: center !important;
    }

    .main-image-wrapper {
        max-width: 100% !important;
    }

    /* Shop header banner mobile */
    .shop-header-banner {
        padding: 120px 0 60px !important;
    }

    .shop-header-banner h1 {
        font-size: clamp(1.8rem, 5vw, 3rem) !important;
    }

    /* FBT section mobile */
    div[style*="display: flex; flex-wrap: wrap; align-items: center; gap: 16px; flex: 1;"] {
        justify-content: center !important;
    }

    div[style*="text-align: center; width: 120px;"] {
        width: 80px !important;
    }

    div[style*="text-align: center; width: 120px;"] img {
        width: 70px !important;
        height: 70px !important;
    }

    /* Reviews header stack */
    .reviews-header-block {
        flex-direction: column !important;
        gap: 24px !important;
    }

    .rating-summary-box {
        border-right: none !important;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 20px;
    }

    .review-form-grid {
        grid-template-columns: 1fr !important;
    }

    /* Brand story section mobile */
    #brand-story .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    #brand-story div[style*="position: relative; padding-right: 10px;"] {
        padding-right: 0 !important;
    }

    #brand-story div[style*="max-width: 380px"] {
        max-width: 300px !important;
    }

    /* Announcement bar mobile */
    .announcement-bar {
        font-size: 10px;
        padding: 8px 16px;
        letter-spacing: 0.08em;
    }

    h1 { font-size: var(--text-4xl); }
    h2 { font-size: var(--text-3xl); }
    h3 { font-size: var(--text-2xl); }

    /* Quantity selector and buy buttons mobile */
    div[style*="display: flex; gap: var(--space-4);"] {
        flex-direction: column !important;
    }

    /* Accordion content mobile */
    .accordion-item.active .accordion-content {
        max-height: 400px;
    }

    /* Spotlight CTAs mobile */
    .spotlight-ctas {
        flex-direction: column;
    }

    .spotlight-ctas .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
    }

    .concern-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3);
    }

    .concern-card {
        padding: var(--space-4);
    }

    .concern-card-image {
        width: 80px;
        height: 80px;
    }

    .spotlight-ctas {
        flex-direction: column;
    }

    .spotlight-ctas .btn {
        width: 100%;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bundle-card-products img {
        width: 50px;
        height: 70px;
    }

    .trust-badges {
        grid-template-columns: 1fr 1fr;
    }

    .trust-badge {
        flex: none;
        padding: 10px 10px;
        font-size: 9px;
    }

    /* Product card info padding */
    .product-card-info {
        padding: 14px;
    }

    .product-card-image img {
        padding: 12px;
    }

    /* Footer bottom stack */
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ─── AI Skin Quiz Drawer & Option Cards ─── */
.quiz-option-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px;
    background: var(--color-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
}

.quiz-option-card:hover {
    border-color: var(--color-gold-light);
    background: var(--color-cream-light);
    transform: translateY(-1px);
}

.quiz-option-card.active {
    border-color: var(--color-gold);
    background: #FAF6EE;
    box-shadow: 0 4px 12px rgba(201, 163, 91, 0.08);
}

.quiz-option-title {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-forest);
}

.quiz-option-desc {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.quiz-step {
    animation: fadeIn var(--transition-base);
}

.quiz-recommendation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-white);
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.quiz-recommendation-img {
    width: 48px;
    height: 48px;
    background: var(--color-cream-light);
    border-radius: var(--radius-sm);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz-recommendation-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.quiz-recommendation-info {
    flex: 1;
    font-family: var(--font-heading);
}

.quiz-recommendation-name {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--text-primary);
}

.quiz-recommendation-price {
    font-size: var(--text-xs);
    color: var(--color-gold-dark);
    font-weight: 600;
}

/* ─── Mobile Menu Drawer ─── */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 80vw;
    height: 100vh;
    background: var(--color-cream);
    z-index: var(--z-drawer);
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--border-light);
    background: var(--color-white);
}

.mobile-menu-title {
    font-family: var(--font-hero);
    font-size: var(--text-xl);
    color: var(--color-forest);
    font-weight: 600;
}

.mobile-menu-close {
    font-size: var(--text-2xl);
    color: var(--text-secondary);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

/* Hide on desktop */
@media (min-width: 1025px) {
    .mobile-menu-drawer,
    .mobile-overlay {
        display: none !important;
    }
}

/* ─── Welcome Popup / Modal ─── */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: var(--z-popup);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    padding: 20px;
}

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

.popup-content {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    max-width: 460px;
    width: 100%;
    padding: 0;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(201, 163, 91, 0.15);
    transform: scale(0.9) translateY(30px);
    transition: transform var(--transition-slow) cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity var(--transition-base);
    opacity: 0;
    overflow: hidden;
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Close button */
.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    color: var(--text-secondary);
    transition: all var(--transition-base);
    z-index: 10;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.12);
    color: var(--text-primary);
    transform: rotate(90deg);
}

/* Header area with decorative top */
.popup-header {
    background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-forest-dark) 100%);
    padding: 28px 32px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.popup-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 163, 91, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.popup-tag {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold-light);
    position: relative;
    z-index: 1;
}

.popup-code-badge {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    padding: 6px 18px;
    border-radius: var(--radius-full);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(201, 163, 91, 0.3);
}

/* Body */
.popup-body {
    padding: 32px 32px 28px;
    text-align: center;
}

.popup-title {
    font-family: var(--font-hero);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: var(--space-3);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.popup-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-6);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

/* Form */
.popup-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.popup-input {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    color: var(--text-primary);
    background: var(--color-cream-light);
    outline: none;
    transition: all var(--transition-base);
    text-align: center;
}

.popup-input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.popup-input:focus {
    border-color: var(--color-gold);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(201, 163, 91, 0.12);
}

/* Popup success state */
.popup-success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) 0;
}

.popup-success-message svg {
    width: 48px;
    height: 48px;
    color: var(--color-success);
}

.popup-success-message p {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* Mobile responsiveness */
@media (max-width: 520px) {
    .popup-content {
        max-width: 100%;
        border-radius: var(--radius-lg);
        margin: 10px;
    }

    .popup-header {
        padding: 22px 20px 20px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .popup-body {
        padding: 24px 20px 22px;
    }

    .popup-title {
        font-size: var(--text-xl);
    }

    .popup-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
}

/* ─── Coupon Pills Styles ─── */
.coupon-item-pill {
    transition: all 0.25s ease-out;
}
.coupon-item-pill:hover {
    background: rgba(201, 163, 91, 0.14) !important;
    border-style: solid !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 163, 91, 0.15);
}

/* Coupon Eligibility States */
.coupon-item-pill.eligible {
    background: rgba(46, 125, 50, 0.06) !important;
    border: 1.5px solid var(--color-success) !important;
    border-style: solid !important;
    position: relative;
}
.coupon-item-pill.eligible::before {
    content: '✓';
    position: absolute;
    top: -6px;
    right: -6px;
    width: 16px;
    height: 16px;
    background: var(--color-success);
    color: white;
    border-radius: 50%;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.coupon-item-pill.ineligible {
    opacity: 0.45;
    cursor: not-allowed !important;
    pointer-events: none;
    border-color: var(--text-light) !important;
    background: rgba(0,0,0,0.02) !important;
}
.coupon-item-pill .coupon-ineligible-msg {
    display: none;
    font-size: 9px;
    color: var(--color-error);
    font-weight: 500;
    margin-top: 2px;
}
.coupon-item-pill.ineligible .coupon-ineligible-msg {
    display: block;
}

/* ─── Confetti Celebration ─── */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    overflow: hidden;
}
.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    top: -10px;
    opacity: 0;
    animation: confettiFall 2.5s ease-out forwards;
}
@keyframes confettiFall {
    0% { opacity: 1; transform: translateY(0) rotate(0deg) scale(1); }
    15% { opacity: 1; }
    100% { opacity: 0; transform: translateY(100vh) rotate(720deg) scale(0.3); }
}
.confetti-celebration-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 10001;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 24px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    text-align: center;
    animation: celebrationPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    pointer-events: none;
}
@keyframes celebrationPop {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

/* ─── Checkout Mobile Responsive ─── */
.checkout-mobile-sticky {
    display: none;
}
.checkout-summary-toggle {
    display: none;
}
@media (max-width: 768px) {
    .checkout-mobile-sticky {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: var(--z-sticky);
        background: var(--color-white);
        padding: 12px 16px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border-light);
    }
    .checkout-summary-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        background: var(--color-cream-light);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-md);
        cursor: pointer;
        margin-bottom: 16px;
        font-family: var(--font-heading);
        font-size: var(--text-sm);
        font-weight: 500;
    }
    .checkout-summary-toggle svg {
        width: 16px;
        height: 16px;
        transition: transform 0.3s;
    }
    .checkout-summary-toggle.open svg {
        transform: rotate(180deg);
    }
    #checkout-container {
        display: flex !important;
        flex-direction: column !important;
    }
    #checkout-container > div:first-child {
        order: 1;
        padding: 20px !important;
    }
    #checkout-container > div:last-child {
        order: 2;
        padding: 20px !important;
        position: relative !important;
        top: 0 !important;
    }
    .checkout-input {
        padding: 10px 14px !important;
        font-size: var(--text-sm) !important;
    }
    #place-order-btn {
        display: none;
    }
    /* Extra bottom padding for sticky bar clearance */
    .section.section-cream[style*="padding-top: 140px"] {
        padding-bottom: 100px !important;
    }
}

/* ─── Our Products Section Redesign (GenZ Skincare Aesthetic) ─── */
.our-products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    max-width: 1200px;
    margin: 48px auto 0;
    padding: 0 var(--container-padding-mobile);
}

.our-product-card-genz {
    background: var(--color-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    width: calc(33.333% - 22px);
    max-width: 360px;
    min-width: 290px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.our-product-card-genz:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 72, 59, 0.08), 0 1px 15px rgba(201, 163, 91, 0.12);
    border-color: var(--color-gold-light);
}

.our-product-card-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-cream-light) 0%, var(--color-beige) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    border-bottom: 1px solid var(--border-light);
}

.our-product-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.our-product-card-genz:hover .our-product-card-image-wrapper img {
    transform: scale(1.08);
}

.our-product-badge-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--color-forest-light);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

.our-product-discount-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-gold);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: var(--radius-full);
    z-index: 10;
    letter-spacing: 0.03em;
    box-shadow: var(--shadow-sm);
}

.our-product-card-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.our-product-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.our-product-card-rating .stars-gold {
    color: var(--color-gold);
    font-size: 13px;
    line-height: 1;
}

.our-product-card-rating .rating-value {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
}

.our-product-card-rating .reviews-count {
    font-family: var(--font-heading);
    font-size: 11px;
    color: var(--text-muted);
}

.our-product-card-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 4px;
}

.our-product-card-title a {
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.our-product-card-title a:hover {
    color: var(--color-forest);
}

.our-product-card-ingredients {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.4;
}

.our-product-card-pricing-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.our-product-card-pricing-row .price-current {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: var(--color-forest);
}

.our-product-card-pricing-row .price-compare {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.our-product-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.btn-genz-view {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    padding: 10px 4px;
    border-bottom: 1.5px solid transparent;
    transition: all var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
}

.btn-genz-view:hover {
    color: var(--color-forest);
    border-bottom-color: var(--color-forest);
}

.btn-genz-add {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--color-forest);
    color: var(--color-white);
    border: none;
    padding: 12px 18px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-genz-add:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 163, 91, 0.3);
}

.btn-genz-add .btn-icon {
    font-size: 12px;
}

@media (max-width: 992px) {
    .our-product-card-genz {
        width: calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .our-products-container {
        gap: 24px;
        margin-top: 32px;
    }
}

@media (max-width: 576px) {
    .our-product-card-genz {
        width: 100%;
        max-width: 340px;
    }
}

/* ─── Product Page Mobile Compression ─── */
@media (max-width: 768px) {
    .product-info-mobile-reorder {
        display: flex;
        flex-direction: column;
    }
    .product-info-mobile-reorder .pi-badge-title { order: 1; }
    .product-info-mobile-reorder .pi-rating { order: 2; }
    .product-info-mobile-reorder .pi-pricing { order: 3; }
    .product-info-mobile-reorder .pi-buy-block { order: 4; }
    .product-info-mobile-reorder .pi-description {
        order: 5;
        max-height: 3.4em;
        overflow: hidden;
        position: relative;
        transition: max-height 0.3s ease;
    }
    .product-info-mobile-reorder .pi-description.expanded {
        max-height: 500px;
    }
    .product-info-mobile-reorder .pi-highlights { order: 6; }
    .product-info-mobile-reorder .pi-accordion { order: 7; }
    .pi-read-more-btn {
        display: inline-block;
        font-family: var(--font-heading);
        font-size: var(--text-xs);
        color: var(--color-gold);
        cursor: pointer;
        margin-top: 4px;
        font-weight: 500;
        order: 5;
    }
    /* Related products horizontal scroll on mobile */
    .related-products-section .grid.grid-3 {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        gap: 12px !important;
    }
    .related-products-section .grid.grid-3 > .product-card {
        flex: 0 0 260px;
        scroll-snap-align: start;
    }
}
@media (min-width: 769px) {
    .pi-read-more-btn {
        display: none;
    }
}

/* ─── Checkout Order Summary Product Controls ─── */
.checkout-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}
.checkout-item-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--color-white);
}
.checkout-item-qty button {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}
.checkout-item-qty button:hover {
    background: var(--color-cream);
}
.checkout-item-qty span {
    width: 24px;
    text-align: center;
    font-size: var(--text-xs);
    font-weight: 500;
    font-family: var(--font-heading);
    line-height: 24px;
}
.checkout-item-remove {
    font-size: 10px;
    color: var(--text-muted);
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-heading);
}
.checkout-item-remove:hover {
    color: var(--color-error);
}
.checkout-coupon-pills {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 8px;
}

/* ─── Product Page Enhanced Styling ─── */
.product-page-section {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(180deg,
        #F5EDE0 0%,
        #FAF7F2 15%,
        var(--color-white) 35%,
        var(--color-cream-light) 55%,
        rgba(201, 163, 91, 0.04) 75%,
        var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.product-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-forest), var(--color-gold));
    opacity: 0.3;
}

/* Related Products Section */
.related-products-section {
    margin-top: var(--space-20);
    padding-top: var(--space-12);
    border-top: 1px solid var(--border-light);
}

.related-products-section h3 {
    position: relative;
    display: inline-block;
}

.related-products-section h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: 12px auto 0;
}

/* ─── Additional Mobile Fixes ─── */
@media (max-width: 991px) {
    /* Routine section mobile improvements */
    .routine-section {
        padding: 50px 0 !important;
    }

    .routine-steps {
        gap: var(--space-4) !important;
    }

    .routine-step-image {
        width: 150px !important;
        height: 220px !important;
    }

    /* Hero font sizing mobile */
    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 3rem) !important;
    }

    .hero p {
        font-size: var(--text-base) !important;
    }

    /* FBT section mobile full width fix */
    div[style*="padding: 40px; margin-bottom"] {
        padding: 24px !important;
    }

    /* Related products grid on tablet */
    .related-products-section .grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    /* Product page top padding mobile */
    .product-page-section {
        padding-top: 110px !important;
        padding-bottom: 50px !important;
    }

    /* Routine steps stack vertically */
    .routine-step-image {
        width: 160px !important;
        height: 240px !important;
    }

    /* Hero carousel mobile */
    .hero-carousel-card {
        padding: 14px !important;
    }

    .hero-carousel-media-container {
        margin-bottom: 16px !important;
    }

    /* Related products grid on mobile */
    .related-products-section .grid-3 {
        grid-template-columns: 1fr !important;
        gap: var(--space-4) !important;
    }

    /* Bundle cards mobile spacing */
    .bundle-card-info {
        padding: 16px !important;
    }

    /* Spotlight text mobile */
    .spotlight-info h3 {
        font-size: var(--text-2xl) !important;
    }

    .spotlight-price-block .price {
        font-size: var(--text-2xl) !important;
    }

    /* Product show page mobile fixes */
    .product-gallery-container {
        position: relative !important;
        top: 0 !important;
    }

    /* FBT section mobile improvements */
    div[style*="display: flex; flex-direction: column; lg-flex-direction: row"] {
        flex-direction: column !important;
    }

    div[style*="max-width: 320px; border-left:"] {
        max-width: 100% !important;
        border-left: none !important;
        border-top: 1px solid var(--border-light);
        padding-left: 0 !important;
        padding-top: 20px !important;
        width: 100% !important;
    }

    /* Reviews section mobile */
    .reviews-actions-box {
        flex-direction: column !important;
    }

    .reviews-actions-box .btn {
        width: 100% !important;
    }

    /* Section header mobile */
    .section-header {
        margin-bottom: var(--space-8) !important;
    }

    .section-subtitle {
        font-size: var(--text-base) !important;
    }

    /* Concern grid mobile */
    .concern-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--space-3) !important;
    }

    .concern-card-image {
        width: 90px !important;
        height: 90px !important;
    }
}

@media (max-width: 480px) {
    /* Product page extra small screens */
    .product-page-section {
        padding-top: 100px !important;
    }

    /* Hero content mobile */
    .hero-content {
        padding: 0 !important;
    }

    .hero .overline {
        font-size: 10px !important;
        letter-spacing: 0.15em !important;
    }

    /* Related products - single column */
    .related-products-section .grid-3 {
        grid-template-columns: 1fr !important;
    }

    .related-products-section .product-card {
        max-width: 320px;
        margin: 0 auto;
    }

    /* FBT thumbnails even smaller */
    div[style*="text-align: center; width: 120px;"] img {
        width: 60px !important;
        height: 60px !important;
    }

    /* Quantity selector mobile */
    .quantity-selector {
        width: 100% !important;
        justify-content: center;
    }

    /* Routine step images - smallest screens */
    .routine-step-image {
        width: 140px !important;
        height: 200px !important;
    }

    /* Ingredient cards mobile scroll */
    .ingredient-card {
        flex: 0 0 180px !important;
    }
}

/* ═══════════════════════════════════════════════════════
   MOBILE COMPRESSION — Tighten ALL homepage sections
   Only applies to screens ≤ 768px
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ─── Global Section Compression ─── */
    .section {
        padding: 32px 0 !important;
    }

    .section-header {
        margin-bottom: var(--space-6) !important;
    }

    .section-title {
        font-size: clamp(1.4rem, 5vw, 2rem) !important;
        margin-bottom: var(--space-2) !important;
    }

    .section-subtitle {
        font-size: var(--text-sm) !important;
        line-height: 1.5 !important;
    }

    .overline {
        font-size: 10px !important;
        letter-spacing: 0.15em !important;
        margin-bottom: var(--space-2) !important;
    }

    /* ─── Hero Section ─── */
    .hero {
        min-height: auto !important;
        height: auto !important;
        padding-top: 90px !important;
        padding-bottom: 32px !important;
    }

    .hero h1 {
        font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
        margin-bottom: 14px !important;
    }

    .hero p {
        font-size: var(--text-sm) !important;
        margin-bottom: 24px !important;
        line-height: 1.6 !important;
    }

    .hero .overline {
        font-size: 9px !important;
        margin-bottom: 14px !important;
    }

    .hero-ctas {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px 24px !important;
        font-size: var(--text-xs) !important;
    }

    /* ─── Trust Bar ─── */
    .section-beige[style*="padding:24px"] {
        padding: 14px 0 !important;
    }

    .trust-badges {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 6px !important;
    }

    .trust-badge {
        padding: 8px 10px !important;
        font-size: 9px !important;
    }

    .trust-badge-icon svg {
        width: 16px !important;
        height: 16px !important;
    }

    /* ─── Brand Story ─── */
    #brand-story {
        padding: 30px 0 !important;
    }

    #brand-story .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    #brand-story div[style*="max-width: 380px"] {
        max-width: 100% !important;
    }

    #brand-story div[style*="aspect-ratio: 4/5"] {
        aspect-ratio: 3/2 !important;
        max-width: 100% !important;
    }

    #brand-story h2 {
        font-size: clamp(1.4rem, 5vw, 1.8rem) !important;
    }

    #brand-story p {
        font-size: var(--text-sm) !important;
        line-height: 1.6 !important;
    }

    /* ─── Concern Grid ─── */
    .concern-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .concern-card {
        padding: var(--space-3) !important;
    }

    .concern-card-image {
        width: 70px !important;
        height: 70px !important;
    }

    .concern-card-name {
        font-size: var(--text-xs) !important;
    }

    /* ─── Routine Sections ─── */
    .routine-section {
        padding: 30px 0 !important;
    }

    .routine-steps {
        flex-direction: column !important;
        gap: var(--space-3) !important;
    }

    .routine-step-image {
        width: 130px !important;
        height: 190px !important;
    }

    .routine-step-name {
        font-size: var(--text-sm) !important;
    }

    .routine-step-price {
        font-size: var(--text-xs) !important;
    }

    .routine-arrow {
        transform: rotate(90deg);
        font-size: 14px !important;
    }

    /* Routine CTA button — prevent overflow */
    .routine-section .btn {
        white-space: normal !important;
        word-wrap: break-word !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 11px !important;
        letter-spacing: 0.05em !important;
        line-height: 1.4 !important;
    }

    .routine-section div[style*="text-align:center;margin-top:var(--space-12)"] {
        margin-top: var(--space-6) !important;
    }

    .routine-section .price {
        font-size: var(--text-xl) !important;
    }

    .routine-section .price-compare {
        font-size: var(--text-sm) !important;
    }

    .routine-section .price-save {
        font-size: var(--text-xs) !important;
    }

    /* ─── Product Spotlights ─── */
    .spotlight {
        gap: 20px !important;
    }

    .spotlight-image img {
        max-height: 280px !important;
    }

    .spotlight-info h3 {
        font-size: var(--text-xl) !important;
    }

    .spotlight-info p {
        font-size: var(--text-sm) !important;
        line-height: 1.6 !important;
        margin-bottom: 14px !important;
    }

    .spotlight-price-block {
        margin-bottom: 12px !important;
    }

    .spotlight-price-block .price {
        font-size: var(--text-xl) !important;
    }

    .spotlight-ctas {
        flex-direction: column !important;
        gap: 8px !important;
        margin-bottom: 16px !important;
    }

    .spotlight-ctas .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px 20px !important;
    }

    .spotlight-benefits {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
        margin-bottom: 14px !important;
    }

    .spotlight-benefit {
        font-size: var(--text-xs) !important;
    }

    .spotlight-recommended {
        margin-top: 16px !important;
    }

    /* ─── Bundle Cards ─── */
    .bundle-card {
        margin-bottom: 8px;
    }

    .bundle-card-info {
        padding: 14px !important;
    }

    .bundle-card-products img {
        width: 45px !important;
        height: 65px !important;
    }

    .bundle-card-name {
        font-size: var(--text-base) !important;
    }

    .bundle-card-items {
        font-size: var(--text-xs) !important;
    }

    /* ─── Ingredients Scroll ─── */
    .ingredient-card {
        flex: 0 0 160px !important;
        padding: 16px !important;
    }

    .ingredient-icon {
        font-size: 28px !important;
    }

    .ingredient-name {
        font-size: var(--text-sm) !important;
    }

    .ingredient-benefit {
        font-size: 11px !important;
    }

    /* ─── Testimonials ─── */
    .testimonial-card {
        flex: 0 0 calc(100% - 16px) !important;
        padding: 20px !important;
    }

    .testimonial-text {
        font-size: var(--text-sm) !important;
        line-height: 1.5 !important;
    }

    .testimonial-avatar {
        width: 48px !important;
        height: 48px !important;
    }

    /* ─── Instagram Grid ─── */
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2px !important;
    }

    /* ─── FAQ ─── */
    .faq-question {
        font-size: var(--text-sm) !important;
        padding: 14px 16px !important;
    }

    .faq-answer p {
        font-size: var(--text-xs) !important;
        padding: 0 16px 14px !important;
    }

    /* ─── Newsletter ─── */
    .newsletter-section {
        padding: 32px 0 !important;
    }

    .newsletter-section h2 {
        font-size: var(--text-xl) !important;
    }

    .newsletter-section p {
        font-size: var(--text-xs) !important;
        margin-bottom: var(--space-4) !important;
    }

    .newsletter-form {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .newsletter-input {
        border-radius: var(--radius-full) !important;
        border-right: 1px solid rgba(255,255,255,0.2) !important;
        padding: 12px 16px !important;
        font-size: var(--text-sm) !important;
    }

    .newsletter-btn {
        border-radius: var(--radius-full) !important;
        padding: 12px 24px !important;
    }

    /* ─── Footer ─── */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-6) !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center;
    }

    /* ─── Product Page ─── */
    .product-page-section {
        padding-top: 100px !important;
        padding-bottom: 40px !important;
    }

    .product-gallery-container {
        position: relative !important;
        top: 0 !important;
        flex-direction: column-reverse !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .product-thumbnails {
        flex-direction: row !important;
        width: auto !important;
        justify-content: center !important;
    }

    .main-image-wrapper {
        max-width: 100% !important;
    }

    /* ─── FBT / Reviews ─── */
    .reviews-header-block {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .rating-summary-box {
        border-right: none !important;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 16px;
    }

    .review-form-grid {
        grid-template-columns: 1fr !important;
    }

    .reviews-actions-box {
        flex-direction: column !important;
    }

    .reviews-actions-box .btn {
        width: 100% !important;
    }

    /* Grid adjustments */
    .grid-2, .grid-3 {
        grid-template-columns: 1fr !important;
    }

    /* Shop header banner mobile */
    .shop-header-banner {
        padding: 100px 0 50px !important;
    }

    .shop-header-banner h1 {
        font-size: clamp(1.6rem, 5vw, 2.5rem) !important;
    }

    /* Announcement bar mobile */
    .announcement-bar {
        font-size: 9px !important;
        padding: 6px 12px !important;
    }

    h1 { font-size: var(--text-3xl) !important; }
    h2 { font-size: var(--text-2xl) !important; }
    h3 { font-size: var(--text-xl) !important; }
}

@media (max-width: 480px) {
    /* Extra-small screen tightening */
    :root {
        --section-padding: 24px;
        --container-padding: 14px;
    }

    .section:not(.page-hero) {
        padding: 24px 0 !important;
    }

    .page-hero {
        padding-top: 140px !important;
        padding-bottom: 40px !important;
    }

    .hero {
        padding-top: 80px !important;
        padding-bottom: 24px !important;
    }

    .hero h1 {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
    }

    .concern-grid {
        gap: 6px !important;
    }

    .concern-card-image {
        width: 60px !important;
        height: 60px !important;
    }

    .routine-step-image {
        width: 110px !important;
        height: 160px !important;
    }

    .spotlight-image img {
        max-height: 220px !important;
    }

    .bundle-card-products img {
        width: 40px !important;
        height: 55px !important;
    }

    .ingredient-card {
        flex: 0 0 140px !important;
        padding: 12px !important;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .product-page-section {
        padding-top: 90px !important;
    }

    .quantity-selector {
        width: 100% !important;
        justify-content: center;
    }

    div[style*="text-align: center; width: 120px;"] img {
        width: 55px !important;
        height: 55px !important;
    }
}

/* ─── Relocated Concerns Hero Bar ─── */
.concerns-hero-bar {
    padding: 24px 0;
    background: var(--color-cream-light);
    border-bottom: 1.5px solid var(--border-light);
    overflow: hidden;
}

.concerns-hero-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.concern-circle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    text-align: center;
    width: 120px;
}

.concern-circle-image {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-color);
    background: var(--color-white);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-sm);
    margin-bottom: 10px;
    padding: 0;
}

.concern-circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.concern-circle-card:hover .concern-circle-image {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.concern-circle-card:hover .concern-circle-image img {
    transform: scale(1.08);
}

.concern-circle-name {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-forest);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
}

.concern-circle-card:hover .concern-circle-name {
    color: var(--color-gold-dark);
}

/* ─── Premium Add To Cart Button ─── */
.btn-genz-add-premium {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--color-forest);
    color: var(--color-white);
    border: 1px solid var(--color-forest);
    padding: 13px 24px;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(13, 72, 59, 0.15);
}

.btn-genz-add-premium:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 163, 91, 0.35);
}

.btn-genz-add-premium svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.btn-genz-add-premium:hover svg {
    transform: scale(1.1);
}

/* ─── Premium Shoppable Instagram Grid ─── */
.instagram-grid-premium {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.instagram-item-premium {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.instagram-item-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.instagram-item-premium:hover img {
    transform: scale(1.06);
}

.instagram-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 72, 59, 0.25);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(2px);
}

.instagram-item-premium:hover .instagram-item-overlay {
    opacity: 1;
}

.instagram-product-badge {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px 14px;
    border-radius: var(--radius-md);
    width: 100%;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.instagram-item-premium:hover .instagram-product-badge {
    transform: translateY(0);
}

.instagram-product-badge .badge-title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-forest-dark);
    margin-bottom: 2px;
    display: block;
}

.instagram-product-badge .badge-price {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gold-dark);
    margin-bottom: 6px;
    display: block;
}

.instagram-product-badge .badge-btn {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    background: var(--color-forest);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    display: block;
}

.instagram-product-badge .badge-btn:hover {
    background: var(--color-gold);
    box-shadow: var(--shadow-sm);
}

/* ─── Consolidated Unified Routine Swappers ─── */
.routine-section-unified {
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease;
}

.routine-toggle-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.65);
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.routine-toggle-btn.active {
    background: var(--color-white);
    color: var(--color-forest-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments for concerns row and Instagram grid */
@media (max-width: 992px) {
    .instagram-grid-premium {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .concerns-hero-bar {
        padding: 18px 0;
    }

    .concerns-hero-grid {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 4px 16px;
    }

    .concerns-hero-grid::-webkit-scrollbar {
        display: none;
    }

    .concern-circle-card {
        scroll-snap-align: start;
        flex-shrink: 0;
        width: 78px;
    }

    .concern-circle-image {
        width: 70px;
        height: 70px;
        border-width: 1.5px;
    }

    .concern-circle-name {
        font-size: 9px;
    }

    .instagram-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* On mobile: show overlay always but make it minimal so images stay visible */
    .instagram-item-premium {
        aspect-ratio: 3 / 4;
        border-radius: var(--radius-lg);
    }

    .instagram-item-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(7, 38, 31, 0.85) 0%, rgba(7, 38, 31, 0.3) 45%, transparent 65%);
        backdrop-filter: none;
        padding: 10px;
        align-items: flex-end;
    }

    .instagram-product-badge {
        transform: translateY(0);
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        padding: 8px 10px;
        border-radius: var(--radius-sm);
        gap: 2px;
    }

    .instagram-product-badge .badge-title {
        font-size: 10px;
        margin-bottom: 1px;
        line-height: 1.2;
    }

    .instagram-product-badge .badge-price {
        font-size: 11px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .instagram-product-badge .badge-btn {
        font-size: 8px;
        padding: 5px 10px;
        letter-spacing: 0.04em;
    }
}

@media (max-width: 480px) {
    /* Card-style layout: image on top, info below — no overlapping */
    .instagram-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .instagram-item-premium {
        aspect-ratio: auto;
        display: flex;
        flex-direction: column;
        border-radius: var(--radius-lg);
        background: var(--color-white);
        border: 1px solid var(--border-light);
        overflow: hidden;
    }

    .instagram-item-premium img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        flex-shrink: 0;
    }

    .instagram-item-overlay {
        position: relative;
        inset: auto;
        opacity: 1;
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        display: block;
    }

    .instagram-product-badge {
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 10px 12px;
        border-radius: 0;
        transform: none;
        text-align: center;
    }

    .instagram-product-badge .badge-title {
        font-size: 11px;
        font-weight: 600;
        color: var(--color-forest-dark);
        margin-bottom: 2px;
        line-height: 1.3;
    }

    .instagram-product-badge .badge-price {
        font-size: 12px;
        font-weight: 600;
        color: var(--color-gold-dark);
        margin-bottom: 6px;
    }

    .instagram-product-badge .badge-btn {
        font-size: 9px;
        padding: 6px 12px;
        border-radius: var(--radius-full);
        width: 100%;
        text-align: center;
    }
}

/* ─── Routine Composite Banner Image Styling ─── */
.routine-composite-container {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.routine-composite-banner-img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-xl);
}

.routine-section-unified {
    padding: 50px 0 !important;
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease;
}

@media (max-width: 768px) {
    .routine-section-unified {
        padding: 40px 0 !important;
    }
}

@media (max-width: 576px) {
    .routine-composite-container {
        max-width: 100%;
    }
    .routine-composite-banner-img {
        height: 200px !important;
    }
}

/* ─── Premium Featured Reviews in Spotlight ─── */
.spotlight-featured-review {
    background: rgba(201, 163, 91, 0.04);
    border-left: 3px solid var(--color-gold);
    padding: 20px 24px;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin-bottom: 28px;
    box-shadow: 0 4px 15px rgba(201, 163, 91, 0.03);
    position: relative;
    transition: all 0.3s ease;
}

.spotlight-featured-review:hover {
    background: rgba(201, 163, 91, 0.07);
    transform: translateX(4px);
}

.spotlight-featured-review-quote {
    font-family: var(--font-hero);
    font-style: italic;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.spotlight-featured-review-author {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-primary);
}

/* ─── Premium People Also Buy (PAB) mini cards ─── */
.pab-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--color-white);
    border: 1px solid var(--border-light);
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    flex: 1;
    min-width: 220px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.pab-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold-light);
    box-shadow: 0 8px 20px rgba(201, 163, 91, 0.1);
    background: var(--color-cream-light);
}

.pab-card-img-wrapper {
    width: 54px;
    height: 54px;
    background: var(--color-cream-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.pab-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.pab-card-info {
    flex-grow: 1;
}

.pab-card-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
    line-height: 1.25;
}

.pab-card-pricing {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pab-card-price {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold-dark);
}

.pab-card-compare-price {
    font-family: var(--font-heading);
    font-size: 10px;
    text-decoration: line-through;
    color: var(--text-muted);
}

.pab-add-btn {
    background: var(--color-forest);
    color: var(--color-white);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(13, 72, 59, 0.2);
}

.pab-add-btn:hover {
    background: var(--color-gold);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 10px rgba(201, 163, 91, 0.3);
}

.pab-add-btn svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

@media (max-width: 576px) {
    .pab-card {
        min-width: 100%;
    }
}

/* ─── Premium Review Cards on Product Page ─── */
.review-item-card {
    background: #FCFAF7 !important;
    border: 1px solid var(--border-light) !important;
    border-left: 3px solid var(--color-gold) !important;
    border-radius: var(--radius-lg) !important;
    padding: 24px !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(13, 72, 59, 0.02) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.review-item-card:hover {
    transform: translateY(-4px) !important;
    background: #FAF7F2 !important;
    border-color: var(--color-gold-light) !important;
    box-shadow: 0 10px 25px rgba(201, 163, 91, 0.08) !important;
}

.review-item-card .stars {
    color: var(--color-gold) !important;
}

.review-item-card p {
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: var(--text-secondary) !important;
    font-style: italic !important;
    margin: 0 !important;
}


/* ═══════════════════════════════════════════════════════
   ROUTINE SECTION — Comprehensive Mobile Fix (All Devices)
   Fixes CTA button overflow/distortion on mobile views
   ═══════════════════════════════════════════════════════ */

/* Tablet & small desktop (≤991px) */
@media (max-width: 991px) {
    .routine-section-unified .btn.btn-gold.btn-lg {
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 14px 32px !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    /* Price row — prevent inline overflow */
    .routine-ritual-content div[style*="text-align:center"] > div[style*="margin-bottom"] {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .routine-section-unified {
        padding: 40px 0 !important;
    }

    /* Toggle buttons */
    .routine-toggle-container {
        margin-top: 20px !important;
    }

    .routine-toggle-btn {
        padding: 8px 16px !important;
        font-size: 11px !important;
    }

    /* Price row wrap */
    .routine-ritual-content .price {
        font-size: var(--text-xl) !important;
    }

    .routine-ritual-content .price-compare {
        font-size: var(--text-base) !important;
        margin-left: 4px !important;
    }

    .routine-ritual-content .price-save {
        font-size: var(--text-xs) !important;
        margin-left: 0 !important;
        margin-top: 4px !important;
        padding: 3px 10px !important;
    }

    /* CTA button — force full-width, text wrapping */
    .routine-section-unified .btn.btn-gold.btn-lg,
    .routine-section-unified .btn.btn-gold {
        display: block !important;
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        padding: 14px 20px !important;
        font-size: 12px !important;
        letter-spacing: 0.06em !important;
        line-height: 1.5 !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* Action block spacing */
    .routine-ritual-content div[style*="text-align:center; margin-top:var(--space-12)"] {
        margin-top: var(--space-6) !important;
    }

    /* Composite image height */
    .routine-composite-banner-img {
        height: auto !important;
        max-height: 220px !important;
    }

    .routine-composite-container {
        max-width: 100% !important;
    }
}

/* Small mobile (≤576px) */
@media (max-width: 576px) {
    .routine-section-unified {
        padding: 30px 0 !important;
    }

    .routine-section-unified .section-header {
        margin-bottom: var(--space-5) !important;
    }

    .routine-section-unified .section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem) !important;
    }

    .routine-section-unified .section-subtitle {
        font-size: var(--text-sm) !important;
    }

    .routine-toggle-btn {
        padding: 7px 12px !important;
        font-size: 10px !important;
    }

    /* Price row — stack vertically on very small screens */
    .routine-ritual-content .price {
        font-size: var(--text-lg) !important;
    }

    .routine-ritual-content .price-compare {
        font-size: var(--text-sm) !important;
    }

    .routine-ritual-content .price-save {
        font-size: 10px !important;
        display: inline-block !important;
    }

    /* CTA button — tightest compression */
    .routine-section-unified .btn.btn-gold.btn-lg,
    .routine-section-unified .btn.btn-gold {
        max-width: 100% !important;
        padding: 13px 16px !important;
        font-size: 11px !important;
        letter-spacing: 0.04em !important;
    }

    /* Description text */
    .routine-ritual-content p[style*="color: rgba(255,255,255,0.9)"] {
        font-size: var(--text-sm) !important;
        margin-top: 4px !important;
    }

    /* Composite image */
    .routine-composite-banner-img {
        max-height: 180px !important;
    }
}

/* Extra small mobile (≤400px) */
@media (max-width: 400px) {
    .routine-section-unified .btn.btn-gold.btn-lg,
    .routine-section-unified .btn.btn-gold {
        padding: 12px 12px !important;
        font-size: 10px !important;
        letter-spacing: 0.03em !important;
        border-radius: var(--radius-lg) !important;
    }

    .routine-toggle-container {
        padding: 4px !important;
    }

    .routine-toggle-btn {
        padding: 6px 10px !important;
        font-size: 9px !important;
    }
}
