/* ============================================================
   FLOW FLOATS · Design System — styles.css
   ============================================================
   TABLE OF CONTENTS
   01. Variables & Reset
   02. Base Elements
   03. Layout Utilities
   04. Typography Helpers
   05. Buttons & Chips
   06. Navbar — Home (topbar + transparent topnav)
   07. Navbar — Inner Pages (solid dark topnav)
   08. Hero Section
   09. Stats Band
   10. Sections & Page Heads
   11. Mosaic Grid
   12. Cards & Grids
   13. Product Gallery
   14. PDP (Product Detail Panel)
   15. Accessories Grid
   16. Video Section
   17. Product Section (Shop)
   18. Auth Page
   19. Cart Drawer
   20. Cart Page
   21. Checkout & Summary
   22. Success Page
   23. Legal Pages
   24. Contact Page
   25. Story & Team (About)
   26. Footer
   27. Toast
   28. Animations & Reveals
   29. Responsive
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    /* Colors */
    --background:       #F8F5EF;
    --foreground:       #0F2024;
    --card:             #FFFFFF;
    --muted:            #F0EFEC;
    --muted-foreground: #5A6E73;
    --border:           #E1E5E0;
    
    --aqua:             #1AAEC4;
    --aqua-light:       #9DE3EC;
    --aqua-deep:        #13586E;
    --sand:             #E8DCC1;
    --sunset:           #F26B5E;
    --sunset-soft:      #fc7016;
    --whatsapp:         #25D366;
    
    /* Shadows */
    --shadow-soft: 0 10px 40px -12px rgba(15,32,36,.18);
    --shadow-luxe: 0 25px 70px -25px rgba(19,88,110,.45);
    --shadow-glow: 0 0 80px rgba(157,227,236,.6);
    
    /* Gradients */
    --gradient-ocean:  linear-gradient(135deg,#1AAEC4 0%,#13586E 100%);
    --gradient-sunset: linear-gradient(135deg,#F26B5E 0%,#FBC68B 100%);
    --gradient-sky:    linear-gradient(180deg,#9DE3EC 0%,#F2EBDA 100%);
    
    /* Typography */
    --font-display: 'Manrope', Georgia, serif;
    --font-sans:    'Manrope', system-ui, -apple-system, sans-serif;
    
    /* Radii tokens */
    --radius:    0.3rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
}

*, *::before, *::after { 
    box-sizing: border-box; 
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    /* FIX: Prevent horizontal scroll at root level */
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background: white;
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
    /* FIX: Double protection against horizontal scroll */
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img { 
    max-width: 100%; 
    display: block; 
    /* FIX: Prevent images from causing overflow */
    height: auto;
}

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

button { 
    font: inherit; 
    border: 0; 
    background: none; 
    cursor: pointer; 
    color: inherit; 
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -.02em;
    margin: 0;
    line-height: 1.05;
    text-wrap: balance;
    /* FIX: Prevent headings from overflowing */
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

/* ============================================================
   02. LAYOUT UTILITIES
   ============================================================ */

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
    /* FIX: Prevent container overflow */
    box-sizing: border-box;
}

.grid    { display: grid; gap: 1.4rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.gap-sm  { gap: .75rem; }

/* FIX: Responsive grid for mobile */
@media (max-width: 768px) {
    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   03. TYPOGRAPHY HELPERS
   ============================================================ */

.eyebrow {
    display: inline-block;
    color: var(--aqua);
    font-size: .72rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: .85rem;
}
.eyebrow--light { color: var(--aqua-light); }

.h2           { font-size: clamp(2rem, 4.5vw, 3.6rem); line-height: 1.04; }
.h2--light    { color: #fff; }

.text-sunset {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 30px;
}

.gradient-ocean  { background: var(--gradient-ocean); }
.gradient-sunset { background: var(--gradient-sunset); }

/* ============================================================
   04. BUTTONS & CHIPS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .95rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
    white-space: nowrap;
    /* FIX: Prevent button text overflow */
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn:hover     { transform: translateY(-2px) scale(1.02); }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; }

.btn--sunset  { background: var(--gradient-sunset); color: #fff; box-shadow: var(--shadow-luxe); }
.btn--dark    { background: var(--foreground); color: #fff; }
.btn--ghost   { background: transparent; border: 1px solid var(--border); color: var(--foreground); }
.btn--ghost:hover { background: var(--muted); }
.btn--glass {
    background: linear-gradient(135deg, rgba(255,255,255,.35), rgba(255,255,255,.1));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
}
.btn--glass:hover { background: rgba(255,255,255,.22); }
.btn--block { width: 100%; }
.btn--lg    { padding: 1.15rem 2.4rem; font-size: 1.05rem; }

.ic { width: 20px; height: 20px; flex: none; }




.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, rgba(19, 88, 110, 0.45), rgba(19, 88, 110, 0.12));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 100%;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.chip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chip:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.chip:hover::before {
    opacity: 1;
}

.chip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.chip-icon svg {
    width: 100%;
    height: 100%;
    stroke: rgba(255, 255, 255, 0.9);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.chip-text {
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

/* Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up.delay-3 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 576px) {
    .chip {
        font-size: 0.82rem;
        padding: 0.45rem 0.9rem;
        gap: 0.35rem;
    }
    .chip-icon {
        width: 15px;
        height: 15px;
    }
}


.badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem 1rem;
    border-radius: 999px;
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.badge--glass-dark {
    background: linear-gradient(135deg, rgba(19,88,110,.5), rgba(19,88,110,.2));
    backdrop-filter: blur(14px);
    color: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.15);
}
.badge--soft { background: rgba(26,174,196,.12); color: var(--aqua-deep); }

/* ============================================================
   05. FLOATING WHATSAPP
   ============================================================ */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    /* FIX: Prevent WhatsApp button from causing overflow */
    flex-shrink: 0;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* FIX: Adjust WhatsApp position on mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ============================================================
   06. TOPBAR (Info Strip)
   ============================================================ */

.topbar {
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: 100vw;
    background: rgba(39, 83, 109, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    /* FIX: Prevent topbar from causing overflow */
    overflow: hidden;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1.5rem;
    /* FIX: Prevent flex overflow */
    flex-wrap: wrap;
    max-width: 100%;
}

/* ── Topbar Left ─────────────────────────────────────────── */
.topbar__left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.3rem;
}

.topbar__left a {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.25s ease, transform 0.25s ease;
    /* FIX: Prevent link overflow */
    white-space: nowrap;
    max-width: 100%;
}

.topbar__left a:hover {
    color: #fff;
    transform: translateY(-1px);
}

.topbar__left svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* ── Topbar Socials ──────────────────────────────────────── */
.topbar__socials {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
}

.topbar__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    flex-shrink: 0;
}

.topbar__socials a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   07. MAIN NAVIGATION (Topnav)
   ============================================================ */

.topnav {
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: 100vw;
    /* FIX: Remove absolute positioning that causes overflow */
    background: transparent;
}

.topnav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    /* FIX: Prevent flex overflow */
    max-width: 100%;
    flex-wrap: nowrap;
}

/* ── Brand ───────────────────────────────────────────────── */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #fff;
    flex-shrink: 0;
}

.brand__icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.brand__logo {
    display: block;
    width: auto;
    /* FIX: Limit logo height to prevent overflow */
    height: clamp(60px, 10vw, 100px);
    max-height: 100px;
    object-fit: contain;
}

/* ── Nav Links ───────────────────────────────────────────── */
.topnav__links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    /* FIX: Prevent nav overflow */
    max-width: 100%;
    overflow: hidden;
}

.topnav__links a {
    position: relative;
    font-size: 0.93rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.74);
    transition: color 0.25s ease;
    /* FIX: Prevent link overflow */
    white-space: nowrap;
    flex-shrink: 0;
}

.topnav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0%;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: width 0.25s ease;
}

.topnav__links a:hover,
.topnav__links a.is-active {
    color: #fff;
}

.topnav__links a:hover::after,
.topnav__links a.is-active::after {
    width: 100%;
}

/* ── Right Actions ─────────────────────────────────────── */
.topnav__actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

/* ── Cart Button ─────────────────────────────────────────── */
.cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    position: relative;
    transition: background 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
}

.cart-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

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

.cart-btn__count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--sunset);
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Menu Toggle (Mobile) ──────────────────────────────── */
.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
}

/* ============================================================
   08. HERO SECTION
   ============================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    color: #fff;
    /* FIX: Prevent hero from causing overflow */
    isolation: isolate;
}

/* ── Slider ──────────────────────────────────────────────── */
.hero__slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    /* FIX: Contain slider within hero */
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    /* FIX: Reduce scale to prevent overflow */
    transform: scale(1.02);
    transition: opacity 1s ease, transform 7s ease;
    /* FIX: Prevent image overflow */
    max-width: none;
}

.hero__bg.is-active {
    opacity: 1;
    /* FIX: Limit scale to prevent overflow */
    transform: scale(1.05);
}

/* ── Overlay ───────────────────────────────────────────── */
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(25, 102, 126, 0.18), transparent 42%),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.30) 50%,
            rgba(0, 0, 0, 0.65) 100%
        );
    /* FIX: Prevent overlay overflow */
    pointer-events: none;
}

/* ── Content ───────────────────────────────────────────── */
.hero__content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70vh;
    padding: 10rem 1.5rem 4rem;
    /* FIX: Prevent content overflow */
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.hero__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 800; /* أو 900 */
    letter-spacing: 8px;
    text-transform: uppercase;
    max-width: 16ch;
    font-size: clamp(2rem, 4vw, 4.5rem);
    line-height: 1.05;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}
.hero__subtitle{
    font-family: "Manrope", sans-serif;
    max-width: 33ch;
    letter-spacing: 2px;
    margin-top: 1rem;
    font-size: 16px;
    color: #fff;
}

.hero__sub {
    max-width: 38rem;
    margin-top: 1.2rem;
    font-size: clamp(0.95rem, 1.2vw, 1.08rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    /* FIX: Prevent sub overflow */
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* ── CTAs ────────────────────────────────────────────────── */
.hero__ctas {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    /* FIX: Prevent CTA overflow */
    max-width: 100%;
}

/* ── Trust Badges ────────────────────────────────────────── */
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.7rem;
    /* FIX: Prevent trust badges overflow */
    max-width: 100%;
}

/* ============================================================
   09. MOBILE NAVIGATION
   ============================================================ */

@media (max-width: 768px) {
    /* =========================
       GLOBAL FIXES
    ========================= */
    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* =========================
       CONTAINER
    ========================= */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    /* =========================
       TOPBAR
    ========================= */
    .topbar__inner {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
        flex-wrap: wrap;
    }

    .topbar__left {
        gap: 0.7rem;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }

    .topbar__left a {
        font-size: 0.78rem;
    }

    .topbar__left svg {
        width: 14px;
        height: 14px;
    }

    .topbar__socials {
        gap: 0.45rem;
        flex-shrink: 0;
        width: 100%;
        justify-content: center;
    }

    .topbar__socials a {
        width: 32px;
        height: 32px;
        font-size: 0.82rem;
    }

    /* =========================
       NAVBAR
    ========================= */
    .topnav {
        width: 100%;
        max-width: 100vw;
    }

    .topnav__inner {
        padding: 1rem;
        gap: 1rem;
        flex-wrap: nowrap;
    }

    /* =========================
       LOGO
    ========================= */
    .brand {
        flex-shrink: 1;
        min-width: 0;
    }

    .brand__logo {
        height: clamp(50px, 15vw, 72px);
        max-width: 100%;
    }

    /* =========================
       MENU BUTTON
    ========================= */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        border: none;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        flex-shrink: 0;
        cursor: pointer;
    }

    .menu-toggle svg {
        width: 22px;
        height: 22px;
    }

    /* =========================
       MOBILE MENU
    ========================= */
    .topnav__links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100vw;
        height: 100vh;
        padding: 2rem;
        background: rgba(15, 32, 36, 0.98);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border: none;
        box-shadow: none;
        overflow-y: auto;
        z-index: 9999;
        /* FIX: Prevent menu overflow */
        max-width: 100vw;
        box-sizing: border-box;
    }

    .topnav__links.active {
        display: flex;
    }

    .topnav__links a {
        width: 100%;
        padding: 1.2rem 0;
        font-size: 1.2rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.82);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        text-align: center;
        white-space: nowrap;
    }

    .topnav__links a:last-child {
        border-bottom: none;
    }

    .topnav__links a::after {
        display: none;
    }

    /* =========================
       HERO MOBILE
    ========================= */
    .hero {
        min-height: auto;
        min-height: 100dvh;
    }

    .hero__content {
        padding: 8rem 1rem 3rem;
        min-height: 100dvh;
    }

    .hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
        letter-spacing: -1px;
        max-width: 100%;
    }

    .hero__sub {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero__ctas {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

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

    .hero__trust {
        justify-content: center;
    }

    .chip {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    /* =========================
       BUTTONS MOBILE
    ========================= */
    .btn {
        padding: 0.85rem 1.4rem;
        font-size: 0.9rem;
    }

    .btn--lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* =========================
       HEADINGS MOBILE
    ========================= */
    h1, h2, h3, h4 {
        word-break: break-word;
        hyphens: auto;
    }

    .h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
}

/* ============================================================
   10. NAVBAR — INNER PAGES
   ============================================================ */

.topnav--solid {
    position: sticky;
    top: 0;
    background: var(--foreground);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    /* FIX: Prevent sticky nav overflow */
    width: 100%;
    max-width: 100vw;
}

.topnav--solid .topnav__inner {
    padding: 1rem 1.5rem;
}

/* FIX: Inner pages mobile */
@media (max-width: 768px) {
    .topnav--solid .topnav__inner {
        padding: 1rem;
    }
}

/* ============================================================
   11. ANIMATIONS
   ============================================================ */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

/* FIX: Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ============================================================
   12. UTILITY CLASSES
   ============================================================ */

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

/* FIX: Text truncation */
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* FIX: Break words */
.break-words {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}


/* ============================================================
   08. STATS BAND
   ============================================================ */

.stats-band {
    position: relative;
    z-index: 1;
    padding: 0.9rem 0;
    background: var(--gradient-ocean);
}

.stats-band__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    text-align: center;
    color: #fff;
}

.stats-band__grid > div {
    padding: 0.5rem;
}

.stats-band__num {
    margin-bottom: 0.15rem;
    font-family: "Inter", sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.45rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.3px;
}

.stats-band__label {
    font-family: "Poppins", sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
}

/* Responsive */

@media (max-width: 768px) {
    .stats-band__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .stats-band__num {
        font-size: 1rem;
    }

    .stats-band__label {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .stats-band {
        padding: 0.8rem 0;
    }

    .stats-band__num {
        font-size: 0.95rem;
    }

    .stats-band__label {
        font-size: 0.55rem;
    }
}



  /* ============================================================
     09. SECTIONS & PAGE HEADS
     ============================================================ */
  
  .section { padding: clamp(3rem, 3vw, 1rem) 0; position: relative; background: rgba(255,255,255,.4); }
  .section--soft { background: rgba(255,255,255,.4); overflow: hidden; }
  .section--dark { background: var(--foreground); color: #fff; overflow: hidden; }
  
  .section__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 3.5rem;
  }
  .section__head--center {
    text-align: center;
    grid-template-columns: 1fr;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
  }
  .section__lead { color: var(--muted-foreground); font-size: 1.1rem; max-width: 30rem; }
  
  .blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }
  .blob--center { top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; background: rgba(26,174,196,.12); }
  
  .section--soft .container,
  .section--dark .container { position: relative; z-index: 1; }
  
  /* Page heading (legal / policy pages) */
  .page-head,
  .page-header { padding: 5rem 0 2.5rem; text-align: center; }
  .page-head h1,
  .page-header h1 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: .8rem; }
  .page-head p,
  .page-header p  { color: var(--muted-foreground); max-width: 38rem; margin: .6rem auto 0; font-size: 1.05rem; }
  
  
  /* ==================== */
/* ============================================================
   SUMMER VIBES SECTION — PROFESSIONAL REWRITE
   ============================================================ */

.summer-vibes {
    padding: clamp(3rem, 5vw, 6rem) 1rem;
    position: relative;
    background: rgba(255, 255, 255, 0.4);
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.summer-vibes__header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.summer-vibes__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #0F2024;
    margin: 20px 0 0 0;
    font-weight: 700;
    line-height: 1.2;
}

/* ============================================================
   VIBES GRID — FIXED LAYOUT
   ============================================================ */

.vibes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================================
   GRID POSITIONS — EXPLICIT SIZING
   ============================================================ */

.vibes-card--left-big {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.vibes-card--right-top {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

.vibes-card--right-bottom {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
}

.vibes-card--left-top {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}

.vibes-card--left-bottom {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
}

.vibes-card--right-big {
    grid-column: 3 / 5;
    grid-row: 3 / 5;
}

/* ============================================================
   VIBES CARD — FIXED BASE
   ============================================================ */

.vibes-card {
    position: relative;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: block;
    background-color: #e8e8e8;
    box-sizing: border-box;
}

.vibes-card__wrap {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    min-height: inherit;
}

/* ============================================================
   VISUAL — FIXED IMAGE CONTAINER
   ============================================================ */

.vibes-card__visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #d0d0d0;
}

.vibes-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.9s ease;
    display: block;
    border: none;
    max-width: 100%;
}

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

/* Overlay gradient */
.vibes-card__visual::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.4) 0%,
        transparent 50%
    );
    transition: background 0.35s ease;
    z-index: 1;
    pointer-events: none;
}

.vibes-card:hover .vibes-card__visual::after {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        transparent 100%
    );
}

/* ============================================================
   INFO — FIXED TEXT OVERLAY
   ============================================================ */

.vibes-card__info {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 3;
    color: #ffffff;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    pointer-events: none;
}

.vibes-card:hover .vibes-card__info {
    opacity: 1;
    transform: translateY(0);
}

.vibes-card__info h3 {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    margin: 0;
    font-weight: 600;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
    color: #ffffff;
}

.vibes-card__info p {
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* ============================================================
   SQUARE CARDS
   ============================================================ */

.vibes-card--square .vibes-card__info {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
}

.vibes-card--square .vibes-card__info h3 {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
}

.vibes-card--square .vibes-card__info p {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
}

/* ============================================================
   TALL CARDS
   ============================================================ */

.vibes-card--tall .vibes-card__info {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
}

/* ============================================================
   WIDE CARDS
   ============================================================ */

.vibes-card--wide .vibes-card__info {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1rem;
}

/* ============================================================
   TABLET (max-width: 1024px)
   ============================================================ */

@media (max-width: 1024px) {
    .vibes-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, minmax(160px, 1fr));
        gap: 0.75rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }
}

/* ============================================================
   MOBILE (max-width: 768px) — COMPLETE FIX
   ============================================================ */

@media (max-width: 768px) {
    .summer-vibes {
        padding: 2rem 0.5rem;
    }

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

    .vibes-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, minmax(180px, 1fr));
        gap: 0.75rem;
        max-width: 100%;
        padding: 0;
    }

    .vibes-card--left-big {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
        min-height: 360px;
    }

    .vibes-card--right-top {
        grid-column: 1 / 2;
        grid-row: 3 / 5;
        min-height: 360px;
    }

    .vibes-card--right-bottom {
        grid-column: 2 / 3;
        grid-row: 3 / 5;
        min-height: 360px;
    }

    .vibes-card--left-top {
        grid-column: 1 / 3;
        grid-row: 5 / 6;
        min-height: 180px;
    }

    .vibes-card--left-bottom {
        grid-column: 1 / 3;
        grid-row: 6 / 7;
        min-height: 180px;
    }

    .vibes-card--right-big {
        display: none;
    }

    .vibes-card {
        min-height: 180px;
    }

    /* Always show info on mobile */
    .vibes-card__info {
        opacity: 1;
        transform: translateY(0);
        left: 0;
        right: 0;
        bottom: 0;
        padding: 1rem;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    }

    .vibes-card__visual::after {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
    }

    .vibes-card__info h3 {
        font-size: clamp(0.85rem, 3vw, 1rem);
    }

    .vibes-card__info p {
        font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    }
}

/* ============================================================
   SMALL MOBILE (max-width: 480px)
   ============================================================ */

@media (max-width: 480px) {
    .vibes-grid {
        grid-template-rows: repeat(6, minmax(150px, 1fr));
        gap: 0.5rem;
    }

    .vibes-card--left-big {
        min-height: 300px;
    }

    .vibes-card--right-top,
    .vibes-card--right-bottom {
        min-height: 300px;
    }

    .vibes-card--left-top,
    .vibes-card--left-bottom {
        min-height: 150px;
    }

    .vibes-card {
        min-height: 150px;
        border-radius: 12px;
    }
}

/* ============================================================
   CARDS & GRIDS (General)
   ============================================================ */

.card {
    background: var(--card, #ffffff);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.card__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1.25rem;
}

.card__icon svg {
    width: 24px;
    height: 24px;
}

.card h3 {
    font-size: 1.45rem;
    margin-bottom: 0.5rem;
}

.card p {
    color: var(--muted-foreground, #666666);
    margin: 0;
}

/* ============================================================
   PRODUCT GALLERY (Home)
   ============================================================ */

.product-showcase {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.gallery {
    position: sticky;
    top: 40px;
}

.gallery__main {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
    filter: none;
    animation: floatSlow 9s ease-in-out infinite;
    transition: opacity 0.4s;
    display: block;
    max-width: 100%;
}

.gallery__main img.is-fading {
    opacity: 0;
}

.gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F2024;
    transition: all 0.2s;
    z-index: 2;
    border: none;
    cursor: pointer;
}

.gallery__nav:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.gallery__nav--prev {
    left: 1rem;
}

.gallery__nav--next {
    right: 1rem;
}

.gallery__nav svg {
    width: 20px;
    height: 20px;
}

.gallery__thumbs {
    display: flex;
    gap: 0.7rem;
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery__thumb {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    background: #f0f0f0;
    transition: all 0.2s;
    padding: 0;
    cursor: pointer;
}

.gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.gallery__thumb.is-active {
    border-color: #00a8b5;
}

.gallery__dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
    z-index: 2;
}

.gallery__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    transition: all 0.2s;
    display: block;
}

.gallery__dots span.is-active {
    background: #000000;
    width: 24px;
    border-radius: 999px;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ============================================================
   GLOBAL FIXES — Prevent White Screen Issues
   ============================================================ */

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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




/* ============================================================
   13. PDP — PRODUCT DETAIL PANEL
   ============================================================ */

.pdp { 
    max-width: 480px; 
    margin: 0 auto; 
    padding: 1.4rem .8rem; 
    border: 1px solid var(--border); 
    border-radius: 8px; 
    background: var(--card);
}

.pdp__title { 
    font-size: clamp(1.5rem, 2.5vw, 2rem); 
    font-weight: 700;
    margin-bottom: .4rem; 
    line-height: 1.3; 
}

.pdp__rating { 
    display: flex; 
    align-items: center; 
    gap: .3rem; 
    font-size: .8rem; 
    color: var(--muted-foreground); 
    margin-bottom: .3rem; 
}

.pdp__rating .stars { 
    font-size: .85rem; 
    color: var(--sunset); 
}

/* Price */
.pdp__price-wrapper {
    margin: .8rem 0;
    padding: .8rem;
    background: rgba(255,153,0,.04);
    border-radius: 8px;
    border: 1px solid rgba(255,153,0,.1);
}

.pdp__price { 
    display: flex; 
    align-items: center; 
    gap: .6rem; 
    flex-wrap: wrap;
}

.pdp__price-current { 
    font-family: var(--font-display); 
    font-size: 1.6rem; 
    font-weight: 700;
    color: var(--foreground); 
}

.pdp__price-original  { 
    font-size: 12px !important; 
    color: var(--muted-foreground) !important; 
    text-decoration: line-through !important; 
}


.pdp__price-discount {
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
    background: #b12704;
    padding: .2rem .5rem;
    border-radius: 4px;
}

.pdp__price-stock {
    margin-top: .4rem;
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .8rem;
    font-weight: 500;
    padding: .25rem .6rem;
    border-radius: 999px;
}

.stock-badge.in-stock {
    color: #16a34a;
    background: rgba(22,163,74,.1);
}

.stock-badge.out-stock {
    color: #dc2626;
    background: rgba(220,38,38,.1);
}

.pdp__desc { 
    font-size: .85rem; 
    color: var(--muted-foreground); 
    margin-bottom: .4rem; 
    line-height: 1.6;
}

/* Controls */
.control { 
    margin-bottom: 1.1rem; 
}

.control__title { 
    font-size: .7rem; 
    letter-spacing: .12em; 
    text-transform: uppercase; 
    font-weight: 600; 
    margin-bottom: .6rem; 
    color: var(--foreground); 
}

/* Size / Length Selectors */
.size-selector,
.length-selector {
    display: flex;
    flex-wrap: wrap;
}

.size-opt,
.length-opt {
    position: relative;
    cursor: pointer;
}

.size-opt input,
.length-opt input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.size-opt__label,
.length-opt__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 40px;
    padding: 0 0.5rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--foreground);
    background: var(--card);
    transition: all .2s ease;
    cursor: pointer;
}

.size-opt:hover .size-opt__label,
.length-opt:hover .length-opt__label {
    border-color: #ff9900;
}

.size-opt.active .size-opt__label,
.length-opt.active .length-opt__label,
.size-opt input:checked + .size-opt__label,
.length-opt input:checked + .length-opt__label {
    border-color: #ff9900;
    background: rgba(255,153,0,.08);
    color: #ff9900;
    box-shadow: 0 0 0 3px rgba(255,153,0,.12);
}

/* Color Swatches */
.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.color-swatch {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
}

.color-swatch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.color-swatch__img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: all .25s ease;
    position: relative;
}

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

.color-swatch__fallback {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.color-swatch:hover .color-swatch__img {
    border-color: #ff9900;
    transform: scale(1.08);
}

.color-swatch.active .color-swatch__img,
.color-swatch input:checked + .color-swatch__img {
    border-color: #ff9900;
    box-shadow: 0 0 0 4px rgba(255,153,0,.2);
}

.color-swatch__name {
    font-size: .7rem;
    color: var(--muted-foreground);
    text-align: center;
}

/* Features */
.features-list {
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--foreground);
    padding: .10rem 0;
}

.feature-item::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(22,163,74,.1);
    color: #16a34a;
    border-radius: 50%;
    font-size: .7rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================================
   QUANTITY SELECTOR — نفس الشكل اللي في الصورة
   ============================================================ */

.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f2f2;
    box-shadow: 0 2px 5px rgba(15,17,17,.15);
}

.qty-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2f2;
    border: none;
    font-size: 1.2rem;
    font-weight: 400;
    color: #0f1111;
    cursor: pointer;
    transition: all .15s ease;
    user-select: none;
    border-radius: 8px;
}

.qty-btn:hover {
    background: #e3e6e6;
}

.qty-btn:active {
    background: #d5d9d9;
}

.qty-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.qty-input {
    width: 44px;
    height: 38px;
    border: none;
    text-align: center;
    font-size: .95rem;
    font-weight: 500;
    color: #0f1111;
    background: #fff;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}






















/* ============================================================
   ACTIONS — Quantity + Add to Cart + Buy It Now
   ============================================================ */

.pdp__actions {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    width: 100%;
    box-sizing: border-box;
}

/* كل الـ forms جوا الـ actions */
.pdp__actions > form,
.pdp__actions .js-buy-now-form,
.pdp__actions .js-cart-form {
    width: 100%;
    margin: 0;
    display: block;
}

/* ── الصف الأول: Quantity + Add to Cart ── */
.pdp__actions-row {
    display: flex;
    align-items: stretch; /* يخلي كل العناصر نفس الارتفاع */
    gap: 0.625rem;
    width: 100%;
    min-height: 48px; /* نحدد الارتفاع هنا بدل ما نحدده جوه */
}

/* الـ form جوه الصف لازم يكون flex item ويكبر */
.pdp__actions-row .js-cart-form {
    flex: 1;
    display: flex;
    min-width: 0;
    align-items: stretch; /* يخلي الزرار يملى الارتفاع */
}

/* ── Quantity Selector ── */
.quantity-selector {
    display: flex;
    align-items: stretch;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f2f2;
    flex-shrink: 0;
    height: 100%; /* ياخد نفس ارتفاع الصف */
    min-height: 48px;
}

.qty-btn {
    width: 48px; /* أكبر شوية */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2f2;
    border: none;
    font-size: 1.25rem; /* أكبر شوية */
    font-weight: 500;
    color: #0f1111;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
    flex-shrink: 0;
    height: 100%; /* يملى الارتفاع */
}

.qty-btn:hover {
    background: #e3e6e6;
}

.qty-btn:active {
    background: #d5d9d9;
}

.qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.qty-input {
    width: 56px; /* أعرض شوية */
    border: none;
    border-left: 1px solid #d5d9d9;
    border-right: 1px solid #d5d9d9;
    text-align: center;
    font-size: 1rem; /* أكبر شوية */
    font-weight: 600;
    color: #0f1111;
    background: #fff;
    -moz-appearance: textfield;
    flex-shrink: 0;
    height: 100%; /* يملى الارتفاع */
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ── Add to Cart Button ── */
.btn--add-cart {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0f1111;
    background: #ffd814;
    border: 1px solid #fcd200;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 1px 3px rgba(15,17,17,0.1);
    white-space: nowrap;
    min-width: 0;
    width: 100%;
    height: 100%; /* يملى ارتفاع الـ form */
    min-height: 48px;
}

.btn--add-cart:hover {
    background: #f7ca00;
    border-color: #f2c200;
    box-shadow: 0 2px 8px rgba(15,17,17,0.15);
}

.btn--add-cart:active {
    background: #f0b800;
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(15,17,17,0.1);
}

.btn--add-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f0f2f2;
    border-color: #d5d9d9;
}

/* ── Buy It Now Button ── */
.btn--buy-now {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #ffa41c;
    border: 1px solid #ff8f00;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 1px 3px rgba(15,17,17,0.1);
    white-space: nowrap;
    min-height: 48px;
    height: 48px;
}

.btn--buy-now:hover {
    background: #fa8900;
    border-color: #e67e00;
    box-shadow: 0 2px 8px rgba(255,164,28,0.25);
}

.btn--buy-now:active {
    background: #e67e00;
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(15,17,17,0.1);
}

/* ── Button Icon ── */
.btn__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn__text {
    position: relative;
    z-index: 1;
}

/* ============================================================
   RESPONSIVE — الشاشات الصغيرة
   ============================================================ */

@media (max-width: 768px) {
    .pdp__actions-row {
        min-height: 44px;
    }

    .quantity-selector {
        min-height: 44px;
    }

    .qty-btn {
        width: 44px;
        font-size: 1.125rem;
    }

    .qty-input {
        width: 52px;
        font-size: 0.9375rem;
    }

    .btn--add-cart {
        min-height: 44px;
        padding: 0 1rem;
        font-size: 0.9375rem;
        gap: 0.5rem;
    }

    .btn--buy-now {
        min-height: 44px;
        height: 44px;
        font-size: 0.9375rem;
    }

    .btn__icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .pdp__actions {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .pdp__actions-row {
        gap: 0.5rem;
        min-height: 44px;
    }

    .quantity-selector {
        min-height: 44px;
    }

    .qty-btn {
        width: 40px;
        font-size: 1rem;
    }

    .qty-input {
        width: 46px;
        font-size: 0.875rem;
    }

    .btn--add-cart {
        min-height: 44px;
        padding: 0 0.75rem;
        font-size: 0.875rem;
        gap: 0.375rem;
    }

    .btn--buy-now {
        min-height: 44px;
        height: 44px;
        font-size: 0.875rem;
    }

    .btn__icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 360px) {
    .pdp__actions-row {
        gap: 0.375rem;
    }

    .qty-btn {
        width: 36px;
    }

    .qty-input {
        width: 42px;
    }

    .btn--add-cart {
        padding: 0 0.5rem;
        font-size: 0.8125rem;
    }

    .btn__icon {
        display: none;
    }
}





/* ============================================================
   SIMPLE PRODUCT ACTIONS (Other Types)
   ============================================================ */

.product-info__actions {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

/* ── الصف الأول: Quantity + Add to Cart ── */
.product-info__actions-row {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
}

/* ── Quantity Selector ── */
.qty-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d5d9d9;
    border-radius: 10px;   
    overflow: hidden;
    background: #f0f2f2;
    flex-shrink: 0;
    height: 52px;             
}

.qty-btn {
    width: 52px;              
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2f2;
    border: none;
    font-size: 1.5rem;         /* ← كبرنا الخط */
    font-weight: 400;
    color: #0f1111;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
    line-height: 1;
    padding: 0;
}

.qty-btn:hover {
    background: #e3e6e6;
}

.qty-btn:active {
    background: #d5d9d9;
}

.qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

#qtyInput {
    width: 64px;     
    padding: auto;          
    border: none;
    border-left: 1px solid #d5d9d9;
    border-right: 1px solid #d5d9d9;
    text-align: center;
    font-size: 1.125rem;     
    font-weight: 600;
    color: #0f1111;
    background: #fff;
    -moz-appearance: textfield;
    line-height: 1;
    padding: 0;
    margin: 0;
}

#qtyInput::-webkit-outer-spin-button,
#qtyInput::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ── Add to Cart Form ── */
.add-to-cart-form {
    flex: 1;
    display: flex;
    align-items: center;
    margin: 0;
    min-width: 0;
}

/* ── Add to Cart Button ── */
/* نفس الـ height بالظبط */
.btn--add-cart {
    width: 100%;
    height: 52px;              /* ← زودنا لـ 52px */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1.5rem;         /* ← زودنا الـ padding */
    font-size: 1rem;           /* ← كبرنا الخط */
    font-weight: 600;
    color: #0f1111;
    background: #ffd814;
    border: 1px solid #fcd200;
    border-radius: 10px;       /* ← زودنا شوية */
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 1px 3px rgba(15,17,17,0.1);
    white-space: nowrap;
    line-height: 1;
    margin: 0;
}

.btn--add-cart:hover {
    background: #f7ca00;
    border-color: #f2c200;
    box-shadow: 0 2px 8px rgba(15,17,17,0.15);
}

.btn--add-cart:active {
    background: #f0b800;
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(15,17,17,0.1);
}

.btn--add-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f0f2f2;
    border-color: #d5d9d9;
}

/* ── Buy It Now Button ── */
.buy-now-form {
    width: 100%;
    display: block;
    margin: 0;
}

.btn--buy-now {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 52px;              /* ← نفس الارتفاع */
    padding: 0 1.5rem;
    font-size: 1rem;           /* ← كبرنا الخط */
    font-weight: 600;
    color: #fff;
    background: #ffa41c;
    border: 1px solid #ff8f00;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 1px 3px rgba(15,17,17,0.1);
    white-space: nowrap;
    line-height: 1;
    margin: 0;
}

.btn--buy-now:hover {
    background: #fa8900;
    border-color: #e67e00;
    box-shadow: 0 2px 8px rgba(255,164,28,0.25);
}

.btn--buy-now:active {
    background: #e67e00;
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(15,17,17,0.1);
}

/* ── Button Icon ── */
.btn__icon {
    width: 22px;               /* ← كبرنا */
    height: 22px;
    flex-shrink: 0;
}

.btn__text {
    position: relative;
    z-index: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 480px) {
    .product-info__actions-row {
        gap: 0.5rem;
    }
    
    .qty-selector {
        height: 48px;          /* ← ارتفاع أصغر على الموبايل */
    }
    
    .qty-btn {
        width: 48px;
        font-size: 1.25rem;
    }
    
    #qtyInput {
        width: 56px;
        font-size: 1rem;
    }
    
    .btn--add-cart,
    .btn--buy-now {
        height: 48px;
        padding: 0 1rem;
        font-size: 0.9375rem;
    }
    
    .btn__icon {
        width: 20px;
        height: 20px;
    }
}

/* ============================================================
   FOCUS & ACCESSIBILITY
   ============================================================ */

.btn--add-cart:focus-visible,
.btn--buy-now:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,216,20,0.4);
}

.btn--buy-now:focus-visible {
    box-shadow: 0 0 0 3px rgba(255,164,28,0.4);
}

/* ============================================================
   LOADING STATE
   ============================================================ */

.btn--loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn--loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: btn-spin 0.8s linear infinite;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}








/* ============================================================
   VARIANT OPTIONS (Simple Products)
   ============================================================ */

.variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: .6rem;
}

.variant-option {
    position: relative;
    cursor: pointer;
}

.variant-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.variant-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    padding: .7rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--card);
    transition: all .2s ease;
    text-align: center;
}

.variant-option:hover .variant-card {
    border-color: #ff9900;
}

.variant-option.is-selected .variant-card,
.variant-option input:checked + .variant-card {
    border-color: #ff9900;
    background: rgba(255,153,0,.06);
    box-shadow: 0 0 0 3px rgba(255,153,0,.12);
}

.variant-color {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--border);
}

.variant-name {
    font-size: .8rem;
    font-weight: 500;
    color: var(--foreground);
}

.variant-price {
    font-size: .85rem;
    font-weight: 600;
    color: #ff9900;
}

.variant-stock {
    font-size: .7rem;
    color: var(--muted-foreground);
}

.variant-stock.low {
    color: #b12704;
}

.variant-option.out-of-stock {
    opacity: .5;
    cursor: not-allowed;
}

.variant-option.out-of-stock .variant-card {
    border-color: var(--border);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 640px) {
    .pdp { 
        padding: 1rem .6rem; 
    }
    
    .pdp__price-current { 
        font-size: 1.4rem; 
    }
    
    .pdp__actions {
        flex-direction: column;
    }
    
    .pdp__actions form {
        min-width: 100%;
    }
    
    .quantity-selector {
        margin-bottom: .5rem;
    }
    
    .btn--add-cart,
    .btn--buy-now,
    .btn--large {
        padding: .8rem 1rem;
        font-size: .9rem;
    }
    
    .variants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,153,0,.4); }
    50% { box-shadow: 0 0 0 6px rgba(255,153,0,0); }
}

.btn--add-cart:focus-visible,
.btn--buy-now:focus-visible {
    outline: none;
    animation: pulse-border 1.5s infinite;
}

/* Loading state */
.btn--loading {
    position: relative;
    color: transparent !important;
}

.btn--loading::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
  









  
  /* ============================================================
     15. SHOP PAGE EXTRAS
     ============================================================ */
  
  .filter-bar        { background: var(--card); border-bottom: 1px solid var(--border); }
  .filter-bar__inner { display: flex; align-items: center; gap: 1rem; padding: .9rem 1.5rem; max-width: 1240px; margin: 0 auto; overflow-x: auto; }
  .filter-bar__label { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-foreground); white-space: nowrap; flex-shrink: 0; }
  .filter-btn {
    padding: .45rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    font-size: .83rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    color: var(--foreground);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .filter-btn:hover     { border-color: var(--aqua); color: var(--aqua); }
  .filter-btn.is-active { background: var(--gradient-ocean); color: #fff; border-color: transparent; }
  
  .section-title-bar     { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
  .section-title-bar h2  { font-size: clamp(1.4rem, 2.5vw, 2rem); white-space: nowrap; }
  .section-title-bar::after { content: ""; flex: 1; height: 1px; background: var(--border); }
  
  .shop-grid    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  
  .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
  .related-card { background: var(--card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .3s ease; }
  .related-card:hover { transform: translateY(-4px); }
  .related-card__media     { aspect-ratio: 4/3; overflow: hidden; background: var(--muted); }
  .related-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
  .related-card:hover .related-card__media img { transform: scale(1.06); }
  .related-card__body  { padding: 1.1rem; }
  .related-card__title { font-size: 1rem; margin-bottom: .2rem; }
  .related-card__sub   { color: var(--muted-foreground); font-size: .83rem; margin-bottom: .8rem; }
  .related-card__row   { display: flex; align-items: center; justify-content: space-between; }
  .related-card__price { font-family: var(--font-display); font-size: 1.15rem; color: var(--aqua-deep); }
  
  .color-dot { display: inline-flex; width: 14px; height: 14px; border-radius: 50%; border: 2px solid rgba(255,255,255,.6); box-shadow: 0 0 0 1px rgba(0,0,0,.1); }
  
  
  /* ============================================================
     16. VIDEO SECTION
     ============================================================ */
  
  .video-section { width: 100%; padding: 2rem 1.5rem; background: #1AAEC4; overflow: hidden; }
  
  .video-hero { max-width: 1400px; margin: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  
  .section-header      { max-width: 800px; text-align: center; font-size: 26px;}
  .section-subtitle    { display: inline-block; color: #fc7016; font-size: .9rem; font-weight: 600; letter-spacing: 3px; margin-bottom: 1rem; text-transform: uppercase; }
  .section-title       { color: #fff; font-size: 5rem; line-height: 1.2; font-weight: 700; margin-bottom: 1.3rem; }
  .section-title span  { color: #fc7016; }
  .section-description { color: rgba(255,255,255,.7); font-size: 1.05rem; line-height: 1.9; }
  
  .video-box { position: relative; height: 50vh; overflow: hidden; border-radius: 28px; background: #000; transition: .4s ease; }
  .video-box:hover { transform: translateY(-8px); }
  
  .video-hero__poster         { position: absolute; inset: 0; z-index: 2; cursor: pointer; }
  .video-hero__poster img     { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
  .video-box:hover .video-hero__poster img { transform: scale(1.08); }
  .video-hero__poster::after  { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.2)); z-index: 1; }
  
  .video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.92);
    color: #000;
    font-size: 2rem;
    cursor: pointer;
    z-index: 3;
    transition: .3s ease;
    animation: pulse 2s infinite;
  }
  .video-play:hover { transform: translate(-50%, -50%) scale(1.1); background: #fff; }
  
  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.6); }
    70%  { box-shadow: 0 0 0 28px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
  }
  
  .video-hero__video        { position: absolute; inset: 0; z-index: 1; }
  .video-hero__video iframe { width: 100%; height: 100%; border: none; }
  
  .video-content    { position: absolute; left: 2rem; bottom: 2rem; z-index: 3; color: #fff; }
  .video-content h3 { font-size: 1.7rem; margin-bottom: .7rem; font-weight: 600; }
  .video-content p  { color: rgba(255,255,255,.8); line-height: 1.7; font-size: .95rem; max-width: 320px; }
  
  .video-box.playing .video-hero__poster { opacity: 0; pointer-events: none; transition: .5s ease; }
  
  


  /* ============================================================
     18. AUTH PAGE
     ============================================================ */
  
  .auth-page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 1.5rem 4rem;
  }
  .auth-page::before,
  .auth-page::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; filter: blur(90px); z-index: 0; }
  
  .auth-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: var(--radius-xl);
    padding: 2.2rem;
    box-shadow: 0 25px 80px rgba(15,32,36,.12), 0 10px 30px rgba(15,32,36,.08);
  }
  
  .auth-top     { text-align: center; margin-bottom: 2rem; }
  .auth-logo    { width: 72px; height: 72px; border-radius: 22px; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; background: var(--gradient-ocean); color: white; box-shadow: var(--shadow-luxe); }
  .auth-logo svg   { width: 34px; height: 34px; }
  .auth-title      { font-size: clamp(2rem, 4vw, 2.7rem); margin-bottom: .5rem; }
  .auth-subtitle   { color: var(--muted-foreground); font-size: .95rem; }
  
  .auth-tabs { display: grid; grid-template-columns: 1fr 1fr; background: rgba(15,32,36,.05); padding: .4rem; border-radius: 999px; margin-bottom: 2rem; }
  .auth-tab  { height: 48px; border-radius: 999px; font-weight: 600; font-size: .95rem; transition: .25s ease; }
  .auth-tab.is-active { background: white; box-shadow: 0 8px 20px rgba(0,0,0,.08); }
  
  .auth-form { display: none; flex-direction: column; gap: 1rem; animation: fade .3s ease; }
  .auth-form.active { display: flex; }
  
  @keyframes fade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
  .form-group   { display: flex; flex-direction: column; gap: .55rem; }
  .form-label   { font-size: .9rem; font-weight: 600; }
  .form-input   { width: 100%; height: 56px; border-radius: 18px; border: 1px solid var(--border); background: white; padding: 0 1rem; font-size: .95rem; transition: .25s ease; }
  .form-input:focus { outline: none; border-color: var(--aqua); box-shadow: 0 0 0 4px rgba(26,174,196,.12); }
  
  .auth-options { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
  .checkbox     { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--muted-foreground); }
  .checkbox input { accent-color: var(--aqua); }
  
  .auth-btn { width: 100%; height: 58px; border-radius: 20px; margin-top: .4rem; background: var(--gradient-ocean); color: white; font-weight: 700; font-size: 1rem; transition: .25s ease; box-shadow: var(--shadow-luxe); }
  .auth-btn:hover { transform: translateY(-2px); }
  
  .auth-bottom   { margin-top: 1.5rem; text-align: center; color: var(--muted-foreground); font-size: .92rem; }
  .auth-bottom a { color: var(--aqua-deep); font-weight: 700; }
  
  
  /* ============================================================
     19. CART DRAWER
     ============================================================ */
  
  .drawer-backdrop { position: fixed; inset: 0; background: rgba(15,32,36,.4); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 90; }
  .drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
  
  .drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(420px, 100%);
    background: var(--background);
    z-index: 100;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
    box-shadow: -20px 0 60px rgba(15,32,36,.2);
  }
  .drawer.is-open { transform: translateX(0); }
  
  .drawer__head    { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.6rem; border-bottom: 1px solid var(--border); }
  .drawer__head h3 { font-size: 1.4rem; }
  .drawer__close   { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--muted); }
  .drawer__close:hover { background: var(--border); }
  
  .drawer__body  { flex: 1; overflow-y: auto; padding: 1.2rem 1.6rem; }
  .drawer__empty { text-align: center; padding: 3rem 1rem; color: var(--muted-foreground); }
  .drawer__empty svg { width: 64px; height: 64px; margin: 0 auto 1rem; color: var(--aqua-light); opacity: .7; }
  
  .drawer__foot                { padding: 1.4rem 1.6rem; border-top: 1px solid var(--border); background: var(--card); }
  .drawer__foot .total-row     { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
  .drawer__foot .total-row strong { font-family: var(--font-display); font-size: 1.6rem; }
  
  .cart-line { display: flex; gap: .9rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
  .cart-line:last-child { border-bottom: 0; }
  
  .cart-line__img     { width: 72px; height: 72px; border-radius: 14px; background: var(--muted); overflow: hidden; flex: none; display: flex; align-items: center; justify-content: center; }
  .cart-line__img img { width: 100%; height: 100%; object-fit: contain; }
  .cart-line__info    { flex: 1; min-width: 0; }
  .cart-line__name    { font-weight: 600; margin: 0 0 .15rem; font-size: .95rem; }
  .cart-line__meta    { color: var(--muted-foreground); font-size: .8rem; margin: 0 0 .4rem; }
  .cart-line__bot     { display: flex; justify-content: space-between; align-items: center; }
  
  .cart-line__qty        { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; background: var(--card); }
  .cart-line__qty button { width: 28px; height: 28px; font-size: 1rem; }
  .cart-line__qty span   { min-width: 24px; text-align: center; font-size: .85rem; font-weight: 600; }
  
  .cart-line__price  { font-weight: 700; color: var(--aqua-deep); }
  .cart-line__remove { color: var(--muted-foreground); font-size: .78rem; text-decoration: underline; margin-top: .3rem; display: inline-block; }
  .cart-line__remove:hover { color: var(--sunset); }
  
  
  /* ============================================================
     20. CART PAGE
     ============================================================ */
  
  .cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; }
  
  .cart-list    { background: var(--card); border-radius: var(--radius-xl); padding: .4rem 1.6rem; box-shadow: var(--shadow-soft); }
  .cart-summary { position: sticky; top: 90px; background: var(--card); border-radius: var(--radius-xl); padding: 1.8rem; box-shadow: var(--shadow-soft); }
  .cart-summary h3 { font-size: 1.4rem; margin-bottom: 1.2rem; }
  .cart-summary .row { display: flex; justify-content: space-between; padding: .6rem 0; color: var(--muted-foreground); }
  .cart-summary .row.total { border-top: 1px solid var(--border); margin-top: .5rem; padding-top: 1rem; color: var(--foreground); font-weight: 700; font-size: 1.2rem; }
  .cart-summary .row.total strong { font-family: var(--font-display); font-size: 1.6rem; }
  
  .cart-empty     { text-align: center; padding: 5rem 1rem; background: var(--card); border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); }
  .cart-empty svg { width: 80px; height: 80px; color: var(--aqua-light); margin: 0 auto 1rem; }
  .cart-empty h2  { font-size: 1.8rem; margin-bottom: .6rem; }
  .cart-empty p   { color: var(--muted-foreground); margin-bottom: 1.5rem; }
  
  
  /* ============================================================
     21. CHECKOUT & ORDER SUMMARY
     ============================================================ */
  
  .checkout-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: start; }
  
  .form-card    { background: var(--card); border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-soft); margin-bottom: 1.5rem; }
  .form-card h3 { font-size: 1.3rem; margin-bottom: 1.4rem; display: flex; align-items: center; gap: .7rem; }
  .form-card h3 .step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--gradient-ocean); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: .95rem; font-family: var(--font-sans); font-weight: 700; }
  
  .field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
  .field label { font-size: .82rem; font-weight: 600; color: var(--muted-foreground); }
  .field input,
  .field select,
  .field textarea { font: inherit; padding: .85rem 1rem; border-radius: 14px; border: 1px solid var(--border); background: var(--background); color: var(--foreground); transition: border-color .2s, box-shadow .2s; }
  .field input:focus,
  .field select:focus,
  .field textarea:focus { outline: 0; border-color: var(--aqua); box-shadow: 0 0 0 3px rgba(26,174,196,.15); }
  .field textarea { resize: vertical; min-height: 90px; }
  .field--error input,
  .field--error select,
  .field--error textarea { border-color: var(--sunset); }
  .field__err { color: var(--sunset); font-size: .78rem; display: none; }
  .field--error .field__err { display: block; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  
  .pay-options { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: 1rem; }
  .pay-opt { padding: 1.1rem; border-radius: 16px; border: 1px solid var(--border); background: var(--background); text-align: left; display: flex; gap: .7rem; align-items: flex-start; transition: all .25s; }
  .pay-opt:hover     { border-color: var(--aqua); }
  .pay-opt.is-active { border-color: var(--aqua); background: rgba(26,174,196,.06); box-shadow: 0 0 0 3px rgba(26,174,196,.12); }
  .pay-opt svg    { width: 24px; height: 24px; color: var(--aqua); flex: none; margin-top: .15rem; }
  .pay-opt strong { display: block; font-size: .95rem; margin-bottom: .15rem; }
  .pay-opt small  { color: var(--muted-foreground); font-size: .8rem; }
  
  .summary-card    { background: var(--card); border-radius: var(--radius-xl); padding: 1.8rem; box-shadow: var(--shadow-soft); position: sticky; top: 90px; }
  .summary-card h3 { font-size: 1.3rem; margin-bottom: 1.2rem; }
  
  .summary-line              { display: flex; gap: .8rem; padding: .7rem 0; border-bottom: 1px dashed var(--border); }
  .summary-line:last-of-type { border-bottom: 0; }
  .summary-line__img         { width: 54px; height: 54px; border-radius: 12px; background: var(--muted); flex: none; overflow: hidden; display: flex; align-items: center; justify-content: center; }
  .summary-line__img img     { width: 100%; height: 100%; object-fit: contain; }
  .summary-line__info        { flex: 1; min-width: 0; font-size: .9rem; }
  .summary-line__info strong { display: block; }
  .summary-line__info small  { color: var(--muted-foreground); }
  .summary-line__price       { font-weight: 700; color: var(--aqua-deep); }
  
  .summary-card .row       { display: flex; justify-content: space-between; padding: .45rem 0; font-size: .9rem; color: var(--muted-foreground); }
  .summary-card .row.total { border-top: 1px solid var(--border); padding-top: .9rem; margin-top: .5rem; font-size: 1.05rem; color: var(--foreground); font-weight: 700; }
  .summary-card .row.total strong { font-family: var(--font-display); font-size: 1.5rem; }
  
  
  /* ============================================================
     22. SUCCESS PAGE
     ============================================================ */
  
  .success { max-width: 560px; margin: 0 auto; text-align: center; background: var(--card); border-radius: var(--radius-xl); padding: 3rem 2rem; box-shadow: var(--shadow-soft); }
  .success__icon { width: 88px; height: 88px; border-radius: 50%; background: var(--gradient-ocean); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: #fff; animation: popIn .5s cubic-bezier(.2,1.6,.4,1); }
  .success__icon svg { width: 42px; height: 42px; }
  .success h1        { font-size: 2.2rem; margin-bottom: .8rem; }
  .success p         { color: var(--muted-foreground); margin-bottom: 1.6rem; }
  .success .order-no { display: inline-block; background: var(--muted); padding: .6rem 1.2rem; border-radius: 999px; font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 1.6rem; }
  
  
  /* ============================================================
     23. LEGAL PAGES
     ============================================================ */
  
  .legal-container { max-width: 900px; margin: 0 auto; padding: 0 1.5rem 4rem; }
  .legal-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 1.5rem; box-shadow: var(--shadow-soft); }
  .legal-card h2 { font-size: 1.2rem; margin-bottom: .8rem; }
  .legal-card p  { color: var(--muted-foreground); font-size: .95rem; line-height: 1.7; }
  
  .highlight  { border-left: 4px solid var(--sunset); padding-left: 1rem; }
  .refund-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1rem; }
  .refund-box  { background: var(--muted); padding: 1rem; border-radius: var(--radius); text-align: center; font-size: .9rem; }
  
  
  /* ============================================================
     24. CONTACT PAGE
     ============================================================ */
  
  .info-item     { display: flex; align-items: center; gap: .8rem; }
  .info-item svg { width: 18px; height: 18px; stroke: var(--aqua); flex-shrink: 0; }
  
  .social   { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .6rem; }
  .social a { padding: .5rem .9rem; border-radius: 999px; border: 1px solid var(--border); font-size: .85rem; transition: .25s; }
  .social a:hover { background: var(--gradient-ocean); color: #fff; border-color: transparent; }
  
  
  /* ============================================================
     25. STORY & TEAM (About)
     ============================================================ */
  
     .story-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: stretch;
    }
    
    .story-grid__media {
        position: relative;
        height: 100%;
        min-height: 100%;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-luxe);
    }
    
    .story-grid__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .6s ease;
    }
    
    .story-grid__media:hover img {
        transform: scale(1.03);
    }
    
    .story-grid__body {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .story-grid__body p {
        color: var(--muted-foreground);
        font-size: 1.05rem;
        line-height: 1.9;
        margin-bottom: 1.4rem;
    }
    
    .story-grid__body p:last-of-type {
        margin-bottom: 0;
    }
    
    /* Responsive */
    @media (max-width: 992px) {
        .story-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    
        .story-grid__media {
            min-height: 400px;
        }
    }
    
    @media (max-width: 576px) {
        .story-grid__media {
            min-height: 300px;
        }
    
        .story-grid__body p {
            font-size: 1rem;
            line-height: 1.8;
        }
    }
  .pull-quote   { border-left: 3px solid var(--aqua); padding-left: 1.4rem; margin: 2.5rem 0; }
  .pull-quote p { font-family: var(--font-display); font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.35; font-weight: 500; }
  .pull-quote cite { font-size: .85rem; color: var(--muted-foreground); font-style: normal; margin-top: .5rem; display: block; }
  
  .value-card { background: var(--card); border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-soft); border-top: 3px solid var(--aqua); transition: transform .3s ease, box-shadow .3s ease; }
  .value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-luxe); }
  .value-card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--gradient-ocean); display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 1.2rem; }
  .value-card__icon svg { width: 24px; height: 24px; }
  .value-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
  .value-card p  { color: var(--muted-foreground); margin: 0; font-size: .95rem; line-height: 1.6; }
  
  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
  .team-card { background: var(--card); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .3s ease; }
  .team-card:hover { transform: translateY(-4px); }
  .team-card__photo { aspect-ratio: 1; overflow: hidden; background: var(--gradient-ocean); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 3.5rem; color: rgba(255,255,255,.6); }
  .team-card__body  { padding: 1.4rem; }
  .team-card__name  { font-size: 1.15rem; margin-bottom: .2rem; }
  .team-card__role  { font-size: .82rem; color: var(--aqua); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: .5rem; }
  .team-card__bio   { color: var(--muted-foreground); font-size: .88rem; line-height: 1.55; margin: 0; }
  
  .timeline { position: relative; padding-left: 2.5rem; max-width: 640px; margin: 0 auto; }
  .timeline::before { content: ""; position: absolute; left: .65rem; top: .4rem; bottom: .4rem; width: 2px; background: linear-gradient(180deg, var(--aqua), var(--aqua-light), transparent); }
  .timeline-item { position: relative; margin-bottom: 2.4rem; }
  .timeline-item::before { content: ""; position: absolute; left: -2.1rem; top: .35rem; width: 12px; height: 12px; border-radius: 50%; background: var(--aqua); border: 2px solid white; box-shadow: 0 0 0 3px rgba(26,174,196,.2); }
  .timeline-item__year  { font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--aqua); margin-bottom: .25rem; }
  .timeline-item__title { font-size: 1.1rem; margin-bottom: .3rem; }
  .timeline-item__text  { color: var(--muted-foreground); font-size: .9rem; line-height: 1.6; margin: 0; }
  
  .about-cta { background: var(--foreground); color: #fff; padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
  .about-cta::before { content: ""; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(26,174,196,.18), transparent 70%); }
  .about-cta__content { position: relative; z-index: 1; }
  .about-cta h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
  .about-cta p  { color: rgba(255,255,255,.7); max-width: 38rem; margin: 0 auto 2rem; font-size: 1.05rem; }
  
  
  /* ============================================================
     26. FOOTER
     ============================================================ */
  
  .footer { background: var(--foreground); color: rgba(255,255,255,.75); padding: 3rem 0 0; }
  
  .footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
  .footer__desc  { font-size: .9rem; line-height: 1.6; opacity: .8; max-width: 300px; }
  .footer__col h4 { color: #fff; margin-bottom: 1rem; font-size: 1rem; }
  
  .footer__links a,
  .footer__social a { display: block; color: rgba(255,255,255,.7); margin-bottom: .6rem; font-size: .9rem; transition: .25s; }
  .footer__links a:hover,
  .footer__social a:hover { color: #fff; transform: translateX(4px); }
  
  .footer__bottom { margin-top: 2.5rem; padding: 1rem 0; text-align: center; border-top: 1px solid rgba(255,255,255,.08); font-size: .85rem; opacity: .7; }
  
  
  /* ============================================================
     27. TOAST
     ============================================================ */
  
  .toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--foreground); color: #fff; padding: .95rem 1.4rem; border-radius: 999px; display: flex; align-items: center; gap: .6rem; box-shadow: var(--shadow-luxe); opacity: 0; pointer-events: none; transition: all .35s cubic-bezier(.2,1.4,.4,1); z-index: 200; font-size: .92rem; font-weight: 500; }
  .toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }
  .toast svg { width: 18px; height: 18px; color: var(--aqua-light); }
  
  
  /* ============================================================
     28. ANIMATIONS & REVEALS
     ============================================================ */
  
  @keyframes float     { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-18px) rotate(-1.2deg); } }
  @keyframes floatSlow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
  @keyframes ripple    { 0% { transform: scale(.6); opacity: .6; } 100% { transform: scale(2.4); opacity: 0; } }
  @keyframes shimmer   { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
  @keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
  @keyframes fadeInUp  { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
  @keyframes popIn     { 0% { transform: scale(.4); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
  @keyframes bumpIn    { 0% { transform: scale(.5); opacity: 0; } 60% { transform: scale(1.25); } 100% { transform: scale(1); opacity: 1; } }
  
  .float      { animation: float     6s ease-in-out infinite; }
  .float-slow { animation: floatSlow 9s ease-in-out infinite; }
  .fade-in    { animation: fadeIn    1.1s ease-out both; }
  .fade-in-up { animation: fadeInUp  .9s  ease-out both; }
  .delay-1    { animation-delay: .18s; }
  .delay-2    { animation-delay: .32s; }
  .delay-3    { animation-delay: .48s; }
  
  .cart-btn{
    position:relative;
  
    width:48px;
    height:48px;
  
    border:none;
    border-radius:14px;
  
    display:flex;
    align-items:center;
    justify-content:center;
  
    background:rgba(255,255,255,.08);
  
    color:#fff;
    cursor:pointer;
  
    transition:.3s ease;
  }  
  .reveal    { opacity: 0; transform: translateY(36px); transition: opacity 1s ease, transform 1s ease; transition-delay: var(--d, 0s); }
  .reveal.in { opacity: 1; transform: none; }
  
  @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }
  
  
  /* ============================================================
     29. RESPONSIVE
     ============================================================ */
  
  /* Tablet 992 */
  @media (max-width: 992px) {
    .topnav__links { gap: 1.2rem; }
    .hero__title   { max-width: 14ch; }
  }
  
  /* Tablet 980 */
  @media (max-width: 980px) {
    .product-showcase,
    .cart-layout,
    .checkout-layout { grid-template-columns: 1fr; gap: 2rem; }
    .gallery,
    .cart-summary,
    .summary-card    { position: static; }
    .grid--3,
    .grid--4,
    .acc-grid        { grid-template-columns: repeat(2, 1fr); }
    .section__head   { grid-template-columns: 1fr; gap: 1rem; }
    .mosaic          { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .mosaic__item--big,
    .mosaic__item--wide { grid-column: span 2; }
  }
  
  /* Tablet 900 */
  @media (max-width: 900px) {
    .stats-band__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .story-grid       { grid-template-columns: 1fr; gap: 2.5rem; }
    .team-grid        { grid-template-columns: repeat(2, 1fr); }
    .footer__inner    { grid-template-columns: 1fr 1fr; }
    .refund-grid      { grid-template-columns: 1fr; }
    .related-grid     { grid-template-columns: repeat(2, 1fr); }
    .shop-grid        { grid-template-columns: repeat(2, 1fr); }
  }
  
  /* Mobile 768 */
  @media (max-width: 768px) {
    .topbar { display: none; }
    .topnav { top: 0; background: rgba(6,12,16,.45); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,.08); }
    .topnav__inner { padding: 1rem; }
    .menu-btn { display: flex; }
  
    .topnav__links {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      display: none;
      flex-direction: column;
      align-items: flex-start;
      padding: 1.2rem;
      background: #081318;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .topnav__links.is-open { display: flex; }
    .topnav__links a { width: 100%; padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
    .topnav__links a:last-child { border-bottom: 0; }
  
    .hero__content { padding: 8rem 1rem 4rem; }
    .hero__title   { font-size: clamp(2rem, 9vw, 3.4rem); max-width: 100%; }
    .hero__sub     { font-size: .95rem; line-height: 1.7; }
    .hero__ctas    { flex-direction: column; align-items: stretch; }
    .hero__ctas a  { width: 100%; text-align: center; }
    .hero__trust   { gap: .5rem; }
  
    .video-section    { padding: 4rem 1rem; }
    .video-hero       { grid-template-columns: 1fr; }
    .section-title    { font-size: 2.2rem; }
    .section-description { font-size: .95rem; }
    .video-box        { height: 50vh; border-radius: 22px; }
    .video-content    { left: 1.3rem; bottom: 1.3rem; }
    .video-content h3 { font-size: 1.3rem; }
    .video-play       { width: 75px; height: 75px; font-size: 1.6rem; }
  
    .product-section            { padding: 1rem 0; }
    .product-section__container { padding: 0 .5rem; }
  
    .acc-grid   { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; }
    .acc__media { aspect-ratio: 1/.6; }
    .acc__body  { padding: .5rem; gap: .2rem; }
    .acc__name  { font-size: .78rem; }
    .acc__desc  { font-size: .62rem; }
    .acc__price { font-size: .8rem; }
    .acc__add   { font-size: .55rem; padding: .25rem .4rem; }
  
    .auth-card    { padding: 1.5rem; }
    .auth-options { flex-direction: column; align-items: flex-start; }
  }
  
  /* Mobile 600 */
  @media (max-width: 600px) {
    .grid--3,
    .grid--4    { grid-template-columns: 1fr; }
    .field-row,
    .pay-options { grid-template-columns: 1fr; }
    .form-card   { padding: 1.5rem; }
    .footer__inner { grid-template-columns: 1fr; text-align: center; }
    .footer__desc  { margin: 0 auto; }
    .team-grid     { grid-template-columns: 1fr; }
    .shop-grid     { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .related-grid  { grid-template-columns: 1fr; }
    .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  }
  
  /* Mobile 500 */
  @media (max-width: 500px) {
    .section-title { font-size: 1.8rem; }
    .video-box     { height: 38vh; }
  }
  
  /* Mobile 480 */
  @media (max-width: 480px) {
    .topnav__inner { padding: .9rem; }
    .brand__name   { font-size: 1.25rem; }
.brand__logo {
  height: 50px;       
  width: auto;         
  display: block;
}    .hero__title   { font-size: 1.9rem; line-height: 1.15; letter-spacing: -1px; }
    .hero__sub     { font-size: .9rem; }
    .cart-btn,
    .menu-btn      { width: 42px; height: 42px; }
  }
  
  /* Mobile 360 */
  @media (max-width: 360px) {

    .acc-grid   { gap: .45rem; }
    .container  { padding: 0 .5rem; }
    .acc__media { aspect-ratio: 1/.55; }
    .acc__name  { font-size: .72rem; }
    .acc__desc  { font-size: .58rem; }
    .acc__price { font-size: .75rem; }
    .acc__add   { font-size: .5rem; }
  }
  
  /* Shop 1100 */
  @media (max-width: 1100px) {
    .shop-grid  { grid-template-columns: repeat(3, 1fr); }
    .video-hero { grid-template-columns: 1fr; }
    .video-box  { height: 65vh; }
  }











  
  /* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-float{
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 55px;
  height: 55px;

  background: #25D366;
  color: #fff;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(0,0,0,.25);

  z-index: 9999;

  animation: floatPulse 2.2s infinite ease-in-out;
  transition: transform .3s ease;
}

.whatsapp-float svg{
  width: 26px;
  height: 26px;
}

.whatsapp-float:hover{
  transform: scale(1.1);
}

/* Pulse animation */
@keyframes floatPulse {
  0%{
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37,211,102,.5);
  }
  70%{
    transform: scale(1.05);
    box-shadow: 0 0 0 18px rgba(37,211,102,0);
  }
  100%{
    transform: scale(1);
  }
}

/* =========================
   MOBILE ONLY (optional hide/show tweaks)
========================= */

@media (min-width: 768px){
  .whatsapp-float{
    width: 60px;
    height: 60px;
  }
}
























/* ═══════════════════════════════════════════════════════
   CART DRAWER STYLES
   ═══════════════════════════════════════════════════════ */

/* Cart Button */
.cart-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    color: white;
    z-index: 100000;
}

.cart-btn:hover {
    border-color: var(--aqua);
    color: var(--aqua);
}

.cart-btn svg {
    width: 20px;
    height: 20px;
        z-index: 100000;

}

.cart-btn__count {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-ocean);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.cart-btn__count.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Backdrop */
.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 32, 36, 0.4);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--card);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(15,32,36,0.15);
}

.cart-drawer.is-open {
    transform: translateX(0);
}

/* Drawer Head */
.drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.drawer__head h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
}

.drawer__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--muted);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.drawer__close:hover {
    background: var(--border);
    transform: rotate(90deg);
}

/* Drawer Body */
.drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

/* Cart Line */
.cart-line {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.cart-line__img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--muted);
}

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

.cart-line__info {
    flex: 1;
    min-width: 0;
}

.cart-line__name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0 0 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-line__meta {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    margin: 0 0 0.5rem;
}

.cart-line__bot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.cart-line__qty {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1.5px solid var(--border);
    background: var(--card);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    border-color: var(--aqua);
    color: var(--aqua);
}

.qty-value {
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.cart-line__price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--aqua-deep);
}

.cart-line__remove {
    font-size: 0.75rem;
    color: var(--sunset);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-top: 0.4rem;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cart-line__remove:hover {
    color: var(--sunset-soft);
}

/* Empty State */
.drawer__empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--muted-foreground);
}

.drawer__empty svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    opacity: 0.4;
}

.drawer__empty h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--foreground);
    margin: 0 0 0.25rem;
}

.drawer__empty p {
    font-size: 0.85rem;
    margin: 0;
}

/* Drawer Foot */
.drawer__foot {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--background);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.total-row span {
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

.total-row strong {
    font-size: 1.25rem;
    color: var(--foreground);
    font-weight: 700;
}

.btn--block {
    width: 100%;
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--foreground);
    color: #fff;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-luxe);
}

.toast.is-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast svg {
    width: 18px;
    height: 18px;
    color: var(--aqua-light);
}

/* Add Button Loading State */
.add-btn.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

.add-btn.is-loading svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 480px) {
    .cart-drawer {
        max-width: 100%;
    }
}





































/* ═══════════════════════════════════════════════════════
   CART & CHECKOUT PAGES
   ═══════════════════════════════════════════════════════ */

/* Page Hero */
.page-hero {
    padding: 4rem 0 2rem;
    text-align: center;
    background: var(--background);
}

.page-hero--small {
    padding: 3rem 0 1.5rem;
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
    margin: 0 0 0.5rem;
}

.page-hero__subtitle {
    color: var(--muted-foreground);
    font-size: 1rem;
}

/* Cart Layout */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.cart-item:hover {
    box-shadow: var(--shadow-soft);
}

.cart-item__media {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--muted);
}

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

.cart-item__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.cart-item__name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
}

.cart-item__name a:hover {
    color: var(--aqua);
}

.cart-item__category {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-item__price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--aqua-deep);
    white-space: nowrap;
}

.cart-item__bottom {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.cart-item__qty form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-input {
    width: 50px;
    text-align: center;
    padding: 0.4rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--card);
}

.cart-item__total {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--foreground);
    margin-left: auto;
}

.cart-item__remove {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--muted);
    border: none;
    cursor: pointer;
    color: var(--sunset);
    transition: var(--transition);
}

.cart-item__remove:hover {
    background: var(--sunset);
    color: #fff;
}

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

/* Cart Sidebar */
.cart-sidebar {
    position: sticky;
    top: 100px;
}

.cart-summary {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 1.5rem;
}

.cart-summary__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 0 0 1.25rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--muted-foreground);
}

.summary-line--total {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--foreground);
    border-top: 2px solid var(--border);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.summary-line--free {
    color: var(--aqua);
    font-weight: 600;
}

.cart-clear-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    border: 1.5px dashed var(--border);
    border-radius: var(--radius-sm);
    color: var(--muted-foreground);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.cart-clear-btn:hover {
    border-color: var(--sunset);
    color: var(--sunset);
}

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

/* Checkout Layout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: start;
}

/* Checkout Box */
.checkout-box {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.checkout-box__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

/* Form Elements */
.form-row {
    margin-bottom: 1rem;
}

.form-row--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--foreground);
}

.form-input {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-sans);
    background: var(--card);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--aqua);
    box-shadow: 0 0 0 3px rgba(26, 174, 196, 0.1);
}

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

.form-input.is-error {
    border-color: var(--sunset);
}

.form-error {
    font-size: 0.8rem;
    color: var(--sunset);
}

/* Checkout Summary */
.checkout-summary {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.checkout-summary__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin: 0 0 1.25rem;
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkout-item__img {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--muted);
    flex-shrink: 0;
}

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

.checkout-item__qty {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--aqua);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-item__info {
    flex: 1;
    min-width: 0;
}

.checkout-item__name {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.checkout-item__variant {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin: 0.1rem 0 0;
}

.checkout-item__price {
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.summary-divider {
    height: 1px;
    background: var(--border);
    margin: 1rem 0;
}

.checkout-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--muted-foreground);
}

.checkout-security svg {
    width: 16px;
    height: 16px;
}

/* Buttons */
.btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn--block {
    width: 100%;
    margin-bottom: 0.75rem;
    text-align: center;
}

/* Empty State */
.empty-state--large {
    padding: 6rem 2rem;
}

/* Responsive */
@media (max-width: 900px) {
    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar,
    .checkout-sidebar {
        position: static;
        order: -1;
    }
    
    .cart-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cart-item__media {
        width: 100%;
        height: 200px;
    }
    
    .form-row--2 {
        grid-template-columns: 1fr;
    }
}











/* ========= COLOR SELECTOR ========= */
.color-selector {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.color-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.color-opt:hover {
    border-color: #e5e7eb;
}

.color-opt--active {
    border-color: #000;
    background: #f9fafb;
}

.color-opt input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.color-opt__swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    display: block;
}

.color-opt--active .color-opt__swatch {
    border-color: #000;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #000;
}

.color-opt__name {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: capitalize;
}

/* ========= SIZE SELECTOR ========= */
.size-selector {
    display: flex;
    flex-wrap: wrap;
}

.size-opt {
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.2s;
    min-width: 60px;
    text-align: center;
}

.size-opt:hover {
    border-color: #9ca3af;
}

.size-opt--active {
    border-color: #000;
    background: #000;
    color: #fff;
}

.size-opt input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.size-opt__label {
    font-weight: 600;
    font-size: 0.875rem;
}

/* ========= VARIANT INFO ========= */
.variant-info {
    background: #f9fafb;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.variant-info__text {
    margin: 0;
    font-size: 0.875rem;
    color: #374151;
}

/* ========= BADGE VARIANTS ========= */
.badge--success {
    background: #dcfce7;
    color: #166534;
}

.badge--danger {
    background: #fee2e2;
    color: #991b1b;
}

/* ========= GALLERY THUMBS ========= */
.gallery__thumb {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: border-color 0.2s;
}

.gallery__thumb:hover,
.gallery__thumb--active {
    border-color: #000;
}






















































/* ═══════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE STYLES
   ═══════════════════════════════════════════════════════ */

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 1rem 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.breadcrumbs__item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs__item a:hover {
    color: #0d6efd;
}

.breadcrumbs__item:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: #adb5bd;
}

.breadcrumbs__item--current {
    color: #212529;
    font-weight: 500;
}

/* ===== PRODUCT DETAIL GRID ===== */
.product-detail {
    padding: 2rem 0;
}

.product-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 991px) {
    .product-detail__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== GALLERY ===== */
.product-gallery {
    position: sticky;
    top: 2rem;
}

@media (max-width: 991px) {
    .product-gallery {
        position: relative;
        top: 0;
    }
}

.gallery-main {
    position: relative;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.gallery-main__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-main__slide.is-active {
    opacity: 1;
}

.gallery-main__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.2s;
    z-index: 2;
}

.gallery-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav--prev { left: 1rem; }
.gallery-nav--next { right: 1rem; }

.gallery-nav svg {
    width: 20px;
    height: 20px;
    color: #333;
}

.gallery-thumbs {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    background: none;
    transition: border-color 0.2s;
}

.gallery-thumb.is-active {
    border-color: #0d6efd;
}

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

/* ===== PRODUCT INFO ===== */
.product-info {
    padding: 0.5rem 0;
}

.product-info__category {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: #e7f1ff;
    color: #0d6efd;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.product-info__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (max-width: 576px) {
    .product-info__title {
        font-size: 1.5rem;
    }
}

.product-info__price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.price-current {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0d6efd;
}

.price-original {
    font-size: 1.1rem;
    color: #6c757d;
    text-decoration: line-through;
}

.product-info__desc {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* ===== FEATURES ===== */
.product-info__features {
    margin-bottom: 1.5rem;
}

.features-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #495057;
    font-size: 0.95rem;
}

.features-item svg {
    width: 20px;
    height: 20px;
    color: #198754;
    flex-shrink: 0;
}

/* ===== VARIANTS ===== */
.product-info__variants {
    margin-bottom: 1.5rem;
}

.variants-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
}

.variants-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.variant-option {
    cursor: pointer;
}

.variant-option input {
    position: absolute;
    opacity: 0;
}

.variant-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    transition: all 0.2s;
    background: #fff;
}

.variant-option input:checked + .variant-card {
    border-color: #0d6efd;
    background: #e7f1ff;
}

.variant-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #dee2e6;
}

.variant-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.variant-price {
    font-weight: 600;
    color: #0d6efd;
    font-size: 0.85rem;
}

.stock-status {
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

.in-stock { color: #198754; }
.out-of-stock { color: #dc3545; }

/* ===== ACTIONS ===== */
.product-info__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 44px;
    border: none;
    background: #f8f9fa;
    cursor: pointer;
    font-size: 1.2rem;
    color: #495057;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #e9ecef;
}

.qty-selector input {
    width: 50px;
    height: 44px;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    -moz-appearance: textfield;
}

.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-to-cart-form {
    flex: 1;
    min-width: 200px;
}

.btn--add-cart {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
}

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

.btn-price {
    margin-left: auto;
    opacity: 0.9;
    font-weight: 500;
}

/* ===== TRUST BADGES ===== */
.product-info__trust {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.875rem;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: #198754;
}
















/* ═══════════════════════════════════════════════════════
   PACKAGE DETAIL PAGE STYLES
   ═══════════════════════════════════════════════════════ */

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 1rem 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.breadcrumbs__item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs__item a:hover {
    color: #0d6efd;
}

.breadcrumbs__item:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: #adb5bd;
}

.breadcrumbs__item--current {
    color: #212529;
    font-weight: 500;
}

/* ===== PACKAGE HERO ===== */
.package-hero {
    padding: 2rem 0;
}

.package-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 991px) {
    .package-hero__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== PACKAGE IMAGE ===== */
.package-hero__image {
    position: relative;
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.package-hero__badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #0d6efd;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.package-hero__badge svg {
    width: 18px;
    height: 18px;
}

/* ===== PACKAGE INFO ===== */
.package-hero__info {
    padding: 0.5rem 0;
}

.package-hero__label {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: #e7f1ff;
    color: #0d6efd;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.package-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (max-width: 576px) {
    .package-hero__title {
        font-size: 1.75rem;
    }
}

.package-hero__desc {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* ===== PACKAGE INCLUDES ===== */
.package-includes {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.package-includes__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.package-includes__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.package-includes__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #495057;
    font-size: 0.95rem;
}

.package-includes__item svg {
    width: 20px;
    height: 20px;
    color: #198754;
    flex-shrink: 0;
}

/* ===== PACKAGE PRODUCTS (items in bundle) ===== */
.package-products {
    margin-bottom: 2rem;
}

.package-products__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.package-products__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.package-product-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
}

.package-product-item:hover {
    border-color: #0d6efd;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.1);
}

.package-product-item__img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.package-product-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-product-item__info {
    flex: 1;
}

.package-product-item__name {
    display: block;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.package-product-item__variant {
    font-size: 0.85rem;
    color: #6c757d;
}

/* ===== PRICE & CTA ===== */
.package-hero__footer {
    padding-top: 1.5rem;
    border-top: 2px solid #e9ecef;
}

.package-hero__price {
    margin-bottom: 1.5rem;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.price-current {
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
}

.price-original {
    display: block;
    font-size: 1.1rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-top: 0.25rem;
}

.price-save {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.35rem 0.75rem;
    background: #d1e7dd;
    color: #0f5132;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
}

.add-to-cart-form {
    max-width: 400px;
}

.btn--add-cart {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn--add-cart svg {
    width: 22px;
    height: 22px;
}

























/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn--primary {
 background: #ffd814;
    color: #0f1111;
}

.btn--primary:hover {

     box-shadow: var(--shadow-luxe);
     border-radius: 10px;
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}






/* ============================
     SECTION 1: B2B / Wholesale
     ============================ */
     .b2b-section {
        background: var(--foreground);
        padding: 80px 24px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
    
      .b2b-section .label {
        font-family: var(--font-sans);
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--sand);
        margin-bottom: 20px;
      }
    
      .b2b-section h2 {
        font-family: var(--font-display);
        font-size: clamp(2rem, 5vw, 3.2rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 20px;
        line-height: 1.1;
      }
    
      .b2b-section .desc {
        font-family: var(--font-sans);
        font-size: clamp(0.95rem, 2vw, 1.15rem);
        color: var(--muted-foreground);
        max-width: 680px;
        margin: 0 auto 36px auto;
        line-height: 1.65;
      }
    
      .b2b-section .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--sunset-soft);
        color: #fff;
        font-family: var(--font-sans);
        font-size: 1rem;
        font-weight: 600;
        padding: 16px 36px;
        border-radius: 999px;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        box-shadow: 0 8px 24px rgba(252, 112, 22, 0.35);
      }
    
      .b2b-section .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(252, 112, 22, 0.45);
      }
    
      .b2b-section .cta-btn svg {
        width: 18px;
        height: 18px;
        transition: transform 0.25s ease;
      }
    
      .b2b-section .cta-btn:hover svg {
        transform: translateX(3px);
      }
    
      /* ============================
         SECTION 2: Newsletter / 15% Off
         ============================ */
      .newsletter-section {
        background: var(--gradient-sunset);
        padding: 80px 24px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
    
      .newsletter-section h2 {
        font-family: var(--font-display);
        font-size: clamp(2rem, 5vw, 3.2rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 20px;
        line-height: 1.1;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
      }
    
      .newsletter-section .desc {
        font-family: var(--font-sans);
        font-size: clamp(0.95rem, 2vw, 1.15rem);
        color: rgba(255,255,255,0.85);
        max-width: 560px;
        margin: 0 auto 36px auto;
        line-height: 1.65;
      }
    
      .newsletter-form {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        align-items: center;
        max-width: 480px;
        margin: 0 auto;
      }
    
      .newsletter-form input {
        flex: 1 1 220px;
        min-width: 220px;
        background: rgba(255,255,255,0.92);
        border: 2px solid transparent;
        border-radius: 999px;
        padding: 16px 24px;
        font-family: var(--font-sans);
        font-size: 1rem;
        color: var(--foreground);
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
      }
    
      .newsletter-form input::placeholder {
        color: var(--muted-foreground);
      }
    
      .newsletter-form input:focus {
        border-color: rgba(255,255,255,0.6);
        box-shadow: 0 0 0 4px rgba(255,255,255,0.15);
      }
    
      .newsletter-form button {
        flex: 0 0 auto;
        background: var(--foreground);
        color: #fff;
        font-family: var(--font-sans);
        font-size: 1rem;
        font-weight: 600;
        padding: 16px 28px;
        border-radius: 999px;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        box-shadow: 0 8px 24px rgba(15, 32, 36, 0.25);
      }
    
      .newsletter-form button:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(15, 32, 36, 0.35);
      }
    
      .newsletter-section .fine-print {
        font-family: var(--font-sans);
        font-size: 0.8rem;
        color: rgba(255,255,255,0.6);
        margin-top: 18px;
      }
    
      /* Subtle decorative shapes */
      .newsletter-section::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 700px;
        height: 700px;
        background: rgba(255,255,255,0.08);
        border-radius: 50%;
        pointer-events: none;
      }
    
      .newsletter-section::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -40px;
        width: 740px;
        height: 740px;
        background: rgba(255,255,255,0.06);
        border-radius: 50%;
        pointer-events: none;
      }







































      /* ===== COLOR SWATCHES ===== */
.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.color-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.color-swatch:hover {
    transform: translateY(-2px);
}

.color-swatch input {
    display: none;
}

.color-swatch__img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.color-swatch__fallback {
    width: 100%;
    height: 100%;
}

.color-swatch__name {
    margin-top: 6px;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.color-swatch.active .color-swatch__img {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.2);
}

/* ===== LENGTH SELECTOR ===== */
.length-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.length-opt {
    cursor: pointer;
}

.length-opt input {
    display: none;
}

.length-opt__label {
    display: block;
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.length-opt:hover .length-opt__label {
    border-color: #007bff;
}

.length-opt.active .length-opt__label {
    border-color: #007bff;
    background: #007bff;
    color: white;
}

/* ===== PRICE DISPLAY ===== */
.pdp__price-wrapper {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.pdp__price {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pdp__price-original {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.pdp__price-current {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.pdp__price-discount {
    background: #dc3545;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pdp__price-stock {
    margin-top: 10px;
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.stock-badge.in-stock {
    background: #d4edda;
    color: #155724;
}

.stock-badge.out-stock {
    background: #f8d7da;
    color: #721c24;
}

/* ===== VARIANT SUMMARY ===== */
.variant-summary {
    background: #f0f7ff;
    padding: 16px 20px;
    border-radius: 10px;
    margin: 16px 0;
    border-left: 4px solid #007bff;
}

.variant-summary__item {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}

.variant-summary__item:last-child {
    margin-bottom: 0;
}

.variant-summary__label {
    font-weight: 600;
    color: #555;
    min-width: 70px;
}

.variant-summary__value {
    color: #1a1a1a;
    font-weight: 500;
}








/* ===== PACKAGE CARD ===== */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.package-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.package-card__img {
    height: 200px;
    overflow: hidden;
}

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

.package-card__body {
    padding: 24px;
}

.package-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.package-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.package-card__features li {
    padding: 4px 0;
    color: #555;
    font-size: 14px;
}

.package-card__items-count {
    display: inline-block;
    background: #e9ecef;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
    margin-bottom: 16px;
}

.package-card__price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.package-card__price-original {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.package-card__price {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.package-card__badge {
    background: #28a745;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ===== PRODUCT DIVIDER ===== */
.product-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
    margin: 48px 0;
}






























/* ═══════════════════════════════════════════════════════
   SHOP — Ultra Professional Compact
   ═══════════════════════════════════════════════════════ */

/* ── Hero ── */
.shop-hero {
    padding: 2rem 0 0.75rem;
    text-align: center;
    background: linear-gradient(180deg, var(--aqua-light) 0%, var(--background) 100%);
}
.shop-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--foreground);
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}
.shop-hero__subtitle {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    color: var(--muted-foreground);
}

/* ── Filter Bar ── */
.filter-bar {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}
.filter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.filter-nav {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}
.filter-pill {
    padding: 0.4rem 0.875rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: all 0.2s ease;
    background: var(--card);
}
.filter-pill:hover {
    border-color: var(--aqua);
    color: var(--aqua);
    transform: translateY(-1px);
}
.filter-pill.is-active {
    background: var(--gradient-ocean);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(26,174,196,0.35);
}
.filter-sort .sort-select {
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    background: var(--card);
    color: var(--foreground);
    cursor: pointer;
}

/* ── Section Meta ── */
.section-meta {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0 0.25rem;
}
.meta-label {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--foreground);
}
.meta-count {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    color: var(--muted-foreground);
}

/* ── Grid ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    padding: 0 0.25rem;
}
.product-grid--packages {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

/* ── Card ── */
.product-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15,32,36,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(26,174,196,0.2);
}

/* ── Gallery — cover mode ── */
.card-gallery {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, var(--muted) 0%, #f8f8f8 100%);
    overflow: hidden;
}

.gallery-link {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-img {
    position: absolute;
    inset: 0;
    transition: opacity 0.4s ease;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-img--hover {
    opacity: 0;
}

.product-card:hover .gallery-img--primary {
    opacity: 0;
}

.product-card:hover .gallery-img--hover {
    opacity: 1;
}

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


/* Placeholder */
.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--muted) 0%, var(--border) 100%);
}
.img-placeholder--light {
    background: linear-gradient(135deg, var(--background) 0%, var(--muted) 100%);
}
.img-placeholder--package {
    background: linear-gradient(135deg, rgba(26,174,196,0.1) 0%, var(--sand) 100%);
    color: var(--aqua-deep);
}

/* Badges */
.card-badges {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    z-index: 2;
}
.badge {
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.badge--type {
    background: rgba(255,255,255,0.95);
    color: var(--foreground);
}
.badge--sale {
    background: var(--sunset);
    color: #fff;
}
.badge--star {
    background: var(--sand);
    color: var(--aqua-deep);
}
.badge--bundle {
    background: var(--gradient-ocean);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.15rem;
}
.badge--count {
    background: rgba(255,255,255,0.92);
    color: var(--foreground);
}
.badge--inline {
    display: inline-flex;
    margin-left: 0.3rem;
    vertical-align: middle;
}

/* Quick Add */
.card-action {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    background: linear-gradient(to top, rgba(15,32,36,0.5), transparent);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
    z-index: 3;
}
.product-card:hover .card-action {
    opacity: 1;
    transform: translateY(0);
}

/* ── Card Body ── */
.card-body {
    padding: 0.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.card-header {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.card-type {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--aqua);
}
.card-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--foreground);
}
.card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.card-title a:hover {
    color: var(--aqua);
}
.card-desc {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    color: var(--muted-foreground);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tags */
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}
.tag {
    padding: 0.12rem 0.4rem;
    border-radius: var(--radius);
    background: var(--muted);
    font-family: var(--font-sans);
    font-size: 0.62rem;
    color: var(--muted-foreground);
    font-weight: 500;
}
.tag--more {
    background: var(--gradient-ocean);
    color: #fff;
}

/* Bundle Items */
.bundle-items {
    margin-top: 0.15rem;
}
.bundle-label {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
    display: block;
}
.bundle-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}
.bundle-item {
    padding: 0.12rem 0.4rem;
    border-radius: var(--radius);
    background: rgba(26,174,196,0.08);
    font-family: var(--font-sans);
    font-size: 0.62rem;
    color: var(--aqua-deep);
    font-weight: 500;
}
.bundle-item--more {
    background: var(--gradient-ocean);
    color: #fff;
}

/* ── Footer / Price ── */
.card-footer {
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.price-group {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}
.price-main {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--foreground);
}
.price-old {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
}
.price-note {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    color: var(--aqua);
    font-weight: 600;
    margin-left: auto;
}

/* ── Quantity + Add to Cart Row ── */
.cart-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Quantity Selector */
.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 30px;
    margin-top: -13px;
    background: var(--card);
}
.qty-btn {
    width: 24px;
    height: 100%;
    border: none;
    background: var(--muted);
    color: var(--foreground);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-btn:hover {
    background: var(--border);
    color: var(--aqua);
}
.qty-input {
    width: 32px;
    height: 100%;
    border: none;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--foreground);
    background: transparent;
    -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Add Button */
.btn-add {
    height: 28px;
    padding: 0 0.75rem;
    border-radius: var(--radius);
    border: none;
    background: #ffd814;
    color: #111;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-add:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 216, 20, 0.4);
}

.btn-add--bundle {
    background: #ffd814;
}

.btn-add--bundle:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 216, 20, 0.4);
}

/* ── Empty State ── */
.empty-section {
    padding: 2.5rem 0;
}
.empty-box {
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
}
.empty-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    color: var(--muted-foreground);
}
.empty-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}
.empty-text {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--muted-foreground);
    margin-bottom: 0.875rem;
}

/* ── Pagination ── */
.pagination-wrap {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
}

/* ── Section Header (Packages) ── */
.section-header {
    text-align: center;
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.2rem;
}
.section-subtitle {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--muted-foreground);
}

/* ── Spinner & Animations ── */
.spin {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.pop {
    animation: pop 0.25s ease;
}
@keyframes pop {
    50% { transform: scale(1.2); }
}

/* ── Grid Section Spacing ── */
.grid-section {
    padding: 0.75rem 0 1.5rem;
}
.grid-section--packages {
    background: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
    padding: 1.25rem 0 2rem;
    margin-top: 0.25rem;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .card-gallery {
        height: 150px;
    }
    .filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.2rem;
    }
    .cart-row {
        flex-wrap: wrap;
    }
    .qty-selector {
        height: 32px;
    }
    .btn-add {
        height: 32px;
        flex: 1;
    }
}

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


























/* ═══════════════════════════════════════
   BADGES
   ═══════════════════════════════════════ */

.product-info__header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.product-info__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge--package {
    background: #8b5cf6;
    color: white;
}

.badge--discount {
    background: #dc2626;
    color: white;
}

.badge--featured {
    background: #f59e0b;
    color: white;
}

/* ═══════════════════════════════════════
   PACKAGE ITEMS
   ═══════════════════════════════════════ */

.product-info__package {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin: 1rem 0;
}

.package-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 1rem;
}

.package-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.package-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: white;
    border-radius: 0.5rem;
}

.package-item__img {
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: 0.375rem;
    flex-shrink: 0;
}

.package-item__info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.package-item__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
}

.package-item__variant {
    font-size: 0.75rem;
    color: #64748b;
}

.package-item__qty {
    font-size: 0.75rem;
    color: #3b82f6;
    font-weight: 500;
}

/* ═══════════════════════════════════════
   VARIANT IMPROVEMENTS
   ═══════════════════════════════════════ */

.variant-option.is-selected .variant-card {
    border-color: #3b82f6;
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.variant-original {
    font-size: 0.75rem;
    color: #94a3b8;
    text-decoration: line-through;
}

/* ═══════════════════════════════════════
   RESPONSIVE FIXES
   ═══════════════════════════════════════ */

@media (max-width: 640px) {
    .product-info__header {
        gap: 0.375rem;
    }
    
    .product-info__badge {
        font-size: 0.625rem;
        padding: 0.2rem 0.5rem;
    }
    
    .package-item__img {
        width: 2.5rem;
        height: 2.5rem;
    }
}








/* ═══════════════════════════════════════════════════════════════
   ACCESSORIES SECTION — COASTAL LUXE REFINED (STACKED LAYOUT)
   ═══════════════════════════════════════════════════════════════ */

/* ── Section Base ────────────────────────────────────────────── */
.section--soft {
    background: var(--background);
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.section__head--center {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 500;
    color: var(--foreground);
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

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

@media (min-width: 768px) {
    .acc-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

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

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

/* ── Card ────────────────────────────────────────────────────── */
.acc-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    opacity: 0;
    animation: cardReveal 0.5s ease forwards;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.acc-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
    border-color: var(--sand);
}

/* ── Discount Badge ──────────────────────────────────────────── */
.acc-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--gradient-sunset);
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 700;
    z-index: 10;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 6px rgba(242, 107, 94, 0.3);
}

/* ── Media (No Hover Swap) ──────────────────────────────────── */
.acc-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--muted);
    flex-shrink: 0;
}

.acc-card__link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.acc-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

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

.acc-card__img--secondary {
    display: none;
}

/* ── Body ────────────────────────────────────────────────────── */
.acc-card__body {
    padding: 0.875rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 0;
}

.acc-card__name {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.35;
    word-break: break-word;
    overflow-wrap: break-word;
}

.acc-card__name a {
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

.acc-card__name a:hover {
    color: var(--aqua-deep);
}

.acc-card__desc {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* ── Price (Stacked Above Cart) ─────────────────────────────── */
.acc-card__price-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.2;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.acc-card__price-original {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
    text-decoration-color: var(--sunset-soft);
    text-decoration-thickness: 1px;
    white-space: nowrap;
}

.acc-card__price {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    white-space: nowrap;
}
/* ============================================================
   PDP — PRODUCT DETAIL PANEL
   ============================================================ */

.pdp { 
    max-width: 480px; 
    margin: 0 auto; 
    padding: 1.5rem; 
    border: 1px solid var(--border); 
    border-radius: 12px; 
    background: var(--card);
}





















/* ============================================================
   FOCUS & ACCESSIBILITY
   ============================================================ */

.btn--add-cart:focus-visible,
.btn--buy-now:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,216,20,0.4);
}

.btn--buy-now:focus-visible {
    box-shadow: 0 0 0 3px rgba(255,164,28,0.4);
}

/* ============================================================
   LOADING STATE
   ============================================================ */

.btn--loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn--loading::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: btn-spin 0.8s linear infinite;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}







/* ============================================
   CART ITEM ACTIONS - Inline Layout
   ============================================ */

.cart-item__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}

/* --- Quantity Control --- */
.qty-control {
    display: flex;
    align-items: center;
}

.qty-form {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: #f9fafb;
    color: #374151;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.qty-btn:hover:not(:disabled) {
    background: #f3f4f6;
}

.qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.qty-value {
    min-width: 40px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    padding: 0 8px;
}

/* --- Subtotal --- */
.cart-item__subtotal {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    min-width: 100px;
    text-align: center;
}

/* --- Remove Button --- */
.cart-item__remove {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    padding: 0;
}

.cart-item__remove:hover {
    background: #fee2e2;
    color: #ef4444;
}

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

/* ============================================
   RESPONSIVE (Mobile)
   ============================================ */
@media (max-width: 640px) {
    .cart-item__actions {
        gap: 12px;
    }
    
    .cart-item__subtotal {
        font-size: 14px;
        min-width: 80px;
    }
    
    .qty-btn {
        width: 32px;
        height: 32px;
    }
    
    .qty-value {
        min-width: 32px;
        font-size: 14px;
    }
}
















    /* ============================================================
       05. FAQ SECTION
       ============================================================ */
    .faq {
      background: var(--background);
      padding: 5rem 2rem;
      position: relative;
      overflow: hidden;
    }

    .faq::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(26,174,196,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .faq::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(242,107,94,0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .faq__inner {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

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

    .faq__title {
      font-size: clamp(1.75rem, 4vw, 2.75rem);
      font-weight: 700;
      color: var(--foreground);
      margin-bottom: 0.75rem;
    }

    .faq__subtitle {
      font-size: 1rem;
      color: var(--muted-foreground);
      max-width: 500px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .faq__list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .faq__item {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1.25rem;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq__item:hover {
      border-color: var(--aqua-light);
      box-shadow: var(--shadow-soft);
    }

    .faq__item.active {
      border-color: var(--aqua-light);
      box-shadow: 0 15px 50px -15px rgba(19,88,110,0.12);
    }

    .faq__question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.4rem 1.75rem;
      cursor: pointer;
      width: 100%;
      text-align: left;
      transition: background 0.3s ease;
    }

    .faq__question:hover {
      background: rgba(157,227,236,0.04);
    }

    .faq__question-text {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--foreground);
      line-height: 1.4;
    }

    .faq__toggle {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(26,174,196,0.08) 0%, rgba(19,88,110,0.08) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq__toggle svg {
      width: 18px;
      height: 18px;
      color: var(--aqua);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq__item.active .faq__toggle {
      background: var(--gradient-ocean);
    }

    .faq__item.active .faq__toggle svg {
      color: #fff;
      transform: rotate(180deg);
    }

    .faq__answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    }

    .faq__item.active .faq__answer {
      max-height: 300px;
    }

    .faq__answer-inner {
      padding: 0 1.75rem 1.5rem;
      color: var(--muted-foreground);
      font-size: 0.9375rem;
      line-height: 1.75;
    }

    .faq__answer-inner p {
      margin: 0;
    }

    .faq__answer-inner strong {
      color: var(--foreground);
      font-weight: 600;
    }

    .faq__divider {
      width: 40px;
      height: 3px;
      background: var(--gradient-ocean);
      border-radius: 100px;
      margin: 0 auto 1rem;
      opacity: 0.5;
    }























/* ═══════════════════════════════════════════════════════════════════════
   PRODUCT PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════

   Table of Contents:
   ───────────────────
   1. Product Tabs
   2. Section Headers
   3. Products Grid
   4. Product Card
      4.1 Card Layout & Equal Heights
      4.2 Gallery & Image
      4.3 Badges & Discounts
      4.4 Info & Title
      4.5 Footer & Pricing
   5. Reviews
   6. Responsive Design
   ═══════════════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════════════
   1. PRODUCT TABS
   ═══════════════════════════════════════════════════════════════════════ */

.product-tabs {
    padding: 3rem 0;
    background: var(--card);
}

.tabs-nav {
    display: flex;
    gap: 0.25rem;
    border-bottom: 2px solid var(--border);
    margin-bottom: 2rem;
}

.tab-btn {
    position: relative;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: var(--muted-foreground);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--aqua);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn:hover {
    color: var(--foreground);
}

.tab-btn.is-active {
    color: var(--aqua);
}

.tab-btn.is-active::after {
    transform: scaleX(1);
}

/* Tab Panels */
.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-panel.is-active {
    display: block;
}

.tab-panel__content {
    color: var(--foreground);
    line-height: 1.7;
    font-family: var(--font-sans);
}

.tab-panel__content.prose p {
    margin-bottom: 1rem;
}

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


/* ═══════════════════════════════════════════════════════════════════════
   2. SECTION HEADERS
   ═══════════════════════════════════════════════════════════════════════ */

.section-header-related {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Title on the RIGHT, link on the LEFT */
.section-header-related--with-link {
    flex-direction: row-reverse;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
    line-height: 1.3;
}

/* "View All" link - positioned on the LEFT */
.section-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--aqua);
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.section-link:hover {
    color: var(--aqua-deep);
    transform: translateX(-3px);
}


/* ═══════════════════════════════════════════════════════════════════════
   3. PRODUCTS GRID
   ═══════════════════════════════════════════════════════════════════════ */

.related-section {
    padding: 3rem 0;
    background: var(--background);
}

.products-grid--compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}


/* ═══════════════════════════════════════════════════════════════════════
   4. PRODUCT CARD
   ═══════════════════════════════════════════════════════════════════════ */

/* ── 4.1 Card Layout & Equal Heights ── */
.product-card {
    position: relative;
    background: var(--card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* Flexbox for equal heights */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-luxe);
}

.product-card:active {
    transform: translateY(-3px);
}

/* ── 4.2 Gallery & Image ── */
.product-card__gallery {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--muted);
}

.product-card__link {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card__img {
    position: absolute;
    inset: 0;
}

.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* ── 4.3 Badges & Discounts ── */
.product-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    background: var(--aqua);
    color: var(--card);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(26, 174, 196, 0.3);
}

.product-card__badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.product-card__discount {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.75rem;
    background: var(--sunset);
    color: var(--card);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(242, 107, 94, 0.3);
}

/* ── 4.4 Info & Title ── */
.product-card__info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    gap: 0.5rem;
}

.product-card__name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.45;
    color: var(--foreground);

    /* Consistent 2-line height */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.9em;
}

.product-card__name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-card__name a:hover {
    color: var(--aqua);
}

/* ── 4.5 Footer & Pricing ── */
.product-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.price-current {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--aqua-deep);
    letter-spacing: -0.01em;
}

.price-original {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
    font-weight: 500;
}


/* ═══════════════════════════════════════════════════════════════════════
   5. REVIEWS
   ═══════════════════════════════════════════════════════════════════════ */

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    padding: 1.5rem;
    background: var(--muted);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.reviewer-info strong {
    color: var(--foreground);
    font-weight: 600;
    font-family: var(--font-sans);
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars .star {
    width: 18px;
    height: 18px;
    fill: var(--border);
    transition: fill 0.2s ease;
}

.review-stars .star.filled {
    fill: var(--sunset-soft);
    filter: drop-shadow(0 1px 2px rgba(252, 112, 22, 0.3));
}

.review-date {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.review-text {
    color: var(--foreground);
    line-height: 1.7;
    margin: 0;
    font-family: var(--font-sans);
}


/* ═══════════════════════════════════════════════════════════════════════
   6. RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════════════ */

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

    .section-title {
        font-size: 1.5rem;
    }

    .product-card__gallery {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 576px) {
    .products-grid--compact {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-header-related {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .section-header-related--with-link {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .section-link {
        font-size: 0.9rem;
    }

    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .product-card__info {
        padding: 1rem;
    }

    .review-header {
        flex-direction: column;
        gap: 0.5rem;
    }
}