/* ===================================================
   FIT & FINE FOREVER — Premium Light Editorial Design System
   Warm cream / botanical light theme with gold & olive accents
   =================================================== */


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

:root {
    /* Light theme palette */
    --dark: #0C110E;
    --dark-card: #141A16;
    --dark-surface: #1A221C;

    --cream: #FBF8F3;
    --cream-dark: #F3EDE4;
    --sand: #EAE4D9;
    --white: #FFFFFF;

    /* Page backgrounds */
    --bg-primary: #FBF8F3;
    --bg-secondary: #F3EDE4;
    --bg-hero: linear-gradient(165deg, #FBF8F3 0%, #F0EBE1 40%, #E8E2D5 100%);
    --bg-card: #FFFFFF;
    --bg-card-hover: #FFFDF9;

    /* Text on light backgrounds */
    --text-dark: #1A2320;
    --text-body: #4A5650;
    --text-muted: #8A9690;
    --text-light-muted: rgba(26, 35, 32, 0.45);

    /* Text on dark surfaces (footer, testimonials) */
    --text-on-dark: #F5F1EB;
    --text-on-dark-muted: rgba(245, 241, 235, 0.55);

    /* Accent colors */
    --olive: #3A5F43;
    --olive-light: #4A7A55;
    --gold: #C69C6D;
    --gold-muted: rgba(198, 156, 109, 0.15);
    --whatsapp: #25D366;

    /* Borders for light theme */
    --border-light: rgba(26, 35, 32, 0.08);
    --border-medium: rgba(26, 35, 32, 0.12);

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --transition: all 0.4s var(--ease-out-expo);
    --radius: 16px;
    --radius-sm: 10px;
}

/* ===== GLOBAL RESET & OVERFLOW FIX ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    background-color: var(--bg-primary);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    touch-action: pan-y;
    overscroll-behavior-x: none;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    background-color: var(--bg-primary);
    color: var(--text-dark);
    position: relative;
    touch-action: pan-y;
    overscroll-behavior-x: none;
}

main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
}

/* ===== LENIS SMOOTH SCROLL ===== */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* ===== CUSTOM FLUID CURSOR (Desktop) ===== */
@media (min-width: 992px) {
    body {
        cursor: default;
    }

    .cursor-dot {
        position: fixed;
        top: 0;
        left: 0;
        width: 8px;
        height: 8px;
        background: var(--olive);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: opacity 0.3s ease, transform 0.1s ease;
    }

    .cursor-ring {
        position: fixed;
        top: 0;
        left: 0;
        width: 38px;
        height: 38px;
        border: 1.5px solid rgba(58, 95, 67, 0.35);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: width 0.3s var(--ease-out-expo),
            height 0.3s var(--ease-out-expo),
            border-color 0.3s ease,
            background 0.3s ease;
    }

    body.cursor-hover .cursor-ring {
        width: 68px;
        height: 68px;
        background: var(--olive);
        border-color: var(--olive);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cursor-label {
        font-family: var(--font-sans);
        font-size: 0.62rem;
        font-weight: 800;
        letter-spacing: 1.5px;
        color: var(--white);
        text-transform: uppercase;
        opacity: 0;
        transition: opacity 0.25s ease;
    }

    body.cursor-hover .cursor-label {
        opacity: 1;
    }
}

/* ===== WEBGL CANVAS BACKGROUND ===== */
#webgl-canvas {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    opacity: 0.35;
}

/* ===== FILM GRAIN OVERLAY ===== */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9990;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ===== NAVBAR STATUS BADGE & LIVE CLOCK ===== */
.nav-status-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background: rgba(58, 95, 67, 0.06);
    border: 1px solid rgba(58, 95, 67, 0.12);
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 0 10px #25D366;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

.nav-time {
    color: var(--olive);
    border-left: 1px solid var(--border-medium);
    padding-left: 10px;
}

/* ===== IMAGE MASK REVEAL ===== */
.img-mask-reveal {
    opacity: 0.2;
    transform: scale(0.95);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.img-mask-reveal.revealed {
    opacity: 1;
    transform: scale(1);
}

/* ===== SECTION INDEX MARKERS & WATERMARKS ===== */
.section-idx-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
}

.idx-num {
    color: var(--olive);
}

.idx-title {
    color: var(--text-muted);
    text-transform: uppercase;
}

.watermark-text {
    position: absolute;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(7rem, 18vw, 22rem);
    color: rgba(58, 95, 67, 0.035);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 0;
    line-height: 1;
}

.watermark-hero {
    top: 8%;
    right: -5%;
}

.watermark-about {
    top: 10%;
    left: -5%;
    color: rgba(198, 156, 109, 0.04);
}

.watermark-testimonials {
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
}

.watermark-products {
    top: 5%;
    right: -2%;
    color: rgba(58, 95, 67, 0.035);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-dark);
}

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

/* ===== SCROLL-REVEAL ANIMATION ENGINE ===== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s var(--ease-out-expo),
        transform 0.9s var(--ease-out-expo);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.9s var(--ease-out-expo),
        transform 0.9s var(--ease-out-expo);
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.9s var(--ease-out-expo),
        transform 0.9s var(--ease-out-expo);
}

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

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s var(--ease-out-expo),
        transform 0.8s var(--ease-out-expo);
}

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

/* Staggered children delay */
.stagger-children>*:nth-child(1) {
    transition-delay: 0ms;
}

.stagger-children>*:nth-child(2) {
    transition-delay: 80ms;
}

.stagger-children>*:nth-child(3) {
    transition-delay: 160ms;
}

.stagger-children>*:nth-child(4) {
    transition-delay: 240ms;
}

.stagger-children>*:nth-child(5) {
    transition-delay: 320ms;
}

.stagger-children>*:nth-child(6) {
    transition-delay: 400ms;
}

.stagger-children>*:nth-child(7) {
    transition-delay: 480ms;
}

.stagger-children>*:nth-child(8) {
    transition-delay: 560ms;
}

.stagger-children>*:nth-child(9) {
    transition-delay: 640ms;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: transparent;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: rgba(251, 248, 243, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid var(--border-light);
}

.nav-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: auto;
    border-radius: 6px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-body);
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--olive);
}

.btn-nav-cta {
    background: var(--whatsapp);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
}

.btn-nav-cta:hover {
    background: #1EBE5D;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    background: none;
    border: none;
}

/* Mobile Drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    padding: 30px 40px;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.mobile-drawer.active {
    display: flex;
}

.mobile-drawer a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ===== 3D PERSPECTIVE SYSTEM ===== */
.hero-section,
.about-section,
.consultation-section,
.products-section,
.products-v2,
.transformations-section {
    perspective: 1200px;
    transform-style: preserve-3d;
}

.hero-img-card,
.consult-card,
.p-card,
.pc-card,
.marquee-card,
.about-heading img {
    transform-style: preserve-3d;
    will-change: transform;
    transition: box-shadow 0.4s ease;
}

/* ===== HERO — Full-screen light editorial hero ===== */
.hero-section {
    min-height: 100vh;
    background: var(--bg-hero);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 40px 60px;
}

/* Subtle botanical glow accents */
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 156, 109, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(58, 95, 67, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--olive);
    margin-bottom: 28px;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.08;
    margin-bottom: 28px;
}

.hero-title em {
    font-style: italic;
    color: var(--olive);
}

.hero-desc {
    font-size: 1.12rem;
    color: var(--text-body);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 44px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

.btn-hero {
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    border: 1.5px solid var(--border-medium);
    color: var(--text-dark);
    background: transparent;
}

.btn-hero:hover {
    background: var(--text-dark);
    color: var(--cream);
    border-color: var(--text-dark);
    transform: translateY(-3px);
}

.btn-hero-fill {
    background: var(--olive);
    color: var(--white);
    border-color: var(--olive);
}

.btn-hero-fill:hover {
    background: var(--gold);
    color: var(--text-dark);
    border-color: var(--gold);
}

.hero-scroll-hint {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Hero Image Card */
.hero-img-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.hero-img-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

/* Hero 3D Floating Badges */
.hero-3d-badge {
    position: absolute;
    z-index: 10;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(58, 95, 67, 0.2);
    border-radius: 50px;
    color: var(--olive);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    transform-style: preserve-3d;
}

.badge-top-left {
    top: 24px;
    left: 24px;
}

.badge-bottom-right {
    bottom: 90px;
    right: 24px;
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.25);
}

.hero-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(0deg, rgba(26, 35, 32, 0.85) 0%, transparent 100%);
}

.hero-img-overlay h4 {
    color: var(--gold);
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.hero-img-overlay p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
}

/* ===== ABOUT SECTION — Editorial split ===== */
.about-section {
    padding: 80px 40px;
    max-width: 1360px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 100px;
    align-items: flex-start;
}

.about-heading h2 {
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    line-height: 1.15;
    position: relative;
    color: var(--text-dark);
}

.about-heading h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-top: 28px;
    border-radius: 2px;
}

.about-body p {
    font-size: 1.55rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 28px;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 2px solid var(--text-dark);
    padding-bottom: 4px;
    transition: var(--transition);
}

.about-link:hover {
    color: var(--olive);
    border-color: var(--olive);
}

/* ===== METRICS STRIP ===== */
.metrics-strip {
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 55px 40px;
    background: var(--bg-secondary);
}

.metrics-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.metric h4 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.metric p {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
}

/* ===== CONSULTATION ===== */
.consultation-section {
    padding: 120px 40px 80px;
    max-width: 1360px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 560px;
    margin-bottom: 60px;
}

.consult-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.035);
    border: 1px solid var(--border-light);
}

.consult-left h3 {
    font-size: 2.4rem;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.consult-left p {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 36px;
}

.price-now {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-was {
    font-size: 1.3rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.btn-dark-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 50px;
    background: var(--olive);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
}

.btn-dark-pill:hover {
    background: var(--text-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(58, 95, 67, 0.25);
}

.consult-right h4 {
    font-size: 1.25rem;
    margin-bottom: 22px;
    color: var(--text-dark);
}

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

.cond-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.cond-pill:hover {
    background: var(--olive);
    color: #fff;
    transform: translateY(-2px);
}

.cond-pill i {
    color: var(--olive);
    font-size: 0.9rem;
}

.cond-pill:hover i {
    color: #fff;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 60px 40px 70px;
    max-width: 1360px;
    margin: 0 auto;
}

/* Tighter spacing for the products intro header (03 // HERBAL COLLECTION block) */
.products-section .section-subtitle {
    margin-bottom: 32px;
}

/* Kill the dead space between the last product grid and testimonials */
.cat-block:last-of-type {
    margin-bottom: 0;
}

.products-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.search-wrap {
    position: relative;
}

.search-wrap i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

#product-search-input {
    padding: 13px 20px 13px 46px;
    border-radius: 50px;
    border: 1.5px solid var(--border-medium);
    background: var(--white);
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    width: 340px;
    outline: none;
    transition: var(--transition);
}

#product-search-input:focus {
    border-color: var(--olive);
    box-shadow: 0 4px 16px rgba(58, 95, 67, 0.1);
}

.filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fpill {
    padding: 9px 20px;
    border-radius: 50px;
    background: transparent;
    border: 1.5px solid var(--border-medium);
    color: var(--text-body);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-sans);
}

.fpill.active,
.fpill:hover {
    background: var(--olive);
    color: var(--white);
    border-color: var(--olive);
}

/* Category Block */
.cat-block {
    margin-bottom: 80px;
}

.cat-block-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.cat-block-desc {
    color: var(--text-body);
    margin-bottom: 32px;
    font-size: 1rem;
}

/* Product Grid — Compact & Sleek */
.p-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.p-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.p-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
    border-color: rgba(58, 95, 67, 0.2);
}

.p-card-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--sand);
}

.p-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s var(--ease-out-expo);
}

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

.p-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.p-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2px;
}

.p-card-header h4 {
    font-size: 1.05rem;
    line-height: 1.25;
    flex: 1;
    padding-right: 8px;
    color: var(--text-dark);
}

.arrow-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.p-card:hover .arrow-link {
    background: var(--olive);
    color: var(--white);
    transform: translate(2px, -2px);
}

.p-card-tag {
    font-size: 0.72rem;
    color: var(--olive);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

/* ===== COMPACT INTERACTIVE WEIGHT & SIZE SELECTOR ===== */
.p-weight-selector {
    margin-bottom: 10px;
}

.weight-selector-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.weight-pills-wrap {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.weight-pills-wrap::-webkit-scrollbar {
    display: none;
}

.weight-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 50px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-medium);
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-size: 0.73rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s var(--ease-out-expo);
    outline: none;
}

.weight-pill .pill-weight {
    color: var(--text-dark);
}

.weight-pill .pill-price {
    font-weight: 700;
    color: var(--olive);
    background: rgba(58, 95, 67, 0.08);
    padding: 1px 5px;
    border-radius: 12px;
    font-size: 0.68rem;
    transition: all 0.2s ease;
}

.weight-pill:hover {
    border-color: var(--olive);
    transform: translateY(-1px);
}

.weight-pill.active {
    background: var(--olive);
    border-color: var(--olive);
    color: var(--white);
    box-shadow: 0 3px 10px rgba(58, 95, 67, 0.2);
}

.weight-pill.active .pill-weight {
    color: var(--white);
}

.weight-pill.active .pill-price {
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
}

.p-card-desc {
    color: var(--text-body);
    font-size: 0.85rem;
    line-height: 1.45;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.p-card-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 14px;
}

.p-chip {
    font-size: 0.68rem;
    background: var(--bg-secondary);
    padding: 2px 7px;
    border-radius: 50px;
    color: var(--text-body);
}

.p-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.p-price-group {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.p-price {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.p-mrp {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.p-card-desc {
    color: var(--text-body);
    font-size: 0.94rem;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.p-card-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 22px;
}

.p-chip {
    font-size: 0.72rem;
    background: var(--bg-secondary);
    padding: 3px 9px;
    border-radius: 50px;
    color: var(--text-body);
}

.p-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.p-price {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.btn-book-sm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 50px;
    background: var(--olive);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    position: relative;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
}

.btn-book-sm:hover {
    background: var(--whatsapp);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== TRANSFORMATIONS — Immersive dark marquee (stays dark) ===== */
.transformations-section {
    background: var(--dark);
    padding: 100px 0 80px;
    overflow: hidden;
    position: relative;
}

/* Subtle radial glow accents */
.transformations-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(198, 156, 109, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 100%, rgba(58, 95, 67, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.transform-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.transform-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    color: var(--text-on-dark);
    line-height: 1.1;
    margin-bottom: 18px;
}

.transform-title em {
    font-style: italic;
    color: var(--gold);
}

.transform-subtitle {
    color: var(--text-on-dark-muted);
    font-size: 1.1rem;
    line-height: 1.65;
}

/* Marquee Container */
.marquee-wrapper {
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.marquee-left {
    animation: marquee-scroll-left 45s linear infinite;
}

.marquee-right {
    animation: marquee-scroll-right 50s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Marquee Card */
.marquee-card {
    flex-shrink: 0;
    width: 250px;
    background: transparent;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.marquee-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(198, 156, 109, 0.5);
}

.marquee-card-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    display: block;
}

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

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

.marquee-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 17, 14, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.marquee-card:hover .marquee-card-overlay {
    opacity: 1;
}

.marquee-card-info {
    padding: 18px 20px;
}

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

.marquee-card-info h4 {
    font-size: 1.05rem;
    color: var(--text-on-dark);
    margin-bottom: 3px;
}

.marquee-sub {
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
}

.transform-cta {
    position: relative;
    z-index: 1;
}

/* ===== LIGHTBOX ===== */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(26, 35, 32, 0.88);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox.active {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
}

.lightbox-x {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-x:hover {
    color: var(--gold);
}

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    animation: wa-pulse 2.5s infinite;
}

.wa-float:hover {
    transform: scale(1.12);
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== FOOTER (stays dark for contrast) ===== */
.site-footer {
    background: var(--dark);
    color: var(--text-on-dark);
    padding: 100px 40px 40px;
}

.footer-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h3 {
    font-size: 1.6rem;
    color: var(--text-on-dark);
    margin-bottom: 22px;
}

.footer-col p {
    color: var(--text-on-dark-muted);
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.65;
}

.footer-col a {
    color: var(--text-on-dark-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bar {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-on-dark-muted);
    font-size: 0.88rem;
}

/* ===== GLOBAL OVERFLOW FIX ===== */
main {
    overflow-x: hidden;
    width: 100%;
}

/* ===== RESPONSIVE — COMPREHENSIVE BREAKPOINTS ===== */

/* ---- Tablet / Small Laptop (≤ 1024px) ---- */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 50px;
    }

    .about-grid {
        gap: 60px;
    }

    .consult-card {
        gap: 40px;
        padding: 40px;
    }

    .nav-menu {
        gap: 24px;
    }

    .footer-inner {
        gap: 40px;
    }
}

/* ---- Tablet Portrait (≤ 992px) ---- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-img-card img {
        height: 380px;
    }

    .hero-img-card {
        max-width: 580px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .consult-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .about-section,
    .consultation-section,
    .products-section,
    .site-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

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

    .nav-inner {
        max-width: 100%;
    }

    .metric h4 {
        font-size: 2.2rem;
    }
}

/* ---- Large Phone / Small Tablet (≤ 768px) ---- */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-status-badge {
        display: none;
    }

    .nav-inner {
        padding: 0 16px;
    }

    .mobile-toggle {
        display: block;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero-section {
        padding: 100px 20px 50px;
        min-height: auto;
    }

    .hero-grid {
        gap: 36px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 40px;
    }

    .btn-hero {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .hero-scroll-hint {
        display: none;
    }

    .hero-img-card img {
        height: 340px;
    }

    .hero-img-card {
        max-width: 100%;
        border-radius: 18px;
    }

    /* Hero Badges reposition for smaller image */
    .hero-3d-badge {
        padding: 6px 12px;
        font-size: 0.72rem;
    }

    .badge-top-left {
        top: 12px;
        left: 12px;
    }

    .badge-bottom-right {
        bottom: 70px;
        right: 12px;
    }

    .hero-img-overlay {
        padding: 20px;
    }

    .hero-img-overlay h4 {
        font-size: 1rem;
    }

    .hero-img-overlay p {
        font-size: 0.78rem;
    }

    .about-section {
        padding: 60px 20px;
    }

    .about-grid {
        gap: 30px;
    }

    .about-heading h2 {
        font-size: clamp(1.8rem, 5vw, 2.6rem);
    }

    .about-heading h2::after {
        margin-top: 20px;
        width: 40px;
    }

    .about-body p {
        font-size: 1.15rem;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .about-body p:last-of-type {
        margin-bottom: 0;
    }

    .about-link {
        font-size: 0.92rem;
    }

    .metrics-strip {
        padding: 40px 20px;
    }

    .metrics-inner {
        gap: 28px;
        justify-content: center;
    }

    .metric {
        text-align: center;
        min-width: 120px;
    }

    .metric h4 {
        font-size: 2rem;
    }

    .metric p {
        font-size: 0.72rem;
        letter-spacing: 1.5px;
    }

    .consultation-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 36px;
        max-width: 100%;
    }

    .consult-card {
        grid-template-columns: 1fr;
        padding: 24px;
        border-radius: 14px;
        gap: 30px;
    }

    .consult-left h3 {
        font-size: 1.8rem;
    }

    .consult-left p {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 24px;
    }

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

    .cond-pill {
        padding: 11px 16px;
        font-size: 0.85rem;
    }

    .consult-right h4 {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }

    .price-display {
        margin-bottom: 28px;
    }

    .price-now {
        font-size: 2.4rem;
    }

    .price-was {
        font-size: 1.1rem;
    }

    .btn-dark-pill {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

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

    .transform-header {
        padding: 0 20px;
        margin-bottom: 36px;
    }

    .transform-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .transform-subtitle {
        font-size: 0.95rem;
    }

    .marquee-card {
        width: 210px;
    }

    .marquee-card-img {
        height: auto;
    }

    .marquee-track {
        gap: 14px;
    }

    .marquee-card-info {
        padding: 14px 16px;
    }

    .marquee-card-info h4 {
        font-size: 0.95rem;
    }

    .marquee-sub {
        font-size: 0.75rem;
    }

    .marquee-left {
        animation-duration: 30s;
    }

    .marquee-right {
        animation-duration: 35s;
    }

    .transform-cta {
        margin-top: 30px;
    }

    .products-section {
        padding: 60px 20px;
    }

    .cat-block {
        margin-bottom: 50px;
    }

    .cat-block-title {
        font-size: 1.6rem;
    }

    .cat-block-desc {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .p-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .p-card-body {
        padding: 18px;
    }

    .p-card-header h4 {
        font-size: 1.05rem;
    }

    .p-card-desc {
        font-size: 0.88rem;
    }

    .p-price {
        font-size: 1.3rem;
    }

    .btn-book-sm {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Products Controls */
    .products-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin-bottom: 36px;
    }

    .search-wrap {
        width: 100%;
    }

    #product-search-input {
        width: 100%;
        max-width: 100%;
        padding: 11px 16px 11px 40px;
        font-size: 0.88rem;
    }

    .filter-pills {
        flex-wrap: wrap;
        gap: 6px;
    }

    .fpill {
        padding: 7px 14px;
        font-size: 0.8rem;
    }

    /* Hide heavy absolute watermarks on mobile to guarantee 0 horizontal scroll */
    .watermark-text {
        display: none !important;
    }

    .site-footer {
        padding: 60px 20px 30px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 50px;
    }

    .footer-col h3 {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }

    .footer-col p {
        font-size: 0.92rem;
    }

    .footer-bar {
        font-size: 0.8rem;
        padding-top: 20px;
    }

    /* SMOOTH MOBILE DRAWER ANIMATION */
    .mobile-drawer {
        display: block;
        transform: translateY(-110%);
        opacity: 0;
        transition: transform 0.4s var(--ease-out-expo), opacity 0.4s var(--ease-out-expo);
        pointer-events: none;
    }

    .mobile-drawer.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    /* THREE.JS Canvas disable on mobile to save performance */
    #webgl-canvas {
        opacity: 0.15;
    }

    /* WhatsApp Float reposition */
    .wa-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    section,
    header,
    footer,
    main,
    .hero-section,
    .about-section,
    .consultation-section,
    .transformations-section,
    .products-section {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
}

/* ---- Small Phone (≤ 576px) ---- */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-img-card img {
        height: 280px;
    }

    .hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }

    .hero-desc {
        font-size: 0.92rem;
    }

    .hero-3d-badge {
        font-size: 0.68rem;
        padding: 5px 10px;
        border-radius: 40px;
    }

    .badge-top-left {
        top: 10px;
        left: 10px;
    }

    .badge-bottom-right {
        bottom: 60px;
        right: 10px;
    }

    .hero-img-overlay {
        padding: 14px;
    }

    .hero-img-overlay h4 {
        font-size: 0.9rem;
    }

    .hero-img-overlay p {
        font-size: 0.72rem;
    }

    .about-section {
        padding: 40px 16px;
    }

    .about-body p {
        font-size: 1.05rem;
    }

    .metrics-strip {
        padding: 32px 16px;
    }

    .metric h4 {
        font-size: 1.7rem;
    }

    .metric {
        min-width: 100px;
    }

    .consultation-section {
        padding: 40px 16px;
    }

    .consult-card {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .consult-left h3 {
        font-size: 1.5rem;
    }

    .price-now {
        font-size: 2rem;
    }

    .cond-pill {
        padding: 10px 14px;
        font-size: 0.82rem;
    }

    .marquee-card {
        width: 170px;
    }

    .marquee-card-img {
        height: auto;
    }

    .marquee-card-info {
        padding: 10px 12px;
    }

    .marquee-card-info h4 {
        font-size: 0.85rem;
    }

    .marquee-stars {
        font-size: 0.68rem;
    }

    .products-section {
        padding: 40px 16px;
    }

    .p-card-body {
        padding: 14px;
    }

    .cat-block-title {
        font-size: 1.4rem;
    }

    .p-card-header h4 {
        font-size: 0.95rem;
    }

    .p-card-desc {
        font-size: 0.82rem;
    }

    .p-card-footer {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .btn-book-sm {
        width: 100%;
        justify-content: center;
    }

    .arrow-link {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }

    .site-footer {
        padding: 40px 16px 24px;
    }

    .footer-inner {
        gap: 24px;
        margin-bottom: 36px;
    }

    .transform-title {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .transform-subtitle {
        font-size: 0.88rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .lightbox {
        padding: 16px;
    }

    .lightbox-x {
        top: -40px;
        font-size: 2rem;
    }

    .wa-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}

/* ---- Very Small Phone (≤ 400px) ---- */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-img-card img {
        height: 240px;
    }

    .hero-desc {
        font-size: 0.88rem;
    }

    .hero-eyebrow {
        font-size: 0.6rem;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .logo-img {
        height: 30px;
    }

    .logo-link {
        gap: 8px;
    }

    .nav-inner {
        padding: 0 12px;
    }

    .navbar {
        padding: 14px 0;
    }

    .navbar.scrolled {
        padding: 10px 0;
    }

    .about-body p {
        font-size: 0.95rem;
    }

    .about-heading h2 {
        font-size: 1.5rem;
    }

    .metric h4 {
        font-size: 1.4rem;
    }

    .metric p {
        font-size: 0.65rem;
    }

    .metrics-inner {
        gap: 20px;
    }

    .metric {
        min-width: 80px;
    }

    .consult-left h3 {
        font-size: 1.3rem;
    }

    .price-display {
        flex-direction: column;
        gap: 4px;
    }

    .price-now {
        font-size: 1.7rem;
    }

    .price-was {
        font-size: 0.95rem;
    }

    .btn-dark-pill {
        font-size: 0.85rem;
        padding: 12px 20px;
    }

    .cond-pill {
        padding: 8px 12px;
        font-size: 0.78rem;
    }

    .marquee-card {
        width: 140px;
    }

    .marquee-card-img {
        height: auto;
    }

    .p-card-body {
        padding: 12px;
    }

    .p-card-header h4 {
        font-size: 0.88rem;
    }

    .p-card-tag {
        font-size: 0.7rem;
    }

    .p-card-weight {
        font-size: 0.7rem;
    }

    .p-price {
        font-size: 1.1rem;
    }

    .fpill {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .mobile-drawer {
        padding: 20px 20px;
        gap: 16px;
    }

    .mobile-drawer a {
        font-size: 1rem;
    }

    .wa-float {
        bottom: 14px;
        right: 14px;
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

/* ===================================================
   LIGHT-THEME TEXT READABILITY — All sections on
   light backgrounds use dark text. Footer and
   transformations stay dark-themed.
   =================================================== */

/* Section headings on light background */
.section-title,
.cat-block-title,
.about-heading h2 {
    color: var(--text-dark);
}

/* Section labels / eyebrow text */
.section-label {
    color: var(--text-muted);
}

/* Body copy on light background */
.section-subtitle,
.cat-block-desc,
.about-body p {
    color: var(--text-body);
}

/* Any headings inside editable about_text HTML */
.about-body h1,
.about-body h2,
.about-body h3,
.about-body h4,
.about-body h5,
.about-body h6 {
    color: var(--text-dark);
}

/* Founder role under the founder photo */
.about-heading .founder-role {
    color: var(--text-muted);
}

/* Keep light cards (products / consultation) with dark text */
.consult-card h3,
.consult-card h4,
.p-card h4,
.price-now {
    color: var(--text-dark);
}

.consult-card p,
.p-card-desc,
.p-card-tag,
.p-chip {
    color: var(--text-body);
}

/* Ensure the white search input keeps dark placeholder text */
#product-search-input::placeholder {
    color: var(--text-muted);
}

/* ============================================
   TESTIMONIALS — Client transformations
   ============================================ */
.testimonials-section {
    padding: 70px 8% 90px;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.t-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 56px;
    position: relative;
    z-index: 2;
}

.t-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    cursor: default;
    transition: var(--transition);
}

.t-card.t-card-click {
    cursor: zoom-in;
}

.t-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.07);
    border-color: rgba(58, 95, 67, 0.2);
}

.t-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--sand);
}

.t-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.t-card-zoom {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--olive);
    font-size: 0.85rem;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
    pointer-events: none;
}

.t-card:hover .t-card-zoom {
    opacity: 1;
    transform: translateY(0);
}

.t-card-img-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(58, 95, 67, 0.06) 0%, rgba(198, 156, 109, 0.08) 100%);
}

.t-card-img-fallback span {
    font-size: 2.4rem;
    color: rgba(58, 95, 67, 0.25);
}

.t-card-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.t-card-stars {
    color: var(--gold);
    font-size: 0.8rem;
    display: flex;
    gap: 3px;
}

.t-card-stars .fa-regular {
    color: var(--border-medium);
}

.t-card-text {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    flex: 1;
}

.t-card-client {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.t-card-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--olive);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.t-card-client h5 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-dark);
}

.t-card-client p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin: 2px 0 0 0;
}

.t-card-wa {
    margin-left: auto;
    color: #25D366;
    font-size: 1.1rem;
    opacity: 0.85;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(26, 35, 32, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4vh 4vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-inner {
    max-width: min(680px, 90vw);
    max-height: 88vh;
    transform-style: preserve-3d;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 88vh;
    border-radius: 16px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: rotate(90deg);
}

/* Testimonials responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 56px 6% 64px;
    }

    .t-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 40px;
    }

    .lightbox-close {
        top: 14px;
        right: 14px;
    }
}