/* ============================================================
   NASMA LUXE — LUXURY BOTANICAL ECOMMERCE STYLESHEET
   Accurately follows the Visual Reverse-Engineering Blueprint
   ============================================================ */

:root {
    /* Exact Color System */
    --forest-950: #03291D;
    --forest-900: #063B28;
    --forest-800: #06452F;
    --forest-700: #0A5237;

    --cream-50: #FFFDF6;
    --cream-100: #FBF5E8;
    --cream-200: #F5EBD5;

    --gold-300: #FFE29A;
    --gold-400: #F6C65B;
    --gold-500: #EFAF2F;
    --gold-600: #D99419;

    --text-dark: #10271F;
    --text-light: #F9F4E7;

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    /* Shadows & Radii */
    --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.08);
    --shadow-layered: 0 16px 36px rgba(0, 0, 0, 0.09), 0 4px 10px rgba(0, 0, 0, 0.04);
    --shadow-gold-glow: 0 8px 24px rgba(246, 198, 91, 0.28);
    --shadow-dark-card: 0 16px 35px rgba(0, 0, 0, 0.35);

    --radius-pill: 999px;
    --radius-card: 16px;
    --radius-card-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 15px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--cream-100);
    line-height: 1.55;
    overflow-x: hidden;
    min-width: 320px;
}

body.home-page {
    background-color: var(--forest-950);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

button {
    font: inherit;
    border: none;
    background: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.serif {
    font-family: var(--font-serif);
}

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Global Content Container */
.content-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 64px);
    width: 100%;
}

/* Section Common Headings */
.section-eyebrow {
    display: inline-block;
    color: var(--gold-500);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-heading {
    font-size: clamp(26px, 2.8vw, 36px);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

/* Reusable Luxury Buttons */
.button-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 180px;
    height: 48px;
    padding: 0 28px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-400) 45%, var(--gold-500) 100%);
    color: var(--forest-950);
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-gold-glow);
    border: 1px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}

.button-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(246, 198, 91, 0.42);
    filter: brightness(1.04);
}

.button-gold:active {
    transform: translateY(0);
}

.button-gold-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 40px;
    padding: 0 20px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
    color: var(--forest-950);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 14px rgba(246, 198, 91, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.button-gold-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(246, 198, 91, 0.38);
}

.button-gold-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 24px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--gold-500);
    color: var(--forest-900);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s ease;
    background: transparent;
    text-decoration: none;
}

.button-gold-outline:hover {
    background: var(--gold-500);
    color: var(--forest-950);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-glow);
}

.button-dark-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    padding: 0 22px;
    border-radius: var(--radius-pill);
    background: var(--forest-800);
    color: var(--gold-300);
    border: 1px solid rgba(246, 198, 91, 0.35);
    font-size: 12.5px;
    font-weight: 600;
    transition: all 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
}

.button-dark-green:hover {
    background: var(--forest-700);
    color: #fff;
    border-color: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(3, 41, 29, 0.3);
}

.button-dark-green svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}


/* ============================================================
   01 — HERO HEADER & NAVIGATION
   ============================================================ */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    z-index: 100;
    color: var(--text-light);
}

.nav-shell {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    padding: 0 clamp(20px, 4vw, 64px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Brand Logo */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-leaf-emblem {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(246, 198, 91, 0.15);
    border: 1px solid var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    flex-shrink: 0;
}

.brand-leaf-emblem svg {
    width: 18px;
    height: 18px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: var(--gold-300);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
}

.brand-tagline {
    color: rgba(249, 244, 231, 0.7);
    font-size: 7.5px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-top: 3px;
    font-weight: 500;
}

/* Navigation Links */
.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.5vw, 36px);
    margin-left: auto;
}

.primary-nav a {
    color: rgba(249, 244, 231, 0.85);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: capitalize;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
    color: var(--gold-300);
}

.primary-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--gold-400);
    border-radius: 2px;
}

/* Nav Actions: Cart & Mobile Menu */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cart-circle-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(6, 69, 47, 0.6);
    border: 1.5px solid var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-300);
    transition: all 0.25s ease;
    cursor: pointer;
}

.cart-circle-btn:hover {
    background: rgba(10, 82, 55, 0.85);
    box-shadow: 0 0 16px rgba(246, 198, 91, 0.35);
    transform: scale(1.05);
}

.cart-circle-btn svg {
    width: 20px;
    height: 20px;
}

.cart-badge-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold-400);
    color: var(--forest-950);
    font-size: 10.5px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    border: 1px solid var(--forest-950);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(6, 69, 47, 0.4);
    border: 1px solid rgba(246, 198, 91, 0.25);
    cursor: pointer;
    z-index: 110;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   01 — HERO SECTION COMPOSITION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 640px;
    background: linear-gradient(135deg, var(--forest-950) 0%, var(--forest-900) 45%, var(--forest-800) 100%);
    color: var(--text-light);
    overflow: hidden;
    padding-top: 72px;
    display: flex;
    align-items: center;
}

/* Atmospheric Background Depth */
.hero-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.16;
    mix-blend-mode: luminosity;
    z-index: 1;
    pointer-events: none;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 75% 50%, rgba(10, 82, 55, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 25% 40%, rgba(6, 69, 47, 0.45) 0%, transparent 65%),
        linear-gradient(to bottom, rgba(3, 41, 29, 0.5) 0%, transparent 40%, rgba(3, 41, 29, 0.8) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Bokeh Light Spheres */
.hero-bokeh {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
    filter: blur(8px);
    pointer-events: none;
}

.hero-bokeh.b-1 {
    top: 20%;
    right: 35%;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(246, 198, 91, 0.18) 0%, transparent 70%);
}

.hero-bokeh.b-2 {
    bottom: 15%;
    right: 15%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(239, 175, 47, 0.15) 0%, transparent 70%);
}

.hero-bokeh.b-3 {
    top: 35%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(246, 198, 91, 0.12) 0%, transparent 70%);
}

.hero-bokeh.b-4 {
    bottom: 25%;
    left: 45%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 253, 246, 0.1) 0%, transparent 70%);
}

/* Floating Golden Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-particles span {
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-300);
    box-shadow: 0 0 10px rgba(246, 198, 91, 0.6);
    opacity: 0.6;
    animation: particle-float 7s infinite ease-in-out alternate;
}

.hero-particles span:nth-child(1) { top: 25%; right: 40%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 60%; right: 28%; animation-delay: -2s; width: 3px; height: 3px; }
.hero-particles span:nth-child(3) { top: 40%; right: 12%; animation-delay: -4s; width: 5px; height: 5px; }
.hero-particles span:nth-child(4) { top: 75%; right: 48%; animation-delay: -1s; }
.hero-particles span:nth-child(5) { top: 18%; left: 35%; animation-delay: -3s; }
.hero-particles span:nth-child(6) { top: 55%; left: 15%; animation-delay: -5s; width: 3px; height: 3px; }

@keyframes particle-float {
    0% { transform: translateY(0) translateX(0); opacity: 0.3; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-16px) translateX(10px); opacity: 0.4; }
}

/* Hero Content Container & Grid */
.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(30px, 4vw, 50px) clamp(20px, 4vw, 64px);
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-grid {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    min-height: 520px;
}

/* Left Hero Column */
.hero-copy-col {
    position: relative;
    z-index: 10;
    padding-right: 15px;
}

.hero-eyebrow {
    color: var(--gold-400);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: inline-block;
}

.hero-title {
    font-size: clamp(38px, 3.8vw, 52px);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -1px;
    color: var(--text-light);
    margin-bottom: 22px;
}

.hero-naturally {
    font-style: italic;
    color: var(--gold-300);
    display: inline-block;
}

.hero-description {
    max-width: 360px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(249, 244, 231, 0.9);
    margin-bottom: 28px;
}

.hero-cta-wrapper {
    margin-bottom: 32px;
}

.hero-cta-btn {
    box-shadow: 0 8px 24px rgba(246, 198, 91, 0.3);
}

/* Benefit Row (4 Columns Under CTA) */
.hero-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 480px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-benefit-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.benefit-check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold-400);
    color: var(--forest-950);
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-label {
    font-size: 10.5px;
    line-height: 1.25;
    color: rgba(249, 244, 231, 0.85);
    font-weight: 500;
}

/* Right Hero: Cinematic Product Composition (~60%) */
.hero-product-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
}

.hero-stage-inner {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Botanical Foliage Accents */
.botanical-foliage {
    position: absolute;
    pointer-events: none;
    object-fit: contain;
}

.bg-leaf-back {
    top: 5%;
    left: 8%;
    width: 140px;
    opacity: 0.65;
    filter: blur(2.5px);
    transform: rotate(-18deg);
    z-index: 3;
}

.bg-hibiscus {
    top: 15%;
    left: 18%;
    width: 100px;
    opacity: 0.7;
    filter: blur(1.8px);
    transform: rotate(-10deg);
    z-index: 3;
}

.bg-rosemary {
    top: 8%;
    right: 14%;
    width: 120px;
    opacity: 0.65;
    filter: blur(2px);
    transform: rotate(25deg);
    z-index: 3;
}

.bg-amla {
    bottom: 20%;
    left: 14%;
    width: 85px;
    opacity: 0.65;
    filter: blur(1px);
    transform: rotate(12deg);
    z-index: 3;
}

.bg-bhringraj {
    bottom: 12%;
    right: 18%;
    width: 95px;
    opacity: 0.65;
    filter: blur(1.5px);
    transform: rotate(-15deg);
    z-index: 3;
}

.fg-leaf-front {
    bottom: 2%;
    right: 8%;
    width: 140px;
    opacity: 0.88;
    transform: rotate(-22deg);
    z-index: 8;
}

/* Glowing Halo & Ring */
.hero-glowing-ring {
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 198, 91, 0.22) 0%, rgba(239, 175, 47, 0.08) 50%, transparent 70%);
    filter: blur(16px);
    z-index: 4;
}

.hero-halo-element {
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    z-index: 5;
    opacity: 0.7;
    animation: halo-rotate 35s linear infinite;
}

.hero-halo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes halo-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Pure Herbal Power Badge */
.hero-pure-badge {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 78px;
    height: 78px;
    z-index: 9;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45));
    animation: badge-wobble 6s ease-in-out infinite alternate;
}

.pure-badge-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes badge-wobble {
    0% { transform: translateY(0) rotate(-2deg); }
    100% { transform: translateY(-8px) rotate(3deg); }
}

/* Main Dominant Bottle (~38% of Hero Height) */
.hero-main-bottle-wrap {
    position: relative;
    z-index: 7;
    width: 175px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.55));
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.hero-main-bottle-wrap:hover {
    transform: scale(1.02);
}

.hero-main-bottle-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Four Floating Secondary Product Cards */
.hero-floating-card {
    position: absolute;
    background: rgba(6, 59, 40, 0.76);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-card);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.hero-floating-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    border-color: rgba(246, 198, 91, 0.45);
}

.fc-thumb {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.fc-thumb img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

.fc-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fc-title {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
}

.fc-stars {
    color: var(--gold-400);
    font-size: 9.5px;
    letter-spacing: 1px;
}

.fc-rating-num {
    color: rgba(249, 244, 231, 0.65);
    font-size: 8.5px;
}

.fc-price {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-300);
}

/* Floating Card Specific Positions & Sizes */
.fc-left {
    left: 4%;
    top: 28%;
    z-index: 6;
}

.fc-front-left {
    left: 22%;
    bottom: 8%;
    z-index: 8;
    padding: 12px 16px;
}
.fc-front-left .fc-thumb {
    width: 44px;
    height: 44px;
}
.fc-front-left .fc-title {
    font-size: 12.5px;
}

.fc-front-right {
    right: 20%;
    bottom: 12%;
    z-index: 8;
    padding: 12px 16px;
}
.fc-front-right .fc-thumb {
    width: 44px;
    height: 44px;
}
.fc-front-right .fc-title {
    font-size: 12.5px;
}

.fc-right {
    right: 2%;
    top: 38%;
    z-index: 6;
}

/* Hero Carousel Controls (Arrows at edges) */
.hero-carousel-controls {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 12;
}

.hero-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(6, 69, 47, 0.85);
    border: 1px solid var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-300);
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    transition: all 0.25s ease;
}

.hero-nav-btn:hover {
    background: var(--forest-700);
    transform: scale(1.1);
    box-shadow: 0 0 16px rgba(246, 198, 91, 0.4);
}

.hero-nav-btn svg {
    width: 18px;
    height: 18px;
}


/* ============================================================
   02 — BEST SELLERS PRODUCT CAROUSEL SECTION
   ============================================================ */
.best-sellers-section {
    background-color: var(--cream-100);
    color: var(--text-dark);
    padding: clamp(50px, 6vw, 75px) 0;
    position: relative;
}

.bs-layout-grid {
    display: grid;
    grid-template-columns: 32% 68%;
    gap: clamp(24px, 3.5vw, 44px);
    align-items: center;
}

.bs-left-col {
    padding-right: 10px;
}

.bs-description {
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(16, 39, 31, 0.82);
    margin-bottom: 24px;
}

.bs-right-col {
    min-width: 0;
    position: relative;
}

/* Product Card inside Best Sellers */
.bs-carousel {
    padding: 10px 4px 20px 4px;
    overflow: hidden;
}

.bs-product-card {
    background: var(--cream-50);
    border: 1px solid rgba(217, 148, 25, 0.16);
    border-radius: var(--radius-card);
    padding: 16px 14px 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.bs-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-layered);
    border-color: rgba(239, 175, 47, 0.35);
}

.bs-card-img-wrap {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 12px;
    background: radial-gradient(circle at center, rgba(246, 198, 91, 0.12) 0%, transparent 65%);
    border-radius: 10px;
}

.bs-card-img-wrap img {
    max-height: 125px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.bs-product-card:hover .bs-card-img-wrap img {
    transform: scale(1.05);
}

.bs-card-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bs-card-title {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.25;
}

.bs-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    margin-bottom: 8px;
}

.stars-gold {
    color: var(--gold-500);
    letter-spacing: 1px;
}

.rating-val {
    color: rgba(16, 39, 31, 0.6);
    font-size: 10.5px;
}

.bs-card-price {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--forest-800);
    margin-bottom: 14px;
}

.bs-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.bs-card-actions .button-gold-sm {
    flex: 1;
    height: 38px;
    font-size: 11.5px;
}

.btn-cart-sm {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--forest-800);
    border: 1px solid var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-300);
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.btn-cart-sm:hover {
    background: var(--forest-700);
    transform: scale(1.08);
}

.btn-cart-sm svg {
    width: 16px;
    height: 16px;
}

/* Controls Row */
.bs-controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 15px;
}

.bs-nav-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--forest-800);
    border: 1px solid var(--gold-400);
    color: var(--gold-300);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bs-nav-arrow:hover {
    background: var(--forest-700);
    transform: scale(1.08);
}

.bs-nav-arrow svg {
    width: 16px;
    height: 16px;
}

.bs-pagination {
    width: auto !important;
    display: flex;
    gap: 6px;
}

.swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: var(--forest-800) !important;
    opacity: 0.25 !important;
    transition: all 0.25s ease !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold-500) !important;
    opacity: 1 !important;
    width: 18px !important;
    border-radius: 4px !important;
}


/* ============================================================
   03 — LARGE FEATURE SECTION
   ============================================================ */
.large-feature-section {
    background: linear-gradient(135deg, var(--forest-950) 0%, var(--forest-900) 50%, var(--forest-800) 100%);
    color: var(--text-light);
    padding: clamp(60px, 7vw, 90px) 0;
    position: relative;
    overflow: hidden;
}

.feature-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(239, 175, 47, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.feat-layout-grid {
    display: grid;
    grid-template-columns: 34% 34% 32%;
    gap: clamp(20px, 3vw, 36px);
    align-items: center;
}

/* Left Feature Column */
.feat-left-col {
    padding-right: 15px;
}

.feat-lead-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(249, 244, 231, 0.85);
    margin-bottom: 22px;
}

.feat-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.feat-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(249, 244, 231, 0.95);
}

.feat-gold-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold-400);
    color: var(--forest-950);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

/* Center Feature: Giant Product on Pedestal */
.feat-center-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 360px;
}

.feat-stage-wrapper {
    position: relative;
    width: 260px;
    height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.feat-golden-ring {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 198, 91, 0.2) 0%, transparent 70%);
    filter: blur(14px);
    z-index: 1;
}

.feat-ring-element {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    opacity: 0.65;
    z-index: 2;
}

.feat-ring-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feat-bottle-box {
    position: relative;
    z-index: 5;
    width: 140px;
    height: 250px;
    margin-bottom: 25px;
    filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.6));
    transition: transform 0.3s ease;
}

.feat-bottle-box:hover {
    transform: translateY(-4px);
}

.feat-giant-bottle-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feat-pedestal-wrap {
    position: absolute;
    bottom: 5px;
    width: 200px;
    height: 45px;
    z-index: 3;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.45));
}

.feat-pedestal-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feat-herb-decor {
    position: absolute;
    object-fit: contain;
    opacity: 0.75;
    z-index: 4;
}

.feat-herb-decor.herb-1 {
    bottom: 25px;
    left: -20px;
    width: 80px;
    transform: rotate(-25deg);
}

.feat-herb-decor.herb-2 {
    top: 30px;
    right: -15px;
    width: 85px;
    transform: rotate(20deg);
}

.feat-herb-decor.herb-3 {
    bottom: 35px;
    right: -25px;
    width: 75px;
    transform: rotate(15deg);
}

/* Right Feature Column: Stacked Trust Badges */
.feat-right-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.trust-badge-card {
    background: rgba(6, 59, 40, 0.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(246, 198, 91, 0.25);
    border-radius: var(--radius-card);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.trust-badge-card:hover {
    transform: translateX(4px);
    border-color: var(--gold-400);
}

.badge-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold-400);
    color: var(--forest-950);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon-wrap svg {
    width: 16px;
    height: 16px;
}

.badge-body {
    display: flex;
    flex-direction: column;
}

.badge-title {
    color: var(--gold-300);
    font-size: 13.5px;
    font-weight: 700;
}

.badge-sub {
    color: rgba(249, 244, 231, 0.65);
    font-size: 11px;
}


/* ============================================================
   04 — BEFORE & AFTER SECTION
   ============================================================ */
.before-after-section {
    background-color: var(--cream-100);
    color: var(--text-dark);
    padding: clamp(45px, 5.5vw, 65px) 0;
}

.ba-layout-grid {
    display: grid;
    grid-template-columns: 28% 46% 26%;
    gap: clamp(20px, 3vw, 36px);
    align-items: center;
}

.ba-description {
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(16, 39, 31, 0.85);
    margin-bottom: 20px;
}

/* Interactive Draggable Comparison Frame */
.ba-compare-frame {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-layered);
    border: 3px solid #fff;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    cursor: ew-resize;
}

.ba-img-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ba-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-before-wrap {
    z-index: 1;
}

.ba-after-wrap {
    z-index: 2;
    border-right: 2px solid var(--gold-400);
}

.ba-tag {
    position: absolute;
    bottom: 12px;
    z-index: 4;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: rgba(3, 41, 29, 0.8);
    color: var(--text-light);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.tag-before { left: 12px; }
.tag-after { right: 12px; }

/* Handle Knob */
.ba-drag-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    z-index: 5;
    transform: translateX(-50%);
    pointer-events: none;
}

.ba-circle-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold-400);
    color: var(--forest-950);
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    pointer-events: auto;
    cursor: grab;
}

.ba-circle-handle:active {
    cursor: grabbing;
}

.ba-circle-handle svg {
    width: 13px;
    height: 13px;
}

/* Statistics Box */
.stat-card-box {
    background: var(--cream-50);
    border: 1px solid rgba(217, 148, 25, 0.16);
    border-radius: var(--radius-card);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-soft);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon-gold {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gold-400);
    color: var(--forest-950);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}

.stat-number-val {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--forest-950);
    line-height: 1;
}

.stat-desc-label {
    font-size: 11px;
    color: rgba(16, 39, 31, 0.75);
    margin-top: 3px;
}


/* ============================================================
   05 — LARGE 2 × 2 PRODUCT GRID SECTION
   ============================================================ */
.large-grid-section {
    background-color: var(--cream-200);
    padding: clamp(55px, 6.5vw, 85px) 0;
}

.large-2x2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3vw, 32px);
}

.large-product-card {
    background: var(--cream-50);
    border: 1px solid rgba(217, 148, 25, 0.18);
    border-radius: var(--radius-card-lg);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    box-shadow: var(--shadow-layered);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.large-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.12);
}

/* Left Image Column (42% width) */
.lpc-image-col {
    width: 42%;
    position: relative;
    background: radial-gradient(circle at center, rgba(246, 198, 91, 0.16) 0%, rgba(245, 235, 213, 0.4) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    overflow: hidden;
}

.lpc-botanical-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lpc-glow-aura {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 198, 91, 0.25) 0%, transparent 70%);
    filter: blur(12px);
}

.lpc-leaf-decor {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 90px;
    opacity: 0.3;
    transform: rotate(20deg);
}

.lpc-product-thumb {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lpc-product-thumb img {
    max-height: 165px;
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.large-product-card:hover .lpc-product-thumb img {
    transform: scale(1.06);
}

/* Right Info Column (58% width) */
.lpc-info-col {
    width: 58%;
    padding: clamp(20px, 2.5vw, 28px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lpc-name {
    font-size: clamp(17px, 1.6vw, 21px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.22;
}

.lpc-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    margin-bottom: 10px;
}

.lpc-rating-num {
    color: rgba(16, 39, 31, 0.65);
    font-size: 11px;
}

.lpc-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--forest-800);
    margin-bottom: 18px;
}

.lpc-actions-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.lpc-order-btn {
    min-width: 120px;
    height: 42px;
    padding: 0 20px;
    font-size: 12.5px;
}

.lpc-cart-btn {
    height: 42px;
    padding: 0 18px;
    font-size: 12px;
}


/* ============================================================
   06 — CUSTOMER TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    background: linear-gradient(135deg, var(--forest-950) 0%, var(--forest-900) 60%, var(--forest-800) 100%);
    color: var(--text-light);
    padding: clamp(55px, 6vw, 75px) 0;
    position: relative;
    overflow: hidden;
}

.testi-header-center {
    text-align: center;
    max-width: 550px;
    margin: 0 auto clamp(28px, 4vw, 40px);
}

.testi-sub-lead {
    color: rgba(249, 244, 231, 0.75);
    font-size: 13.5px;
}

.testi-carousel-wrapper {
    position: relative;
}

.testi-carousel {
    padding: 10px 4px 20px 4px;
    overflow: hidden;
}

.testi-card-box {
    background: rgba(6, 59, 40, 0.68);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(246, 198, 91, 0.22);
    border-radius: var(--radius-card);
    padding: 22px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.testi-card-box:hover {
    transform: translateY(-4px);
    border-color: var(--gold-400);
}

.testi-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.testi-avatar-frame {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--gold-400);
    overflow: hidden;
    flex-shrink: 0;
    background: #2a4c3f;
}

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

.testi-user-info {
    display: flex;
    flex-direction: column;
}

.testi-user-name {
    color: var(--gold-300);
    font-size: 14px;
    font-weight: 600;
}

.testi-user-city {
    color: rgba(249, 244, 231, 0.55);
    font-size: 10.5px;
}

.testi-user-stars {
    margin-left: auto;
    color: var(--gold-400);
    font-size: 11px;
    letter-spacing: 1.5px;
}

.testi-quote-text {
    font-size: 12.5px;
    line-height: 1.55;
    color: rgba(249, 244, 231, 0.85);
    font-style: italic;
}

/* Testimonial Controls */
.testi-controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.testi-nav-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(6, 69, 47, 0.8);
    border: 1px solid var(--gold-400);
    color: var(--gold-300);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.testi-nav-arrow:hover {
    background: var(--forest-700);
    transform: scale(1.08);
}

.testi-nav-arrow svg {
    width: 16px;
    height: 16px;
}

.testi-pagination {
    width: auto !important;
    display: flex;
    gap: 6px;
}


/* ============================================================
   07 — FOOTER & TRUST BAR
   ============================================================ */
.site-footer {
    background: var(--forest-950);
    color: var(--text-light);
    position: relative;
}

.footer-trust-bar {
    padding: 24px 0;
    border-bottom: 1px solid rgba(246, 198, 91, 0.16);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 64px);
    width: 100%;
}

.trust-bar-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(246, 198, 91, 0.12);
    border: 1px solid var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    flex-shrink: 0;
}

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

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-heading {
    color: var(--gold-300);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.trust-sub {
    color: rgba(249, 244, 231, 0.65);
    font-size: 11px;
}

.footer-bottom-bar {
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .brand-name {
    font-size: 17px;
}

.footer-brand .brand-tagline {
    font-size: 7px;
}

.footer-copyright {
    color: rgba(249, 244, 231, 0.55);
    font-size: 11.5px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(246, 198, 91, 0.3);
    color: var(--gold-300);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.social-link:hover {
    background: var(--gold-400);
    color: var(--forest-950);
    transform: translateY(-2px);
}

.social-link svg {
    width: 14px;
    height: 14px;
}


/* ============================================================
   RESPONSIVE BREAKPOINTS & ADJUSTMENTS
   Targeted for 1440px, 1366px, 1280px, 1024px, 768px, 414px, 390px, 375px, 360px
   Strict NO HORIZONTAL OVERFLOW rule
   ============================================================ */

/* Medium Desktop / Small Laptop (1024px - 1199px) */
@media (max-width: 1199px) {
    .hero-grid {
        grid-template-columns: 45% 55%;
    }
    
    .fc-left { left: 0; }
    .fc-right { right: 0; }
    
    .feat-layout-grid {
        grid-template-columns: 36% 32% 32%;
    }
    
    .ba-layout-grid {
        grid-template-columns: 30% 42% 28%;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    .site-header {
        height: 66px;
    }
    
    .primary-nav {
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        background: rgba(3, 41, 29, 0.98);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        padding: 24px 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        border-bottom: 1px solid rgba(246, 198, 91, 0.2);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        z-index: 99;
    }

    .primary-nav.is-open {
        transform: translateY(0);
    }

    .menu-toggle {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: 20px;
    }

    .hero-copy-col {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-benefits-grid {
        margin: 0 auto;
    }

    .bs-layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .bs-left-col {
        padding-right: 0;
        max-width: 550px;
        margin: 0 auto;
    }

    .feat-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .feat-left-col {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feat-checklist {
        align-items: flex-start;
        margin: 0 auto 28px;
    }

    .feat-right-col {
        max-width: 440px;
        margin: 0 auto;
        width: 100%;
    }

    .ba-layout-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .ba-left-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ba-compare-frame {
        max-width: 540px;
        margin: 0 auto;
    }

    .stat-card-box {
        max-width: 440px;
        margin: 0 auto;
    }

    .large-2x2-grid {
        grid-template-columns: 1fr;
    }

    .large-product-card {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

/* Mobile Devices (<= 767px) */
@media (max-width: 767px) {
    html {
        font-size: 14px;
    }

    .content-container {
        padding: 0 18px;
    }

    .hero-section {
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 20px;
        text-align: left;
    }

    .hero-benefit-item {
        flex-direction: row;
        align-items: center;
    }

    /* Keep Hero Composition Rich & Non-flat on Mobile */
    .hero-stage-inner {
        height: 380px;
    }

    .hero-main-bottle-wrap {
        width: 130px;
        height: 290px;
        margin-left: 0;
    }

    .hero-floating-card {
        padding: 8px 10px;
        gap: 8px;
    }

    .fc-thumb {
        width: 32px;
        height: 32px;
    }

    .fc-title {
        font-size: 10px;
    }

    .fc-price {
        font-size: 10px;
    }

    .fc-left { left: 0; top: 15%; }
    .fc-front-left { left: 5%; bottom: 2%; }
    .fc-front-right { right: 5%; bottom: 4%; }
    .fc-right { right: 0; top: 22%; }

    /* Best Sellers Carousel on Mobile (1.2 cards visible to hint scroll) */
    .bs-product-card {
        padding: 14px;
    }

    /* Mobile Large Product Cards: Rich 1-Column Layout */
    .large-product-card {
        flex-direction: column;
    }

    .lpc-image-col {
        width: 100%;
        padding: 20px 10px;
    }

    .lpc-product-thumb {
        height: 150px;
    }

    .lpc-info-col {
        width: 100%;
        padding: 20px;
        text-align: center;
        align-items: center;
    }

    .lpc-rating-row {
        justify-content: center;
    }

    .lpc-actions-row {
        width: 100%;
        flex-direction: row;
        gap: 10px;
    }

    .lpc-order-btn,
    .lpc-cart-form {
        flex: 1;
    }

    .lpc-cart-btn {
        width: 100%;
    }

    /* Footer Trust Items Stacked on Mobile */
    .trust-bar-items {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }
}

/* Very Small Mobile Viewports (<= 390px, 375px, 360px) */
@media (max-width: 390px) {
    .content-container {
        padding: 0 14px;
    }

    .brand-name {
        font-size: 16px;
    }

    .hero-title {
        font-size: 29px;
    }

    .hero-stage-inner {
        height: 330px;
    }

    .hero-main-bottle-wrap {
        width: 110px;
        height: 250px;
    }

    .fc-stars {
        display: none;
    }

    .lpc-actions-row {
        flex-direction: column;
    }

    .lpc-order-btn {
        width: 100%;
    }

    .lpc-cart-btn {
        width: 100%;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* ---- 3D enhancements for admin login, checkout, product ---- */
.checkout-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:30px; align-items:start; }
.checkout-summary { padding:26px 28px; border:1px solid #e9f1ec; border-radius:18px; background:linear-gradient(165deg,#fff,#fbfdfa); }
.checkout-summary .cart-row { border-bottom:1px solid #eef3f0; }
.checkout-summary .cart-row:last-child { border-bottom:0; }
.checkout-summary .total-line { display:flex; justify-content:space-between; padding:8px 0; font-size:15px; color:#0b3d2e; }
.checkout-summary .total-line.total { font-weight:700; font-size:19px; border-top:1px solid #e9f1ec; margin-top:6px; }
.product-image { position:relative; overflow:hidden; border-radius:18px; padding:18px; background:linear-gradient(165deg,#fff,#fbfdfa); border:1px solid #e9f1ec; }
.product-image img { width:100%; height:auto; display:block; border-radius:12px; }
.page-copy h2 { margin:0 0 14px; }
.page-copy .price { font-size:24px; font-weight:700; color:#0b3d2e; margin:8px 0; }
.page-copy .price s { color:#8a9a92; font-weight:400; margin-left:8px; }
.page-copy .stock { display:inline-block; font-size:12px; color:#1f7a4d; background:#eaf6f0; padding:4px 10px; border-radius:999px; margin-bottom:18px; }
.product-actions { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:18px; }
.product-actions form { flex:1 1 220px; }
.form-field { margin-bottom:16px; }
.form-field label { display:block; font-size:12px; font-weight:600; color:#0b3d2e; margin-bottom:6px; }
.form-field input, .form-field textarea, .form-field select { width:100%; padding:12px 14px; border:1px solid #d8e3dc; border-radius:11px; font-size:15px; font-family:inherit; background:#fff; box-sizing:border-box; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline:none; border-color:#d4af37; box-shadow:0 0 0 3px rgba(212,175,55,.22); }
.form-field.full { grid-column:1 / -1; }
.form-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.admin-form { background:#fff; border:1px solid #e9f1ec; border-radius:18px; padding:28px; }
.admin-form h2 { margin:0 0 22px; font-size:20px; color:#0b3d2e; }
@media (max-width:860px) {
  .checkout-grid { grid-template-columns:1fr; }
  .form-grid { grid-template-columns:1fr; }
}

/* ---- 3D animated color-box styling for every page ---- */
.page-section { position:relative; }
.container { position:relative; }

/* 3D color-box card used across all inner pages */
.n3d-box {
  background:linear-gradient(165deg, #ffffff, #f6fbf8);
  border:1px solid #e7efe9;
  border-radius:20px;
  padding:30px;
  box-shadow:0 18px 40px -22px rgba(6,63,43,0.45);
  position:relative;
  overflow:hidden;
}
.n3d-box::before {
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(120% 80% at 12% 0%, rgba(212,175,55,0.10), transparent 55%),
             radial-gradient(90% 70% at 100% 100%, rgba(6,63,43,0.10), transparent 55%);
  pointer-events:none;
}
.n3d-box .n3d-accent {
  position:absolute; left:0; top:0; bottom:0; width:5px;
  background:linear-gradient(180deg, #d4af37, #0b3d2e);
  border-radius:5px 0 0 5px;
}

/* payment method 3D selectable boxes */
.pay-options { display:flex; gap:16px; flex-wrap:wrap; }
.pay-card { flex:1 1 200px; cursor:pointer; position:relative; }
.pay-card input { position:absolute; opacity:0; pointer-events:none; }
.pay-box {
  border:1.5px solid #dfe9e2;
  border-radius:16px;
  padding:20px 18px;
  background:linear-gradient(165deg,#fff,#f7fbf9);
  text-align:center;
  transition:transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s, background .3s;
  position:relative;
  overflow:hidden;
}
.pay-box::after {
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(212,175,55,0.14), transparent 60%);
  opacity:0; transition:opacity .3s;
}
.pay-card:hover .pay-box { transform:translateY(-4px) rotateX(5deg); box-shadow:0 18px 34px -16px rgba(6,63,43,0.5); border-color:#d4af37; }
.pay-card.is-active .pay-box {
  border-color:#d4af37;
  background:linear-gradient(165deg,#fffaf0,#f6fbf8);
  box-shadow:0 0 0 3px rgba(212,175,55,0.25), 0 18px 34px -16px rgba(6,63,43,0.5);
}
.pay-icon { font-size:26px; margin-bottom:8px; }
.pay-name { font-weight:700; color:#0b3d2e; font-size:15px; }
.pay-sub { font-size:12px; color:#5a6b63; margin-top:4px; }
.pay-check { position:absolute; top:10px; right:12px; font-size:11px; color:#1f7a4d; font-weight:700; opacity:0; transition:opacity .25s; }
.pay-card.is-active .pay-check { opacity:1; }

/* ============================================
   INNER PAGE HERO - Same as Home Page Background
   ============================================ */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #03291D 0%, #063B28 45%, #06452F 100%);
  color: #F9F4E7;
  overflow: hidden;
  padding: 100px 0 60px;
}

/* Atmospheric botanical background image */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/hero-background.png');
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  mix-blend-mode: luminosity;
  z-index: 1;
  pointer-events: none;
}

/* Vignette depth effect */
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(10, 82, 55, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 25% 40%, rgba(6, 69, 47, 0.45) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(3, 41, 29, 0.5) 0%, transparent 40%, rgba(3, 41, 29, 0.8) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Bokeh light spheres */
.page-hero .page-hero-inner {
  position: relative;
  z-index: 3;
}

.page-hero .page-hero-inner::before {
  content: "";
  position: absolute;
  top: -40px;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(246, 198, 91, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
  z-index: -1;
}

.page-hero .page-hero-inner::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 15%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(239, 175, 47, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(6px);
  pointer-events: none;
  z-index: -1;
}

/* inner page hero as a 3D color box */
.inner-hero-box {
  background: rgba(6, 29, 21, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 184, 105, 0.2);
  border-radius: 24px;
  padding: 54px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 26px 60px -28px rgba(0,0,0,0.6);
  max-width: 800px;
  margin: 0 auto;
}
.inner-hero-box::before {
  content: "";
  position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(212,175,55,0.35), transparent 70%);
  border-radius: 50%;
}
.inner-hero-box::after {
  content: "";
  position: absolute; left: -80px; bottom: -80px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
  border-radius: 50%;
}
.inner-hero-box .eyebrow { color:#d4af37; }
.inner-hero-box h1 { color:#fff; }
.inner-hero-box p { color:rgba(255,255,255,0.82); }

/* Inner page hero without inner-hero-box (e.g. product page) */
.page-hero .page-hero-inner:not(.inner-hero-box) {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

/* Product page hero - no inner box */
.page-hero:has(.page-hero-inner:not(.inner-hero-box)) .page-hero-inner {
  text-align: center;
}

/* Floating golden particles for inner page heroes */
.page-hero .page-hero-inner .hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  pointer-events: none;
  animation: pageHeroFloat 6s ease-in-out infinite;
}
.page-hero .page-hero-inner .hero-particle:nth-child(1) { top: 20%; left: 8%; animation-delay: 0s; animation-duration: 5s; }
.page-hero .page-hero-inner .hero-particle:nth-child(2) { top: 60%; right: 12%; animation-delay: 1.2s; animation-duration: 7s; }
.page-hero .page-hero-inner .hero-particle:nth-child(3) { bottom: 25%; left: 25%; animation-delay: 0.6s; animation-duration: 6s; }
.page-hero .page-hero-inner .hero-particle:nth-child(4) { top: 35%; right: 30%; animation-delay: 2s; animation-duration: 8s; width: 3px; height: 3px; }
.page-hero .page-hero-inner .hero-particle:nth-child(5) { bottom: 40%; right: 20%; animation-delay: 0.3s; animation-duration: 5.5s; width: 5px; height: 5px; }

@keyframes pageHeroFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-20px) scale(1.3); opacity: 0.8; }
}

/* generic content cards on inner pages */
.content-card {
  background:linear-gradient(165deg,#ffffff,#f7fbf9);
  border:1px solid #e7efe9;
  border-radius:18px;
  padding:26px;
  box-shadow:0 14px 32px -20px rgba(6,63,43,0.4);
  transition:transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.content-card:hover { transform:translateY(-4px) rotateX(4deg); box-shadow:0 22px 40px -20px rgba(6,63,43,0.55); }

/* shop / cart product rows */
.shop-card, .cart-row, .review-card {
  background:linear-gradient(165deg,#ffffff,#f7fbf9);
  border:1px solid #e7efe9;
  border-radius:16px;
}
.shop-card:hover, .review-card:hover { transform:translateY(-4px) rotateX(4deg); box-shadow:0 18px 36px -20px rgba(6,63,43,0.5); transition:transform .3s, box-shadow .3s; }

@media (prefers-reduced-motion: reduce) {
  .pay-box, .content-card, .shop-card, .review-card, .n3d-box { animation:none !important; transition:none !important; transform:none !important; }
}

/* ============================================
   INNER PAGES - 3D IMAGE FIXES & ANIMATIONS
   (Home page NOT affected)
   ============================================ */

/* Page Grid - About & Contact 2-column layout */
.page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Page Image - Fix oversized images with 3D frame */
.page-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 480px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s ease;
}
.page-image img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: contain;
  border-radius: 14px;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.page-image:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(-2deg);
  box-shadow: 0 30px 60px -20px rgba(6,63,43,0.55), 0 0 40px rgba(212,175,55,0.15);
}
.page-image:hover img {
  transform: scale(1.04);
}

/* Shop Card - override content-card padding for full-bleed image */
.shop-card.content-card {
  padding: 0;
  overflow: hidden;
}
.shop-card .shop-card-body {
  padding: 20px;
}

/* Shop Grid - Product cards grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

/* Shop Card Image - Fix oversized */
.shop-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}
.shop-card-image {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f6fbf8 0%, #eef6f1 100%);
  border-radius: 14px 14px 0 0;
}
.shop-card-image img {
  max-height: 240px;
  max-width: 90%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.shop-card:hover .shop-card-image img {
  transform: scale(1.08) rotateY(3deg);
}
.shop-card:hover {
  transform: translateY(-8px) rotateX(4deg);
  box-shadow: 0 28px 50px -18px rgba(6,63,43,0.5);
}
.shop-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.shop-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #0b3d2e;
  margin-bottom: 10px;
}
.shop-card-body p {
  font-size: 14px;
  color: #5a6b63;
  line-height: 1.6;
  flex: 1;
}
.shop-card-body .product-actions {
  margin-top: 16px;
}

/* Testimonial Grid & Card */
.testimonial-grid {
  display: grid;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.testimonial-card:hover {
  transform: translateY(-6px) rotateX(5deg);
  box-shadow: 0 24px 44px -18px rgba(6,63,43,0.5);
}
.testimonial-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.testimonial-top img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(212,175,55,0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.testimonial-card:hover .testimonial-top img {
  transform: scale(1.1) rotateZ(5deg);
  border-color: #d4af37;
}
.testimonial-top .stars {
  color: #d4af37;
  font-size: 14px;
}
.testimonial-text {
  font-size: 14px;
  color: #3a4f45;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 14px;
}
.testimonial-name {
  font-weight: 700;
  color: #0b3d2e;
  font-size: 14px;
}
.testimonial-city {
  font-size: 12px;
  color: #888;
  margin-left: 6px;
}

/* Product Detail Page */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.product-detail .product-image {
  position: sticky;
  top: 100px;
}
.product-detail .product-image img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

/* Gallery Slider - 3D frame */
.gallery-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #f6fbf8 0%, #eef6f1 100%);
}
.gallery-slide {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.gallery-slide[style*="opacity: 1"] {
  transform: scale(1);
}
.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.gallery-thumbs .thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f0f5f2;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery-thumbs .thumb:hover,
.gallery-thumbs .thumb.active {
  border-color: #d4af37;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(212,175,55,0.3);
}

/* Avatar images in reviews */
.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(212,175,55,0.3);
  transition: transform 0.3s ease;
}
.avatar:hover {
  transform: scale(1.1);
}

/* Inner page responsive */
@media (max-width: 860px) {
  .page-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-detail {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-detail .product-image {
    position: static;
  }
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .gallery-slider {
    height: 300px;
  }
}
@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr !important;
  }
  .shop-card-image {
    height: 220px;
  }
}

/* ---- 3D depth on homepage sections (design preserved) ---- */
.hero-section,
.best-sellers-section,
.large-feature-section,
.before-after-section,
.large-grid-section,
.testimonials-section {
  position:relative;
}
.hero-section .hero-floating-card,
.home-page .bs-product-card,
.large-product-card,
.stat-card-box,
.trust-badge-card,
.testi-card-box {
  transition:transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
  transform-style:preserve-3d;
}
.hero-section .hero-floating-card:hover,
.home-page .bs-product-card:hover,
.large-product-card:hover,
.stat-card-box:hover,
.trust-badge-card:hover,
.testi-card-box:hover {
  transform:translateY(-6px) rotateX(5deg);
  box-shadow:0 26px 50px -22px rgba(6,63,43,0.55);
}
.hero-section .hero-floating-card {
  animation:n3d-home-float 7s ease-in-out infinite;
}
@keyframes n3d-home-float {
  0%,100%{transform:translateY(0) rotateX(4deg) rotateY(-6deg)}
  50%{transform:translateY(-12px) rotateX(-4deg) rotateY(6deg)}
}
@media (prefers-reduced-motion: reduce) {
  .hero-section .hero-floating-card { animation:none !important; }
}
