/* ==========================================================================
   SATTVAA Premium Heritage Brand Stylesheet
   ========================================================================== */

/* Design Tokens & Theme Configuration */
:root {
    --primary-green: #0B2F1D;         /* Deep aged bottle green */
    --primary-green-light: #16472F;   /* Lighter green for hover/active states */
    --primary-green-dark: #061B10;    /* Dark emerald shadow */
    --accent-gold: #C5A059;           /* Sophisticated muted heritage gold */
    --accent-gold-bright: #E4C079;    /* Bright metallic gold for highlights */
    --accent-gold-dark: #8C6A2E;      /* Rich dark bronze gold */
    --bg-cream: #FDFBF7;              /* Warm heritage ivory background */
    --bg-white: #FFFFFF;              /* Clean white for panels */
    --text-dark: #1C2B22;             /* Forest obsidian dark text */
    --text-muted: #556B5F;            /* Medium muted sage green-gray */
    
    /* Elegant Borders & Shadows */
    --border-gold-hairline: 1px solid rgba(197, 160, 89, 0.35);
    --border-gold-solid: 1px solid rgba(197, 160, 89, 0.8);
    --shadow-soft: 0 10px 30px rgba(11, 47, 29, 0.04);
    --shadow-premium: 0 20px 50px rgba(6, 27, 16, 0.08);
    
    /* Typography Scales */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base size */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
}

/* Fluid Typography Helpers */
h1, h2, h3, h4, .font-serif {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.25;
}

/* Grid & Layout System */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    gap: 32px;
}

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

.grid-3-col {
    grid-template-columns: 1fr;
}

.grid-4-col {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-2-col { grid-template-columns: repeat(2, 1fr); }
    .grid-3-col { grid-template-columns: repeat(2, 1fr); }
    .grid-4-col { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-3-col { grid-template-columns: repeat(3, 1fr); }
    .grid-4-col { grid-template-columns: repeat(4, 1fr); }
}

.section-padding {
    padding: 60px 0;
}

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

.text-center { text-align: center; }
.align-center { align-items: center; }
.full-width { width: 100%; }

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border: 2px solid var(--bg-cream);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-light);
}

/* ==========================================================================
   PREMIUM UTILITIES & EFFECTS (Gold foil, borders, loading animations)
   ========================================================================== */

/* Gold Foil Text Effect */
.gold-gradient-text {
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold-bright) 50%, var(--accent-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 600;
}

/* Custom Accent Line (Symmetrical leaf/dot divider) */
.accent-line {
    width: 100px;
    height: 1px;
    background-color: var(--accent-gold);
    margin: 20px 0;
    position: relative;
}

.accent-line::after {
    content: "✦";
    color: var(--accent-gold);
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-cream);
    padding: 0 8px;
}

.accent-line.center {
    margin-left: auto;
    margin-right: auto;
}

.background-cream {
    background-color: var(--bg-cream);
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0; /* Premium sharp corners */
    transition: all 0.4s ease;
    cursor: pointer;
    font-family: var(--font-sans);
}

.btn-gold {
    background-color: var(--primary-green);
    color: var(--accent-gold-bright);
    border: 1px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(11, 47, 29, 0.2);
}

.btn-gold:hover {
    background-color: var(--accent-gold-dark);
    color: var(--primary-green-dark);
    border-color: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--bg-cream);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background-color: var(--bg-cream);
    color: var(--primary-green);
    border-color: var(--bg-cream);
    transform: translateY(-2px);
}

.btn-header {
    padding: 10px 24px;
    font-size: 11.5px;
    background-color: transparent;
    color: var(--accent-gold-bright);
    border: 1px solid var(--accent-gold);
    box-shadow: none;
    letter-spacing: 0.1em;
    font-weight: 600;
    transition: all 0.4s ease;
}

.btn-header:hover {
    background-color: var(--accent-gold);
    color: var(--primary-green-dark) !important;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
    transform: translateY(-2px);
}

/* Special Direct Purchase Buttons */
.btn-whatsapp-direct {
    background-color: #25D366; /* Official WhatsApp Color */
    color: #fff;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-direct:hover {
    background-color: #1ebd59;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-email-direct {
    background-color: transparent;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
}

.btn-email-direct:hover {
    background-color: var(--primary-green);
    color: var(--bg-cream);
    transform: translateY(-2px);
}

.btn-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

/* Shimmer Button Animation */
.shimmer-btn {
    position: relative;
    overflow: hidden;
}

.shimmer-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(30deg);
    transition: none;
    animation: shimmer-effect 6s infinite;
}

@keyframes shimmer-effect {
    0% { left: -60%; }
    15% { left: 120%; }
    100% { left: 120%; }
}

/* Header Section Loader Screen */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary-green-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

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

.loader-logo {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--accent-gold-bright);
    letter-spacing: 0.2em;
    animation: pulse-glow 2s infinite ease-in-out;
}

.loader-tagline {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--accent-gold);
    margin-top: 10px;
    opacity: 0.8;
}

.loader-bar {
    width: 180px;
    height: 1px;
    background: rgba(197, 160, 89, 0.2);
    margin: 20px auto 0;
    overflow: hidden;
    position: relative;
}

.loader-progress {
    width: 0;
    height: 100%;
    background-color: var(--accent-gold-bright);
    position: absolute;
    top: 0;
    left: 0;
    animation: load-progress 1.8s forwards cubic-bezier(0.1, 0.8, 0.2, 1);
}

@keyframes load-progress {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(0.98); opacity: 0.8; }
    50% { transform: scale(1.02); opacity: 1; text-shadow: 0 0 20px rgba(228, 192, 121, 0.4); }
}

/* ==========================================================================
   COMPONENT STYLES (Header, Hero, Badges, Story, Product, Why, Gallery, Footer)
   ========================================================================== */

/* Sticky Header / Navbar */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid rgba(253, 251, 247, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 6px 0;
}

.main-header.scrolled {
    background-color: rgba(6, 27, 16, 0.97);
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 3px 0;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.3s;
}

.main-header.scrolled .header-container {
    padding: 4px 24px;
}

.main-header.scrolled .header-logo-img {
    height: 48px;
}

.brand-logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-green);
    letter-spacing: 0.15em;
    line-height: 1;
    transition: color 0.3s;
}

.brand-subtitle {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.35em;
    margin-top: 4px;
}

/* Nav Menu styles */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(253, 251, 247, 0.8); /* Premium ivory text for dark green/transparent backdrop */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    padding: 8px 0;
    display: inline-block;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background-color: var(--accent-gold-bright);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
}

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

.nav-link:hover {
    color: var(--accent-gold-bright) !important;
    transform: translateY(-2px);
    letter-spacing: 0.18em; /* Breathable expand effect */
    text-shadow: 0 0 10px rgba(241, 211, 140, 0.2);
}

.nav-link.active {
    color: var(--accent-gold-bright) !important;
    font-weight: 600;
}

/* Hamburger mobile button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--accent-gold-bright);
    transition: all 0.3s ease;
}

/* Hero Banner Layout */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    color: var(--bg-cream);
    overflow: hidden;
    background-image: url('hero-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.hero-background-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 75%;
    background-image: url('logo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 27, 16, 0.22) !important; /* Muted transparent overlay so video is bright & crystal-clear! */
    z-index: 2;
}

/* Header Logo & Tagline styling */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-logo-img {
    height: 58px; /* Slightly enlarged for better balance and premium prominence */
    width: auto;
    display: block;
    object-fit: contain;
    transition: all 0.4s ease;
}

.header-tagline-box {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(197, 160, 89, 0.45);
    padding-left: 14px;
}

.header-brand-name {
    font-family: var(--font-serif);
    font-size: 16.5px; /* Enlarged for brand prominence */
    font-weight: 700;
    color: var(--accent-gold-bright);
    letter-spacing: 0.12em;
    line-height: 1.1;
}

.header-tagline-en {
    font-family: var(--font-sans);
    font-size: 11px; /* Enlarged tagline */
    font-weight: 600;
    color: rgba(253, 251, 247, 0.85); /* Slightly brighter ivory */
    letter-spacing: 0.06em;
    font-style: italic;
    line-height: 1.1;
    margin-top: 3px;
}

/* Scrolled header state styling */
.main-header.scrolled .header-tagline-box {
    border-left-color: rgba(197, 160, 89, 0.5);
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    padding-top: 110px; /* Safe padding to prevent covering by the header */
}

.hero-brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-tagline-en {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--accent-gold-bright) !important;
    font-style: italic !important;
    letter-spacing: 0.05em !important;
    line-height: 1 !important;
    text-shadow: 1px 1px 0px #061B10, 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.hero-tagline-divider {
    color: var(--accent-gold) !important;
    font-size: 10px !important;
    line-height: 1 !important;
    text-shadow: 1px 1px 0px #061B10, 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.hero-tagline-hi {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: var(--bg-cream) !important;
    letter-spacing: 0.02em !important;
    line-height: 1 !important;
    text-shadow: 1px 1px 0px #061B10, 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    margin-bottom: 24px !important;
    color: #ffffff !important;
    text-shadow: 
        1px 1px 0px #0b2f1d, 
        2px 2px 0px #0b2f1d, 
        3px 3px 0px #0b2f1d, 
        4px 4px 10px rgba(0, 0, 0, 0.5) !important;
}

.hero-title .gold-gradient-text {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    color: var(--accent-gold-bright) !important;
}

.hero-description {
    font-family: var(--font-sans) !important;
    font-size: clamp(1rem, 2vw, 1.15rem) !important;
    font-weight: 600 !important;
    margin-bottom: 40px !important;
    color: #ffffff !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-shadow: 1px 1px 0px #061B10, 2px 2px 8px rgba(0, 0, 0, 0.6) !important;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-gold-bright);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.8s infinite;
}

@keyframes scroll-wheel {
    0% { top: 6px; opacity: 1; }
    80% { top: 22px; opacity: 0; }
    100% { top: 6px; opacity: 0; }
}

.scroll-text {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-gold-bright);
}

/* Trust Badges Bar styling */
.trust-badges-section {
    background-color: var(--primary-green-dark);
    border-top: var(--border-gold-hairline);
    border-bottom: var(--border-gold-hairline);
    position: relative;
    z-index: 15;
    padding: 40px 0;
}

.badges-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.badge-item {
    flex: 1 1 200px;
    max-width: 240px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 10px;
}

.badge-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-gold-bright);
    flex-shrink: 0;
    margin-top: 2px;
}

.badge-content h3 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bg-cream);
    margin-bottom: 4px;
}

.badge-content p {
    font-size: 11px;
    color: rgba(253, 251, 247, 0.6);
}

/* Heritage Frame Details & Symmetrical Flourishes */
.decorative-section {
    position: relative;
}

.ornament-top-right, .ornament-bottom-left, .ornament-top-left, .ornament-bottom-right {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(197, 160, 89, 0.25);
    z-index: 2;
    pointer-events: none;
}

.ornament-top-right { top: 30px; right: 30px; border-bottom: none; border-left: none; }
.ornament-bottom-left { bottom: 30px; left: 30px; border-top: none; border-right: none; }
.ornament-top-left { top: 30px; left: 30px; border-bottom: none; border-right: none; }
.ornament-bottom-right { bottom: 30px; right: 30px; border-top: none; border-left: none; }

.premium-frame {
    position: relative;
    padding: 16px;
}

.heritage-img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: var(--shadow-premium);
    filter: sepia(0.1) contrast(1.02);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-frame:hover .heritage-img {
    transform: scale(1.03);
}

.frame-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: var(--border-gold-hairline);
    pointer-events: none;
}

.corner-flourish {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--accent-gold);
    pointer-events: none;
}

.corner-flourish.tl { top: -4px; left: -4px; border-bottom: none; border-right: none; }
.corner-flourish.tr { top: -4px; right: -4px; border-bottom: none; border-left: none; }
.corner-flourish.bl { bottom: -4px; left: -4px; border-top: none; border-right: none; }
.corner-flourish.br { bottom: -4px; right: -4px; border-top: none; border-left: none; }

/* About Us Narrative layout */
.sub-heading {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--accent-gold-dark);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-green);
    margin-bottom: 24px;
}

.story-paragraph {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.story-paragraph strong {
    font-weight: 600;
    color: var(--primary-green-light);
}

/* Stat Row detailing */
.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
    border-top: var(--border-gold-hairline);
    padding-top: 30px;
}

.stat-card {
    background-color: rgba(197, 160, 89, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.25);
    padding: 24px 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold-bright);
    background-color: rgba(197, 160, 89, 0.08);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.15);
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px dashed rgba(197, 160, 89, 0.15);
    pointer-events: none;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    color: var(--primary-green);
    font-weight: 700;
    line-height: 1.1;
    display: inline-block;
}

.stat-plus {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--accent-gold-dark);
    font-weight: 700;
    margin-left: 1px;
}

.stat-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-gold-dark);
    margin-top: 8px;
    line-height: 1.2;
}

/* Product Showcase Page Layout */
.product-display-grid {
    margin-top: 60px;
    align-items: start;
    gap: 48px;
}

.product-gallery-container {
    position: sticky;
    top: 100px;
}

.product-main-view {
    position: relative;
    border: var(--border-gold-hairline);
    background: var(--bg-white);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.product-main-view img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--bg-white);
}

.product-main-view:hover img {
    transform: scale(1.05);
}

.main-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 12px solid var(--bg-cream);
    pointer-events: none;
}

.ribbon-sale {
    position: absolute;
    top: 30px;
    left: -40px;
    background-color: var(--accent-gold-bright);
    color: var(--primary-green-dark);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 40px;
    transform: rotate(-45deg);
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-thumbnails {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    justify-content: center;
}

.thumb-btn {
    width: 72px;
    height: 72px;
    border: var(--border-gold-hairline);
    background: var(--bg-white);
    padding: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-btn:hover, .thumb-btn.active {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.2);
}

/* Detail columns */
.fssai-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--accent-gold-dark);
    background: rgba(197, 160, 89, 0.08);
    border: var(--border-gold-hairline);
    margin-bottom: 20px;
}

.pill-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    margin-right: 8px;
}

.product-name {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.product-variant {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.pricing-card {
    background-color: var(--bg-white);
    border: var(--border-gold-hairline);
    padding: 30px;
    margin-bottom: 35px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}

.old-price {
    font-size: 1.4rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 300;
    display: flex;
    flex-direction: column;
}

.price-mrp-label {
    font-size: 9px;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.05em;
}

.new-price {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    color: var(--primary-green);
    font-weight: 600;
    line-height: 1;
}

.discount-badge {
    background: var(--primary-green);
    color: var(--accent-gold-bright);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 0;
    border: 1px solid var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: center;
}

.price-note {
    font-size: 12px;
    color: var(--text-muted);
}

.product-features-brief {
    margin-bottom: 40px;
}

.feat-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.bullet-gold {
    color: var(--accent-gold);
    font-weight: bold;
}

.purchase-actions-box {
    border-top: var(--border-gold-hairline);
    padding-top: 30px;
}

.purchase-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.purchase-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.purchase-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 480px) {
    .purchase-buttons {
        flex-direction: row;
    }
    .purchase-buttons .btn {
        flex: 1;
    }
}

/* Why Choose Info Cards */
.card-grid {
    margin-top: 60px;
}

.info-card {
    background: var(--bg-white);
    border: var(--border-gold-hairline);
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-premium);
}

.card-flourish {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    pointer-events: none;
}

.card-icon-container {
    width: 60px;
    height: 60px;
    background: rgba(197, 160, 89, 0.06);
    border: var(--border-gold-hairline);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-emoji {
    font-size: 24px;
}

.card-headline {
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.card-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 300;
}

/* Gallery Layout Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 60px;
}

@media (min-width: 580px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border: var(--border-gold-hairline);
    box-shadow: var(--shadow-soft);
    background: var(--bg-white);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.08) rotate(1deg);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 27, 16, 0) 40%, rgba(6, 27, 16, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--accent-gold-bright);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    transform: translateY(10px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Testimonials Grid Layout */
.testimonials-section {
    background-color: var(--bg-cream);
    color: var(--primary-green-dark);
    border-top: var(--border-gold-hairline);
    border-bottom: var(--border-gold-hairline);
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-title {
    color: var(--primary-green-dark);
}

.testimonials-section .sub-heading {
    color: var(--accent-gold-dark);
}

.testimonials-section .accent-line {
    background-color: var(--accent-gold-dark);
}

.testimonials-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

.testimonial-card {
    background-color: var(--primary-green-dark);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 8px 30px rgba(6, 27, 16, 0.12);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold-bright);
    background-color: #0c2b1a;
    box-shadow: 0 15px 35px rgba(6, 27, 16, 0.25);
}

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

.review-text {
    font-size: 14.5px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(253, 251, 247, 0.85);
    margin-bottom: 24px;
}

.reviewer-meta-box {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    padding-top: 20px;
}

.reviewer-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid var(--accent-gold);
}

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

.reviewer-avatar-fallback {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-green);
    color: var(--accent-gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 1.5px solid var(--accent-gold);
    letter-spacing: 1px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--bg-cream);
}

.reviewer-role {
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--accent-gold-bright);
    margin-top: 2px;
}

/* Contact Grid & Map components */
.contact-grid {
    margin-top: 60px;
    gap: 48px;
}

.contact-info-container {
    background: var(--bg-white);
    border: var(--border-gold-hairline);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.contact-sub-title {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.contact-intro {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 35px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

a.contact-detail-item:hover {
    transform: translateX(4px);
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(197, 160, 89, 0.08);
    border: var(--border-gold-hairline);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.detail-val {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-green-light);
}

.contact-map-container {
    border: var(--border-gold-hairline);
    box-shadow: var(--shadow-soft);
    background: var(--bg-white);
    padding: 16px;
    height: 450px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Regulatory Info Box styling */
.label-info-section {
    background-color: var(--primary-green);
    border-top: var(--border-gold-hairline);
    color: var(--bg-cream);
}

.label-info-box {
    border: 1px dashed rgba(197, 160, 89, 0.4);
    padding: 40px;
    background: var(--primary-green-dark);
}

.label-box-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding-bottom: 20px;
}

.label-badge {
    display: inline-block;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--accent-gold-bright);
    font-weight: bold;
}

.label-box-title {
    font-size: 1.8rem;
    color: var(--bg-cream);
}

.label-details-grid {
    gap: 32px;
}

.label-col {
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.6;
}

.label-col strong {
    color: var(--accent-gold-bright);
    font-size: 12px;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Footer Section */
.main-footer {
    background-color: var(--primary-green-dark);
    color: var(--bg-cream);
    border-top: var(--border-gold-hairline);
    padding: 80px 0 0;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

@media (min-width: 768px) {
    .footer-top-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo-img {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(86%) sepia(21%) saturate(996%) hue-rotate(344deg) brightness(98%) contrast(93%); /* Converts natural white/cream to gold */
    margin-bottom: 20px;
}

.footer-tagline-desc {
    margin-top: 20px;
    font-size: 13.5px;
    color: rgba(253, 251, 247, 0.6);
    font-weight: 300;
    max-width: 380px;
}

.links-col h4, .contact-col h4 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold-bright);
    margin-bottom: 24px;
    font-family: var(--font-sans);
    font-weight: 600;
}

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

.links-col a {
    text-decoration: none;
    color: rgba(253, 251, 247, 0.7);
    font-size: 13px;
    transition: color 0.3s;
}

.links-col a:hover {
    color: var(--accent-gold-bright);
}

.contact-col p {
    font-size: 13.5px;
    color: rgba(253, 251, 247, 0.7);
    margin-bottom: 16px;
    font-weight: 300;
}

.footer-bottom-bar {
    border-top: var(--border-gold-hairline);
    padding: 30px 0;
    font-size: 12px;
    color: rgba(253, 251, 247, 0.4);
    font-weight: 300;
}

.copyright-line {
    margin-bottom: 8px;
}

.footer-fssai-line {
    color: var(--accent-gold);
    letter-spacing: 0.05em;
}

/* ==========================================================================
   ANIMATIONS & SCROLL OBSERVERS
   ========================================================================== */

/* Hidden State */
.scroll-anim {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.fade-up-anim {
    transform: translateY(40px);
}

.fade-left-anim {
    transform: translateX(40px);
}

.fade-right-anim {
    transform: translateX(-40px);
}

/* Active Class (triggered by JS intersection observer) */
.scroll-anim.animated {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Transition delays */
.scroll-anim[style*="--delay"] {
    transition-delay: calc(var(--delay) * 0.15s);
}

/* Floating WhatsApp Sticky Action for Mobile */
.mobile-sticky-action-container {
    display: none !important;
}

.btn-whatsapp-bubble-icon {
    font-size: 18px;
    margin-left: 8px;
}

@media (min-width: 768px) {
    /* Hide floating mobile container on desktop size */
    .mobile-sticky-action-container {
        display: none !important;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTATIONS (Fluid menu, mobile overlays)
   ========================================================================== */

@media (max-width: 991px) {
    /* Navbar Collapse to mobile Hamburger */
    .menu-toggle {
        display: flex;
        z-index: 110;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--primary-green-dark);
        z-index: 105;
        padding: 100px 40px;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.25);
        border-left: var(--border-gold-hairline);
        visibility: hidden;
        /* Hardware acceleration to prevent text blurring on mobile browsers */
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        perspective: 1000;
        -webkit-perspective: 1000;
    }
    
    .nav-menu.open {
        right: 0;
        visibility: visible;
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-link {
        color: var(--bg-cream);
        font-size: 16px;
    }
    
    /* Change hamburger state when menu opens */
    .menu-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--accent-gold-bright);
    }
    
    .menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--accent-gold-bright);
    }
    
    .header-cta {
        display: none; /* Hide top CTA in mobile header to save space */
    }
}

@media (max-width: 767px) {
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .price-row {
        gap: 8px;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .contact-info-container {
        padding: 24px;
    }
    
    .label-info-box {
        padding: 24px;
    }
}

/* ==========================================================================
   INNER PAGE HERO & MULTI-PAGE HERITAGE MODULES
   ========================================================================== */

/* Inner Page Hero Sections */
.page-hero-section {
    position: relative;
    height: 40vh;
    min-height: 280px;
    display: flex;
    align-items: center;
    color: var(--bg-cream);
    overflow: hidden;
    background: radial-gradient(circle at center, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding-top: 80px;
}

.page-hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--bg-white);
    margin-bottom: 16px;
}

.page-hero-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 300;
    color: rgba(253, 251, 247, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline Styling */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: var(--accent-gold);
    transform: translateX(-50%);
    opacity: 0.35;
}

.timeline-item {
    position: relative !important;
    margin-bottom: 80px !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
    align-items: center !important;
    padding: 0 !important;
}

.timeline-item:nth-child(even) {
    left: 0 !important;
    text-align: left !important;
}

.timeline-item:nth-child(odd) {
    left: 0 !important;
    text-align: left !important;
}

.timeline-dot {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    background-color: var(--accent-gold-bright) !important;
    border: 3px solid var(--primary-green-dark) !important;
    z-index: 10 !important;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.6) !important;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: auto !important;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: auto !important;
}

.timeline-date {
    font-size: 1.8rem !important;
    color: var(--accent-gold-dark) !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

.timeline-visual-side {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative;
    z-index: 5;
}

.timeline-circle-frame {
    width: 220px !important;
    height: 220px !important;
    border-radius: 50% !important;
    border: 2px solid var(--accent-gold) !important;
    padding: 8px !important;
    background-color: var(--bg-cream) !important;
    box-shadow: var(--shadow-premium) !important;
    transition: all 0.4s ease !important;
}

.timeline-circle-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    filter: sepia(0.15) contrast(1.05) !important;
    transition: all 0.4s ease !important;
}

.timeline-circle-frame:hover {
    border-color: var(--accent-gold-bright) !important;
    transform: scale(1.06) !important;
    box-shadow: 0 12px 30px rgba(197, 160, 89, 0.3) !important;
}

.timeline-content-side {
    width: 100% !important;
    position: relative;
    z-index: 5;
}

.timeline-content {
    background-color: var(--primary-green-dark) !important;
    border: 1px solid rgba(197, 160, 89, 0.35) !important;
    padding: 24px 30px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    color: var(--bg-cream) !important;
    border-radius: 6px !important;
}

.timeline-content:hover {
    border-color: var(--accent-gold-bright) !important;
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.25) !important;
    transform: translateY(-6px) scale(1.01) !important;
}

.timeline-title {
    font-size: 1.45rem !important;
    color: var(--accent-gold-bright) !important;
    margin-bottom: 12px !important;
}

.timeline-content p {
    font-family: var(--font-sans) !important;
    font-size: 14px !important;
    color: rgba(253, 251, 247, 0.8) !important;
    line-height: 1.6 !important;
    font-weight: 300 !important;
}

/* Purity Table styling */
.comparison-table-wrapper {
    margin-top: 50px;
    overflow-x: auto;
    border: var(--border-gold-hairline);
    box-shadow: var(--shadow-soft);
    background: var(--bg-white);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-family: var(--font-sans);
    color: var(--text-dark) !important;
}

.comparison-table th, .comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    font-size: 14px;
}

.comparison-table th {
    background-color: var(--primary-green-dark);
    color: var(--bg-cream);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td strong {
    color: var(--primary-green);
}

.comparison-table td.highlight-col {
    background-color: rgba(197, 160, 89, 0.04);
    border-left: 1px solid rgba(197, 160, 89, 0.15);
    border-right: 1px solid rgba(197, 160, 89, 0.15);
}

.comparison-table th.highlight-col {
    background-color: var(--primary-green);
    color: var(--accent-gold-bright);
    border-left: 1px solid var(--accent-gold);
    border-right: 1px solid var(--accent-gold);
}

/* Grandma's Recipes styling */
.recipe-intro-desc {
    max-width: 600px;
    margin: 0 auto 40px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 300;
}

.recipe-cards-grid {
    margin-top: 50px;
}

.recipe-card {
    background: var(--bg-white);
    border: var(--border-gold-hairline);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

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

.recipe-img-box {
    height: 120px;
    background: rgba(197, 160, 89, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.recipe-emoji {
    font-size: 48px;
}

.recipe-content-box {
    padding: 30px;
}

.recipe-card-title {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.recipe-desc {
    font-family: var(--font-sans);
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

.recipe-desc strong {
    color: var(--accent-gold-dark);
    font-weight: 600;
}

/* Gallery Page Framed Display styling */
.gallery-narrative {
    padding-right: 20px;
}

.gallery-item-framed {
    position: relative;
    padding: 12px;
    border: var(--border-gold-hairline);
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.gallery-item-framed img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
}

.gallery-item-framed:hover {
    transform: scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-premium);
}

.gallery-item-framed.max-width-card {
    max-width: 480px;
    margin: 0 auto;
}

.frame-caption {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 1.2rem;
    color: var(--primary-green);
    letter-spacing: 0.05em;
}

.order-mobile-2 {
    order: 2;
}
.order-mobile-1 {
    order: 1;
}

@media (max-width: 767px) {
    .order-mobile-2 { order: 2; }
    .order-mobile-1 { order: 1; }
    .gallery-narrative { padding-right: 0; text-align: center; }
    .gallery-display-grid { margin-top: 30px; }
    .gallery-display-single { margin-top: 30px; }
    .timeline-line {
        left: 20px;
    }
    .timeline-item {
        width: 100% !important;
        padding: 0 0 0 45px !important;
        text-align: left !important;
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .timeline-item:nth-child(even) {
        left: 0 !important;
    }
    .timeline-dot {
        left: 11px !important;
        top: 35px !important;
        transform: translate(0, -50%) !important;
    }
    .timeline-visual-side {
        order: 2 !important;
        justify-content: flex-start !important;
    }
    .timeline-content-side {
        order: 1 !important;
    }
}

/* Homepage tight section spacing overrides */
#home-page .about-section {
    padding-top: 60px;
    padding-bottom: 50px;
}

#home-page .product-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

#home-page .testimonials-section {
    padding-top: 50px;
    padding-bottom: 60px;
}

@media (max-width: 767px) {
    #home-page .about-section {
        padding-top: 40px;
        padding-bottom: 30px;
    }
    
    #home-page .product-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    #home-page .testimonials-section {
        padding-top: 30px;
        padding-bottom: 40px;
    }
}

/* ==========================================================================
   UPGRADED SUBPAGE DESIGN SYSTEMS
   ========================================================================== */

/* Section Color Blocking */
.background-green {
    background: radial-gradient(circle at center, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--bg-cream);
    border-top: var(--border-gold-hairline);
    border-bottom: var(--border-gold-hairline);
}

.background-green .section-title {
    color: var(--accent-gold-bright) !important;
}

.background-green .sub-heading {
    color: var(--accent-gold) !important;
}

.background-green .story-paragraph {
    color: rgba(253, 251, 247, 0.85);
}

.background-green .accent-line {
    background-color: var(--accent-gold) !important;
}

/* Upgraded Timeline Milestones styling */
.timeline-img-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    overflow: hidden;
    margin-bottom: 18px;
    display: inline-block;
    box-shadow: var(--shadow-soft);
    background-color: var(--primary-green-dark);
}

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

.timeline-content:hover .timeline-img-wrapper img {
    transform: scale(1.08);
}

/* Pillars of Ancestral Quality Grid */
.pillars-grid {
    margin-top: 50px;
}

.pillar-card {
    background-color: var(--primary-green-dark);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: var(--shadow-soft);
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.15);
}

.pillar-icon-box {
    font-size: 36px;
    margin-bottom: 20px;
    display: inline-block;
    line-height: 1;
}

.pillar-title {
    font-size: 1.35rem;
    color: var(--accent-gold-bright);
    margin-bottom: 12px;
}

.pillar-desc {
    font-family: var(--font-sans);
    font-size: 13.5px;
    color: rgba(253, 251, 247, 0.7);
    line-height: 1.6;
    font-weight: 300;
}

/* FAQ Accordion Styling */
.faq-accordion-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    border: var(--border-gold-hairline);
    margin-bottom: 18px;
    background-color: var(--bg-white);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-soft);
}

.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-trigger {
    width: 100%;
    padding: 22px 30px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--primary-green);
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-trigger:hover {
    color: var(--accent-gold-dark);
}

.faq-icon-arrow {
    font-size: 14px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--accent-gold);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 30px;
}

.faq-content p {
    font-family: var(--font-sans);
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    padding-bottom: 22px;
    font-weight: 300;
}

/* Active FAQ panel states */
.faq-item.active {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-premium);
}

.faq-item.active .faq-trigger {
    color: var(--accent-gold-dark);
}

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

.faq-item.active .faq-content {
    max-height: 250px; /* Allows text flow expansion */
}

/* Partnership form elements */
.partnership-form {
    margin-top: 35px;
    text-align: left;
}

.form-grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-input, .form-textarea {
    font-family: var(--font-sans);
    font-size: 14px;
    padding: 14px 18px;
    background-color: rgba(11, 47, 29, 0.02);
    border: 1px solid rgba(197, 160, 89, 0.35);
    color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 0;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: var(--bg-white);
    box-shadow: 0 0 10px rgba(11, 47, 29, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 130px;
}

/* Shipping Policies */
.policy-grid {
    margin-top: 50px;
}

.policy-card {
    background-color: var(--bg-white);
    border: var(--border-gold-hairline);
    padding: 35px 30px;
    text-align: left;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.policy-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-premium);
    transform: translateY(-5px);
}

.policy-title {
    font-size: 1.35rem;
    color: var(--primary-green);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-title-emoji {
    font-size: 24px;
}

.policy-desc {
    font-family: var(--font-sans);
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 767px) {
    .form-grid-2-col {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
}

/* Helper class to fix serif numbers rendering like letters */
.number-sans {
    font-family: var(--font-sans) !important;
    font-weight: 600;
}

/* Heritage image height & fit override */
.heritage-img {
    width: 100% !important;
    height: 420px !important;
    object-fit: cover !important;
}

/* History button wrapper & element styles */
.read-history-btn-wrapper {
    margin-top: 30px !important;
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
}

.btn-read-history {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 28px !important;
    background-color: var(--primary-green) !important;
    color: var(--accent-gold-bright) !important;
    border: 1px solid var(--accent-gold) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    white-space: nowrap !important;
    width: auto !important;
}

.btn-read-history:hover {
    background-color: var(--primary-green-dark) !important;
    border-color: var(--accent-gold-bright) !important;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.25) !important;
    transform: translateY(-2px) !important;
}

.btn-arrow {
    width: 16px !important;
    height: 16px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    transition: transform 0.3s ease !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

.btn-read-history:hover .btn-arrow {
    transform: translateX(6px) !important;
}

/* SVG icons styling inside buttons */
.btn-icon-svg {
    width: 20px !important;
    height: 20px !important;
    margin-right: 10px !important;
    fill: currentColor !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

/* WhatsApp button dimensions & layout fixes */
.btn-whatsapp-direct {
    background-color: #25D366 !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    width: auto !important;
}

.btn-whatsapp-direct:hover {
    background-color: #20ba5a !important;
    box-shadow: 0 8px 25px rgba(32, 186, 90, 0.45) !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
}

/* product purity bullets list */
.product-purity-highlights {
    list-style: none !important;
    padding: 0 !important;
    margin: 24px 0 32px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.product-purity-highlights li {
    font-family: var(--font-sans) !important;
    font-size: 14px !important;
    color: var(--text-dark) !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    line-height: 1.5 !important;
    text-align: left !important;
}

.highlight-bullet {
    color: var(--accent-gold-dark) !important;
    font-size: 12px !important;
    margin-top: 2px !important;
}

/* Hero Left Alignment Overrides */
.hero-content {
    max-width: 650px !important;
    margin: 0 !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.hero-brand-mark {
    justify-content: flex-start !important;
}

.hero-actions {
    justify-content: flex-start !important;
}

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

/* Hero section background shifting upward */
.hero-section {
    background-position: center 25% !important; /* Move background image up! */
}

/* E-commerce Gallery & Details Elements styling */
.product-thumbnails-row {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 16px;
    width: 100%;
}

.thumb-btn {
    flex: 0 0 75px;
    width: 75px;
    height: 75px;
    border: 1.5px solid rgba(197, 160, 89, 0.2);
    border-radius: 4px;
    background-color: #ffffff;
    cursor: pointer;
    overflow: hidden;
    padding: 3px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

.thumb-btn.active, .thumb-btn:hover {
    border-color: var(--accent-gold-bright);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.25);
    transform: translateY(-2px);
}

.product-header-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
}

.ecommerce-stars-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-family: var(--font-sans);
}

.stars-gold {
    color: var(--accent-gold-bright);
    letter-spacing: 0.1em;
}

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

.stock-status-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-family: var(--font-sans);
    font-size: 12.5px;
}

.stock-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #25D366;
    display: inline-block;
    box-shadow: 0 0 8px rgba(37, 211, 102, 0.5);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

.stock-text {
    color: #20ba5a;
    font-weight: 500;
}

/* Quantity Selector Element styling */
.quantity-selector-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    font-family: var(--font-sans);
}

.qty-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-green-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.qty-controls {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    width: 38px;
    height: 38px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--primary-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.qty-btn:hover {
    background-color: rgba(197, 160, 89, 0.08);
}

.qty-display {
    width: 32px;
    text-align: center;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--primary-green-dark);
    user-select: none;
}

.product-mini-badges {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    padding-top: 24px;
    margin-top: 24px;
}

.mini-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.badge-icon-mini {
    font-size: 15px;
}

/* Adjust hero top padding override to pull content up */
.hero-content {
    padding-top: 50px !important;
}

/* 1. Heritage section proportions - taller image */
.heritage-img {
    width: 100% !important;
    height: 560px !important; /* Made taller to match the vertical text column! */
    object-fit: cover !important;
}

/* 2. E-commerce section — rich dark forest-green background for visual separation */
.product-section.section-padding {
    padding: 50px 0 !important;
    background: linear-gradient(135deg, #0d3522 0%, #0b2f1d 60%, #102d1e 100%) !important;
    position: relative !important;
}

.product-section.section-padding::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c5a059' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.product-section.section-padding .container,
.product-section.section-padding .section-header,
.product-section.section-padding .product-luxury-card {
    position: relative !important;
    z-index: 1 !important;
}

/* Section heading text light on dark green bg */
.product-section .sub-heading {
    color: var(--accent-gold-bright) !important;
}

.product-section .section-title {
    color: var(--bg-cream) !important;
}

.product-section .accent-line {
    background: var(--accent-gold) !important;
}

.product-gallery-container {
    max-width: 440px !important;
    margin: 0 auto !important;
    background: #ffffff !important;
    border: 1px solid rgba(197, 160, 89, 0.22) !important;
    padding: 16px !important;
    border-radius: 6px !important;
    box-shadow: 0 8px 30px rgba(11, 47, 29, 0.04) !important;
}

.product-main-view {
    max-width: 100% !important;
    height: 380px !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    position: relative !important;
    border: 2px solid var(--accent-gold) !important;
    outline: 1px solid rgba(197, 160, 89, 0.15) !important;
    outline-offset: -6px !important;
    box-shadow: 0 16px 38px rgba(11, 47, 29, 0.12), 0 4px 10px rgba(0, 0, 0, 0.05) !important;
    background-color: #FDFBF7 !important;
    transition: all 0.4s ease !important;
}

.product-main-view:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 22px 48px rgba(11, 47, 29, 0.16), 0 6px 15px rgba(0, 0, 0, 0.08) !important;
    border-color: var(--accent-gold-bright) !important;
}

.product-main-view img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-main-view:hover img {
    transform: scale(1.04) !important;
}

.product-thumbnails-row {
    margin-top: 12px !important;
}

.thumb-btn {
    flex: 0 0 65px !important;
    width: 65px !important;
    height: 65px !important;
}

.product-purity-highlights {
    list-style: none !important;
    padding: 0 !important;
    margin: 16px 0 20px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px 16px !important;
}

.product-purity-highlights li {
    font-size: 13.5px !important;
}

.pricing-card {
    padding: 12px 16px !important;
    margin-bottom: 14px !important;
}

.quantity-selector-box {
    margin: 14px 0 !important;
}

.product-mini-badges {
    margin-top: 14px !important;
    padding-top: 14px !important;
}

/* 3. Dadi Maa Legacy Story Section */
.legacy-story-section {
    background-color: var(--primary-green-dark);
    color: var(--bg-cream);
    border-top: var(--border-gold-hairline);
    border-bottom: var(--border-gold-hairline);
    position: relative;
    padding: 80px 0;
}

.legacy-story-container {
    max-width: 1100px;
}

.legacy-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 767px) {
    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.legacy-frame {
    position: relative;
    padding: 12px;
}

.legacy-grandma-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    box-shadow: var(--shadow-premium);
    filter: sepia(0.15) contrast(1.05);
    border-radius: 4px;
}

.legacy-frame-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-gold);
    pointer-events: none;
    transform: translate(8px, 8px);
    transition: transform 0.4s ease;
}

.legacy-frame:hover .legacy-frame-border {
    transform: translate(0, 0);
}

.legacy-tagline {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--accent-gold-bright);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.legacy-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

.legacy-quote {
    font-family: var(--font-serif);
    font-size: 17px;
    font-style: italic;
    color: var(--accent-gold-bright);
    border-left: 2px solid var(--accent-gold);
    padding-left: 20px;
    margin: 24px 0;
    line-height: 1.5;
}

.legacy-story-section .story-paragraph {
    color: rgba(253, 251, 247, 0.8) !important;
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    font-weight: 300 !important;
    font-family: var(--font-sans) !important;
}

.legacy-story-section .story-paragraph strong {
    color: var(--accent-gold-bright) !important;
    font-weight: 600 !important;
}

/* Stats Card Icon wrapper & SVG styling */
.stat-icon-wrapper {
    width: 56px !important;
    height: 56px !important;
    margin: 0 auto 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: rgba(197, 160, 89, 0.08) !important;
    border-radius: 50% !important;
    color: var(--accent-gold-dark) !important;
    transition: all 0.4s ease !important;
    border: 1px solid rgba(197, 160, 89, 0.15) !important;
}

.stat-icon-wrapper svg {
    width: 28px !important;
    height: 28px !important;
    stroke: var(--accent-gold-dark) !important;
    stroke-width: 1.2px !important;
    fill: none !important;
    transition: transform 0.4s ease !important;
    display: block;
}

.stat-card:hover .stat-icon-wrapper {
    background-color: var(--accent-gold) !important;
    color: var(--primary-green-dark) !important;
    transform: rotateY(180deg) !important;
    border-color: var(--accent-gold-bright) !important;
}

.stat-card:hover .stat-icon-wrapper svg {
    stroke: var(--primary-green-dark) !important;
}

/* Heritage Section Double-Gold Luxury Border Frame Card */
.heritage-luxury-card {
    background-color: #FDFBF7 !important;
    border: 1px solid rgba(197, 160, 89, 0.35) !important;
    border-radius: 8px !important;
    padding: 0 !important;         /* Zero padding — image fills flush to edge */
    position: relative !important;
    box-shadow: 0 12px 45px rgba(11, 47, 29, 0.08) !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
}

/* Inner grid gets the breathing room, not the card wrapper */
.heritage-luxury-card > .grid {
    padding: 0 !important;
    gap: 0 !important;
    margin: 0 !important;
}

/* Image column flush against left edge */
.heritage-luxury-card .about-image {
    padding: 0 !important;
}

/* Heritage image fills full column height */
.heritage-img {
    width: 100% !important;
    height: 100% !important;
    min-height: 480px !important;
    object-fit: cover !important;
    display: block !important;
}

/* Text column gets the padding */
.heritage-luxury-card .about-text {
    padding: 40px 36px !important;
}

.heritage-luxury-card::after {
    content: "" !important;
    position: absolute !important;
    top: 8px !important;
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
    border: 1px solid rgba(197, 160, 89, 0.16) !important;
    border-radius: 6px !important;
    pointer-events: none !important;
    z-index: 1;
}

/* Exclusive Variant E-commerce Dashed-Gold Luxury Presentation Card */
.product-luxury-card {
    background-color: #ffffff !important;
    border: 1px solid rgba(197, 160, 89, 0.28) !important;
    border-radius: 8px !important;
    padding: 24px !important;
    position: relative !important;
    box-shadow: 0 15px 50px rgba(11, 47, 29, 0.06) !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    overflow: hidden;
}

.product-luxury-card::after {
    content: "" !important;
    position: absolute !important;
    top: 6px !important;
    left: 6px !important;
    right: 6px !important;
    bottom: 6px !important;
    border: 1px dashed rgba(197, 160, 89, 0.18) !important;
    border-radius: 6px !important;
    pointer-events: none !important;
    z-index: 1;
}

/* 2x2 Specs Grid Details */
.purity-specs-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin: 16px 0 20px !important;
    width: 100% !important;
}

.spec-badge-item {
    background-color: #FDFBF7 !important;
    border: 1px solid rgba(197, 160, 89, 0.18) !important;
    padding: 10px 14px !important;
    border-radius: 4px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    text-align: left !important;
    transition: all 0.3s ease !important;
    position: relative;
    z-index: 5;
}

.spec-badge-item:hover {
    border-color: var(--accent-gold-bright) !important;
    background-color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.12) !important;
}

.spec-badge-title {
    font-size: 10px !important;
    font-family: var(--font-sans) !important;
    color: var(--text-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    font-weight: 500 !important;
}

.spec-badge-val {
    font-size: 13.5px !important;
    font-family: var(--font-sans) !important;
    color: var(--primary-green-dark) !important;
    font-weight: 700 !important;
}

/* Hero Background Video style */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 1;
    pointer-events: none;
}

/* ─── Product Trust Header (FSSAI + Stars full-width banner) ─── */
.product-trust-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 16px !important;
    margin-bottom: 0 !important;
    background: linear-gradient(90deg, rgba(11,47,29,0.04) 0%, rgba(197,160,89,0.06) 100%) !important;
    border-bottom: 1px solid rgba(197,160,89,0.18) !important;
    border-radius: 8px 8px 0 0 !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

/* Make the product luxury card header-aware */
.product-luxury-card {
    padding: 0 !important;
    overflow: hidden !important;
}

.product-luxury-card > .grid {
    padding: 16px !important;
}

/* ─── Compact product name & variant (tighter vertical spacing) ─── */
.product-name {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem) !important;
    margin-bottom: 2px !important;
    line-height: 1.2 !important;
}

.product-variant {
    font-size: 11.5px !important;
    margin-bottom: 10px !important;
}

/* ─── Inline purchase row (Qty + WhatsApp side by side) ─── */
.purchase-row-inline {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
}

.purchase-row-inline .btn-whatsapp-direct {
    flex: 1 !important;
    justify-content: center !important;
    white-space: nowrap !important;
}

/* Compact qty box */
.compact-qty {
    margin: 0 !important;
    flex-shrink: 0 !important;
    border: 1px solid rgba(197,160,89,0.25) !important;
    border-radius: 4px !important;
    padding: 4px 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: #fff !important;
}

.compact-qty .qty-label {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: var(--text-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
}

/* ─── Section header tighten for product section ─── */
.product-section .section-header {
    margin-bottom: 18px !important;
}

.product-section .section-title {
    font-size: clamp(1.4rem, 3vw, 2rem) !important;
    margin-bottom: 6px !important;
}

/* ==========================================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS AND ALIGNMENT OVERRIDES (Widths < 768px)
   ========================================================================== */
/* ==========================================================================
   MOBILE FIRST RESPONSIVENESS — Phones ≤ 767px
   Inspired by clean, professional mobile-responsive design patterns:
   - Proper header visibility (logo + name always visible, hamburger not clipped)
   - Hero video fills screen naturally, overlay ensures text readability
   - Compact, pill-shaped buttons that don't dominate small screens
   - Consistent 16px container padding on both sides
   - Section paddings tightened for phone rhythm
   ========================================================================== */
@media (max-width: 767px) {

    /* ─── 1. HEADER ─── */
    .main-header,
    .main-header.scrolled {
        background-color: #061b10 !important; /* Solid premium dark green to prevent blur bugs on mobile */
        border-bottom: 1px solid rgba(197, 160, 89, 0.2) !important;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3) !important;
        padding: 0 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* Prevent the header container from overflowing — right side cut-off fix */
    .header-container {
        padding: 10px 18px !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Logo area — small but crisp */
    .logo-wrapper {
        gap: 10px !important;
        flex-shrink: 1 !important;
        min-width: 0 !important; /* allow logo text to shrink */
    }

    .header-logo-img {
        height: 38px !important;
        width: auto !important;
        flex-shrink: 0 !important;
    }

    /* Brand name text block */
    .header-tagline-box {
        padding-left: 10px !important;
        border-left: 1px solid rgba(197, 160, 89, 0.4) !important;
        flex-shrink: 1 !important;
        min-width: 0 !important;
    }

    .header-brand-name {
        font-size: 14px !important;
        letter-spacing: 0.12em !important;
        white-space: nowrap !important;
    }

    .header-tagline-en {
        font-size: 9px !important;
        margin-top: 1px !important;
        white-space: nowrap !important;
        opacity: 0.8 !important;
    }

    /* Hamburger — properly positioned at the far right, never clipped */
    .menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 28px !important;
        height: 22px !important;
        padding: 0 !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
    }

    .menu-toggle .bar {
        display: block !important;
        width: 100% !important;
        height: 2px !important;
        background-color: var(--accent-gold-bright) !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
    }

    /* Hide desktop header CTA on mobile — saves space */
    .header-cta {
        display: none !important;
    }

    /* ─── 2. HERO SECTION ─── */
    .hero-section {
        position: relative !important;
        height: 100svh !important;  /* smart viewport height for mobile browsers */
        min-height: 500px !important;
        max-height: 780px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }

    /* Video fills screen like a background */
    .hero-bg-video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        transform: none !important;
        object-fit: cover !important;
        object-position: 72% center !important; /* Pull the bottle (on the right) into the viewport center! */
    }

    /* Stronger overlay so text is always legible over moving video */
    .video-overlay {
        background: rgba(6, 27, 16, 0.72) !important;
    }

    /* Hero content — centered, compact */
    .hero-content {
        padding: 0 20px !important;
        padding-top: 70px !important; /* Clear the fixed header */
        text-align: center !important;
        align-items: center !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Tagline row */
    .hero-brand-mark {
        gap: 8px !important;
        margin-bottom: 16px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .hero-tagline-en,
    .hero-tagline-hi {
        font-size: 11px !important;
    }

    /* Main headline */
    .hero-title {
        font-size: clamp(1.65rem, 6vw, 2.4rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
        text-align: center !important;
    }

    /* Description copy */
    .hero-description {
        font-size: 13px !important;
        line-height: 1.6 !important;
        margin-bottom: 24px !important;
        text-align: center !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* CTA buttons row — compact, side-by-side, pill-shaped */
    .hero-actions {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 12px !important;
        flex-wrap: nowrap !important;
        width: auto !important;
    }

    .hero-actions .btn {
        flex: 0 0 auto !important;  /* Don't stretch — natural width */
        font-size: 12px !important;
        font-weight: 600 !important;
        letter-spacing: 0.08em !important;
        padding: 10px 22px !important;
        border-radius: 50px !important; /* Pill shape — modern mobile look */
        white-space: nowrap !important;
        min-width: unset !important;
        text-align: center !important;
    }

    /* Scroll indicator — hide on small screens */
    .hero-scroll-indicator {
        display: none !important;
    }

    /* ─── 3. GENERAL SECTIONS ─── */
    .section-padding {
        padding: 44px 0 !important;
    }

    .container {
        padding: 0 16px !important;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
        line-height: 1.25 !important;
    }

    .sub-heading {
        font-size: 9px !important;
        letter-spacing: 0.1em !important;
    }

    /* ─── 4. HERITAGE SECTION ─── */
    .heritage-luxury-card {
        margin: 0 !important;
    }

    .heritage-img {
        height: 240px !important;
        min-height: unset !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    .heritage-luxury-card .about-text {
        padding: 24px 16px !important;
    }

    /* ─── 5. STATS ─── */
    .stat-row {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        margin-top: 20px !important;
        padding-top: 16px !important;
    }

    .stat-card {
        padding: 12px 4px !important;
    }

    .stat-number {
        font-size: 1.5rem !important;
    }

    .stat-plus {
        font-size: 1rem !important;
    }

    .stat-label {
        font-size: 8.5px !important;
        letter-spacing: 0.02em !important;
        margin-top: 2px !important;
    }

    .stat-icon-wrapper {
        width: 32px !important;
        height: 32px !important;
        margin: 0 auto 4px !important;
    }

    .stat-icon-wrapper svg {
        width: 16px !important;
        height: 16px !important;
    }

    /* ─── 6. PRODUCT GALLERY ─── */
    .product-luxury-card {
        margin: 0 !important;
        border-radius: 0 !important;
    }

    .product-luxury-card > .grid {
        padding: 12px !important;
        gap: 20px !important;
    }

    .product-display-grid {
        padding: 12px 12px 12px 12px !important;
    }

    .product-gallery-container {
        max-width: 100% !important;
        position: static !important; /* remove sticky on mobile */
    }

    .product-main-view {
        height: auto !important;
        padding: 12px !important; /* Smaller padding gives more space for actual image */
    }

    .product-main-view img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        background: #fafaf8 !important;
    }

    .main-img-overlay {
        border: 6px solid var(--bg-cream) !important; /* Thinner border frame on mobile */
    }

    .thumb-btn {
        flex: 0 0 48px !important;
        width: 48px !important;
        height: 48px !important;
    }

    /* ─── 7. SPECS GRID ─── */
    .purity-specs-grid {
        gap: 8px !important;
        margin: 10px 0 14px !important;
    }

    .spec-badge-item {
        padding: 8px 10px !important;
    }

    .spec-badge-title {
        font-size: 8px !important;
    }

    .spec-badge-val {
        font-size: 11px !important;
    }

    /* ─── 8. PURCHASE ACTIONS ─── */
    .purchase-row-inline {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        width: 100% !important;
    }

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

    .purchase-row-inline .btn-whatsapp-direct {
        width: 100% !important;
        flex: none !important;
        justify-content: center !important;
        padding: 12px 20px !important;
        font-size: 13px !important;
    }

    .secondary-actions-row {
        margin-top: 10px !important;
        width: 100% !important;
    }

    .secondary-actions-row .btn-email-direct {
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 13px !important;
    }

    /* ─── 8.5 MINI BADGES OVERRIDES ─── */
    .product-mini-badges {
        gap: 8px !important;
        padding-top: 16px !important;
        margin-top: 16px !important;
    }

    .mini-badge-item {
        flex-direction: column !important;
        gap: 4px !important;
        text-align: center !important;
        font-size: 10px !important;
        flex: 1 !important;
        align-items: center !important;
    }

    .badge-icon-mini {
        font-size: 16px !important;
        margin: 0 !important;
    }

    /* ─── 8.8 RESPONSIVE COMPARISON TABLE OVERRIDES ─── */
    .comparison-table-wrapper {
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        overflow-x: visible !important;
        margin-top: 30px !important;
    }

    .comparison-table, 
    .comparison-table thead, 
    .comparison-table tbody, 
    .comparison-table th, 
    .comparison-table td, 
    .comparison-table tr {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .comparison-table thead tr {
        position: absolute !important;
        top: -9999px !important;
        left: -9999px !important;
        visibility: hidden !important;
    }

    .comparison-table tr {
        margin-bottom: 24px !important;
        background: var(--bg-white) !important;
        border: 1px solid rgba(197, 160, 89, 0.25) !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    }

    .comparison-table td {
        padding: 12px 16px !important;
        font-size: 13px !important;
        line-height: 1.5 !important;
        border-bottom: 1px solid rgba(197, 160, 89, 0.1) !important;
    }

    .comparison-table td:last-child {
        border-bottom: none !important;
    }

    /* Row Header (Feature Name) */
    .comparison-table td:nth-of-type(1) {
        background-color: var(--primary-green-dark) !important;
        color: var(--accent-gold-bright) !important;
        font-family: var(--font-serif) !important;
        font-size: 14.5px !important;
        font-weight: 600 !important;
        padding: 10px 16px !important;
        letter-spacing: 0.02em !important;
    }

    .comparison-table td:nth-of-type(1) strong {
        color: var(--accent-gold-bright) !important;
    }

    /* SATTVAA Column */
    .comparison-table td:nth-of-type(2) {
        background-color: rgba(197, 160, 89, 0.03) !important;
        border-left: none !important;
        border-right: none !important;
        position: relative !important;
        padding-top: 26px !important; /* Space for absolute label */
    }

    .comparison-table td:nth-of-type(2)::before {
        content: "SATTVAA Pure Hing" !important;
        position: absolute !important;
        top: 8px !important;
        left: 16px !important;
        display: block !important;
        font-size: 8.5px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        color: var(--accent-gold-dark) !important;
        letter-spacing: 0.06em !important;
    }

    /* Commercial Column */
    .comparison-table td:nth-of-type(3) {
        background-color: transparent !important;
        position: relative !important;
        padding-top: 26px !important; /* Space for absolute label */
    }

    .comparison-table td:nth-of-type(3)::before {
        content: "Standard Commercial" !important;
        position: absolute !important;
        top: 8px !important;
        left: 16px !important;
        display: block !important;
        font-size: 8.5px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        color: var(--text-muted) !important;
        letter-spacing: 0.06em !important;
    }

    /* ─── 9. TIMELINE ─── */
    .timeline-circle-frame {
        width: 130px !important;
        height: 130px !important;
    }

    /* ─── 10. GRID GAP REDUCTION ─── */
    .grid {
        gap: 18px !important;
    }

    /* ─── 11. LOADER ─── */
    .loader-logo {
        font-size: 2.2rem !important;
    }

    .loader-tagline {
        font-size: 0.65rem !important;
        letter-spacing: 0.2em !important;
    }
}

/* Extra-small phones (≤ 400px) */
@media (max-width: 400px) {
    .header-tagline-en {
        display: none !important; /* Only tagline hidden, brand name stays */
    }

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

    .hero-actions .btn {
        width: 80% !important;
        max-width: 240px !important;
    }
}




/* ─── Premium Product Disclaimer ─── */
.product-disclaimer {
    font-size: 10px !important;
    font-family: var(--font-sans) !important;
    color: rgba(197, 160, 89, 0.7) !important; /* Elegant subtle gold */
    text-align: center !important; /* Bottom centered below thumbnails */
    margin-top: 14px !important;
    margin-bottom: 4px !important;
    font-style: italic !important;
    font-weight: 300 !important;
    letter-spacing: 0.03em !important;
    line-height: 1.3 !important;
    display: block !important;
    width: 100% !important;
    opacity: 0.85 !important;
}

/* ─── Mobile Navigation Backdrop Overlay ─── */
.nav-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(6, 27, 16, 0.88) !important; /* Premium darker solid overlay color to prevent text blurring on mobile browsers */
    z-index: 990 !important; /* Behind the header (1000) and menu drawer */
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.4s ease, visibility 0.4s ease !important;
    pointer-events: auto !important;
}

.nav-backdrop.visible {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ─── Video Mute Toggle Button ─── */
.video-mute-toggle-btn {
    position: absolute !important;
    bottom: 40px !important;
    right: 40px !important;
    z-index: 15 !important;
    background: rgba(11, 47, 29, 0.6) !important;
    border: 1px solid rgba(197, 160, 89, 0.4) !important;
    color: var(--accent-gold-bright) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
}

.video-mute-toggle-btn:hover {
    background: var(--primary-green-dark) !important;
    border-color: var(--accent-gold-bright) !important;
    transform: scale(1.05) !important;
}

.video-mute-toggle-btn svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
}

@media (max-width: 768px) {
    .video-mute-toggle-btn {
        bottom: 80px !important; /* Raised slightly to clear scroll indicator */
        right: 20px !important;
        width: 38px !important;
        height: 38px !important;
    }
    .video-mute-toggle-btn svg {
        width: 16px !important;
        height: 16px !important;
    }
}





