/* ═══════════════════════════════════════
   RONAKS ADIRE – AUTHENTIC INDIGO VARIABLES
═══════════════════════════════════════ */
:root {
    --bg:           #fdfcf9; /* Clean, warm off-white */
    --bg-low:       #f4f3ef;
    --bg-card:      #ffffff;
    
    /* AUTHENTIC NATURAL INDIGO (Smooth, Rich, Not Sharp) */
    --indigo:       #182655; 
    --indigo-hover: #253A82; 
    
    --text-dark:    #0a0a0a;
    --text-mid:     #444444;
    --text-faint:   #777777;
    --border:       #e8e6e1;
    --border-mid:   #d6d4ce;

    --display:      'Noto Serif', 'Cormorant Garamond', Georgia, serif;
    --body:         'Manrope', system-ui, sans-serif;

    /* Structural Curves */
    --radius-pill:  50px;
    --radius-card:  20px;

    --nav-height-desk: 90px;
    --nav-height-mob:  70px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: clip; background: var(--bg); color: var(--text-dark); font-family: var(--body); font-weight: 400; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
:focus-visible { outline: 2px solid var(--indigo); outline-offset: 3px; border-radius: var(--radius-pill); }
:focus:not(:focus-visible) { outline: none; }


/* ═══════════════════════════════════════
   TOP BAR
═══════════════════════════════════════ */
.topbar {
    background: var(--indigo); 
    color: #ffffff; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; 
    font-weight: 600; padding: 0.6rem 1rem; display: flex; align-items: center; gap: 1.5rem;
}

.topbar-msg-slider { position: relative; height: 1.4rem; display: flex; align-items: center; justify-content: center; flex-grow: 1; perspective: 400px; }
.topbar-msg { position: absolute; width: 100%; text-align: center; opacity: 0; transform-origin: center; animation: flipRotate 5.7s infinite cubic-bezier(0.4, 0, 0.2, 1); }
.topbar-msg strong { color: #ffffff; font-weight: 800; opacity: 0.9; }

.topbar-msg:nth-child(1) { animation-delay: 0s; }
.topbar-msg:nth-child(2) { animation-delay: 1.9s; }
.topbar-msg:nth-child(3) { animation-delay: 3.8s; }

@keyframes flipRotate {
    0% { opacity: 0; transform: rotateX(-90deg); }
    8%, 25% { opacity: 1; transform: rotateX(0deg); }
    33.33%, 100% { opacity: 0; transform: rotateX(90deg); }
}

.topbar-socials { display: flex; gap: 0.8rem; align-items: center; }
.topbar-socials a { color: rgba(255, 255, 255, 0.7); transition: color 0.2s; display: flex; align-items: center; }
.topbar-socials a:hover { color: #ffffff; }
.topbar-socials svg { width: 15px; height: 15px; fill: currentColor; }


/* ═══════════════════════════════════════
   DESKTOP NAVBAR
═══════════════════════════════════════ */
.desk-nav, .desk-nav .navbar, .desk-nav .nav-menu-wrapper, .desk-nav .nav-links, .desk-nav .nav-links > li {
    overflow: visible !important;
}

.desk-nav {
    position: sticky; top: 0; z-index: 1000;
    background: #ffffff; border-bottom: 1px solid var(--border);
}

.desk-nav .navbar {
    max-width: 1400px; margin: 0 auto; padding: 0 2.5rem;
    height: var(--nav-height-desk); display: flex; align-items: center; gap: 1rem;
}

.nav-logo { flex-shrink: 0; margin-right: 2rem; display: flex; align-items: center; }
.logo img { height: 92px; width: auto; object-fit: contain; transition: opacity 0.3s; }
.logo:hover img { opacity: 0.8; }

.desk-nav .nav-menu-wrapper { margin-right: auto; }
.desk-nav .nav-links { display: flex; align-items: center; gap: 0; }
.desk-nav .nav-links > li { position: relative; }

.desk-nav .nav-links a, .desk-nav .nav-dropdown-trigger {
    font-family: var(--body); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-mid);
    padding: 0.55rem 1rem; display: inline-flex; align-items: center; gap: 4px;
    position: relative; transition: color 0.22s var(--ease); white-space: nowrap;
}

.desk-nav .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem;
    height: 2px; background: var(--indigo); transform: scaleX(0);
    transform-origin: left; transition: transform 0.3s var(--ease);
}

.desk-nav .nav-links a:hover, .desk-nav .nav-dropdown-trigger:hover,
.desk-nav .nav-dropdown-trigger[aria-expanded="true"] { color: var(--indigo); }
.desk-nav .nav-links a:hover::after, .desk-nav .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.desk-nav .nav-links a[aria-current="page"] { color: var(--indigo); font-weight: 800; }

.chevron { display: inline-flex; align-items: center; width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.chevron svg { width: 100%; height: 100%; }
.nav-dropdown-trigger[aria-expanded="true"] .chevron, .desk-nav .has-dropdown:hover .nav-dropdown-trigger .chevron { transform: rotate(180deg); }

/* Dropdown panel */
.desk-nav .dropdown {
    position: absolute; top: calc(100% + 1px); left: 0; min-width: 230px;
    background: var(--bg-card); border: 1px solid var(--border); border-top: 2px solid var(--indigo);
    border-radius: 0 0 16px 16px; box-shadow: 0 16px 40px rgba(24, 38, 85, 0.08); padding: 0.5rem; z-index: 9999;
    opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-6px);
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.desk-nav .dropdown::before { content: ''; position: absolute; top: -12px; left: 0; width: 100%; height: 12px; background: transparent; }
.desk-nav .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.desk-nav .nav-dropdown-trigger[aria-expanded="true"] ~ .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }

.desk-nav .dropdown li a {
    display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
    color: var(--text-mid); padding: 0.75rem 1rem; transition: all 0.2s; border-radius: 8px;
}
.desk-nav .dropdown li a:hover { background: rgba(24, 38, 85, 0.05); color: var(--indigo); padding-left: 1.5rem; }


/* ═══════════════════════════════════════
   DESKTOP NAV — RIGHT SIDE (SEARCH + CTA)
═══════════════════════════════════════ */
.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.search-wrapper { position: relative; display: flex; align-items: center; }

/* 50px Pill Shape */
.search-input {
    width: 260px; height: 42px; padding: 0 2rem 0 1.25rem;
    border: 1px solid var(--border-mid); 
    border-radius: var(--radius-pill); 
    background: var(--bg-card); outline: none; font-family: var(--body); font-size: 0.72rem;
    font-weight: 600; color: var(--indigo); transition: all 0.3s var(--ease);
}
.search-input::placeholder { color: var(--text-faint); font-weight: 500; }
.search-input:focus { background: var(--bg-card); border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(24, 38, 85, 0.1); }

.search-icon { position: absolute; right: 14px; pointer-events: none; display: flex; align-items: center; }
.search-icon svg { width: 16px; height: 16px; fill: var(--text-faint); transition: fill 0.3s var(--ease); }
.search-input:focus ~ .search-icon svg { fill: var(--indigo); }

/* 50px Pill Shape CTA button */
.desk-nav .nav-cta {
    font-family: var(--body); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: #ffffff; background: var(--indigo);
    padding: 0.8rem 1.8rem; 
    border-radius: var(--radius-pill); 
    border: 1px solid var(--indigo); transition: all 0.3s ease; white-space: nowrap;
}
.desk-nav .nav-cta:hover { 
    background: var(--indigo-hover); 
    border-color: var(--indigo-hover);
    box-shadow: 0 6px 20px rgba(24, 38, 85, 0.25); 
    transform: translateY(-2px);
}


/* ═══════════════════════════════════════
   MOBILE HEADER
═══════════════════════════════════════ */
.mobile-header {
    display: none; position: sticky; top: 0; z-index: 1000;
    background: #ffffff; border-bottom: 1px solid var(--border);
}

.mobile-top-row { display: flex; align-items: center; justify-content: space-between; padding: 0 1.25rem; height: var(--nav-height-mob); gap: 12px; }
.mobile-header .logo img { height: 66px; }

.hamburger .menu-close { display: none; }
.hamburger[aria-expanded="true"] .menu-open  { display: none; }
.hamburger[aria-expanded="true"] .menu-close { display: block; }
.hamburger svg { width: 28px; height: 28px; fill: var(--indigo); transition: fill 0.2s; display: block; }

.mobile-nav-inner {
    width: 100%; max-height: 0; opacity: 0; visibility: hidden; overflow: hidden;
    background: var(--bg); padding: 0 1.5rem;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.4s;
}

#mobileNav:has(.hamburger[aria-expanded="true"]) .mobile-nav-inner {
    max-height: 600px; opacity: 1; visibility: visible; padding-bottom: 2rem; border-top: 1px solid var(--border);
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease 0.1s, visibility 0.5s;
}

.mobile-nav-inner > a {
    display: block; font-family: var(--body); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-mid);
    padding: 1.2rem 0; border-bottom: 1px solid var(--border); transition: all 0.2s;
}
.mobile-nav-inner > a:hover, .mobile-nav-inner > a[aria-current="page"] { color: var(--indigo); }
.mobile-nav-inner > a[aria-current="page"] { border-left: 2px solid var(--indigo); padding-left: 1rem; }

.mobile-shop-toggle {
    font-family: var(--body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--text-mid); padding: 1.2rem 0; border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center; width: 100%; transition: color 0.2s;
}
.mobile-shop-toggle[aria-expanded="true"] { color: var(--indigo); }
.mobile-shop-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.mobile-sub { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); background: var(--bg-low); }
.mobile-sub.open { max-height: 280px; }

.mobile-sub a {
    display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-mid); padding: 1rem 0 1rem 1.5rem; border-bottom: 1px solid var(--border); transition: all 0.2s;
}
.mobile-sub a:last-child { border-bottom: none; }
.mobile-sub a:hover { color: var(--indigo); padding-left: 2rem; }

/* 50px Pill Shape for Mobile CTA */
.mobile-nav-cta {
    display: block; margin-top: 1.5rem; text-align: center; font-family: var(--body);
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
    color: #ffffff !important; background: var(--indigo); padding: 1.1rem; 
    border-radius: var(--radius-pill) !important; 
    border: none !important; box-shadow: 0 8px 24px rgba(24, 38, 85, 0.25); transition: all 0.3s ease;
}
.mobile-nav-cta:hover { background: var(--indigo-hover); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(24, 38, 85, 0.35); }


/* ═══════════════════════════════════════
   HERO SECTION (Rich Indigo Feel)
═══════════════════════════════════════ */
.hero {
    background:
        linear-gradient(to bottom, rgba(24, 38, 85, 0.04) 0%, rgba(251, 249, 244, 0) 18%, var(--bg) 100%),
        var(--bg);
    padding: 0; overflow: hidden; position: relative; border-bottom: 1px solid var(--border);
}


.hero::before, 
.hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    filter: blur(80px);
    opacity: 0.35;
    z-index: 0;
}

.hero::before {
    bottom: -20px;
    left: -100px;
    background: radial-gradient(circle, #c6cbdd, transparent 70%);
    animation: move1 12s ease-in-out infinite alternate;
}

.hero::after {
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, #a298ac, transparent 70%);
    animation: move2 14s ease-in-out infinite alternate;
}

@keyframes move1 {
    0% { transform: translate(0, 0) scale(1);}
    100% { transform: translate(60px, -40px) scale(1.1);}
}

@keyframes move2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-60px, 40px) scale(1.1); }
}

.hero-container {
    position: relative; z-index: 2; max-width: 1400px; margin: 0 auto;
    padding: 80px 2.5rem; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; min-height: 580px;
}

.hero-left { display: flex; flex-direction: column; gap: 28px; }

.hero-tag { 
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; 
    text-transform: uppercase; color: var(--indigo); 
}

.hero-h1 { 
    font-size: clamp(3rem, 4vw, 4rem); 
    font-weight: 800; color: var(--text-dark); 
    line-height: 1.1; letter-spacing: -1px; 
    font-family: var(--display); 
}

.hero-changing {
    display: inline-block; color: var(--indigo); font-style: italic;
    opacity: 0; transform: translateY(8px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); 
    min-width: 10px;
}
.hero-changing.visible { opacity: 1; transform: translateY(0); }

.hero-scribble {
    position: relative; display: inline-block; z-index: 1;
    font-family: 'Caveat', cursive; font-size: 1.1em; color: var(--indigo); padding: 0 5px;
}
.hero-scribble::after {
    content: ''; position: absolute; left: -2%; bottom: -4px; width: 104%; height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 15' preserveAspectRatio='none'%3E%3Cpath d='M2,10 Q45,15 98,5 Q45,12 5,8' stroke='%23182655' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%; z-index: -1; clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    animation: drawLine 0.6s ease-out forwards 0.5s;
}

@keyframes drawLine { to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); } }

.hero-sub { font-size: 1rem; color: var(--text-mid); line-height: 1.7; max-width: 480px; }

/* ── Category pills ── */
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; max-width: 500px; }

.hero-pill {
    font-size: 0.65rem; font-weight: 700; padding: 10px 20px; 
    border-radius: var(--radius-pill); 
    border: 1px solid var(--border-mid); background: var(--bg-card); color: var(--text-mid);
    text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; transition: all 0.2s var(--ease);
}
.hero-pill:hover { border-color: var(--indigo); color: var(--indigo); }
.hero-pill.active { background: var(--indigo); border-color: var(--indigo); color: #fff; }

/* ── Hero Buttons ── */
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }

.hero-btn-primary {
    background: var(--indigo); color: #fff; border: none; 
    padding: 14px 32px; 
    border-radius: var(--radius-pill); 
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; 
    cursor: pointer; transition: all 0.3s var(--ease); box-shadow: 0 8px 24px rgba(24, 38, 85, 0.25);
}
.hero-btn-primary:hover { background: #fff; color: var(--indigo); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(24, 38, 85, 0.35); }

.hero-btn-secondary {
    background: transparent; color: var(--indigo); border: 1.5px solid var(--indigo);
    padding: 14px 32px; 
    border-radius: var(--radius-pill); 
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; 
    cursor: pointer; transition: all 0.3s var(--ease);
}
.hero-btn-secondary:hover { background: var(--indigo); color: #fff; box-shadow: 0 12px 32px rgba(24, 38, 85, 0.35); transform: translateY(-2px); }

/* ── Hero Dots ── */
.hero-dots { display: flex; gap: 8px; align-items: center; margin-top: 10px;}
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-mid); border: none; cursor: pointer; transition: all 0.3s ease; padding: 0; }
.hero-dot.active { background: var(--indigo); width: 28px; border-radius: 50px; }

/* ── Right — 4 Image Stack ── */
.hero-right { position: relative; height: 500px; display: flex; align-items: center; justify-content: center; }

.hero-img-stack { position: relative; width: 380px; height: 420px; opacity: 0; transform: scale(0.96); transition: opacity 0.5s ease, transform 0.5s ease; }
.hero-img-stack.visible { opacity: 1; transform: scale(1); }

/* Elegant Soft Indigo Glow */
.hero-img-stack::before {
    content: ''; position: absolute; top: 50%; left: 50%; width: 300px; height: 300px;
    background: var(--indigo-hover); border-radius: 50%; transform: translate(-50%, -50%);
    filter: blur(80px); opacity: 0.2; z-index: -1; pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.12; }
    100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.28; }
}

.hero-img-card {
    position: absolute; 
    border-radius: var(--radius-card); 
    overflow: hidden; box-shadow: 0 12px 40px rgba(24, 38, 85, 0.15); 
    border: 4px solid var(--bg-card); transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s; cursor: pointer;
}

.hero-img-card--1 { z-index: 4; box-shadow: 0 16px 48px rgba(24, 38, 85, 0.15); animation: floatBob 6s ease-in-out infinite; }
.hero-img-card--2 { z-index: 3; box-shadow: 0 12px 36px rgba(24, 38, 85, 0.12); animation: floatBob 5s ease-in-out infinite 1s; }
.hero-img-card--3 { z-index: 2; box-shadow: 0 8px  28px rgba(24, 38, 85, 0.10); animation: floatBob 7s ease-in-out infinite 2s; }
.hero-img-card--4 { z-index: 1; box-shadow: 0 6px  20px rgba(24, 38, 85, 0.08); animation: floatBob 6.5s ease-in-out infinite 1.5s; }

@keyframes floatBob { 0% { translate: 0 0px; } 50% { translate: 0 -8px; } 100% { translate: 0 0px; } }

.hero-img-card:hover { transform: rotate(0deg) scale(1.05) !important; z-index: 10 !important; box-shadow: 0 24px 64px rgba(24, 38, 85, 0.3) !important; }

/* Image Labels */
.hero-img-label {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 14px 14px;
    background: linear-gradient(to top, rgba(24, 38, 85, 0.85) 0%, rgba(24, 38, 85, 0) 100%);
    color: #fff; font-size: 0.65rem; font-family: var(--body);
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}


/* ═══════════════════════════════════════
   TRUST BAR (Sharp & High Contrast)
═══════════════════════════════════════ */
.trust-bar {
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid var(--border);
    padding: 3.5rem 0;
    margin: 2rem;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    max-width: 1400px;
}

.trust-container {
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-content {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1.2rem;
    row-gap: 0.2rem;
    align-items: center;
    cursor: default;
}

.trust-img {
    grid-row: span 2; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--indigo);
    border-radius: 50%; 
    box-shadow: 0 4px 12px rgba(24, 38, 85, 0.2); 
    transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.trust-img img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1); 
}

.trust-content:hover .trust-img {
    transform: translateY(-4px);
    background: var(--indigo-hover);
    box-shadow: 0 8px 20px rgba(24, 38, 85, 0.35);
}

.trust-content h3 {
    font-family: var(--body);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--indigo);
    margin: 0;
    align-self: end; 
}

.trust-content p {
    font-family: var(--body);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-mid);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: start; 
}


/* ═══════════════════════════════════════
   EDITORIAL SECTION
═══════════════════════════════════════ */
.editorial-section {
    background: rgba(255, 255, 255, 0.5);
    padding: 60px 0;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
    isolation: isolate;
}

.editorial-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr; 
    gap: 20px;
    height: 520px;
    align-items: stretch;
}

.editorial-stacked {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    max-height: 520px;
    overflow: hidden;
}

.editorial-card {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 8px; 
    background: var(--bg-low);
    box-shadow: 
        0 4px 12px rgba(24, 38, 85, 0.04),
        0 16px 40px rgba(24, 38, 85, 0.08);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, box-shadow;
}

.large-card {
    height: 100%;
    max-height: 520px;
    overflow: hidden;
}

.small-card {
    height: calc(50% - 10px);
    overflow: hidden;
}

.editorial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    will-change: transform; 
    transform-origin: center center;
}

.editorial-section.is-hidden .editorial-card,
.editorial-section.is-hidden .editorial-overlay {
    opacity: 0;
    transform: translateY(20px);
}

.editorial-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.8) 0%, transparent 100%);
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.editorial-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.small-card .editorial-overlay {
    padding: 1.5rem;
}

.editorial-overlay h2 {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
}

.small-card .editorial-overlay h2 {
    font-size: 1.5rem;
}

.editorial-link {
    font-family: var(--body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    position: relative;
    width: fit-content;
}

.editorial-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.editorial-card:hover {
    transform: translateY(-8px);
}

.editorial-card:hover::after {
    opacity: 1;
}

.editorial-card:hover .editorial-link::after {
    transform: scaleX(1);
}


/* ═══════════════════════════════════════
   HOMEPAGE PRODUCT GRID
═══════════════════════════════════════ */
.products-section {
    padding: 6rem 0;
    background: var(--bg);
}

.products-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* ── Header & Filters ── */
.products-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.products-header-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.products-eyebrow {
    font-family: var(--body); font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-faint);
}

.products-title {
    font-family: var(--display); font-size: 2.8rem; font-weight: 800;
    color: var(--indigo); line-height: 1; margin-bottom: 1rem;
}

/* Category Filter Pills */
.product-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--body); font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-mid);
    padding: 8px 18px; border-radius: 50px; border: 1px solid var(--border-mid);
    background: transparent; transition: all 0.3s var(--ease); cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--indigo); color: var(--indigo);
}

.filter-btn.active {
    background: var(--indigo); border-color: var(--indigo); color: #ffffff;
}

.products-view-all {
    font-family: var(--body); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--indigo);
    border-bottom: 1px solid var(--indigo); padding-bottom: 2px;
    text-decoration: none; transition: opacity 0.2s;
    margin-top: 0.25rem;
    flex-shrink: 0;
}
.products-view-all:hover { opacity: 0.6; }

/* ── Grid ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* ── Product Card ── */
.product-card {
    display: flex; flex-direction: column;
    background: transparent;
    border: none;
    transition: transform 0.4s var(--ease);
}

/* Image Wrapper */
.product-img-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 4px;
    background: var(--bg-low);
    margin-bottom: 1.25rem;
}

.product-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; min-height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Badge */
.product-badge {
    position: absolute; top: 12px; left: 12px;
    font-family: var(--body); font-size: 0.55rem; font-weight: 800;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--indigo); background: #ffffff;
    padding: 6px 12px; border-radius: 2px; z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-badge--sale { background: #fff; color: #c0392b; }
.product-badge--best { background: #fff; color: #1a6b3c; }

/* Wishlist */
.wishlist-btn {
    position: absolute; top: 12px; right: 12px;
    width: 36px; height: 36px; border-radius: 50%;
    background: #ffffff; border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex; align-items: center; justify-content: center;
    z-index: 2; cursor: pointer; transition: all 0.2s;
}
.wishlist-btn svg {
    width: 16px !important;
    height: 16px !important;
    fill: none; stroke: var(--text-dark); stroke-width: 1.5; transition: all 0.2s;
}
.wishlist-btn:hover { transform: scale(1.1); }
.wishlist-btn:hover svg { fill: var(--indigo); stroke: var(--indigo); }
.wishlist-btn.active svg { fill: var(--indigo); stroke: var(--indigo); }

/* ── Card Body ── */
.product-body {
    display: flex; flex-direction: column; flex: 1;
}

.product-category {
    font-family: var(--body); font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text-faint); margin-bottom: 0.4rem;
}

.product-name {
    font-family: var(--display); font-size: 1.3rem; font-weight: 700;
    color: var(--text-dark); line-height: 1.2; margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.product-card:hover .product-name { color: var(--indigo); }

.product-pricing {
    display: flex; align-items: baseline; gap: 8px; margin-bottom: 1.5rem;
}
.product-price {
    font-family: var(--body); font-size: 0.95rem;
    font-weight: 800; color: var(--indigo);
}
.product-original-price {
    font-size: 0.75rem; font-weight: 500;
    color: var(--text-faint); text-decoration: line-through;
}

/* WhatsApp Order Button */
.product-order-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: auto; padding: 0.85rem; width: 100%;
    background: transparent; color: var(--indigo);
    border: 1px solid var(--indigo); border-radius: 25px;
    font-family: var(--body); font-size: 0.65rem; font-weight: 800;
    letter-spacing: 0.15em; text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 14px rgba(0, 6, 102, 0.15);
}
.product-order-btn svg {
    width: 16px; height: 16px; fill: currentColor; flex-shrink: 0;
}
.product-order-btn:hover {
    background: var(--indigo); color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 6, 102, 0.3);
    transform: translateY(-1px);
}




/* ═══════════════════════════════════════
   WISHLIST FLOATING TAG
═══════════════════════════════════════ */
.wishlist-float {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-100%);
    background: var(--indigo);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 42px;
    height: 42px;
    border-radius: 0 8px 8px 0;
    z-index: 999;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 4px 0 20px rgba(0, 6, 102, 0.2);
}

.wishlist-float.visible {
    transform: translateY(-50%) translateX(0);
}

.wishlist-float.visible .wishlist-float-count {
    opacity: 1;
}

.wishlist-float svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    stroke: #fff;
    stroke-width: 1.5;
}

.wishlist-float-count {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: #e63946;
    color: #fff;
    font-family: var(--body);
    font-size: 0.6rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.2s ease; 
}

/* ═══════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 25, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 2rem;
}

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

.lightbox-content {
    position: relative;
    max-width: 600px;
    width: 100%;
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

.lightbox-caption {
    font-family: var(--body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    text-align: center;
    margin-top: 1rem;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.25);
}

/* Make image wrap show pointer so users know it's clickable */
.product-img-wrap {
    cursor: zoom-in;
}

/* ═══════════════════════════════════════
   VIEW ALL SHIMMER
═══════════════════════════════════════ */
.products-view-all {
    position: relative;
    overflow: hidden;
}

.products-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0) 30%,
        rgba(var(--indigo-rgb, 24, 38, 180), 0.35) 50%,
        rgba(255,255,255,0) 70%,
        transparent 100%
    );
    animation: shimmerSlide 2.8s ease-in-out infinite;
}

@keyframes shimmerSlide {
    0%   { left: -100%; }
    60%  { left: 150%; }
    100% { left: 150%; }
}


/* ═══════════════════════════════════════
   VIDEO SECTION
═══════════════════════════════════════ */
.video-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background: #161616;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    z-index: 1;
}

/* Dark gradient on top of video for text legibility */
.video-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 8, 25, 0.3) 0%,
        rgba(5, 8, 25, 0.15) 50%,
        rgba(5, 8, 25, 0.5) 100%
    );
    z-index: 2;
}

.video-overlay {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    gap: 1.5rem;
}

.video-eyebrow {
    font-family: var(--body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.video-title {
    font-family: var(--display);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 700px;
}

.video-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: var(--body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 100px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.video-play-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.04);
}

.video-play-icon {
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.video-play-btn:hover .video-play-icon {
    transform: scale(1.1);
}

.video-play-icon svg {
    width: 12px;
    height: 12px;
    fill: var(--indigo);
    margin-left: 2px; /* optical center for play triangle */
}

/* ── VIDEO MODAL ── */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 25, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.video-modal-content {
    width: 100%;
    max-width: 1000px;
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-content video {
    width: 100%;
    display: block;
    border-radius: 4px;
    outline: none;
}

.video-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
}




/* ═══════════════════════════════════════
   CHAT STORY SECTION
═══════════════════════════════════════ */
.chat-story {
  padding: 3rem 2.5rem;
  background: linear-gradient(to bottom, #f5f5f3 0%, /* bright at top */ #f1f1ec 22%, /* very soft warm */ var(--bg) 100% /* back to warm base */);
  position: relative;
  overflow: hidden;
  border-radius: 70px 70px 50px 50px;
  max-width: 1180px;
  margin: 4rem auto;
  
}



.chat-story-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}

.chat-story-eyebrow {
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1rem;
}

.chat-story-heading {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--indigo);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.chat-story-heading em {
  font-style: italic;
  color: var(--indigo);
  opacity: 0.7;
}

.chat-story-sub {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--text-faint);
  line-height: 1.7;
}

/* Body — centered single column */
.chat-story-body {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ═══════════════════════════════════════
   PHONE — TABLET SIZE ON DESKTOP
═══════════════════════════════════════ */
.chat-story-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-wrapper {
  width: 420px; 
  height: 680px; 
  background: #fff;
  border: 12px solid #111;
  border-radius: 44px;
  box-shadow:
    inset 0 0 0 2px #333,
    0 40px 80px rgba(0,0,0,0.15),
    0 10px 20px rgba(24,38,85,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* ── MAGIC ALIGNMENT FIX ── */
.phone-notch {
  position: absolute;
  top: 14px; 
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  background: #111;
  border-radius: 20px;
  z-index: 50;
}

.wa-status-bar {
  background: #008069;
  height: 54px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.wa-status-bar span {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}

.wa-status-icons {
  display: flex;
  gap: 5px;
  align-items: center;
}

.wa-header {
  background: #008069;
  padding: 10px 16px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.wa-back { color: #fff; display: flex; align-items: center; }

.wa-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.wa-info { flex: 1; }
.wa-name { font-size: 15px; font-weight: 600; color: #fff; }
.wa-status { font-size: 12px; color: rgba(255,255,255,0.75); }
.wa-icons { display: flex; gap: 12px; color: #fff; }

.wa-body {
  flex: 1;
  padding: 16px 14px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-color: #EFEAE2;
  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='%23000000' 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/svg%3E");
}

.wa-body::-webkit-scrollbar { display: none; }

.wa-date {
  text-align: center;
  margin-bottom: 8px;
}

.wa-date span {
  background: #fff;
  border-radius: 8px;
  padding: 3px 12px;
  font-size: 11px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wa-row {
  display: flex;
  opacity: 0;
  animation: waPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  margin-bottom: 2px;
}

.wa-row-left  { justify-content: flex-start; }
.wa-row-right { justify-content: flex-end; }

@keyframes waPop {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-bubble {
  max-width: 75%;
  padding: 8px 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
  color: #111;
  position: relative;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.wa-bubble-left {
  background: #fff;
  border-top-left-radius: 0;
  margin-left: 8px;
}

.wa-bubble-left::before {
  content: '';
  position: absolute;
  top: 0; left: -7px;
  border: 7px solid transparent;
  border-top-color: #fff;
  border-left: 0;
}

.wa-bubble-right {
  background: #E7FFDB;
  border-top-right-radius: 0;
  margin-right: 8px;
}

.wa-bubble-right::before {
  content: '';
  position: absolute;
  top: 0; right: -7px;
  border: 7px solid transparent;
  border-top-color: #E7FFDB;
  border-right: 0;
}

.wa-meta {
  position: absolute;
  bottom: 4px;
  right: 7px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.wa-time { font-size: 10px; color: #999; }

.wa-tick svg {
  width: 16px;
  height: 10px;
  transition: color 0.3s;
}

.wa-tick .grey { color: #999; }
.wa-tick .blue { color: #53bdeb; }

.wa-typing {
  background: #fff;
  border-radius: 12px;
  border-top-left-radius: 0;
  padding: 10px 14px;
  display: flex;
  gap: 4px;
  align-items: center;
  margin-left: 8px;
  position: relative;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.wa-typing::before {
  content: '';
  position: absolute;
  top: 0; left: -7px;
  border: 7px solid transparent;
  border-top-color: #fff;
  border-left: 0;
}

.wa-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #aaa;
  animation: waDot 1.4s infinite ease-in-out both;
}

.wa-dot:nth-child(2) { animation-delay: -0.16s; }
.wa-dot:nth-child(3) { animation-delay: 0; }

@keyframes waDot {
  0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

.phone-shadow {
  width: 300px;
  height: 24px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, transparent 70%);
  border-radius: 50%;
  margin-top: -8px;
  filter: blur(4px);
}

/* ═══════════════════════════════════════
   FLOATING WHATSAPP BUTTON (Animated Pop-In)
═══════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 30px; 
    right: 30px;  
    width: 60px;
    height: 60px;
    background: #ffffff; 
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(10, 17, 40, 0.15);
    z-index: 990; 
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(40px) scale(0.5); /* Pushed down and shrunk */
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
                opacity 0.4s ease, 
                box-shadow 0.3s ease;
}

.whatsapp-float img {
    width: 40px; 
    height: 40px;
    object-fit: contain;
}

.whatsapp-float.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.whatsapp-float.is-visible:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 32px rgba(10, 17, 40, 0.25);
}

/* ═══════════════════════════════════════
   UPLOAD YOUR DESIGN SECTION
═══════════════════════════════════════ */
.upload-section {
    background: rgba(255,255,255,0.8);
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.upload-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

/* ── Left Content ── */
.upload-eyebrow {
    font-family: var(--body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.upload-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-faint);
    flex-shrink: 0;
}

.upload-title {
    font-family: 'Caveat', cursive;
    font-size: clamp(3.5rem, 5vw, 5rem); /* Made it massive and impactful */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    
    /* 1. The Liquid Silk & Gold Gradient */
    background: linear-gradient(
        to right, 
        var(--indigo) 0%, 
        #2a4ac8 30%,
        #e9c176 50%,
        #2a4ac8 70%,
        var(--indigo) 100%
    );
    background-size: 200% auto;
    color: transparent; 
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: silkShine 4s linear infinite;
}

@keyframes silkShine {
    to {
        background-position: 200% center;
    }
}

.upload-desc {
    font-family: var(--body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 420px;
}

/* Steps */
.upload-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.upload-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.step-num {
    font-family: var(--display);
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(24, 38, 85, 0.12);
    line-height: 1.2;
    padding-top: 2px;
    flex-shrink: 0;
    width: 48px;
}

.upload-step div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}

.upload-step strong {
    font-family: var(--body);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--indigo);
    letter-spacing: 0.02em;
}

.upload-step span {
    font-family: var(--body);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-faint);
    line-height: 1.55;
}

/* ── Right: Form ── */
.upload-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 4px;
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Upload Zone */
.upload-zone {
    border: 2px dashed var(--border-mid);
    border-radius: 4px;
    background: var(--bg-low);
    cursor: pointer;
    transition: border-color 0.2s var(--ease),
                background 0.2s var(--ease);
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--indigo);
    background: rgba(24, 38, 85, 0.03);
}

.upload-zone.dragover {
    border-style: solid;
}

.upload-zone-idle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 2rem;
    text-align: center;
}

.upload-zone-icon svg {
    width: 40px;
    height: 40px;
    color: var(--indigo);
    opacity: 0.4;
}

.upload-zone-text {
    font-family: var(--body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-mid);
}

.upload-zone-sub {
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-faint);
}

.upload-browse-btn {
    font-family: var(--body);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--indigo);
    background: transparent;
    border: 1.5px solid var(--indigo);
    border-radius: var(--radius-pill);
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.2s var(--ease), color 0.2s;
}

.upload-browse-btn:hover {
    background: var(--indigo);
    color: #fff;
}

/* Preview */
.upload-zone-preview {
    display: none;
    width: 100%;
    height: 100%;
    min-height: 180px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.upload-zone-preview.visible {
    display: flex;
}

.upload-zone-idle.hidden { display: none; }

.upload-zone-preview img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.upload-remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,0.6);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
}

.upload-remove-btn:hover { background: rgba(0,0,0,0.85); }
.upload-remove-btn svg { width: 14px; height: 14px; color: #fff; }

.upload-file-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(24, 38, 85, 0.8);
    color: rgba(255,255,255,0.85);
    font-family: var(--body);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 6px 12px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Progress */
.upload-progress {
    display: none;
    flex-direction: column;
    gap: 6px;
}

.upload-progress.visible { display: flex; }

.upload-progress-bar {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.upload-progress-bar::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: var(--progress, 0%);
    background: var(--indigo);
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}

.upload-progress-label {
    font-family: var(--body);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-faint);
    text-align: center;
}

/* Fields */
.upload-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.upload-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.upload-field--full {
    grid-column: span 2;
}

.field-label {
    font-family: var(--body);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--indigo);
}

.field-label span { color: #c0392b; }

.upload-field input,
.upload-field select,
.upload-field textarea {
    font-family: var(--body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--bg);
    border: 1px solid var(--border-mid);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    outline: none;
    width: 100%;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.upload-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23777777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.upload-field input::placeholder,
.upload-field textarea::placeholder {
    color: var(--text-faint);
    font-weight: 400;
}

.upload-field input:focus,
.upload-field select:focus,
.upload-field textarea:focus {
    border-color: var(--indigo);
    box-shadow: 0 0 0 3px rgba(24, 38, 85, 0.08);
}

.upload-field textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

/* Submit button */
.upload-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 1.1rem;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s var(--ease),
                transform 0.2s var(--ease),
                box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.upload-submit-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.upload-submit-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

.upload-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.upload-privacy {
    font-family: var(--body);
    font-size: 0.68rem;
    font-weight: 400;
    color: var(--text-faint);
    text-align: center;
    line-height: 1.55;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .upload-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .upload-desc { max-width: 100%; }
}

@media (max-width: 768px) {
    .upload-section { padding: 4rem 0; }
    .upload-inner { padding: 0 1.5rem; }
    .upload-form-wrap { padding: 1.75rem 1.25rem; }
    .upload-fields { grid-template-columns: 1fr; }
    .upload-field--full { grid-column: span 1; }
    .upload-title { font-size: 2rem; }
}

@media (max-width: 480px) {
    .upload-inner { padding: 0 1rem; }
    .upload-form-wrap { padding: 1.5rem 1rem; }
}


/* ═══════════════════════════════════════
   REVIEWS SECTION
═══════════════════════════════════════ */
.reviews-section {
  padding: 6rem 0;
  background: #f1f2f7;
  overflow: hidden;
  position: relative;
}

/* ── MAGIC WAVE STYLING ── */
.wave-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.wave-divider svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

.wave-top {
  top: 0;
  transform: rotate(180deg); /* Flips the wave upside down to hang from ceiling */
  color: var(--bg); /* Matches the color of the Products section above it */
}

.wave-bottom {
  bottom: 0;
  color: var(--bg); /* Matches the Dark Indigo of the Chat section below it */
}

.reviews-header {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 2.5rem;
}

.reviews-eyebrow {
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.75rem;
}

.reviews-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--indigo);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Track wrapper — clips the scrolling */
.reviews-track-wrapper {
  position: relative;
  width: 100%;
  /* Fade edges left and right */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

/* The scrolling strip */
.reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: reviewsScroll 40s linear infinite;
  padding: 1rem 0 2rem;
}

/* Pause on hover */
.reviews-track-wrapper:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes reviewsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Review Card ── */
.review-card {
  width: 300px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(24, 38, 85, 0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: default;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(24, 38, 85, 0.1);
}

/* Featured card — slightly different bg */
.review-card--featured {
  background: var(--indigo);
  border-color: var(--indigo);
}

.review-card--featured .review-text {
  color: rgba(255,255,255,0.9);
}

.review-card--featured .review-stars {
  color: #ffd700;
}

.review-card--featured .review-name {
  color: #fff;
}

.review-card--featured .review-location {
  color: rgba(255,255,255,0.6);
}

/* Stars */
.review-stars {
  font-size: 0.9rem;
  color: #f4a426;
  letter-spacing: 2px;
}

/* Review text */
.review-text {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.65;
  flex: 1;
}

/* Author */
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.review-card--featured .review-author {
  border-top-color: rgba(255,255,255,0.15);
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--indigo);
  color: #fff;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card--featured .review-avatar {
  background: rgba(255,255,255,0.2);
}

.review-name {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}

.review-location {
  font-family: var(--body);
  font-size: 0.62rem;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ═══════════════════════════════════════
   LOCATION SECTION (Visit Us)
═══════════════════════════════════════ */
.location-section {
    background: var(--bg);
    padding: 6rem 0;
    border-bottom: 1px solid var(--border);
    margin-top: 2rem;
}

.location-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 4rem;
}

/* ── Left Side ── */
.location-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-eyebrow {
    font-family: var(--body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 1rem;
}

.location-title {
    font-family: var(--display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--indigo);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.location-title em {
    font-style: italic;
}

.location-desc {
    font-family: var(--body);
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

/* Address & Hours */
.location-details {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item strong {
    font-family: var(--body);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--indigo);
}

.detail-item span {
    font-family: var(--body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.6;
}

.location-wave {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--indigo);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%,100%{opacity:1;transform:scale(1)}
    50%{opacity:0.4;transform:scale(0.7)}
}

/* ── Contact Links ── */
.location-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 0.9rem 1.1rem;
    border: 1px solid var(--border);
    background: var(--bg-low);
    transition: background 0.2s var(--ease),
                border-color 0.2s var(--ease),
                transform 0.2s var(--ease);
}

.contact-link:hover {
    background: var(--bg);
    border-color: var(--indigo);
    transform: translateX(4px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
}

.contact-icon svg {
    width: 17px;
    height: 17px;
}

.contact-label {
    font-family: var(--body);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-faint);
    display: block;
    margin-bottom: 2px;
}

.contact-value {
    font-family: var(--body);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--indigo);
    display: block;
}

/* ── Buttons ── */
.location-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.location-btn {
    font-family: var(--body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--indigo);
    padding: 1rem 1.75rem;
    border: 1.5px solid var(--indigo);
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    box-shadow: rgba(0, 6, 102, 0.15) 0px 4px 14px;
}

.location-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.location-btn:hover {
    background: transparent;
    color: var(--indigo);
    box-shadow: none;
}

.location-btn--outline {
    background: transparent;
    color: var(--indigo);
    box-shadow: none;
}

.location-btn--outline:hover {
    background: var(--indigo);
    color: var(--bg);
    box-shadow: rgba(0, 6, 102, 0.15) 0px 4px 14px;
}

/* ── CALENDAR SMART WRAPPER ── */
.calendar-wrapper {
    max-height: 0; /* Keeps it perfectly closed */
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    border-radius: 8px;
    background: var(--bg-card);
    transition: max-height 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                opacity 0.5s ease, 
                margin-top 0.4s ease;
}

/* When activated by JS */
.calendar-wrapper.is-open {
    max-height: 1400px; /* Expands to fit the calendar */
    opacity: 1;
    margin-top: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(24, 38, 85, 0.1);
}

/* ── Right Side: Map ── */
.location-map {
    width: 100%;
    min-height: 500px;
    background: var(--bg-low);
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.location-map iframe {
    width: 100%;
    flex: 1;
    border: none;
    display: block;
    min-height: 400px;
}

/* Map badge */
.map-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--indigo);
    color: #fff;
    font-family: var(--body);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 12px;
    z-index: 2;
    pointer-events: none;
    border-radius: 2px;
}

/* Hours bar below map */
.map-hours {
    background: var(--indigo);
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-shrink: 0;
}

.hours-label {
    font-family: var(--body);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 3px;
}

.hours-value {
    font-family: var(--body);
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    display: block;
}


/* ═══════════════════════════════════════
   FOOTER — NEWSLETTER STRIP
═══════════════════════════════════════ */
.footer-newsletter {
    background: var(--indigo);
    padding: 3.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-newsletter-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.newsletter-eyebrow {
    font-family: var(--body);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.4rem;
}

.newsletter-title {
    font-family: var(--display);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0.35rem;
}

.newsletter-sub {
    font-family: var(--body);
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 4px;
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.newsletter-form input {
    font-family: var(--body);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-dark);
    background: #fff;
    border-radius: 25px;
    outline: none;
    padding: 0.9rem 1.5rem;
    width: 280px;
}

.newsletter-form input::placeholder {
    color: var(--text-faint);
}

.newsletter-form button {
    font-family: var(--body);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--indigo);
    background: #fff;
    border: none;
    border-radius: 25px;
    padding: 0.9rem 1.75rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s var(--ease), color 0.2s;
}

.newsletter-form button:hover {
    background: var(--bg-low);
}

/* ═══════════════════════════════════════
   FOOTER — BODY
═══════════════════════════════════════ */
.footer-body {
    background: var(--indigo);
    padding: 5rem 0 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
    gap: 3rem;
}

/* ── Column heading ── */
.footer-col-title {
    font-family: var(--body);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* ── Brand column ── */
.footer-logo img {
    height: 72px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
    opacity: 0.90;
    transition: opacity 0.2s;
}

.footer-logo:hover img {
    opacity: 1;
}

.footer-tagline {
    font-family: var(--body);
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 1.75rem;
    max-width: 280px;
}

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

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.55);
    transition: background 0.2s var(--ease),
                color 0.2s,
                border-color 0.2s,
                transform 0.2s var(--ease);
}

.social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links li a {
    font-family: var(--body);
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}

.footer-links li:last-child a {
    border-bottom: none;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 6px;
}

/* ── Contact column ── */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-contact-list li a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--body);
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.6;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s var(--ease);
}

.footer-contact-list li:last-child a {
    border-bottom: none;
}

.footer-contact-list li a:hover {
    color: #fff;
}

.footer-contact-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: background 0.2s;
}

.footer-contact-icon svg {
    width: 13px;
    height: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list li a:hover .footer-contact-icon {
    background: rgba(255, 255, 255, 0.18);
}

.footer-contact-icon--wa {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.3);
}

.footer-contact-icon--wa svg {
    color: #25d366;
}

/* ═══════════════════════════════════════
   FOOTER — BOTTOM BAR
═══════════════════════════════════════ */
.footer-bottom {
    background: var(--indigo);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copy {
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-copy-sep {
    color: rgba(255, 255, 255, 0.18);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-legal a {
    font-family: var(--body);
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.75);
}
/* END OF INDEX.HTML STYLING */


/* ═══════════════════════════════════════
   LEGAL PAGES (Privacy & Terms)
═══════════════════════════════════════ */
.legal-section {
    background: var(--bg);
    padding: 6rem 0;
    min-height: 70vh;
}

/* Keeps the text narrow so it is easy and comfortable to read */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.legal-title {
    font-family: var(--display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--indigo);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.legal-date {
    font-family: var(--body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-faint);
}

/* Content Typography */
.legal-content {
    font-family: var(--body);
    color: var(--text-mid);
}

.legal-content h2 {
    font-family: var(--display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--indigo);
    margin: 2.5rem 0 1rem 0;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    color: var(--text-mid);
}

.legal-content li strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Links inside the legal text */
.legal-content a {
    color: var(--indigo);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: var(--indigo-hover);
}

@media (max-width: 768px) {
    .legal-section { padding: 4rem 0; }
    .legal-container { padding: 0 1.5rem; }
    .legal-header { margin-bottom: 3rem; }
    .legal-content h2 { font-size: 1.5rem; margin-top: 2rem; }
    .legal-content p, .legal-content li { font-size: 0.95rem; }
}


/* ═══════════════════════════════════════
   RETURNING USER GREETING TOAST
═══════════════════════════════════════ */
.greeting-toast {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 0.4s var(--ease),
                transform 0.4s var(--ease);
    pointer-events: none;
    max-width: 340px;
    width: calc(100vw - 3rem);
}

.greeting-toast.greeting-toast--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.greeting-toast-inner {
    background: #fff;
    border: 1px solid var(--border);
    border-left: 3px solid var(--indigo);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(24, 38, 85, 0.12);
    padding: 1rem 1rem 1rem 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Avatar circle with first letter of name */
.greeting-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--indigo);
    color: #fff;
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.greeting-content {
    flex: 1;
    min-width: 0;
}

.greeting-title {
    font-family: var(--body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 3px;
}

.greeting-title strong {
    color: var(--indigo);
    font-weight: 800;
}

.greeting-sub {
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-faint);
    line-height: 1.45;
}

.greeting-close {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-faint);
    flex-shrink: 0;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
    align-self: flex-start;
    padding: 0;
}

.greeting-close:hover {
    background: var(--bg-low);
    color: var(--text-dark);
}

.greeting-close svg {
    width: 13px;
    height: 13px;
}


/* ═══════════════════════════════════════
   COOKIE CONSENT BANNER
═══════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9500;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease);
}

.cookie-banner--visible {
    transform: translateY(0);
}

.cookie-banner--dismissed {
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
}

.cookie-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    border-top: 3px solid var(--indigo);
    box-shadow: 0 -4px 32px rgba(24, 38, 85, 0.1);
    padding: 1.25rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-title {
    font-family: var(--body);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--indigo);
    margin-bottom: 4px;
}

.cookie-text {
    font-family: var(--body);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-mid);
    line-height: 1.6;
    max-width: 560px;
}

.cookie-text strong { color: var(--indigo); font-weight: 700; }

.cookie-link {
    color: var(--indigo);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}

.cookie-link:hover { opacity: 0.7; }

.cookie-btns {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--body);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    padding: 0.65rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    white-space: nowrap;
}

.cookie-btn--accept {
    background: var(--indigo);
    color: #fff;
    border: 1.5px solid var(--indigo);
    box-shadow: 0 4px 14px rgba(24, 38, 85, 0.25);
}

.cookie-btn--accept:hover {
    background: var(--indigo-hover);
    border-color: var(--indigo-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(24, 38, 85, 0.35);
}

.cookie-btn--reject {
    background: transparent;
    color: var(--text-mid);
    border: 1.5px solid var(--border);
}

.cookie-btn--reject:hover {
    border-color: var(--text-mid);
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    .cookie-btns { width: 100%; }
    .cookie-btn  { flex: 1; text-align: center; }
}

@media (max-width: 480px) {
    .cookie-banner-inner { padding: 1rem; }
}

/* ═══════════════════════════════════════
    BACK TO TOP
═══════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 6rem;
    left: 2rem;
    width: 46px;
    height: 46px;
    background: var(--indigo);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    box-shadow: 0 4px 16px rgba(24, 38, 85, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s var(--ease),
                visibility 0.3s,
                transform 0.3s var(--ease),
                background 0.2s,
                box-shadow 0.2s;
}

.back-to-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--indigo-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(24, 38, 85, 0.35);
}

.back-to-top svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 2rem;
        left: 0.5rem;
        width: 40px;
        height: 40px;
    }
    .back-to-top svg { width: 16px; height: 16px; }
}


/* ═══════════════════════════════════════
   SPIN WHEEL MODAL
═══════════════════════════════════════ */

/* Backdrop */
.spin-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 20, 0.55);
    z-index: 9800;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.spin-backdrop--visible {
    opacity: 1;
    visibility: visible;
}

/* Modal */
.spin-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -44%) scale(0.94);
    z-index: 9900;
    width: 92%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(24, 38, 85, 0.22);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease),
                transform 0.35s var(--ease),
                visibility 0.35s;
    outline: none;
}

.spin-modal--visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Confetti canvas sits on top of everything inside modal */
.spin-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 20;
    border-radius: 16px;
}

/* Header */
.spin-header {
    background: var(--indigo);
    padding: 1.25rem 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.spin-eyebrow {
    font-family: var(--body);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 3px;
}

.spin-title {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.spin-close-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}

.spin-close-btn:hover { background: rgba(255, 255, 255, 0.25); }

/* Body */
.spin-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
}

.spin-sub {
    font-family: var(--body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-mid);
    text-align: center;
    line-height: 1.6;
}

.spin-sub strong { color: var(--indigo); }

/* Wheel */
.spin-wheel-wrap {
    position: relative;
    width: 260px;
    height: 260px;
    flex-shrink: 0;
}

.spin-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid var(--indigo);
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(24, 38, 85, 0.18);
    display: block;
}

.spin-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spin-center-dot {
    width: 12px;
    height: 12px;
    background: var(--indigo);
    border-radius: 50%;
}

/* Result */
.spin-result {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 0 0.5rem;
    animation: spinResultIn 0.4s var(--ease) both;
}

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

.spin-result-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.spin-result-title {
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--indigo);
}

.spin-result-sub {
    font-family: var(--body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.6;
}

.spin-result-sub strong { color: var(--indigo); }

/* Claim button */
.spin-claim-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 0.85rem;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--body);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    margin-top: 4px;
}

.spin-claim-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.spin-claim-btn:hover { background: #1da851; transform: translateY(-2px); }

/* Action button */
.spin-action-btn {
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    background: var(--indigo);
    border: none;
    border-radius: var(--radius-pill);
    padding: 0.9rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    box-shadow: 0 6px 20px rgba(24, 38, 85, 0.3);
}

.spin-action-btn:hover:not(:disabled) {
    background: var(--indigo-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(24, 38, 85, 0.4);
}

.spin-action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.spin-attempts-text {
    font-family: var(--body);
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-faint);
    text-align: center;
}

.spin-attempts-text strong { color: var(--indigo); }

/* Responsive */
@media (max-width: 480px) {
    .spin-modal { width: 96%; }
    .spin-body  { padding: 1.25rem 1rem; }
    .spin-wheel-wrap { width: 230px; height: 230px; }
    #wheelCanvas { width: 230px !important; height: 230px !important; }
}



/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */

/* ── Hero ── */
.about-hero-modern {
  position: relative;
  height: 90vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.about-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,17,40,0.3) 0%,
    rgba(10,17,40,0.6) 60%,
    rgba(10,17,40,0.8) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.about-eyebrow-light {
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.about-headline {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.about-subheadline {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
}

.about-hero-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.about-hero-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

/* ── Numbers Bar ── */
.about-numbers-bar {
  background: var(--indigo);
  padding: 2.5rem 0;
}

.about-numbers-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-number-item {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.about-number {
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.about-number-label {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.about-number-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ── Our Story ── */
.about-story {
  background: var(--bg);
  padding: 7rem 0;
}

.about-story-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.about-story-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
}

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

.about-story-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  padding: 6px 16px;
  border-radius: 100px;
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
}

.about-eyebrow {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1rem;
  display: block;
}

.about-story-text h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--indigo);
  line-height: 1.15;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.about-story-text p {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* ── Approach (keep your existing CSS, just update) ── */
.about-approach {
  background: var(--bg-low);
  padding: 6rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.approach-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.approach-text {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
}

.approach-text h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--indigo);
  line-height: 1.2;
  margin: 0.5rem 0 1.25rem;
  letter-spacing: -0.02em;
}

.approach-text p {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.approach-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}

.pillar-box {
  text-align: center;
}

.pillar-box svg {
  width: 36px;
  height: 36px;
  stroke: var(--indigo);
  margin-bottom: 1.25rem;
}

.pillar-box h3 {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--indigo);
  margin-bottom: 0.75rem;
}

.pillar-box p {
  font-family: var(--body);
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── Process ── */
.about-process {
  background: var(--bg);
  padding: 6rem 0;
}

.process-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.process-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4.5rem;
}

.process-header h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--indigo);
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
}

.process-header p {
  font-family: var(--body);
  font-size: 0.9rem;
  color: var(--text-faint);
  line-height: 1.7;
}

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

.process-step {
  padding: 2.5rem;
  border: 1px solid var(--border);
  margin: -1px 0 0 -1px;
  transition: background 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.process-step:hover {
  background: var(--bg-low);
  border-color: var(--indigo);
  z-index: 1;
}

.process-num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--indigo);
  opacity: 0.1;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.process-text h3 {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.process-text p {
  font-family: var(--body);
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── Founder ── */
.about-founder {
  background: var(--bg-low);
  padding: 7rem 0;
  border-top: 1px solid var(--border);
}

.founder-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.founder-image {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
}

.founder-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-content h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--indigo);
  line-height: 1.25;
  margin: 0.5rem 0 2rem;
}

.founder-letter p {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.founder-signature {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.signature-text {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--indigo);
  font-style: italic;
}

.signature-title {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-faint);
}

/* ── Values (keep existing, just clean up) ── */
.about-values {
  background: var(--bg);
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.values-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
  padding: 0 2.5rem;
}

.values-header h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--indigo);
  margin: 0.5rem 0 1rem;
}

.values-header p {
  font-family: var(--body);
  font-size: 0.9rem;
  color: var(--text-faint);
  line-height: 1.7;
}

.values-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--bg-low);
  padding: 3rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(24,38,85,0.07);
  border-color: var(--indigo);
}

.value-icon {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--indigo);
  opacity: 0.2;
  margin-bottom: 1.25rem;
  display: block;
}

.value-card h3 {
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.value-card p {
  font-family: var(--body);
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── FAQ ── */
.about-faq {
  background: var(--bg-low);
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-header h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--indigo);
  margin-top: 0.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--indigo); }
.faq-question[aria-expanded="true"] { color: var(--indigo); }

.faq-chevron { flex-shrink: 0; transition: transform 0.3s var(--ease); }
.faq-chevron svg { width: 18px; height: 18px; }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-family: var(--body);
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.85;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-story-inner { gap: 4rem; }
  .founder-container { gap: 3.5rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-hero-modern { height: 75vh; }

  .about-numbers-inner { flex-wrap: wrap; }
  .about-number-item { flex: 1 1 50%; padding: 1rem; }
  .about-number-divider { display: none; }

  .about-story { padding: 4rem 0; }
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }
  .about-story-img { aspect-ratio: 16/9; }

  .approach-pillars {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 3rem;
  }

  .process-steps { grid-template-columns: 1fr; }

  .founder-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }
  .founder-image { max-width: 400px; margin: 0 auto; }

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

  .about-story-inner,
  .approach-container,
  .process-inner,
  .values-grid,
  .values-header,
  .faq-inner,
  .process-header { padding: 0 1.5rem; }
}

@media (max-width: 480px) {
  .about-headline { font-size: 2.2rem; }
  .about-number { font-size: 1.8rem; }
  .process-step { padding: 1.75rem 1.25rem; }
  .value-card { padding: 2rem; }
}




/* ═══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .desk-nav      { display: none; }
    .mobile-header { display: block; }
    .products-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin: 0 auto; }
    .products-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .products-view-all { margin-top: 0; }
    .location-inner { gap: 2rem; padding: 0 2rem; }
    .location-details { flex-direction: column; gap: 1.5rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .footer-col--brand { grid-column: span 2; }
    .footer-tagline { max-width: 100%; }
    .footer-newsletter-inner { flex-direction: column; align-items: flex-start; gap: 1.75rem; }
    .newsletter-form input { width: 220px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .mobile-top-row { padding: 0 2rem; height: 80px; }
    .nav-logo { margin-right: 1rem; }
    .logo img { height: 80px; }
    .hamburger svg { width: 32px; height: 32px; }
    .mobile-nav-inner { padding-left: 2rem; padding-right: 2rem; }
    .mobile-nav-inner > a, .mobile-shop-toggle { font-size: 0.8rem; padding: 1.4rem 0; }
    .mobile-sub a { font-size: 0.75rem; padding: 1.1rem 0 1.1rem 2rem; }
    .mobile-nav-cta { font-size: 0.7rem; padding: 1.2rem; max-width: 320px; margin-left: auto; margin-right: auto; }
    .trust-container { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
    .editorial-container { height: 450px; padding: 0 2rem; }
    .editorial-overlay { padding: 1.5rem; }
    .editorial-overlay h2 { font-size: 1.6rem; }
    .small-card .editorial-overlay { padding: 1.25rem; }
    .small-card .editorial-overlay h2 { font-size: 1.3rem; }
    
}

@media (max-width: 768px) {
    .hero-container { display: flex; flex-direction: column; padding: 40px 1.5rem; gap: 20px; text-align: center; align-items: center; }
    .hero-left { display: contents; }
    .hero-tag, .hero-h1, .hero-sub, .hero-pills { order: 1; }
    .hero-right { order: 2; height: 400px; width: 100%; margin-top: 20px; }
    .hero-dots { order: 3; margin-top: 15px; margin-bottom: 10px; }
    .hero-btns { order: 4; width: 100%; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
    .hero-btn-primary, .hero-btn-secondary { width: 100%; padding: 14px 0; }
    .hero-h1 { font-size: 2rem; }
    .hero-sub { max-width: 100%; font-size: 0.95rem; margin: 0 auto; }
    .hero-pills { justify-content: center; }
    
    .hero-img-stack { width: 300px; height: 340px; transform: scale(1); margin: 0 auto; }
    .hero-img-card--2 { top: -15px !important; left: -10px !important; transform: rotate(-6deg) scale(0.8) !important; }
    .hero-img-card--1 { top: -5px !important; right: -25px !important; transform: rotate(12deg) scale(0.75) !important; }
    .hero-img-card--4 { bottom: -15px !important; left: -5px !important; transform: rotate(-25deg) scale(0.9) !important; }
    .hero-img-card--3 { bottom: -10px !important; right: -15px !important; transform: rotate(8deg) scale(0.85) !important; }
    .trust-bar { padding: 3rem 0; }
    .trust-container { grid-template-columns: 1fr; padding: 0 1.5rem; gap: 2rem;}
    .trust-img { width: 44px; height: 44px; }
    .trust-img img { width: 20px; height: 20px; }
    .trust-content h3 { font-size: 0.75rem;}

    .editorial-section { padding: 40px 0; }
    .editorial-container { grid-template-columns: 1fr; height: auto; padding: 0 1.5rem; gap: 16px; }
    .large-card { height: 350px; max-height: 350px; }
    .editorial-stacked { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; height: auto; max-height: none; flex-direction: unset; }
    .small-card { height: 240px; max-height: 240px; }

    .products-section { padding: 4rem 0; }
    .products-inner { padding: 0 1.25rem; }
    .products-title { font-size: 2rem; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .product-name { font-size: 1.1rem; }
    .product-order-btn { font-size: 0.6rem; padding: 0.75rem; }

    .video-section { height: 70vh; }
    .video-play-btn { padding: 0.85rem 1.5rem; font-size: 0.65rem; gap: 10px; }
    .video-play-icon { width: 32px; height: 32px; }

    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .whatsapp-float img { width: 32px; height: 32px; }

    .review-card { width: 260px; padding: 1.4rem; }
    .reviews-track { gap: 1rem; }

    .location-section { padding: 4rem 0; }
    .location-inner { grid-template-columns: 1fr; padding: 0 1.5rem; gap: 3rem; }
    .location-desc { font-size: 0.95rem; }
    .location-btns { flex-direction: column; }
    .location-btn { width: 100%; justify-content: center; }
    .location-map { min-height: 380px; }

    .footer-newsletter { padding: 2.5rem 0; }
    .footer-newsletter-inner { padding: 0 1.5rem; }
    .newsletter-form { width: 100%; border-radius: var(--radius-pill); overflow: hidden; }
    .newsletter-form input { flex: 1; width: auto; min-width: 0; font-size: 0.75rem; }
    .newsletter-form button { padding: 0.9rem 1.25rem; font-size: 0.62rem; }

    .footer-body { padding: 3.5rem 0 3rem; }
    .footer-inner { grid-template-columns: 1fr; padding: 0 1.5rem; gap: 2rem; }
    .footer-col--brand { grid-column: span 1; }
    .footer-logo img { height: 56px; }
    .footer-tagline { max-width: 100%; font-size: 0.8rem; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; padding: 0 1.5rem; gap: 0.75rem; }
    .footer-legal { gap: 1rem; flex-wrap: wrap; }
    .footer-copy { font-size: 0.68rem; }
}

@media (max-width: 480px) {
    .mobile-top-row { padding: 0 1rem; gap: 8px; }
    .mobile-header .search-input { width: calc(100vw - 180px); font-size: 0.65rem; }
    .mobile-header .logo img { height: 48px; }
    .hamburger svg { width: 26px; height: 26px; }
    .mobile-nav-inner { padding-left: 1rem; padding-right: 1rem; }
    .mobile-nav-inner > a, .mobile-shop-toggle { font-size: 0.7rem; letter-spacing: 0.12em; padding: 1rem 0; }
    .mobile-sub a { font-size: 0.65rem; padding: 0.9rem 0 0.9rem 1.2rem; }
    .mobile-nav-cta { padding: 1rem; font-size: 0.62rem; }

    .small-card .editorial-overlay { padding: 1rem; gap: 4px; }
    .small-card .editorial-overlay h2 { font-size: 1.1rem; }
    .editorial-link { font-size: 0.6rem; }

    .products-inner { padding: 0 1rem; }
    .products-title { font-size: 1.75rem; }
    .product-filters { gap: 8px; overflow-x: auto; padding-bottom: 8px; flex-wrap: wrap; }
    .filter-btn { white-space: nowrap; padding: 6px 14px; }
    .products-grid { gap: 0.75rem; }
    .product-name { font-size: 1rem; }
    .product-order-btn { font-size: 0.58rem; padding: 0.7rem; }

    .video-section { height: 60vh; }
    .video-modal { padding: 1rem; }

    .chat-story { padding: 4rem 1.25rem; }
    .phone-wrapper { width: 290px; height: 560px; border-width: 10px; border-radius: 40px; }
    .phone-notch { width: 80px; }
    .phone-shadow { width: 200px; }

    .review-card { width: 230px; }
    .reviews-track-wrapper {
    -webkit-mask-image: linear-gradient( to right, transparent 0%, black 5%,black 95%, transparent 100% );
    mask-image: linear-gradient( to right,transparent 0%,black 5%,black 95%,transparent 100%); }

    .footer-newsletter-inner { padding: 0 1rem; }
    .footer-inner { padding: 0 1rem; }
    .footer-bottom-inner { padding: 0 1rem; }
    .newsletter-title { font-size: 1.3rem; }
    .footer-legal { gap: 0.75rem; }
    .footer-legal a { font-size: 0.62rem; }
}

@media (max-width: 600px) {
    .topbar-socials { display: none; }
    .topbar { justify-content: center; }
    .topbar-msg-slider { flex-grow: 0; width: 100%; }
}


/* ═══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════ */

/* Base state: Hidden and pushed down/aside */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.reveal-fade {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    will-change: opacity;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

/* Active state: Triggered by JavaScript when scrolled into view */
.is-revealed {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* ── Staggered Delays (For Grids & Lists) ── */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }


