/* ==========================================================================
   DURLABH DARSHAN — PREMIUM DESIGN SYSTEM
   A refined, mobile-first design language inspired by the best of
   Apple, Google Pixel, and modern Indian D2C brands.
   ========================================================================== */

/* --- Design Tokens --- */
:root {
    /* Palette — warm, earthy, spiritual */
    --color-bg:         #faf6f1;
    --color-bg-warm:    #f3ece3;
    --color-surface:    #ffffff;
    --color-surface-alt:#fef9f4;

    --color-ink:        #1a1612;
    --color-ink-soft:   #6b5e52;
    --color-ink-muted:  #a39585;

    --color-brand:      #c44a2c;
    --color-brand-deep: #a33d24;
    --color-brand-glow: #e8603e;
    --color-brand-tint: #fdf0eb;
    --color-brand-gradient: linear-gradient(135deg, #e8603e 0%, #c44a2c 50%, #a33d24 100%);

    --color-gold:       #d4a853;
    --color-success:    #2d8a4e;
    --color-success-bg: #e9f5ee;

    --color-border:     #ebe3da;
    --color-border-light:#f2ece5;

    /* Typography */
    --font: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Inter', 'SF Pro Display', sans-serif;

    /* Radius scale — soft-squared (Pura Vida-inspired) */
    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  10px;
    --radius-xl:  12px;
    --radius-btn: 4px;
    --radius-pill:999px;

    /* Shadows — flat & airy (minimal depth) */
    --shadow-xs:  0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm:  0 2px 6px rgba(0,0,0,0.05);
    --shadow-md:  0 4px 14px rgba(0,0,0,0.06);
    --shadow-lg:  0 8px 24px rgba(0,0,0,0.08);
    --shadow-brand: 0 6px 18px rgba(196,74,44,0.18);

    /* Motion */
    --ease: cubic-bezier(0.4, 0.0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration: 0.3s;

    /* Spacing scale — single source of vertical/horizontal rhythm */
    --space-1:  4px;
    --space-2:  8px;
    --space-3:  12px;
    --space-4:  16px;
    --space-5:  20px;
    --space-6:  24px;
    --space-8:  32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;

    /* Fluid section padding — replaces ad-hoc 48/64/120 jumps */
    --section-pad:    clamp(56px, 9vw, 112px);
    --section-pad-sm: clamp(40px, 6.5vw, 80px);

    --safe-bottom: env(safe-area-inset-bottom, 20px);
}

/* --- Google Font: Inter --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

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

body {
    font-family: var(--font);
    font-size: 16px;
    color: var(--color-ink);
    background: var(--color-bg);
    background-image: radial-gradient(circle at top center, #ffffff 0%, var(--color-bg) 80%);
    background-attachment: fixed;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: 90px; /* 34px announcement bar + 56px nav */
}

img { max-width: 100%; display: block; }
ul  { list-style: none; }

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: transform var(--duration) var(--ease-spring);
}

button:active { transform: scale(0.97); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95em 1.6em;
    border-radius: var(--radius-btn);
    font-size: clamp(13px, 3.2vw, 15px);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: all var(--duration) var(--ease);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--color-brand-gradient);
    color: #fff;
    box-shadow: 0 4px 12px rgba(196,74,44,0.15), inset 0 1px 0 rgba(255,255,255,0.2);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f27354 0%, #d85737 50%, #b84a2f 100%);
    box-shadow: var(--shadow-brand);
    transform: scale(1.02);
}

.btn-outline {
    background: linear-gradient(135deg, rgba(196,74,44,0.05) 0%, rgba(196,74,44,0.1) 100%);
    color: var(--color-brand);
    border-color: rgba(196,74,44,0.2);
}

.btn-outline:hover {
    background: linear-gradient(135deg, rgba(196,74,44,0.1) 0%, rgba(196,74,44,0.15) 100%);
}

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

.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container { padding: 0 40px; }
}


/* ==========================================================================
   LANGUAGE SYSTEM
   ========================================================================== */
body.lang-en .hi { display: none !important; }
body.lang-hi .en { display: none !important; }


/* ==========================================================================
   SPA VIEW SYSTEM
   ========================================================================== */
.view {
    display: none;
    min-height: 100vh;
    animation: viewIn 0.5s var(--ease);
}
.view.active { display: block; }

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


/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 34px;
    z-index: 10001;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid var(--color-border-light);
    overflow: hidden;
    white-space: nowrap;
}

.announcement-track {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    animation: announceScroll 28s linear infinite;
    will-change: transform;
}

.announcement-item {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0 18px;
    background: var(--color-brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.announcement-sep {
    font-size: 9px;
    color: var(--color-brand);
}

@keyframes announceScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

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

@media (min-width: 768px) {
    .announcement-item { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    .announcement-track { animation: none; }
}


/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.top-nav {
    position: fixed;
    top: 34px; left: 0;
    width: 100%;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
    padding: 0 16px;
    background: linear-gradient(90deg, #5a2330 0%, #9e4e2e 50%, #4c1f2c 100%);
    border-bottom: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.logo-container {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 28px;
    width: auto;
}

.nav-brand { display: none; }

.lang-toggle {
    display: flex;
    background: rgba(255,255,255, 0.18);
    border-radius: var(--radius-pill);
    padding: 3px;
    gap: 2px;
}

.lang-btn {
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255, 0.9);
}

.lang-btn.active {
    background: #ffffff;
    color: var(--color-brand-deep);
    box-shadow: var(--shadow-xs);
}


/* ==========================================================================
   HERO SECTION — Full-bleed cinematic video
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: transparent;
    padding: 0;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(250, 246, 241, 0.6) 0%, transparent 100%);
    pointer-events: none;
}

.mute-toggle-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, rgba(26,22,18,0.6) 0%, rgba(0,0,0,0.8) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-pill);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 10;
    transition: background var(--duration) var(--ease);
}

.mute-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.mute-toggle-btn svg {
    width: 20px;
    height: 20px;
}




/* ==========================================================================
   SECTION TYPOGRAPHY (Shared)
   ========================================================================== */
.section-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-ink);
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.3;
}

/* Short accent rule under section titles */
.section-title::after {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: var(--radius-pill);
    background: var(--color-brand);
}

@media (min-width: 768px) {
    .section-title { font-size: 26px; margin-bottom: 48px; letter-spacing: 0.14em; }
}


/* ==========================================================================
   PRODUCT SECTION
   ========================================================================== */
.products-section {
    padding: var(--section-pad) 0;
    background: transparent;
}



/* --- Product Header --- */
.product-header {
    text-align: center;
    margin-bottom: 32px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-ink);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.product-subtitle {
    font-size: 16px;
    color: var(--color-ink-soft);
    font-weight: 500;
}

@media (min-width: 768px) {
    .product-name { font-size: 36px; }
    .product-subtitle { font-size: 18px; }
}

/* --- Duration Toggle Cards --- */
/* --- Pricing Cards --- */
.pricing-cards-container {
    margin-bottom: 48px;
    max-width: 480px;
    margin-inline: auto;
}

@media (min-width: 768px) {
    .pricing-cards-container {
        max-width: 800px;
    }
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr; /* Top-bottom layout */
    gap: var(--space-4);
    padding: 0 4px;
}

@media (min-width: 768px) {
    .pricing-cards {
        gap: var(--space-6);
    }
}

.pricing-card {
    background: var(--color-surface-alt);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    text-align: left;
    border: 1px solid var(--color-border-light);
    position: relative;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 116px 1fr;
    grid-template-areas:
        "img title"
        "img price"
        "img btn";
    gap: var(--space-3) var(--space-5);
    align-items: center;
    cursor: pointer;
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.pricing-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.pricing-card.highlight {
    background: var(--color-brand-tint);
    border-color: transparent;
    box-shadow: 0 16px 40px rgba(196,74,44,0.16), 0 0 0 2px var(--color-brand);
}

/* "Best Value" ribbon */
.card-ribbon {
    position: absolute;
    top: 0;
    right: var(--space-5);
    transform: translateY(-50%);
    z-index: 2;
    background: var(--color-brand-gradient);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 16px rgba(196,74,44,0.3);
    white-space: nowrap;
}

.pricing-card-img {
    grid-area: img;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.pricing-title {
    grid-area: title;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--color-ink);
    align-self: end;
}

@media (min-width: 768px) {
    .pricing-card {
        grid-template-columns: 200px 1fr;
        padding: var(--space-8);
        gap: var(--space-3) var(--space-8);
    }
    .pricing-title { font-size: 19px; }
}

.pricing-price {
    grid-area: price;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.price-line {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.price-now {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-ink);
    letter-spacing: -0.03em;
}

.price-was {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-ink-muted);
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
}

.price-save {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--color-success);
    background: var(--color-success-bg);
    padding: 3px 9px;
    border-radius: var(--radius-pill);
}

.price-sub {
    font-size: 11px;
    color: var(--color-ink-soft);
    font-weight: 400;
}

@media (min-width: 768px) {
    .price-now { font-size: 26px; }
    .price-was { font-size: 16px; }
    .price-save { font-size: 12px; }
    .price-sub { font-size: 12px; }
}

.pricing-btn {
    grid-area: btn;
    width: 100%;
    margin-top: var(--space-1);
    padding: 12px 16px;
}

/* --- Features Groups (Pixel Style) --- */
.features-groups {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto 32px;
}

@media (min-width: 768px) {
    .features-groups {
        max-width: 800px;
        flex-direction: row;
        align-items: stretch;
    }
    .feature-group { flex: 1; }
}

.feature-group {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
}

.feature-group-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.feature-group-icon {
    width: 24px;
    height: 24px;
    color: var(--color-ink-muted);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-group h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-ink);
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-group-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-brand);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--color-brand-tint);
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    display: inline-block;
    align-self: flex-start;
}

.feature-group-list li {
    font-size: 15px;
    color: var(--color-ink-soft);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
    font-weight: 500;
}
.feature-group-list li:last-child { margin-bottom: 0; }

.bullet-icon {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-ink-muted);
    margin-top: 8px;
    flex-shrink: 0;
}

/* "Complimentary" gift pill used inline in inclusion lists */
.gift-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-success);
    background: var(--color-success-bg);
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    margin-left: 4px;
    vertical-align: middle;
}

/* --- Clarity Strip --- */
.clarity-strip {
    background: var(--color-bg-warm);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 480px;
    margin-inline: auto;
    border: 1px solid var(--color-border-light);
}

.clarity-icon {
    width: 24px;
    height: 24px;
    color: var(--color-brand);
    flex-shrink: 0;
}

.clarity-strip p {
    font-size: 14px;
    color: var(--color-ink);
    line-height: 1.5;
    font-weight: 500;
}


/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
    padding: var(--section-pad-sm) 0;
    background: var(--color-bg-warm);
}

.testimonials-scroll {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 0 20px 20px;
    margin: 0 -20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.testimonials-scroll::-webkit-scrollbar { display: none; }

.testimonial-card {
    flex: 0 0 88%;
    max-width: 380px;
    background: var(--color-surface);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    scroll-snap-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 45%;
        padding: 36px 32px;
    }
}

.stars {
    color: var(--color-gold);
    margin-bottom: 16px;
    font-size: 16px;
    letter-spacing: 1px;
}

.quote {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--color-ink);
    font-weight: 500;
}

@media (min-width: 768px) {
    .quote { font-size: 17px; }
}

.author {
    font-weight: 600;
    font-size: 13px;
    color: var(--color-ink-muted);
    letter-spacing: 0.01em;
}


/* ==========================================================================
   APP BANNER (Bento Style)
   ========================================================================== */
.banner-section {
    padding: var(--section-pad-sm) 0;
    background: var(--color-bg);
}

.bento-banner {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
    object-fit: cover;
}

@media (min-width: 768px) {
    .bento-banner { border-radius: var(--radius-xl); }
}


/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
    padding: var(--section-pad-sm) 0;
    background: var(--color-bg-warm);
}

.faq-accordion {
    max-width: 600px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    transition: box-shadow var(--duration) var(--ease);
}

.faq-item.active {
    box-shadow: var(--shadow-sm);
    border-color: var(--color-border);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--color-ink);
    line-height: 1.4;
}

.chevron {
    transition: transform 0.4s var(--ease);
    color: var(--color-brand);
    font-size: 18px;
    line-height: 1;
    background: var(--color-brand-tint);
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
    background: var(--color-brand);
    color: #fff;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    transition: all 0.4s var(--ease);
    opacity: 0;
    overflow: hidden;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
    opacity: 1;
}
.faq-answer p {
    font-size: 14px;
    color: var(--color-ink-soft);
    line-height: 1.65;
}



/* ==========================================================================
   PRODUCT EXPANDED SECTIONS (Trust Badges, Reviews, Banner)
   ========================================================================== */

/* Trust Badges */
.trust-badges-container {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 16px 0;
    margin-top: 16px;
    scrollbar-width: none; /* Firefox */
}
.trust-badges-container::-webkit-scrollbar { display: none; } /* Safari/Chrome */

.trust-badge {
    flex: 0 0 auto;
    width: 132px;
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: var(--space-5) var(--space-3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: var(--space-3);
    color: var(--color-ink-soft);
    box-shadow: var(--shadow-xs);
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.trust-badge svg {
    color: var(--color-brand);
}
.trust-badge span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .trust-badges-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow-x: visible;
    }
    .trust-badge {
        width: 100%;
    }
}

/* Expanded Content Container */
.product-expanded-content {
    width: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    padding-bottom: 80px; /* space for fixed checkout bar */
}

/* YouTube Video Container */
.pd-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}
.pd-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Click-to-load YouTube facade — clean minimal tile */
.yt-facade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    background: linear-gradient(160deg, #1a1008 0%, #2e1a0e 60%, #3d1f10 100%);
}
.yt-facade-thumb {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.72);
    transition: transform var(--duration) var(--ease), filter var(--duration) var(--ease);
}
.yt-facade:hover .yt-facade-thumb {
    transform: scale(1.03);
    filter: brightness(0.62);
}
.yt-play-btn {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--color-brand-gradient);
    box-shadow: 0 8px 32px rgba(196,74,44,0.5);
    padding-left: 4px;
    transition: transform var(--duration) var(--ease-spring), box-shadow var(--duration) var(--ease);
}
.yt-facade:hover .yt-play-btn {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(196,74,44,0.65);
}
.yt-play-label {
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* Maha Mrityunjaya Mantra marquee */
.mantra-marquee {
    overflow: hidden;
    white-space: nowrap;
    background: var(--color-brand-gradient);
    padding: 14px 0;
    margin: var(--space-10) 0;
}
.mantra-track {
    display: inline-flex;
    align-items: center;
    animation: mantraScroll 40s linear infinite;
    will-change: transform;
}
.mantra-text {
    padding: 0 var(--space-6);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.01em;
}
.mantra-sep {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    flex-shrink: 0;
}
@keyframes mantraScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (min-width: 768px) {
    .mantra-marquee { padding: 18px 0; }
    .mantra-text { font-size: 18px; }
}
@media (prefers-reduced-motion: reduce) {
    .mantra-track { animation: none; }
}

/* Edge to Edge Banner */
.pd-edge-banner {
    width: 100%;
    height: auto;
    display: block;
}

/* Reviews Section */
.pd-reviews {
    padding: var(--section-pad) var(--space-5);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.reviews-summary {
    display: flex;
    justify-content: center;
    margin: 0 auto var(--space-10);
}

.reviews-score {
    text-align: center;
}
.reviews-score-num {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--color-ink);
}
.reviews-score .stars {
    color: var(--color-gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin: var(--space-2) 0 var(--space-1);
}
.reviews-score-count {
    color: var(--color-ink-soft);
    font-size: 13px;
    font-weight: 500;
}
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.review-card {
    background: var(--color-surface-alt);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}
.review-card .stars {
    color: var(--color-gold);
    font-size: 16px;
    margin-bottom: 12px;
}
.review-text {
    font-size: 15px;
    font-style: italic;
    color: var(--color-ink);
    margin-bottom: 16px;
    line-height: 1.5;
}
.review-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-ink-muted);
}
@media (min-width: 768px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* FAQs on Product Page */
.pd-faqs {
    width: 100%;
}
.pd-faqs .faq-accordion {
    padding: 0 16px;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    padding: 40px 20px 120px;
    text-align: center;
    font-size: 12px;
    color: var(--color-ink-muted);
    letter-spacing: 0.01em;
}


/* ==========================================================================
   BUTTONS & FLOATING CTA
   ========================================================================== */
.primary-btn {
    background: var(--color-brand-gradient);
    color: #ffffff;
    padding: 1.05em 1.75em;
    border-radius: var(--radius-btn);
    font-size: clamp(14px, 3.6vw, 16px);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all var(--duration) var(--ease);
}

.primary-btn:hover {
    box-shadow: var(--shadow-brand);
    filter: brightness(1.08);
}

.primary-btn.full-width { width: 100%; }

.floating-cta {
    position: fixed;
    bottom: var(--safe-bottom);
    left: 0;
    width: 100%;
    padding: 0 20px 20px;
    z-index: 100;
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.floating-cta.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(32px);
}

.floating-cta button {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    box-shadow: var(--shadow-brand);
}


/* ==========================================================================
   PRODUCT DETAIL VIEW
   ========================================================================== */
.page-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 56px;
    background: rgba(250,246,241, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    display: flex;
    align-items: center;
    padding: 0 16px;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border-light);
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-ink);
    background: var(--color-surface);
    padding: 7px 16px 7px 10px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--color-border-light);
}

.product-detail-container {
    padding: var(--space-8) var(--space-5) var(--space-12);
    background: var(--color-bg);
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .product-detail-container {
        padding-top: var(--space-12);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
        align-items: start;
    }
}

/* --- Product Gallery (Product Page) --- */
.product-gallery {
    margin-bottom: 32px;
    width: 100%;
}

.main-image-display {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 0;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--color-ink);
    transition: all var(--duration) var(--ease);
    z-index: 10;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.05);
}

.gallery-nav.prev {
    left: 12px;
}

.gallery-nav.next {
    right: 12px;
}

@media (max-width: 480px) {
    .gallery-nav {
        width: 36px;
        height: 36px;
    }
    .gallery-nav.prev { left: 8px; }
    .gallery-nav.next { right: 8px; }
}

.main-image-display img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
    border-radius: 0;
}

/* Gallery Video styling */
#gallery-video-wrapper {
    width: 100%;
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.main-image-display.is-video {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
}

#gallery-main-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.05);
}

#gallery-mute-toggle {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: linear-gradient(135deg, rgba(26,22,18,0.6) 0%, rgba(0,0,0,0.8) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

#gallery-mute-toggle:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
}

.gallery-thumb.video-thumb {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-surface-alt);
    color: #fff;
    padding: 0;
    overflow: hidden;
}
.video-thumb-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
}
.video-thumb-play {
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
    padding: 7px 6px 7px 8px;
    border-radius: 50%;
    background: rgba(196, 74, 44, 0.92);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.gallery-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.gallery-thumbnails::-webkit-scrollbar { display: none; }

.gallery-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    background: var(--color-surface);
    padding: 4px;
    box-shadow: var(--shadow-xs);
    opacity: 0.65;
    transition: all 0.2s ease;
}

.gallery-thumb:hover { opacity: 1; }

.gallery-thumb.active {
    border-color: var(--color-brand);
    opacity: 1;
    box-shadow: 0 0 0 1px var(--color-brand);
}

@media (min-width: 768px) {
    .gallery-thumb { width: 96px; height: 96px; }
}

.pd-info {
    padding: 8px 0 0;
    max-width: 600px;
    margin: 0 auto;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.pd-title {
    font-size: clamp(21px, 5.5vw, 28px);
    font-weight: 600;
    margin-bottom: var(--space-2);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.pd-rating-inline {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}
.pd-rating-inline .stars {
    color: var(--color-gold);
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 0;
}
.pd-rating-count {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-ink-soft);
}

.pd-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.pd-total {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-ink);
    letter-spacing: -0.03em;
}

.pd-was {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-ink-muted);
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
}

.pd-save {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--color-success);
    background: var(--color-success-bg);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.pd-stock {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-ink-soft);
    margin-bottom: var(--space-6);
}
.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-success);
    box-shadow: 0 0 0 3px var(--color-success-bg);
    flex-shrink: 0;
}


/* Complimentary gift callout */
.pd-gift-strip {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    margin-bottom: var(--space-6);
    background: var(--color-brand-tint);
    border: 1px solid rgba(196,74,44,0.12);
    border-radius: var(--radius-md);
}
.pd-gift-icon {
    color: var(--color-brand);
    flex-shrink: 0;
}
.pd-gift-text {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}
.pd-gift-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-ink);
}
.pd-gift-text span {
    font-size: 12px;
    color: var(--color-ink-soft);
    font-weight: 500;
}

.pd-section { margin-bottom: 32px; }

/* Boxed "What's Included" panel */
.pd-section-boxed {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
}

.pd-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.pd-features li, .pd-experiences li {
    font-size: 15px;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: var(--color-ink-soft);
    font-weight: 500;
    line-height: 1.5;
}

.pd-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 3px;
    width: 18px; height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c44a2c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.pd-note {
    background: var(--color-brand-tint);
    padding: 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--color-ink-soft);
    line-height: 1.55;
    font-weight: 500;
    border: 1px solid rgba(196,74,44,0.06);
}

.fixed-bottom-bar {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(250,246,241, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--color-border-light);
}
.fixed-bottom-bar button { max-width: 420px; }


/* ==========================================================================
   ADDRESS FORM
   ========================================================================== */
.form-container {
    padding: 24px 20px 140px;
    max-width: 520px;
    margin: 0 auto;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.form-group { margin-bottom: 20px; }
.form-row { display: flex; gap: 12px; }
.form-row .form-group { flex: 1; }

label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-ink-soft);
    letter-spacing: 0.01em;
}

input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    transition: all var(--duration) var(--ease);
    background: var(--color-surface);
    -webkit-appearance: none;
    font-weight: 500;
    color: var(--color-ink);
}

input::placeholder {
    color: var(--color-ink-muted);
    font-weight: 400;
}

input:focus {
    outline: none;
    border-color: var(--color-brand);
    box-shadow: 0 0 0 3px rgba(196,74,44,0.08);
}

input.readonly-input {
    background: var(--color-bg-warm);
    color: var(--color-ink-soft);
    border-color: transparent;
}

.helper-text {
    font-size: 12px;
    color: var(--color-ink-muted);
    margin-top: 6px;
    display: block;
}

.razorpay-secure-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.secure-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-ink-muted);
    letter-spacing: 0.02em;
}

.razorpay-logo {
    height: 18px;
    width: auto;
    object-fit: contain;
}


/* ==========================================================================
   SUCCESS VIEW
   ========================================================================== */
.success-container {
    padding: 100px 20px 80px;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.success-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-success);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.order-id {
    color: var(--color-ink-muted);
    margin-bottom: 40px;
    font-size: 15px;
    font-weight: 500;
}

.next-steps {
    text-align: left;
    background: var(--color-surface);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
}

.next-steps h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.next-steps ul li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}
.next-steps ul li:last-child { margin-bottom: 0; }

.next-steps .icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

.next-steps .text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--color-ink-soft);
    font-weight: 500;
}

.store-links {
    margin-top: 12px;
    display: flex;
    gap: 8px;
}

.store-link {
    padding: 8px 16px;
    background: var(--color-bg-warm);
    border-radius: var(--radius-pill);
    color: var(--color-ink);
    font-weight: 600;
    font-size: 13px;
    border: 1px solid var(--color-border-light);
    transition: all var(--duration) var(--ease);
}

.store-link:hover {
    background: var(--color-brand-tint);
    border-color: var(--color-brand);
    color: var(--color-brand);
}

.order-summary {
    background: var(--color-surface);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: left;
    border: 1px solid var(--color-border-light);
}

.order-summary h3 {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 700;
}

.order-summary p {
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--color-ink-soft);
    font-weight: 500;
}
.order-summary strong {
    color: var(--color-ink);
    font-weight: 700;
}
