
/* ===== SHARED VARIABLES ===== */
:root {
    --color-bg: #FAFAF8;
    --color-bg-warm: #F5F3EF;
    --color-bg-dark: #1A1A1A;
    --color-white: #FFFFFF;
    --color-text: #1A1A1A;
    --color-text-light: #FAFAF8;
    --color-text-muted: #6B6B6B;
    --color-border: #E8E5DE;
    --color-accent: #7C6A56;
    --color-green: #16A34A;
    --color-gold: #FBBF24;
    --font-display: 'Fraunces', serif;
    --font-body: 'DM Sans', sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: clip; }
body { font-family: var(--font-body); background: var(--color-bg); color: var(--color-text); -webkit-font-smoothing: antialiased; overflow-x: clip; }
img { max-width: 100%; display: block; }

/* ===== MEGAMENU ===== */
.mega-panel {
            display: none; position: absolute; top: 100%; left: 0; right: 0;
            background: var(--color-white); border-bottom: 1px solid var(--color-border);
            box-shadow: 0 16px 40px rgba(0,0,0,0.08); z-index: 999;
        }
        .mega-panel.open { display: block; }
        .mega-panel-inner {
            max-width: 1400px; margin: 0 auto; padding: var(--spacing-lg);
        }

        .mega-grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--spacing-sm); }
        .mega-grid-8 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--spacing-md); }
        .mega-grid-4-feat { display: grid; grid-template-columns: repeat(4, 1fr) 280px; gap: var(--spacing-lg); }
        .mega-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--spacing-md); }
        .mega-sidebar-layout { display: grid; grid-template-columns: 200px 1fr; gap: var(--spacing-xl); }

        .mega-type-card {
            text-decoration: none; color: var(--color-text); border-radius: var(--radius-sm);
            transition: transform var(--transition);
        }
        .mega-type-card:hover { transform: translateY(-2px); }
        .mega-type-card img {
            width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm);
            margin-bottom: var(--spacing-xs);
        }
        .mega-type-card h4 { font-size: 0.85rem; font-weight: 600; padding: 0 0.25rem; }
        .mega-type-card p { font-size: 0.75rem; color: var(--color-text-muted); padding: 0 0.25rem; }

        .mega-room-card {
            text-align: center; text-decoration: none; color: var(--color-text);
            transition: transform var(--transition);
        }
        .mega-room-card:hover { transform: translateY(-2px); }
        .mega-room-card img {
            width: 100%; aspect-ratio: 1; object-fit: cover;
            border-radius: var(--radius-sm); margin-bottom: var(--spacing-xs);
        }
        .mega-room-card span { font-size: 0.85rem; font-weight: 500; }

        .mega-brand-card {
            text-decoration: none; color: var(--color-text);
            border-radius: var(--radius-sm); overflow: hidden;
            background: var(--color-bg); transition: background var(--transition);
        }
        .mega-brand-card:hover { background: var(--color-bg-warm); }
        .mega-brand-card-img { position: relative; overflow: hidden; }
        .mega-brand-card-img > img {
            width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block;
            transition: transform var(--transition);
        }
        .mega-brand-card:hover .mega-brand-card-img > img { transform: scale(1.03); }
        .mega-brand-card-overlay {
            position: absolute; inset: 0; background: rgba(0,0,0,0.3);
            display: flex; align-items: center; justify-content: center;
        }
        .mega-brand-card-logo {
            max-width: 160px; max-height: 55px; width: auto !important;
            height: auto !important; aspect-ratio: auto !important;
            object-fit: contain; filter: brightness(0) invert(1);
        }
        .mega-brand-card-logo-qs { max-width: 200px; max-height: 110px; filter: none; }
        .mega-brand-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.2rem; padding: 0.75rem 0.75rem 0; }
        .mega-brand-card p { font-size: 0.8rem; color: var(--color-text-muted); padding: 0 0.75rem 0.75rem; }

        .mega-col h3 {
            font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
            letter-spacing: 0.1em; color: var(--color-text-muted); margin-bottom: var(--spacing-sm);
        }
        .mega-col ul { list-style: none; }
        .mega-col li { margin-bottom: 0.5rem; }
        .mega-col a { font-size: 0.9rem; color: var(--color-text); text-decoration: none; transition: color var(--transition); }
        .mega-col a:hover { color: var(--color-accent); }

        .mega-feature { border-radius: var(--radius-sm); overflow: hidden; position: relative; }
        .mega-feature img { width: 100%; height: 100%; object-fit: cover; }
        .mega-feature-overlay {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: var(--spacing-md); background: linear-gradient(transparent, rgba(0,0,0,0.6)); color: white;
        }
        .mega-feature-overlay h4 { font-size: 0.9rem; font-weight: 600; }
        .mega-feature-overlay p { font-size: 0.75rem; opacity: 0.8; }

        .mega-sidebar { border-right: 1px solid var(--color-border); padding-right: var(--spacing-lg); }
        .mega-sidebar a {
            display: flex; align-items: center; justify-content: space-between;
            padding: 0.6rem 0; font-size: 0.9rem; font-weight: 500;
            text-decoration: none; color: var(--color-text); transition: font-size var(--transition), font-weight var(--transition);
        }
        .mega-sidebar a:hover { font-size: 1rem; font-weight: 600; }
        .mega-sidebar a.active { font-size: 1rem; font-weight: 600; }
        .mega-sidebar a svg { width: 14px; height: 14px; stroke: currentColor; }
        .mega-sidebar a:hover svg, .mega-sidebar a.active svg { animation: chevron-nudge 0.7s ease-in-out forwards; }
        @keyframes chevron-nudge {
            0% { transform: translateX(0); }
            50% { transform: translateX(5px); }
            100% { transform: translateX(0); }
        }
        .mega-cards-wrapper { position: relative; }
        .mega-sidebar-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-md); }
        .mega-sidebar-card { text-decoration: none; color: var(--color-text); }
        .mega-sidebar-card img {
            width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius-sm);
            margin-bottom: var(--spacing-xs); transition: transform var(--transition);
        }
        .mega-sidebar-card:hover img { transform: scale(1.03); }
        .mega-view-all {
            grid-column: 1 / -1; display: inline-flex; align-items: center; gap: 0.3rem;
            font-size: 0.85rem; font-weight: 600; color: var(--color-text);
            text-decoration: none; padding-top: 0.25rem;
            transition: font-size var(--transition);
        }
        .mega-view-all:hover { font-size: 0.95rem; }
        .mega-view-all svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }
        .mega-view-all:hover svg { animation: chevron-nudge 0.7s ease-in-out forwards; }
        .mega-sidebar-card h4 { font-size: 0.9rem; font-weight: 600; }
        .mega-sidebar-card p { font-size: 0.75rem; color: var(--color-text-muted); }

        .mega-backdrop {
            display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.15); z-index: 998;
        }
        .mega-backdrop.open { display: block; }

        .search-overlay {
            display: none; position: fixed; inset: 0;
            z-index: 1001; background: rgba(0,0,0,0.15);
        }
        .search-overlay.open { display: block; }
        .search-overlay-inner {
            background: var(--color-white);
            height: 100%; overflow-y: auto;
        }
        .search-input-bar {
            max-width: 1400px; margin: 0 auto;
            padding: var(--spacing-md) var(--spacing-lg);
            display: flex; align-items: center; gap: var(--spacing-sm);
            border-bottom: 1px solid var(--color-border);
        }
        .search-input-icon {
            width: 20px; height: 20px; stroke: var(--color-text-muted); fill: none; flex-shrink: 0;
        }
        .search-input-wrap {
            flex: 1; position: relative; display: flex; align-items: center;
        }
        .search-input {
            width: 100%; border: none; outline: none;
            font-family: var(--font-body); font-size: 1.1rem;
            color: var(--color-text); background: transparent;
            padding: var(--spacing-xs) 0;
        }
        .search-input::placeholder { color: var(--color-text-muted); }
        .search-clear-btn {
            border: none; background: none; cursor: pointer;
            display: none; flex-shrink: 0;
            font-family: var(--font-body); font-size: 0.85rem;
            color: var(--color-text-muted); padding: 4px 0;
            transition: color var(--transition);
        }
        .search-clear-btn:hover { color: var(--color-text); }
        .search-back-btn {
            display: none; /* hidden on desktop */
        }
        .search-close-btn {
            width: 38px; height: 38px; border: none; background: none;
            cursor: pointer; display: flex; align-items: center; justify-content: center;
            border-radius: 50%; color: var(--color-text); position: relative;
            transition: background var(--transition);
        }
        .search-close-btn:hover { background: var(--color-bg); }
        .search-close-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
        .search-close-btn::after {
            content: 'Close'; position: absolute; bottom: -26px; left: 50%;
            transform: translateX(-50%); padding: 3px 8px; border-radius: 6px;
            background: var(--color-text); color: var(--color-white);
            font-size: 0.65rem; font-weight: 500; white-space: nowrap;
            opacity: 0; pointer-events: none; transition: opacity var(--transition);
        }
        .search-close-btn:hover::after { opacity: 1; }
        .search-body {
            max-width: 1400px; margin: 0 auto; padding: var(--spacing-lg);
        }
        .search-section-title {
            font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
            letter-spacing: 0.1em; color: var(--color-text-muted);
            margin-bottom: var(--spacing-sm);
        }
        .search-section { margin-bottom: var(--spacing-lg); }
        .search-section:last-child { margin-bottom: 0; }
        .search-popular-terms { display: flex; flex-wrap: wrap; gap: var(--spacing-xs); }
        .search-popular-term {
            display: inline-block; padding: 0.4rem 1rem; border-radius: 100px;
            border: 1px solid var(--color-border); background: var(--color-bg);
            font-size: 0.85rem; font-family: var(--font-body); color: var(--color-text);
            text-decoration: none; cursor: pointer;
            transition: border-color var(--transition), background var(--transition);
        }
        .search-popular-term:hover { border-color: var(--color-text); background: var(--color-bg-warm); }
        .search-trending-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--spacing-md);
        }
        .search-product-card {
            text-decoration: none; color: var(--color-text);
            transition: transform var(--transition);
        }
        .search-product-card:hover { transform: translateY(-2px); }
        .search-product-card img {
            width: 100%; aspect-ratio: 3/2; object-fit: cover;
            border-radius: var(--radius-sm); margin-bottom: var(--spacing-xs);
            transition: transform var(--transition);
        }
        .search-product-card:hover img { transform: scale(1.03); }
        .search-product-card h4 { font-size: 0.9rem; font-weight: 600; }
        .search-product-card p { font-size: 0.75rem; color: var(--color-text-muted); }

        .search-product-grid {
            display: flex; flex-direction: column; gap: 0;
        }
        .search-product-row {
            display: grid; grid-template-columns: 56px 1fr auto; grid-template-rows: auto auto;
            gap: 1px var(--spacing-sm); align-items: center;
            padding: 0.6rem 0.5rem; border-radius: var(--radius-sm);
            text-decoration: none; color: var(--color-text);
            transition: background var(--transition);
        }
        .search-product-row:hover { background: var(--color-bg); }
        .search-product-row img {
            width: 56px; height: 56px; object-fit: cover;
            border-radius: 8px; grid-row: 1 / 3;
        }
        .search-product-row-info { grid-column: 2 / 4; min-width: 0; }
        .search-product-row-info h4 {
            font-size: 0.85rem; font-weight: 600; margin-bottom: 1px;
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        }
        .search-product-row-info span {
            font-size: 0.75rem; color: var(--color-text-muted);
        }
        .search-product-row-price {
            font-size: 0.85rem; font-weight: 600; white-space: nowrap;
        }
        .search-category-links,
        .search-brand-links {
            display: flex; flex-wrap: wrap; gap: var(--spacing-xs) var(--spacing-md);
        }
        .search-category-link,
        .search-brand-link {
            font-size: 0.9rem; color: var(--color-text); text-decoration: none;
            padding: 0.3rem 0; transition: color var(--transition);
        }
        .search-category-link:hover,
        .search-brand-link:hover { color: var(--color-accent); }
        .search-result-group { margin-bottom: var(--spacing-lg); }
        .search-result-group:last-child { margin-bottom: 0; }
        .search-no-results { text-align: center; padding: var(--spacing-xl) 0; }
        .search-no-results p { font-size: 1rem; color: var(--color-text); margin-bottom: var(--spacing-xs); }
        .search-no-results-hint { font-size: 0.85rem; color: var(--color-text-muted) !important; }
        .search-view-all {
            padding-top: var(--spacing-md); border-top: 1px solid var(--color-border);
            margin-top: var(--spacing-md); text-align: center;
        }
        .search-view-all-btn {
            display: inline-block; padding: 0.75rem 2rem; border-radius: 100px;
            background: var(--color-text); color: var(--color-white);
            font-family: var(--font-body); font-size: 0.875rem; font-weight: 600;
            text-decoration: none; transition: opacity var(--transition);
        }
        .search-view-all-btn:hover { opacity: 0.9; }

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

        .nav1-utility {
            background: var(--color-bg-dark); color: var(--color-text-light);
            font-size: 0.75rem; padding: 0.5rem var(--spacing-lg);
        }
        .nav1-utility-inner {
            max-width: 1400px; margin: 0 auto;
            display: flex; justify-content: space-between; align-items: center;
        }
        .nav1-utility-left { display: flex; gap: var(--spacing-lg); color: rgba(250,250,248,0.6); }
        .nav1-utility-left a { color: rgba(250,250,248,0.6); text-decoration: none; }
        .nav1-utility-left a:hover { color: var(--color-text-light); }
        .nav1-utility-right { display: flex; gap: var(--spacing-md); }
        .nav1-utility-right a { color: rgba(250,250,248,0.6); text-decoration: none; font-weight: 500; }
        .nav1-utility-right a:hover { color: var(--color-text-light); }

        .nav1-bar {
            background: var(--color-white); border-bottom: 1px solid var(--color-border);
            position: relative; z-index: 1000;
        }
        .nav1-inner {
            max-width: 1400px; margin: 0 auto; padding: 0 var(--spacing-lg);
            display: flex; align-items: center; height: 70px;
        }

        .nav2-bar {
            background: var(--color-white); border-bottom: 1px solid var(--color-border);
            position: relative; z-index: 1000;
        }
        .nav2-inner {
            max-width: 1400px; margin: 0 auto; padding: 0 var(--spacing-lg);
            display: flex; align-items: center; height: 64px;
        }
        .nav2-search-btn {
            display: flex; align-items: center; gap: 0.4rem;
            padding: 0.5rem 1rem; border-radius: 100px; border: 1px solid var(--color-border);
            background: var(--color-bg); font-size: 0.8rem; color: var(--color-text-muted);
            cursor: pointer; margin-right: var(--spacing-sm); font-family: var(--font-body);
            transition: border-color var(--transition);
        }
        .nav2-search-btn:hover { border-color: var(--color-text); color: var(--color-text); }
        .nav2-search-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

        .nav3-bar {
            background: var(--color-bg-dark);
            position: relative; z-index: 1000;
        }
        .nav3-inner {
            max-width: 1400px; margin: 0 auto; padding: 0 var(--spacing-lg);
            display: flex; align-items: center; height: 64px;
        }

        .nav5-utility {
            background: #111111;
            font-size: 0.72rem; padding: 0.4rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .nav5-utility-inner {
            max-width: 1400px; margin: 0 auto; padding: 0 var(--spacing-lg);
            display: flex; justify-content: space-between; align-items: center;
        }
        .nav5-utility-left { display: flex; align-items: center; gap: var(--spacing-sm); }
        .nav5-utility-left a,
        .nav5-utility-left span {
            color: rgba(250,250,248,0.55); text-decoration: none; font-weight: 400;
            transition: color var(--transition);
        }
        .nav5-utility-left a:hover { color: var(--color-text-light); }
        .nav5-utility-left svg { width: 12px; height: 12px; stroke: currentColor; fill: none; margin-right: 4px; vertical-align: -1px; }
        .nav5-utility-right { display: flex; gap: var(--spacing-md); }
        .nav5-utility-right a {
            color: rgba(250,250,248,0.55); text-decoration: none; font-weight: 500;
            transition: color var(--transition);
        }
        .nav5-utility-right a:hover { color: var(--color-text-light); }

        .nav6-utility {
            font-size: 0.72rem; padding: 0.45rem var(--spacing-lg);
            border-bottom: 1px solid rgba(255,255,255,0.08);
            transition: background 0.3s ease;
            cursor: pointer;
        }
        .nav6-utility-inner {
            display: flex; justify-content: space-between; align-items: center;
        }
        .nav6-utility-left { display: flex; align-items: center; gap: var(--spacing-md); }
        .nav6-utility-left a,
        .nav6-utility-left span {
            color: rgba(250,250,248,0.6); text-decoration: none; font-weight: 400;
            transition: color var(--transition);
        }
        .nav6-utility-left a:hover { color: var(--color-text-light); }
        .nav6-utility-left svg { width: 12px; height: 12px; stroke: currentColor; fill: none; margin-right: 4px; vertical-align: -1px; }
        .nav6-utility-right { display: flex; gap: var(--spacing-md); align-items: center; }
        .nav6-utility-right a {
            color: rgba(250,250,248,0.6); text-decoration: none; font-weight: 500;
            transition: color var(--transition);
        }
        .nav6-utility-right a:hover { color: var(--color-text-light); }
        .nav6-utility-right .util-divider {
            width: 1px; height: 10px; background: rgba(255,255,255,0.15);
        }
        .nav6-color-label {
            font-size: 0.6rem; color: rgba(250,250,248,0.35); text-transform: uppercase;
            letter-spacing: 0.08em; pointer-events: none; margin-left: var(--spacing-sm);
        }

        .nav7-utility {
            background: var(--color-bg-dark); color: var(--color-text-light);
            font-size: 0.75rem; padding: 0.5rem 0;
        }
        .nav7-utility-inner {
            max-width: 1400px; margin: 0 auto; padding: 0 var(--spacing-lg);
            display: flex; justify-content: space-between; align-items: center;
        }
        .nav7-utility-left { display: flex; align-items: center; gap: var(--spacing-sm); }
        .nav7-utility-left a,
        .nav7-utility-left span {
            color: rgba(250,250,248,0.95); text-decoration: none; font-weight: 400;
            transition: color var(--transition);
        }
        .nav7-utility-left a:hover { color: var(--color-text-light); }
        .nav7-utility-left svg { width: 12px; height: 12px; stroke: currentColor; fill: none; margin-right: 4px; vertical-align: -1px; }
        .nav7-utility-right { display: flex; gap: var(--spacing-md); padding-right: 7px; }
        .nav7-utility-right a {
            color: rgba(250,250,248,0.95); text-decoration: none; font-weight: 500;
            transition: color var(--transition);
        }
        .nav7-utility-right a:hover { color: var(--color-text-light); }

        #navvar-7 .nav-links { flex: initial; }
        .nav7-cta-wrapper {
            flex: 1; display: flex; justify-content: center; align-items: center;
        }
        .nav7-cta {
            display: flex; align-items: center; gap: 0.35rem;
            padding: 0.45rem 1.1rem; border-radius: 100px; font-size: 0.8rem; font-weight: 600;
            border: 1px solid var(--color-text); background: transparent;
            color: var(--color-text); text-decoration: none; white-space: nowrap;
            font-family: var(--font-body); cursor: pointer;
            transition: background var(--transition), color var(--transition);
        }
        .nav7-cta:hover { background: var(--color-text); color: var(--color-white); }
        .nav7-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

        .nav3-cta {
            padding: 0.5rem 1.2rem; border-radius: 100px; font-size: 0.8rem; font-weight: 600;
            background: var(--color-white); color: var(--color-text);
            text-decoration: none; margin-left: var(--spacing-sm);
            transition: opacity var(--transition);
        }
        .nav3-cta:hover { opacity: 0.9; }

        .nav-logo {
            font-family: var(--font-display); font-size: 1.35rem; font-weight: 400;
            text-decoration: none; margin-right: var(--spacing-xl);
        }
        .nav-logo.light { color: var(--color-text); }
        .nav-logo.dark { color: var(--color-text-light); }

        .nav-links { display: flex; gap: 0; flex: 1; height: 100%; }
        .nav-link {
            display: flex; align-items: center; height: 100%;
            padding: 0 var(--spacing-md); font-size: 0.85rem; font-weight: 500;
            text-decoration: none; cursor: pointer;
            transition: font-weight var(--transition); border: none; background: none;
            font-family: var(--font-body);
        }
        .nav-link.light { color: var(--color-text); }
        .nav-link.light:hover, .nav-link.light.active-link { text-shadow: 0.4px 0 0 currentColor; }
        .nav-link.muted { color: var(--color-text-muted); }
        .nav-link.muted:hover, .nav-link.muted.active-link { color: var(--color-text); text-shadow: 0.4px 0 0 currentColor; }
        .nav-link.dark { color: rgba(250,250,248,0.85); }
        .nav-link.dark:hover, .nav-link.dark.active-link { color: var(--color-text-light); text-shadow: 0.4px 0 0 currentColor; }
        .nav-link.sale { color: #DC2626 !important; }
        .nav-link.sale:hover { text-shadow: 0.4px 0 0 currentColor; }
        .nav-link svg { width: 10px; height: 10px; margin-left: 4px; stroke: currentColor; fill: none; transition: transform 0.3s ease; }
        .nav-link:hover svg, .nav-link.active-link svg { transform: rotate(180deg); }

        .nav-right { display: flex; align-items: center; gap: var(--spacing-xs); margin-left: auto; }
        .nav-icon {
            width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
            border-radius: 50%; cursor: pointer; transition: background var(--transition);
            text-decoration: none; position: relative; border: none; background: none;
        }
        .nav-icon.light { color: var(--color-text); }
        .nav-icon.light:hover { background: var(--color-bg); }
        .nav-icon.dark { color: rgba(250,250,248,0.85); }
        .nav-icon.dark:hover { background: rgba(255,255,255,0.1); color: var(--color-text-light); }
        .nav-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
        .nav-badge {
            position: absolute; top: 2px; right: 2px; width: 16px; height: 16px;
            border-radius: 50%; font-size: 0.6rem; font-weight: 700;
            display: flex; align-items: center; justify-content: center;
        }
        .nav-badge.light { background: var(--color-text); color: var(--color-text-light); }
        .nav-badge.dark { background: var(--color-white); color: var(--color-text); }
        .nav-icon::after {
            content: attr(aria-label); position: absolute; bottom: -26px; left: 50%;
            transform: translateX(-50%); padding: 3px 8px; border-radius: 6px;
            background: var(--color-text); color: var(--color-white);
            font-size: 0.65rem; font-weight: 500; white-space: nowrap;
            opacity: 0; pointer-events: none; transition: opacity var(--transition);
        }
        .nav-icon:hover::after { opacity: 1; }

        /* TODO: unhide when shop/basket is live */
        .nav-icon[aria-label="Basket"] { display: none; }

        .mobile-nav { display: none; }
        .mobile-trust-strip {
            display: flex; align-items: center; justify-content: center; gap: 16px;
            padding: 8px 20px; background: var(--color-bg-warm);
            font-size: 0.7rem; color: var(--color-text-muted);
            border-bottom: 1px solid var(--color-border);
            overflow-x: auto; flex-wrap: nowrap;
            -webkit-overflow-scrolling: touch;
        }
        .mobile-trust-strip::-webkit-scrollbar { display: none; }
        .mobile-trust-strip span { display: flex; align-items: center; gap: 4px; white-space: nowrap; }
        .mobile-trust-strip svg { width: 14px; height: 14px; fill: none; stroke: var(--color-accent); stroke-width: 1.5; flex-shrink: 0; }
        .mobile-nav-bar {
            display: flex; align-items: center; justify-content: space-between;
            padding: 10px 16px; background: var(--color-white);
            position: relative;
        }
        .mobile-nav-bar .nav-logo { font-size: 1.1rem; position: absolute; left: 50%; transform: translateX(-50%); white-space: nowrap; }
        .mobile-nav-icons { display: flex; align-items: center; gap: 2px; }
        .mobile-nav-icon {
            width: 40px; height: 40px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            background: transparent; border: none; cursor: pointer;
        }
        .mobile-nav-icon:active { background: rgba(0,0,0,0.05); }
        .mobile-nav-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--color-text); stroke-width: 1.5; }
        .mobile-drawer-overlay {
            display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4);
            z-index: 2000; opacity: 0; transition: opacity 0.3s ease;
        }
        .mobile-drawer-overlay.open { display: block; opacity: 1; }
        .mobile-drawer {
            position: fixed; top: 0; left: 0; bottom: 0;
            width: 85%; max-width: 340px;
            background: var(--color-white); z-index: 2001;
            transform: translateX(-100%);
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto; -webkit-overflow-scrolling: touch;
        }
        .mobile-drawer.open { transform: translateX(0); }
        .mobile-drawer-header {
            display: flex; align-items: center; justify-content: space-between;
            padding: 16px 20px; border-bottom: 1px solid var(--color-border);
        }
        .mobile-drawer-header .nav-logo { font-size: 1.1rem; }
        .mobile-drawer-close {
            width: 36px; height: 36px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            background: transparent; border: none; cursor: pointer;
        }
        .mobile-drawer-close svg { width: 20px; height: 20px; fill: none; stroke: var(--color-text); stroke-width: 2; }
        .mobile-drawer-search { margin: 16px 20px; position: relative; }
        .mobile-drawer-search input {
            width: 100%; padding: 12px 16px 12px 44px;
            border: 1.5px solid var(--color-border); border-radius: 100px;
            font-family: var(--font-body); font-size: 0.9rem;
            background: var(--color-bg); outline: none;
        }
        .mobile-drawer-search input:focus { border-color: var(--color-accent); }
        .mobile-drawer-search svg {
            position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
            width: 18px; height: 18px; fill: none; stroke: var(--color-text-muted); stroke-width: 1.5;
        }
        .mobile-drawer-label {
            padding: 16px 20px 8px; font-size: 0.7rem; font-weight: 600;
            text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-muted);
        }
        .mobile-drawer-nav { padding: 4px 0; }
        .mobile-drawer-link {
            display: flex; align-items: center; justify-content: space-between;
            padding: 13px 20px; font-size: 0.95rem; font-weight: 500;
            color: var(--color-text); text-decoration: none;
        }
        .mobile-drawer-link:active { background: rgba(0,0,0,0.03); }
        .mobile-drawer-link svg { width: 18px; height: 18px; fill: none; stroke: var(--color-text-muted); stroke-width: 2; }
        .mobile-drawer-link.sale { color: #DC2626; }
        .mobile-drawer-divider { height: 1px; background: var(--color-border); margin: 8px 20px; }
        .mobile-drawer-cta {
            display: block; margin: 16px 20px; padding: 14px 20px;
            background: var(--color-text); color: var(--color-white);
            border: none; border-radius: 100px;
            font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
            text-align: center; text-decoration: none; cursor: pointer;
        }
        .mobile-drawer-footer {
            padding: 16px 20px; border-top: 1px solid var(--color-border);
            display: flex; align-items: center; justify-content: space-between;
        }
        .mobile-drawer-footer a { font-size: 0.85rem; font-weight: 400; color: var(--color-text-muted); text-decoration: none; }
        .mobile-drawer-footer-icon { display: flex; align-items: center; }
        .mobile-drawer-footer-icon svg { stroke: var(--color-text-muted); }
        .mobile-chat-fab {
            display: none; position: fixed; bottom: 24px; right: 20px;
            width: 52px; height: 52px; border-radius: 50%;
            background: #25D366; color: var(--color-white);
            align-items: center; justify-content: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
            z-index: 1500; border: none; cursor: pointer;
            text-decoration: none;
        }
        .mobile-chat-fab svg { width: 26px; height: 26px; }

        @media (max-width: 768px) {
            
            .nav1-utility, .nav5-utility, .nav6-utility, .nav7-utility { display: none; }
            .nav1-bar { display: none; }
            .mobile-nav { display: block; position: sticky; top: 0; z-index: 1000; }
            .mobile-chat-fab { display: flex; width: 44px; height: 44px; right: 12px; }
            .mobile-chat-fab svg { width: 22px; height: 22px; }
            .mega-grid-6 { grid-template-columns: repeat(2, 1fr); }
            .mega-grid-8 { grid-template-columns: repeat(2, 1fr); }
            .mega-grid-4-feat { grid-template-columns: 1fr 1fr; }
            .mega-grid-4 { grid-template-columns: 1fr 1fr; }
            .mega-sidebar-layout { grid-template-columns: 1fr; }
            .mega-sidebar { border-right: none; border-bottom: 1px solid var(--color-border); padding-right: 0; padding-bottom: var(--spacing-sm); margin-bottom: var(--spacing-sm); }
            .mega-sidebar-cards { grid-template-columns: 1fr 1fr; }
            .search-close-btn { display: none !important; }
            .search-input-icon { display: none; }
            .search-back-btn {
                display: flex !important; align-items: center; justify-content: center;
                width: 36px; height: 36px; border: none; background: none;
                cursor: pointer; border-radius: 50%; color: var(--color-text); flex-shrink: 0;
            }
            .search-back-btn svg { width: 20px; height: 20px; stroke: currentColor; }
            .search-input-bar { padding: 12px var(--spacing-lg) 12px 4px; gap: 6px; }
            .search-input-wrap {
                background: var(--color-bg); border-radius: 20px;
                padding: 2px 10px; gap: 8px;
            }
            .search-input { font-size: 0.95rem; }
        }


/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: var(--spacing-2xl) var(--spacing-lg) var(--spacing-lg);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
}
.footer-brand { padding-right: var(--spacing-xl); }
.footer-brand p {
    color: rgba(250,250,248,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: var(--spacing-sm);
    max-width: 300px;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text-light);
}
.footer-social { display: flex; gap: 0.5rem; margin-top: var(--spacing-md); flex-wrap: wrap; }
.footer-social a {
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(250,250,248,0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}
@media (max-width: 768px) {
    .footer-social a { width: 36px; height: 36px; }
}
.footer-social a:hover { background: rgba(250,250,248,0.15); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(250,250,248,0.6); transition: fill var(--transition); }
.footer-social a:hover svg { fill: #FFFFFF; }
.footer-newsletter { margin-top: var(--spacing-md); }
.footer-newsletter p {
    color: rgba(250,250,248,0.6);
    font-size: 0.85rem;
    margin-bottom: var(--spacing-sm);
}
.footer-newsletter-form { display: flex; gap: 0.5rem; }
.footer-newsletter-form input {
    flex: 1; padding: 0.6rem 1rem; border-radius: 100px;
    border: 1px solid rgba(250,250,248,0.15);
    background: rgba(250,250,248,0.05);
    color: var(--color-text-light);
    font-family: var(--font-body); font-size: 0.85rem;
    outline: none; transition: border-color 0.2s;
}
.footer-newsletter-form input::placeholder { color: rgba(250,250,248,0.3); }
.footer-newsletter-form input:focus { border-color: rgba(250,250,248,0.4); }
.footer-newsletter-form button {
    padding: 0.6rem 1.2rem; border-radius: 100px; border: none;
    background: var(--color-text-light); color: var(--color-bg-dark);
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
    cursor: pointer; transition: opacity 0.2s;
}
.footer-newsletter-form button:hover { opacity: 0.85; }
.footer-col .footer-heading {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(250,250,248,0.6);
    margin-bottom: var(--spacing-md);
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-col a {
    color: rgba(250,250,248,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--color-text-light); }
.footer-bottom {
    max-width: 1200px;
    margin: var(--spacing-xl) auto 0;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(250,250,248,0.1);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--spacing-sm);
}
.footer-bottom p {
    color: rgba(250,250,248,0.55);
    font-size: 0.8rem;
}
.footer-bottom-links {
    display: flex;
    gap: var(--spacing-md);
}
.footer-bottom-links a {
    color: rgba(250,250,248,0.55);
    text-decoration: none;
    font-size: 0.8rem;
}
.footer-bottom-links a:hover { color: rgba(250,250,248,0.7); }
.footer-credit {
    text-align: right;
    font-size: 0.75rem;
    color: rgba(250,250,248,0.55);
}
.footer-credit a {
    color: rgba(250,250,248,0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-credit a:hover { color: rgba(250,250,248,0.6); }
@media (max-width: 1024px) {
    .footer-inner { grid-template-columns: 2fr 1fr 1fr; gap: var(--spacing-lg); }
}
@media (max-width: 768px) {
    .site-footer { padding-top: var(--spacing-lg); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--spacing-lg); }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .footer-bottom p, .footer-bottom-links { white-space: nowrap; }
    .footer-credit { text-align: center; }
}
@media (max-width: 480px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 375px) {
    .footer-newsletter-form { flex-direction: column; }
    .footer-newsletter-form input { width: 100%; }
    .footer-newsletter-form button { width: 100%; }
    .footer-bottom p { font-size: 0.7rem; white-space: nowrap; }
    .footer-bottom-links { gap: var(--spacing-sm); white-space: nowrap; }
    .footer-bottom-links a { font-size: 0.7rem; }
}

.site-nav { position: sticky; top: 0; z-index: 1000; }

/* ===== CONSULTATION MODAL ===== */
.consultation-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.consultation-overlay.open { display: flex; }
.consultation-modal {
    background: var(--color-white);
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    animation: consultModalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes consultModalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.consultation-header {
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.consultation-header-text h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--color-text);
    line-height: 1.2;
}
.consultation-header-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}
.consultation-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}
.consultation-close:hover { background: var(--color-bg-warm); }
.consultation-close svg { width: 16px; height: 16px; stroke: var(--color-text); fill: none; }
.consultation-body {
    flex: 1;
    overflow-y: auto;
}
#cal-embed-wrap {
    min-height: 500px;
}
/* Consultation type picker */
.consultation-picker {
    display: flex;
    gap: 16px;
    padding: 32px;
    justify-content: center;
    align-items: stretch;
    height: 100%;
}
.consultation-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px 24px;
    border: 2px solid var(--color-border);
    border-radius: 16px;
    background: var(--color-white);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    max-width: 220px;
}
.consultation-option:hover {
    border-color: var(--color-text);
    background: var(--color-bg);
}
.consultation-option svg {
    width: 40px;
    height: 40px;
    color: var(--color-text);
}
.consultation-option-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}
.consultation-option-desc {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}
.consultation-back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    padding: 12px 24px 0;
    margin: 0;
}
.consultation-back:hover { color: var(--color-text); }
.consultation-back svg { width: 14px; height: 14px; }
.consultation-footer {
    padding: 16px 32px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}
.consultation-footer p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}
.consultation-footer svg {
    width: 12px; height: 12px;
    stroke: var(--color-accent);
    fill: none;
    vertical-align: -1px;
    margin-right: 4px;
}
@media (max-width: 640px) {
    .consultation-modal {
        max-height: 95vh;
        border-radius: 16px;
    }
    .consultation-header { padding: 20px 20px 16px; }
    .consultation-header-text h2 { font-size: 1.25rem; }
    .consultation-picker { padding: 20px 16px; gap: 12px; }
    .consultation-option {
        padding: 20px 12px;
        max-width: none;
        aspect-ratio: 1 / 1;
        justify-content: center;
    }
    .consultation-option svg { width: 32px; height: 32px; }
    .consultation-option-title { font-size: 0.875rem; }
    .consultation-option-desc { font-size: 0.7rem; }
    .consultation-footer { padding: 12px 20px; }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.82rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    z-index: 1;
}
.breadcrumb a { color: var(--color-text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb span { margin: 0 6px; }

/* ===== SCROLL REVEAL ===== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    .reveal-child {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .reveal-child.revealed {
        opacity: 1;
        transform: translateY(0);
    }

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100vw;
    z-index: 10000;
    background: #1A1A1A;
    color: #FAFAF8;
    padding: 24px 32px;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    animation: cookieBannerIn 0.4s ease;
}
.cookie-banner *, .cookie-banner *::before, .cookie-banner *::after { box-sizing: border-box; }
.cookie-banner.open { display: block; }
@keyframes cookieBannerIn {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}
.cookie-banner-text {
    flex: 1;
    min-width: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(250,250,248,0.8);
}
.cookie-banner-text a {
    color: #FAFAF8;
    text-decoration: underline;
}
.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 22px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}
.cookie-btn-accept {
    background: #FAFAF8;
    color: #1A1A1A;
}
.cookie-btn-accept:hover { background: #fff; }
.cookie-btn-reject {
    background: transparent;
    color: #FAFAF8;
    border: 1.5px solid rgba(250,250,248,0.3);
}
.cookie-btn-reject:hover { border-color: rgba(250,250,248,0.6); }
.cookie-btn-manage {
    background: transparent;
    color: rgba(250,250,248,0.6);
    padding: 10px 12px;
}
.cookie-btn-manage:hover { color: #FAFAF8; }
.cookie-preferences {
    display: none;
    max-width: 1200px;
    margin: 20px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(250,250,248,0.1);
}
.cookie-preferences.open { display: block; }
.cookie-pref-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}
.cookie-pref-label {
    font-size: 0.88rem;
    font-weight: 600;
}
.cookie-pref-desc {
    font-size: 0.78rem;
    color: rgba(250,250,248,0.5);
    margin-top: 2px;
}
.cookie-pref-status {
    font-size: 0.78rem;
    color: rgba(250,250,248,0.4);
    font-weight: 500;
}
/* Toggle switch */
.cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}
.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(250,250,248,0.15);
    border-radius: 24px;
    transition: 0.3s;
}
.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: #FAFAF8;
    border-radius: 50%;
    transition: 0.3s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--color-accent, #7C6A56);
}
.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(20px);
}
.cookie-pref-save {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
}
@media (max-width: 768px) {
    .cookie-banner { padding: 16px; }
    .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 12px; }
    .cookie-banner-text { font-size: 0.82rem; }
    .cookie-banner-buttons { flex-wrap: wrap; gap: 8px; flex-shrink: 1; width: 100%; box-sizing: border-box; }
    .cookie-btn { flex: 1 1 40%; text-align: center; padding: 12px 0; font-size: 0.85rem; box-sizing: border-box; }
    .cookie-btn-manage { flex-basis: 100%; padding: 8px 0; }
}
}