/* --- PREMIUM RESET & FONTS --- */
/* Fonts are loaded via includes/head_links.php (avoid CSS @import for performance) */
/* alee's golden touch - subtle imperfections create authenticity */

:root {
    --gold: #D4AF37;
    --gold-2: #C79B2A;
    --dark: #0f0f0f;
    --ink: #0b0f19;
    --gray: #f4f4f4;
    --soft-white: #fafafa;
    /* Warm, premium canvas (less stark white) */
    --page-bg: #f6f1ea;
    --surface: rgba(255,255,255,0.88);
    --surface-2: rgba(255,255,255,0.72);
    --border: rgba(0,0,0,0.08);
    --shadow: 0 15px 40px rgba(0,0,0,0.08);
    --transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    --radius-lg: 20px;
    --radius-md: 14px;
    --muted: rgba(255,255,255,0.75);
    --text-muted: #5b6472;
    --btn-shadow: 0 14px 34px rgba(0,0,0,0.18);
    --btn-shadow-soft: 0 10px 24px rgba(0,0,0,0.10);
    --focus-ring: 0 0 0 4px rgba(212,175,55,0.22);
    --nav-solid-bg: rgba(255,255,255,0.86);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; }
html { overflow-x: hidden; }
body {
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(1200px 800px at 15% 10%, rgba(212,175,55,0.10), transparent 55%),
        radial-gradient(900px 650px at 85% 22%, rgba(14,165,233,0.08), transparent 60%),
        radial-gradient(900px 700px at 50% 95%, rgba(17,24,39,0.05), transparent 55%),
        var(--page-bg);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Homepage filters */
.catalog-filters {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    backdrop-filter: blur(10px) saturate(150%);
}
.filters-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 10px;
    align-items: end;
}
.filters-field { display: grid; gap: 6px; }
.filters-field label { font-weight: 900; font-size: .92rem; }
.filters-field input, .filters-field select {
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.92);
    color: inherit;
}
.filters-actions { display: flex; gap: 10px; align-items: center; justify-content: flex-end; }
.filters-summary { margin-top: 10px; font-size: .92rem; }

@media (max-width: 860px) {
    .filters-inner { grid-template-columns: 1fr 1fr; }
    .filters-actions { grid-column: 1 / -1; justify-content: flex-start; }
}
h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif;
    color: inherit;
    letter-spacing: -0.02em;
}
p { color: inherit; }

.muted { color: var(--text-muted); }

/* Hide helper hints across the UI (we keep real data by using .muted/.mono instead). */
.hint { display: none !important; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.skip-link { position: absolute; left: -9999px; top: 12px; background: white; color: var(--dark); padding: 10px 12px; border-radius: 12px; z-index: 1000; }
.skip-link:focus { left: 12px; box-shadow: var(--shadow); }

/* --- PREMIUM BUTTON FEEL (shared) --- */
a.nav-btn, a.pill-btn, a.ghost-btn,
button.pill-btn, button.ghost-btn, button.checkout-btn,
.checkout-btn {
    -webkit-tap-highlight-color: transparent;
}

.nav-btn, .pill-btn, .ghost-btn, .checkout-btn {
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
    will-change: transform;
}

/* Button / control color refresh using new accents */
.pill-btn {
    background: #0b0b0b;
    color: #ffffff;
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 10px 24px rgba(11,15,25,0.18);
}
.pill-btn:hover {
    background: #ffffff;
    color: #0b0b0b;
    border-color: rgba(11,15,25,0.12);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(11,15,25,0.12);
}
.ghost-btn { background: transparent; border: 1px solid rgba(0,0,0,0.08); color: var(--ink); }
.ghost-btn:hover { background: rgba(11,15,25,0.06); color: #fff; }
.pill { background: linear-gradient(90deg, rgba(212,175,55,0.12), rgba(199,155,42,0.08)); border-color: rgba(199,155,42,0.12); }
.checkout-btn { background: #0b0b0b; color:#fff; border: 1px solid rgba(0,0,0,0.12); }

/* Portal badge uses gold */
.portal-badge { background: rgba(212,175,55,0.92); color: #0b0b0b; }


/* --- CARD HOVER LIFT (shared) --- */
.lift-card {
    display: block;
    transition: transform 180ms ease, box-shadow 180ms ease;
    will-change: transform;
}
.lift-card:hover {
    transform: translateY(-2px);
}
.lift-card:active {
    transform: translateY(1px) scale(0.99);
}
.lift-card:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.nav-btn:active, .pill-btn:active, .ghost-btn:active, .checkout-btn:active {
    transform: translateY(1px) scale(0.99);
}

.nav-btn:focus-visible, .pill-btn:focus-visible, .ghost-btn:focus-visible, .checkout-btn:focus-visible,
.nav-burger:focus-visible, .nav-close:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes zoomEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
@keyframes revealFallback {
    to { opacity: 1; transform: none; }
}
/* Scroll-reveal (JS toggles .is-visible) */
.reveal { opacity: 0; transform: translateY(18px); animation: revealFallback 0s linear 1.2s forwards; }
.reveal.is-visible { animation: fadeInUp 0.8s forwards; }
.reveal.is-visible.reveal-delay-1 { animation-delay: 0.2s; }
.reveal.is-visible.reveal-delay-2 { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; }
    .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
    .reveal.is-visible { animation: none !important; }
    .nav-btn, .pill-btn, .ghost-btn, .checkout-btn, .card, .featured-card, .lift-card { transition: none !important; }
    .lift-card, .lift-card:hover, .lift-card:active { transform: none !important; }
    .hero-bg { animation: none !important; }
}

/* --- NAVIGATION --- */
/* Crafted with care by alee - 2026.01.12 */
.site-nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    /* Glass header */
    background: rgba(255,255,255,0.62);
    border-bottom: 1px solid var(--border);
    transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    -webkit-backdrop-filter: saturate(170%) blur(14px);
    backdrop-filter: saturate(170%) blur(14px);
}

.site-nav-spacer { height: 41px; }

.site-nav.is-overlay {
    /* Homepage hero overlay: dark-tinted glass over imagery */
    background: rgba(10, 12, 18, 0.28);
    border-bottom: 1px solid rgba(255,255,255,0.14);
    -webkit-backdrop-filter: saturate(170%) blur(16px);
    backdrop-filter: saturate(170%) blur(16px);
}

.site-nav.is-overlay.is-scrolled {
    /* Keep the overlay header dark as you scroll (don’t flip to white) */
    background: rgba(10, 12, 18, 0.40);
    border-bottom: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: nowrap; }
.brand { font-family: 'Playfair Display', serif; font-size: 0.98rem; color: var(--ink); font-weight: 800; letter-spacing: 0.2px; text-decoration: none; display: inline-flex; gap: 8px; align-items: baseline; }
.brand span { color: var(--gold); }
.logo { font-size: 1.5rem; color: white; font-weight: 700; letter-spacing: 1px; }
.logo span { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-menu { display: none; }
.nav-menu summary {
    list-style: none;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    background: rgba(15,15,15,0.08);
    border: 1px solid rgba(0,0,0,0.14);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 900;
    color: var(--ink);
}
.site-nav.is-overlay .nav-menu summary {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.28);
    color: rgba(255,255,255,0.92);
}
.nav-menu summary::-webkit-details-marker { display: none; }
.nav-menu-icon {
    position: relative;
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    opacity: 0.95;
}
.nav-menu-icon::before,
.nav-menu-icon::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}
.nav-menu-icon::before { top: -6px; }
.nav-menu-icon::after { top: 6px; }
.nav-menu-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: min(92vw, 320px);
    max-width: calc(100vw - 24px);
    background: rgba(10,12,18,0.96);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 10px;
    box-sizing: border-box;
    max-height: calc(100vh - 90px);
    overflow: auto;
    overscroll-behavior: contain;
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
    z-index: 600;
}

/* --- PORTAL NAV (Supplier/Admin dashboard) --- */
.portal-nav {
    background: #0f0f0f;
    color: rgba(255,255,255,0.92);
    border-bottom: 1px solid rgba(255,255,255,0.10);
}
.portal-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
}
.portal-brand {
    text-decoration: none;
    color: rgba(255,255,255,0.92);
    font-weight: 900;
    letter-spacing: 0.2px;
}
.portal-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}
.portal-tab {
    text-decoration: none;
    color: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 900;
    font-size: .92rem;
}
.portal-tab.active {
    background: rgba(212,175,55,0.16);
    border-color: rgba(212,175,55,0.38);
    color: #fff;
}
.portal-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 7px;
    margin-left: 6px;
    border-radius: 999px;
    background: rgba(212,175,55,0.92);
    color: #0b0b0b;
    font-weight: 1000;
    font-size: 0.78rem;
    line-height: 1;
}

/* Portal "More" dropdown */
.portal-more { position: relative; }
.portal-more > summary { list-style: none; }
.portal-more > summary::-webkit-details-marker { display: none; }
.portal-more-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 220px;
    background: rgba(10,12,18,0.96);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
    z-index: 600;
}
.portal-more-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-weight: 900;
}
.portal-more-menu a:hover { background: rgba(255,255,255,0.06); }
@media (max-width: 640px){
    .portal-nav-inner { padding: 12px 12px; }
    .portal-brand { font-size: 1rem; }
    .portal-tab { padding: 8px 10px; font-size: .9rem; }
}
.nav-menu-panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-weight: 850;
}
.nav-menu-panel a:hover { background: rgba(255,255,255,0.08); }
.nav-menu[open] .nav-menu-panel { animation: fadeInUp 0.22s ease both; }
.nav-burger {
    display: none;
    background: rgba(255,255,255,0.12);
    color: white;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
}
.nav-burger span { font-size: 1.1rem; }

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10,12,18,0.35);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    z-index: 400;
}
.nav-mobile {
    position: fixed;
    top: 76px;
    right: 16px;
    width: min(92vw, 340px);
    background: rgba(10,12,18,0.92);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    display: grid;
    gap: 6px;
    z-index: 500;
    max-height: calc(100vh - 96px);
    overflow: auto;
}
.nav-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    margin-bottom: 6px;
    color: rgba(255,255,255,0.92);
    font-weight: 900;
}

/* --- FORCE SIDEBAR-ONLY LAYOUT --- */
/* User preference: keep sidebar, remove other navigation */
.has-sidebar .site-nav { display: flex !important; }
/* Keep portal-nav visible as part of header area (sidebar remains primary navigation) */
.has-sidebar .portal-nav { display: block; }
.has-sidebar .site-nav-spacer { display: none !important; }

.sidebar {
    position: fixed;
    /* Full-height modern sidebar */
    top: 0;
    left: 0;
    bottom: 0;
    width: 252px;
    background: #fff;
    border-right: 1px solid rgba(31,41,55,0.08);
    padding: 0 0 80px 0;
    box-shadow: 4px 0 20px rgba(0,0,0,0.04);
    z-index: 999;
    overflow-y: auto;
}
.sidebar h3 { margin-bottom: 8px; font-size: 1.05rem; }
.sidebar-nav { list-style: none; display: flex; flex-direction: column; gap: 4px; padding: 0 16px; }
.sidebar-nav a { 
    text-decoration: none; 
    color: #4b5563; 
    padding: 10px 12px; 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    font-weight: 500; 
    font-size: 0.9rem;
    transition: all 0.2s ease; 
}
.sidebar-nav a:hover { 
    background: rgba(212,175,55,0.06); 
    color: var(--ink); 
}
.sidebar-nav a.active { 
    background: rgba(212,175,55,0.12); 
    font-weight: 600; 
    color: var(--ink); 
    border-left: 3px solid var(--gold); 
    padding-left: 10px; 
}
.sidebar-toggle { display: none; }

/* Sidebar icon styles */
.sidebar-nav a .nav-icon { width: 18px; display: inline-block; margin-right: 8px; color: var(--gold-2); }
.sidebar-nav a.active .nav-icon { color: var(--gold); }

/* Card icons */
.admin-card .card-icon { font-size: 1.05rem; margin-right:8px; color: var(--gold-2); }
.admin-card .card-head { display:flex; align-items:center; gap:8px; }

/* Offset content for sidebar pages.
    Important: do NOT shift both `.main-content` and nested `.container` (that caused double offsets).
    - If a page uses a `.main-content` wrapper, we shift that.
    - If not, we shift only top-level layout containers directly under <body>.
*/
.main-content { margin-left: 0; transition: margin-left 220ms ease; }
body.has-sidebar .main-content { margin-left: 252px; }
body.has-sidebar .main-content.sidebar-open { margin-left: 68px; }

@media (max-width: 860px) {
    .sidebar { position: relative; width: 100%; max-width: none; margin: 0 0 12px 0; }
    .main-content { margin-left: 0; }
    .sidebar-toggle { display: inline-block; }
    .has-sidebar .container,
    .has-sidebar .page,
    .has-sidebar main,
    .has-sidebar .content {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Support pages that don't have a `.main-content` wrapper */
body.has-sidebar > .container,
body.has-sidebar > .page,
body.has-sidebar > main,
body.has-sidebar > .content {
    margin-left: 252px;
    margin-right: 20px;
    transition: margin-left 220ms ease;
}
body.has-sidebar.sidebar-open > .container,
body.has-sidebar.sidebar-open > .page,
body.has-sidebar.sidebar-open > main,
body.has-sidebar.sidebar-open > .content {
    margin-left: 68px;
}

/* Sidebar "More" submenu and details styling */
.sidebar-more summary {
    cursor: pointer;
    list-style: none;
    padding: 10px 12px;
    border-radius: 10px;
    background: transparent;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}
.sidebar-more summary::-webkit-details-marker { display: none; }
.sidebar-more summary:hover { background: rgba(212,175,55,0.06); color: var(--ink); }
.sidebar-more[open] summary { background: rgba(0,0,0,0.04); }
.sidebar-more-list { list-style: none; padding-left: 0; margin: 8px 0 0 0; display: none; }
.sidebar-more[open] .sidebar-more-list { display: block; }
.sidebar-more-list li { margin: 4px 0; }
.sidebar-more-list a { 
    padding: 8px 12px; 
    display: flex;
    align-items: center;
    border-radius: 8px; 
    text-decoration: none; 
    color: #6b7280; 
    font-size: 0.85rem;
    font-weight: 500;
}
.sidebar-more-list a:hover { background: rgba(0,0,0,0.04); color: var(--ink); }

/* Tighter admin dashboard spacing */
.admin-wrap { margin-top: 12px; }
.admin-card { padding: 12px; border-radius: 14px; }
.admin-grid { gap: 10px; }
.admin-card h3 { font-size: 1rem; margin-bottom:8px; }

/* KPIs and header compacting */
.admin-header { margin-bottom:10px; }
.kpis { gap:8px; }
.kpi { padding:8px 10px; border-radius:12px; font-size:0.95rem; }

/* Modern Dashboard Styles */
.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.metric-card {
    background: #fff;
    border: 1px solid rgba(31,41,55,0.06);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(31,41,55,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(31,41,55,0.08);
}

.metric-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.metric-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.25rem;
}

.metric-icon.blue { background: #dbeafe; color: #3b82f6; }
.metric-icon.green { background: #d1fae5; color: #10b981; }
.metric-icon.yellow { background: #fef3c7; color: #f59e0b; }
.metric-icon.red { background: #fee2e2; color: #ef4444; }

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1;
}

.metric-change {
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.metric-change.positive { color: #10b981; }
.metric-change.negative { color: #ef4444; }
.metric-change.neutral { color: #6b7280; }

/* Dashboard Table */
.dashboard-table-wrapper {
    background: #fff;
    border: 1px solid rgba(31,41,55,0.06);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(31,41,55,0.04);
    margin-bottom: 24px;
}

.dashboard-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-table-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
}

.view-all-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.view-all-link:hover {
    color: #2563eb;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table thead {
    background: #f9fafb;
    border-radius: 8px;
}

.dashboard-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #e5e7eb;
}

.dashboard-table td {
    padding: 16px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.875rem;
}

.dashboard-table tbody tr:last-child td {
    border-bottom: none;
}

.dashboard-table tbody tr:hover {
    background: #f9fafb;
}

/* Customer Cell */
.customer-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.customer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.customer-info {
    display: flex;
    flex-direction: column;
}

.customer-name {
    font-weight: 600;
    color: var(--ink);
}

.customer-email {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.status-badge.confirmed {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.pending {
    background: #dbeafe;
    color: #1e40af;
}

.status-badge.cancelled {
    background: #fee2e2;
    color: #991b1b;
}

/* Platform Icon */
.platform-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 4px;
}

/* Action Button */
.action-btn {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.action-btn:hover {
    color: #2563eb;
}

/* Dashboard Grid for Charts */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

/* Sidebar improvements */
.sidebar {
    background: #fff;
    border-right: 1px solid rgba(31,41,55,0.08);
}

.sidebar h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
    padding: 0 0 12px 0;
}

.sidebar-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4b5563;
    transition: all 0.2s ease;
}

.sidebar-nav a:hover {
    background: rgba(212,175,55,0.05);
    color: var(--ink);
}

.sidebar-nav a.active {
    background: rgba(212,175,55,0.12);
    font-weight: 600;
    color: var(--ink);
}

.portal-badge {
    display: inline-block;
    background: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 9999px;
    margin-left: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-metrics {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-table-wrapper {
        overflow-x: auto;
    }
    
    .customer-cell {
        flex-direction: column;
        align-items: flex-start;
    }
}

.card-head h3 { margin:0; font-size:1rem; }
.nav-close {
    background: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 10px;
    padding: 8px 10px;
    cursor: pointer;
    font-weight: 900;
    line-height: 1;
}
.nav-close:hover { background: rgba(255,255,255,0.16); }
.nav-mobile a {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-weight: 800;
    padding: 10px 12px;
    border-radius: 12px;
}
.nav-mobile a:hover { background: rgba(255,255,255,0.08); }
.nav-select { background: #f3f4f6; color: var(--ink); border: 1px solid rgba(0,0,0,0.14); border-radius: 10px; padding: 8px 10px; font-weight: 800; }
.nav-select option { color: black; }
.nav-btn {
    background: var(--gold);
    color: var(--ink);
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 950;
    letter-spacing: 0.2px;
    border: 1px solid rgba(0,0,0,0.10);
    transition: var(--transition);
}
.nav-btn .nav-btn-full { display: inline; }
.nav-btn .nav-btn-short { display: none; }
.nav-btn { box-shadow: 0 12px 28px rgba(0,0,0,0.16); }
.nav-btn:hover { background: rgba(255,255,255,0.92); color: var(--ink); transform: translateY(-1px); box-shadow: var(--btn-shadow); }

.site-nav.is-overlay .brand { color: rgba(255,255,255,0.95); }
.site-nav.is-overlay .nav-select { background: rgba(255,255,255,0.10); color: white; border: 1px solid rgba(255,255,255,0.35); }
.site-nav.is-overlay .nav-btn { background: rgba(255,255,255,0.92); color: var(--ink); }
.site-nav.is-overlay.is-scrolled .brand { color: rgba(255,255,255,0.95); }
.site-nav.is-overlay.is-scrolled .nav-links a { color: rgba(255,255,255,0.92); opacity: 0.9; }
.site-nav.is-overlay.is-scrolled .nav-menu summary {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.28);
    color: rgba(255,255,255,0.92);
}
.site-nav.is-overlay.is-scrolled .ghost-btn { border-color: rgba(255,255,255,0.50); color: white; }
.site-nav.is-overlay.is-scrolled .nav-btn { background: rgba(255,255,255,0.92); color: var(--ink); }

/* Premium footer (compact) */
.site-footer { background: var(--dark); color: white; padding: 36px 0 18px; margin-top: 44px; }
.footer-topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 14px; margin-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.footer-topbar-spacer { flex: 1; }
.footer-social { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.footer-social-link { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.86); text-decoration: none; background: rgba(255,255,255,0.06); transition: transform 160ms ease, background 160ms ease, border-color 160ms ease; }
.footer-social-link:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.28); transform: translateY(-1px); }
.footer-social-link svg { width: 18px; height: 18px; fill: currentColor; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; letter-spacing: 0.2px; }
.footer-brand span { color: var(--gold); }
.footer-title { font-weight: 900; margin-bottom: 10px; }
.footer-muted { color: rgba(255,255,255,0.70); margin-top: 10px; line-height: 1.6; }
.footer-link { display: block; color: rgba(255,255,255,0.80); text-decoration: none; margin: 8px 0; font-weight: 700; }
.footer-link:hover { color: white; }
.site-footer .footer-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.site-footer .footer-action { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; color: rgba(255,255,255,0.85); font-weight: 800; white-space: nowrap; padding: 8px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.04); transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease; }
.site-footer .footer-action:hover { color: #fff; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.20); transform: translateY(-1px); }
.site-footer .footer-action svg { width: 14px; height: 14px; max-width: 14px; max-height: 14px; fill: currentColor; opacity: 0.95; display: block; flex: 0 0 auto; }
.site-footer .footer-action span { font-size: 0.92rem; }
@media (min-width: 920px) { .site-footer .footer-actions { flex-wrap: nowrap; gap: 8px; } .site-footer .footer-action { padding: 7px 9px; } }
.footer-bottom { margin-top: 22px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.55); font-size: 0.85rem; text-align: center; }
.footer-bottom-link { color: rgba(255,255,255,0.78); text-decoration: none; font-weight: 800; margin: 0 6px; }
.footer-bottom-link:hover { color: white; }
.footer-bottom-sep { margin: 0 6px; opacity: 0.5; }
.footer-store-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

/* Homepage: Trustpilot-style review showcase (less boxy) */
.trustpilot-showcase { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 16px; align-items: start; }
.tp-summary-card { background: rgba(255,255,255,0.70); border: 1px solid rgba(0,0,0,0.07); border-radius: 16px; padding: 14px; box-shadow: 0 10px 28px rgba(0,0,0,0.06); -webkit-backdrop-filter: blur(10px) saturate(150%); backdrop-filter: blur(10px) saturate(150%); }
.tp-summary-title { font-weight: 1000; font-size: 1.15rem; margin-bottom: 8px; }
.tp-summary-sub { color: var(--text-muted); font-weight: 700; line-height: 1.5; }
.tp-summary-actions { margin-top: 12px; display: flex; gap: 10px; flex-wrap: wrap; }
.tp-review-list { display: grid; gap: 12px; }
.tp-review-item { background: rgba(255,255,255,0.70); border: 1px solid rgba(0,0,0,0.07); border-radius: 16px; padding: 12px 14px; box-shadow: 0 10px 28px rgba(0,0,0,0.06); -webkit-backdrop-filter: blur(10px) saturate(150%); backdrop-filter: blur(10px) saturate(150%); }
.tp-review-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.tp-review-title { font-weight: 1000; }
.tp-review-time { color: var(--text-muted); font-weight: 800; font-size: 0.86rem; }
.tp-review-stars { color: #16a34a; font-weight: 1000; letter-spacing: 1px; margin-top: 8px; }
.tp-review-body { margin-top: 10px; color: rgba(11,15,25,0.86); line-height: 1.6; }
.tp-review-author { margin-top: 10px; color: var(--text-muted); font-weight: 800; }

/* Reviews section: reduce height (keep width/layout) */
#reviews.section { padding: 54px 20px; }

/* Homepage Reviews (minimal) */
#reviews .reviews-minimal {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 16px;
    align-items: start;
}
#reviews .tp-badge {
    background: rgba(255,255,255,0.58);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 12px 14px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    backdrop-filter: blur(10px) saturate(150%);
}
#reviews .tp-badge-top { display:flex; align-items: baseline; justify-content: space-between; gap: 10px; }
#reviews .tp-badge-title { font-weight: 1000; }
#reviews .tp-badge-link { font-weight: 950; color: var(--accent); text-decoration: none; }
#reviews .tp-badge-link:hover { text-decoration: underline; }
#reviews .tp-badge-sub { margin-top: 6px; color: var(--text-muted); font-weight: 750; font-size: 0.95rem; }
#reviews .tp-badge-widget { margin-top: 10px; }

#reviews .review-snippets {
    background: rgba(255,255,255,0.58);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    overflow: hidden;
}
#reviews .review-snippet { padding: 12px 14px; border-top: 1px solid rgba(0,0,0,0.06); }
#reviews .review-snippet:first-child { border-top: 0; }
#reviews .review-snippet-head { display:flex; align-items: baseline; justify-content: space-between; gap: 10px; }
#reviews .review-snippet-title { font-weight: 1000; }
#reviews .review-snippet-time { color: var(--text-muted); font-weight: 850; font-size: 0.86rem; }
#reviews .review-snippet-stars { margin-top: 6px; }
#reviews .review-snippet-text {
    margin-top: 8px;
    color: rgba(11,15,25,0.86);
    line-height: 1.55;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
#reviews .review-snippet-author { margin-top: 8px; color: var(--text-muted); font-weight: 850; }

/* Star icons */
.tp-stars { display: inline-flex; align-items: center; gap: 4px; }
.tp-stars svg { width: 14px; height: 14px; fill: #16a34a; }

@media (max-width: 920px) {
    .trustpilot-showcase { grid-template-columns: 1fr; }
    #reviews .reviews-minimal { grid-template-columns: 1fr; }
    .footer-topbar { justify-content: flex-start; }
    .footer-topbar-spacer { display: none; }
}

/* --- HERO SECTION --- */
header.hero {
    height: 82vh; min-height: 620px; position: relative; overflow: hidden;
    display: flex; align-items: center;
}
.hero-media {
    position: absolute; inset: 0; overflow: hidden; z-index: -2;
}
.hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    opacity: 0.55; filter: saturate(1.05) contrast(1.02);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; animation: heroSlide 18s infinite;
}
.hero-slide.s1 { background-image: url('/img/uploads/pexels_hero_1.jpg'); animation-delay: 0s; }
.hero-slide.s2 { background-image: url('/img/uploads/pexels_hero_2.jpg'); animation-delay: 6s; }
.hero-slide.s3 { background-image: url('/img/uploads/pexels_hero_3.jpg'); animation-delay: 12s; }
.lift-card { text-align: left; }
.lift-card .muted-text { text-align: left; }

@keyframes heroSlide {
    0% { opacity: 0; }
    6% { opacity: 1; }
    30% { opacity: 1; }
    36% { opacity: 0; }
    100% { opacity: 0; }
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.35); z-index: -1;
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 28px; align-items: center; width: 100%; }
.hero-left { color: white; }
.hero-eyebrow { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); color: var(--muted); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.4px; margin-bottom: 14px; }
.hero h1 { font-size: 3.4rem; margin-bottom: 14px; line-height: 1.05; color: white; letter-spacing: -0.02em; }
.hero-sub { font-size: 1.08rem; margin-bottom: 22px; opacity: 0.92; color: rgba(255,255,255,0.88); max-width: 52ch; }
.hero-grid { display: flex; flex-direction: column; gap: 15px; align-items: center; }
.hero-left .hero-grid { align-items: flex-start; }
.hero-mini { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 10px; width: 100%; max-width: 650px; }
.hero-mini div { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); padding: 12px 14px; border-radius: 10px; font-weight: 600; color: white; display: flex; gap: 10px; align-items: center; justify-content: center; }
.trust-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 15px; margin-top: 25px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); padding: 16px; border-radius: 14px; }
.trust-strip div { text-align: center; color: white; }
.trust-strip strong { display: block; font-size: 1.3rem; }
.trust-strip span { opacity: 0.8; font-size: 0.9rem; }

.hero-microproof {
    margin-top: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.86);
}

/* --- SEARCH BAR --- */
.search-wrapper {
    background: var(--surface); padding: 10px; border-radius: 50px;
    display: flex; align-items: center; max-width: 600px; margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(0,0,0,0.08);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    backdrop-filter: blur(10px) saturate(150%);
}
.hero-left .search-wrapper { margin: 0; width: min(680px, 100%); }
.search-wrapper i { color: #666; padding-left: 10px; }
.search-wrapper input {
    border: none; padding: 15px 20px; font-size: 1rem; flex-grow: 1; outline: none;
    min-width: 0;
}
.search-wrapper button {
    background: var(--gold);
    color: var(--ink);
    padding: 15px 26px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.10);
    font-weight: 900;
    cursor: pointer;
    transition: var(--transition);
}
.search-wrapper button:hover { background: rgba(255,255,255,0.92); transform: translateY(-1px); box-shadow: var(--btn-shadow-soft); }
.media-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 18px; max-width: 1100px; margin: 0 auto; }
.media-card { background: rgba(255,255,255,0.78); border: 1px solid rgba(255,255,255,0.55); border-radius: 16px; padding: 14px; box-shadow: var(--shadow); -webkit-backdrop-filter: blur(14px) saturate(160%); backdrop-filter: blur(14px) saturate(160%); }
.media-card video { width: 100%; height: auto; border-radius: 12px; display: block; }
.photo-strip { display: grid; gap: 10px; }
.photo-strip img { width: 100%; height: 160px; object-fit: cover; border-radius: 14px; border: 1px solid var(--border); box-shadow: var(--shadow); }

@media (max-width: 900px) {
    .media-grid { grid-template-columns: 1fr; }
    .photo-strip img { height: 200px; }
}
.pill-btn {
    background: var(--gold);
    color: var(--ink);
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.10);
    cursor: pointer;
}
.pill-btn { box-shadow: 0 12px 28px rgba(0,0,0,0.18); }
/* Playful hover by alee */
.pill-btn:hover { background: rgba(255,255,255,0.92); color: var(--ink); transform: translateY(-1px) scale(1.02); box-shadow: var(--btn-shadow); }
.ghost-btn { background: transparent; color: var(--ink); padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(0,0,0,0.16); text-decoration: none; font-weight: 800; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); cursor: pointer; }
/* Slight asymmetric padding for authenticity */
.ghost-btn:nth-of-type(odd) { padding: 10px 19px 10px 17px; }
.ghost-btn:hover { background: rgba(11,15,25,0.92); color: white; border-color: rgba(11,15,25,0.92); transform: translateY(-1px); box-shadow: var(--btn-shadow-soft); }

/* White ghost buttons on dark areas */
.site-nav.is-overlay .ghost-btn,
.hero .ghost-btn,
.page-hero .ghost-btn,
.site-footer .ghost-btn {
    color: white;
    border-color: rgba(255,255,255,0.50);
}
.site-nav.is-overlay .ghost-btn:hover,
.hero .ghost-btn:hover,
.page-hero .ghost-btn:hover,
.site-footer .ghost-btn:hover {
    background: rgba(255,255,255,0.92);
    color: var(--dark);
    border-color: rgba(255,255,255,0.92);
}

/* Checkout button (product page) */
.checkout-btn {
    width: auto;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.10);
    cursor: pointer;
    font-weight: 900;
    background: #0b0f19;
    color: rgba(255,255,255,0.96);
    box-shadow: 0 18px 44px rgba(0,0,0,0.20);
    position: relative;
}
.checkout-btn::before {
    content: none;
}
.checkout-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 60px rgba(0,0,0,0.28);
}
.checkout-btn span:first-child { font-weight: 900; }
.checkout-btn span:last-child {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(212,175,55,0.14);
    border: 1px solid rgba(212,175,55,0.30);
    font-variant-numeric: tabular-nums;
}

.checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Product page action buttons (booking card) */
.booking-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.booking-actions .ghost-btn { justify-content: center; }
.booking-actions .checkout-btn { justify-content: space-between; }
.booking-actions .ghost-btn,
.booking-actions .checkout-btn {
    width: 100%;
}
.booking-actions .ghost-btn {
    border: 1px solid rgba(212,175,55,0.25);
    background: rgba(212,175,55,0.08);
    color: var(--ink);
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}
.booking-actions .ghost-btn:hover {
    background: rgba(212,175,55,0.16);
    border-color: rgba(212,175,55,0.42);
    transform: translateY(-1px);
    color: var(--ink);
}

@media (max-width: 520px) {
    .checkout-btn { padding: 14px 14px; }
}

/* --- CARDS GRID --- */
.section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
.section-surface { background: var(--surface-2); border: 1px solid var(--border); border-left: none; border-right: none; -webkit-backdrop-filter: blur(10px) saturate(150%); backdrop-filter: blur(10px) saturate(150%); }
.section-header { margin-bottom: 40px; text-align: center; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 8px; }
.grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px;
}
.card {
    background: rgba(255,255,255,0.78); border-radius: 20px; overflow: hidden;
    box-shadow: var(--shadow); transition: var(--transition);
    position: relative; text-decoration: none; color: inherit; display: block;
    border: 1px solid rgba(255,255,255,0.55);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 52px rgba(0,0,0,0.14); }
.card-img-wrap { position: relative; height: 250px; overflow: hidden; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.card-img-wrap img { filter: saturate(105%); }
.card:hover .card-img-wrap img { transform: scale(1.05); }
.tag {
    position: absolute; top: 20px; left: 20px; background: rgba(255,255,255,0.92);
    padding: 5px 15px; font-size: 0.75rem; font-weight: 700;
    border-radius: 4px; text-transform: uppercase; letter-spacing: 1px;
    border: 1px solid rgba(0,0,0,0.08);
}
.card-body { padding: 30px; }
.card-title { font-size: 1.3rem; margin-bottom: 8px; font-weight: 700; }
.rating { color: #f1c40f; font-size: 0.9rem; margin-bottom: 15px; font-weight: 600; }
.rating span { color: #888; font-weight: 400; margin-left: 5px; }
.card-desc { color: #666; font-size: 0.92rem; line-height: 1.6; margin-bottom: 18px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; }
.card-tags .booking-tag { padding: 6px 9px; font-size: 0.80rem; }
.card-tags .booking-tag i { font-size: 0.9em; }
.card-footer {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid #eee; padding-top: 20px;
}
.price-label { font-size: 0.8rem; color: #888; display: block; }
.price-val { font-size: 1.3rem; font-weight: 700; color: var(--dark); }
.btn-arrow {
    width: 40px; height: 40px; border-radius: 50%; background: #efefef;
    display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.card:hover .btn-arrow { background: var(--dark); color: white; }

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(15,15,15,0.92);
    color: rgba(255,255,255,0.95);
    border: 1px solid rgba(255,255,255,0.20);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.2px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.4rem; }
    .hero p { font-size: 1rem; }
    .nav-btn { display: inline-flex; }

    .section { padding: 64px 16px; }
    .section-header h2 { font-size: 1.9rem; }
    .card-body { padding: 20px; }
}

@media (max-width: 520px) {
    .site-nav { padding: 8px 10px; }
    /* Phone header: keep full brand visible by stacking it (DolceVita / Discoveries) */
    .brand {
        max-width: none;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        line-height: 1.05;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        font-size: 1.02rem;
    }
    .brand span { display: block; font-size: 0.98rem; margin-top: -1px; }
    .container { padding: 0 12px; }

    .nav-btn .nav-btn-short { display: none; }

    .site-nav .nav-actions .ghost-btn { display: none; }

    /* Keep dark-mode toggle visible on phones */
    .site-nav .nav-actions .ghost-btn.theme-toggle { display: inline-flex; }

    /* Keep header compact on phones */
    .nav-links { display: none; }
    .nav-menu { display: block; position: relative; }
    .nav-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; gap: 10px; }
    .nav-inner > * { min-width: 0; }
    .nav-actions { gap: 8px; flex-wrap: nowrap; min-width: 0; }
    .nav-menu { justify-self: center; }
    .nav-actions { justify-self: end; }
    .nav-menu summary {
        padding: 0;
        width: 42px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
    }
    .nav-btn { padding: 9px 10px; font-size: 0.92rem; white-space: nowrap; }
    .nav-btn .nav-btn-full { display: none; }
    .nav-btn .nav-btn-short { display: inline; }

    /* Anchor dropdown to the viewport so it never goes off-screen */
    .nav-menu-panel {
        position: fixed;
        left: 12px;
        right: 12px;
        width: auto;
        max-width: none;
        top: 74px;
    }

    .nav-mobile { top: 66px; right: 12px; max-height: calc(100vh - 84px); }

    /* Do not re-enable wrapping here; it makes the header spill onto 2 rows */

    .search-wrapper { flex-wrap: wrap; border-radius: 16px; }
    .search-wrapper i { display: none; }
    .search-wrapper input { flex: 1 1 100%; width: 100%; }
    .search-wrapper button { flex: 1 1 100%; width: 100%; padding: 14px 16px; }

    .section { padding: 54px 14px; }
    .section-header { margin-bottom: 26px; }
    .section-header h2 { font-size: 1.7rem; }

    .grid { grid-template-columns: 1fr; gap: 18px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 18px; }
        .card-footer { flex-wrap: wrap; gap: 12px; }
        .featured-bottom { flex-wrap: wrap; }

        .site-footer { padding: 44px 0 22px; }
        .footer-bottom { margin-top: 24px; }
    .value-props { margin: 0 auto 40px; gap: 16px; }
    .prop-item { padding: 18px; }
    .review-card { padding: 18px; }

    .faq-question { padding: 16px; gap: 12px; flex-wrap: wrap; align-items: flex-start; }
    .faq-answer { padding: 0 16px 16px; }

    .newsletter-form { flex-direction: column; }
    .newsletter-form button { width: 100%; }

    .cookie-banner { left: 12px; right: 12px; max-width: calc(100% - 24px); }

    .page-shell { padding: 71px 14px 56px; gap: 14px; }
    .page-hero { padding: 22px; }
    .page-card { padding: 16px; }

    .topbar-inner { flex-wrap: wrap; gap: 10px; }
    .topbar-right { flex-wrap: wrap; }
}


@media (prefers-reduced-motion: reduce) {
    .hero-bg { animation: none !important; }
    .reveal { animation: none !important; opacity: 1 !important; }
}

/* Hero right panel */
.hero-right { width: 100%; }
.hero-panel { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: 18px; padding: 18px; box-shadow: 0 18px 50px rgba(0,0,0,0.22); }
.hero-panel-title { color: rgba(255,255,255,0.92); font-weight: 800; letter-spacing: 0.3px; margin-bottom: 12px; }
.hero-panel .hero-mini { max-width: unset; }
.hero-panel .hero-mini div { justify-content: flex-start; }
.hero-panel-foot { color: rgba(255,255,255,0.75); margin-top: 14px; font-size: 0.9rem; }

@media (max-width: 980px) {
    header.hero { height: auto; min-height: 0; padding: 110px 0 60px; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .trust-strip { max-width: 680px; }
}

@media (max-width: 420px) {
    .hero h1 { font-size: 2.05rem; }
    .hero-sub { font-size: 1rem; }
    .search-wrapper input { padding: 13px 14px; }
    .search-wrapper button { padding: 13px 14px; }

    .trust-strip { grid-template-columns: 1fr; }
    .hero-mini { grid-template-columns: 1fr; }
    .hero-mini div { justify-content: flex-start; }

    .tag { top: 14px; left: 14px; }
    .card-img-wrap { height: 210px; }
}

/* Make wide tables usable on mobile (admin + exports) */
@media (max-width: 700px) {
    table { display: block; width: 100%; overflow-x: auto; }
}
/* --- APPEND TO BOTTOM OF STYLE.CSS --- */

/* Value Props (Why Us) */
.value-props { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; max-width: 1200px; margin: -50px auto 50px; position: relative; z-index: 10; padding: 0 20px; }
.prop-item { background: rgba(255,255,255,0.78); padding: 30px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); text-align: center; transition: 0.3s; border: 1px solid rgba(255,255,255,0.55); -webkit-backdrop-filter: blur(14px) saturate(160%); backdrop-filter: blur(14px) saturate(160%); }
.prop-item:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,0.12); }
.icon-box { font-size: 2rem; color: var(--gold); margin-bottom: 15px; }
.prop-item h3 { font-size: 1.2rem; margin-bottom: 10px; }
.prop-item p { font-size: 0.9rem; color: #666; line-height: 1.5; }

/* Reviews Grid */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.review-card { background: rgba(255,255,255,0.78); padding: 30px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.55); -webkit-backdrop-filter: blur(14px) saturate(160%); backdrop-filter: blur(14px) saturate(160%); }
/* Subtle organic spacing - alee */
.review-card:nth-child(1) { margin-top: 3px; }
.review-card:nth-child(2) { margin-top: -2px; }
.review-card:nth-child(3) { margin-top: 1px; }
.review-card .stars { color: #f1c40f; margin-bottom: 15px; letter-spacing: 3px; }
.review-card p { font-style: italic; color: #555; line-height: 1.6; margin-bottom: 20px; }
.author { display: flex; align-items: center; gap: 15px; }
.author img { width: 45px; height: 45px; border-radius: 50%; }
.author strong { font-size: 0.9rem; display: block; }
.author span { font-size: 0.8rem; color: #999; }

/* FAQ Accordion */
.faq-container { max-width: 800px; margin: 0 auto; background: rgba(255,255,255,0.78); border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid rgba(255,255,255,0.55); -webkit-backdrop-filter: blur(14px) saturate(160%); backdrop-filter: blur(14px) saturate(160%); }
.faq-item { border-bottom: 1px solid #eee; }
.faq-question { padding: 20px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: white; }
.faq-question:hover { background: #fafafa; }
.faq-answer { padding: 0 20px 20px; color: #666; line-height: 1.6; display: none; }

.reassurance-card {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 14px;
    padding: 16px;
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
}
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.92);
    font-weight: 900;
    font-size: 0.9rem;
}

/* Nav Links Desktop */
.nav-links { display: flex; gap: 22px; }
.nav-links a { text-decoration: none; color: rgba(15,15,15,0.78); font-weight: 750; font-size: 0.95rem; opacity: 1; position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; background: rgba(212,175,55,0.0); border-radius: 999px; transition: 160ms ease; }
.nav-links a:hover { opacity: 1; color: var(--ink); }
.nav-links a:hover::after { background: rgba(212,175,55,0.75); }
.site-nav.is-overlay .nav-links a { color: rgba(255,255,255,0.92); font-weight: 600; opacity: 0.9; }
@media (max-width: 768px) {
    /* Mobile/tablet nav: keep header compact */
    .nav-links { display: none !important; }
    .nav-menu { display: inline-block !important; position: relative; }
    .nav-actions { gap: 8px; }
    .nav-select { display: none !important; }
    .nav-inner { position: relative; gap: 10px; }
    .nav-btn { padding: 10px 12px; white-space: nowrap; }
}

/* Featured Picks */
.featured-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.featured-card { background: rgba(255,255,255,0.78); border-radius: 18px; box-shadow: var(--shadow); display: grid; grid-template-columns: 92px 1fr; gap: 14px; border: 1px solid rgba(255,255,255,0.55); text-decoration: none; color: inherit; overflow: hidden; transition: var(--transition); -webkit-backdrop-filter: blur(14px) saturate(160%); backdrop-filter: blur(14px) saturate(160%); }
.featured-card:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(0,0,0,0.13); }
.featured-thumb { background-size: cover; background-position: center; min-height: 100%; }
.featured-content { padding: 16px 16px 16px 0; display: flex; flex-direction: column; gap: 10px; }
.featured-top { display: flex; justify-content: space-between; align-items: center; }
.featured-chip { background: #fff4cc; color: #8a4a0b; padding: 6px 10px; border-radius: 12px; font-size: 0.78rem; font-weight: 700; }
.featured-rating { color: #f59e0b; font-weight: 700; }
.featured-meta { display: flex; gap: 10px; flex-wrap: wrap; color: #666; font-size: 0.9rem; }
.featured-meta span { display: inline-flex; align-items: center; gap: 6px; }
.featured-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: auto; gap: 12px; }
.featured-price { font-size: 1.3rem; font-weight: 800; }
.featured-desc { color: #555; line-height: 1.5; font-size: 0.92rem; }
.next-date { color: #777; font-size: 0.85rem; margin-top: 4px; }
.featured-cta { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--dark); }
.featured-cta .btn-arrow { width: 34px; height: 34px; }

@media (max-width: 600px) {
    .featured-card { grid-template-columns: 1fr; }
    .featured-thumb { height: 150px; }
    .featured-content { padding: 16px; }
}

/* Support & Newsletter */
.support-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 30px; align-items: center; }
.support-actions { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.newsletter-card { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); padding: 20px; border-radius: 16px; -webkit-backdrop-filter: blur(14px) saturate(160%); backdrop-filter: blur(14px) saturate(160%); }
.newsletter-card p { color: #ddd; margin: 10px 0; }
.newsletter-form { display: flex; gap: 10px; margin-top: 10px; }
.newsletter-form input { flex: 1; padding: 12px 14px; border-radius: 10px; border: none; outline: none; }
.newsletter-form button { padding: 12px 16px; border-radius: 10px; border: none; background: var(--gold); color: var(--dark); font-weight: 800; cursor: pointer; }

/* Cookie banner */
.cookie-banner { position: fixed; bottom: 16px; right: 16px; max-width: 380px; background: rgba(255,255,255,0.86); border: 1px solid rgba(255,255,255,0.55); border-radius: 14px; box-shadow: var(--shadow); padding: 16px; display: none; gap: 12px; z-index: 200; -webkit-backdrop-filter: blur(14px) saturate(160%); backdrop-filter: blur(14px) saturate(160%); }
.cookie-banner.show { display: grid; grid-template-columns: 1fr; }
.cookie-banner p { color: #555; margin-top: 6px; }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.cookie-actions button { border: none; padding: 10px 12px; border-radius: 10px; cursor: pointer; font-weight: 700; }
.cookie-actions #cookieAccept { background: var(--dark); color: white; }
.cookie-actions #cookieDecline { background: #f5f5f5; color: #333; border: 1px solid #ddd; }

/* Shared page layout helpers (terms/privacy/contact/about/payment fallback/etc) */
.page-shell { max-width: 1000px; margin: 0 auto; padding: 95px 20px 80px; display: grid; gap: 16px; }
.page-shell > .page-card { width: 100%; margin-left: auto; margin-right: auto; }
.page-hero {
    background: radial-gradient(1200px 600px at 20% 0%, rgba(212,175,55,0.25), transparent 55%),
                linear-gradient(135deg, #0b0f19, #121826);
    color: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.08);
}
.page-hero h1 { margin: 10px 0 10px; font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.08; color: white; }
.page-hero p { margin: 0; max-width: 72ch; color: rgba(255,255,255,0.85); line-height: 1.7; }
.page-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 24px; }
.page-card {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(255,255,255,0.55);
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
}
.page-card p { color: #555; line-height: 1.7; }
.page-card a:not(.pill-btn):not(.ghost-btn):not(.nav-btn):not(.checkout-btn) { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(0,0,0,0.25); }
.page-card a:not(.pill-btn):not(.ghost-btn):not(.nav-btn):not(.checkout-btn):hover { text-decoration-color: rgba(0,0,0,0.55); }
.page-card h2, .page-card h3 { margin: 18px 0 10px; }
.page-card h2:first-child, .page-card h3:first-child { margin-top: 0; }
.page-card p { margin: 10px 0; }
.page-card ul { margin: 10px 0 18px 20px; color: #444; line-height: 1.7; }

/* ----------------------------
   Product Page (product.php)
---------------------------- */
.product-page { background: var(--soft-white); }
.product-topbar { background: white; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }

.product-page .plan-tabs { align-items: center; }
.product-page .plan-tab {
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid rgba(15,23,42,0.12);
    background: rgba(255,255,255,0.55);
    padding: 10px 12px;
    border-radius: 999px;
    font-weight: 900;
    color: var(--ink);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(15,23,42,0.08);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}
.product-page .plan-tab:hover {
    background: rgba(255,255,255,0.9);
    border-color: rgba(15,23,42,0.18);
    transform: translateY(-1px);
}
.product-page .plan-tab.is-active {
    background: rgba(99,102,241,0.18);
    border-color: rgba(99,102,241,0.45);
    box-shadow: 0 10px 24px rgba(99,102,241,0.18);
}

.product-page .product-mini-card,
.product-page .product-related-card {
    text-align: left;
}
.product-page .product-mini-card .mini-card-title,
.product-page .product-related-card .mini-card-title {
    font-size: 1rem;
    line-height: 1.25;
    letter-spacing: 0.1px;
}
.product-page .product-mini-card .mini-card-text,
.product-page .product-related-card .mini-card-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #5b5b5b;
}
.product-page .product-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-page .product-mini-card .mini-card-text {
    text-align: left;
}
.product-page .product-related-card {
    display: grid;
    gap: 10px;
}
.product-page .product-related-card .related-thumb {
    width: 100%;
    height: 120px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,0.08);
    background: rgba(15,23,42,0.04);
}
.product-page .product-related-card .related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 980px) {
    .product-page .product-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .product-page .product-mini-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-topbar { position: relative; top: auto; }
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }
.back-link { display: inline-flex; align-items: center; gap: 10px; color: #444; font-weight: 800; text-decoration: none; }
.back-link:hover { color: var(--dark); }
.topbar-right { display: inline-flex; align-items: center; gap: 10px; }
.rating-inline { color: #f59e0b; font-weight: 900; }
.muted-inline { color: #777; font-weight: 700; font-size: 0.9rem; }

.product-hero { padding: 24px 0 10px; }
.product-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 26px;
    align-items: start;
}
.product-hero-inner > * { min-width: 0; }
.product-gallery { background: white; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.gallery-main { width: 100%; height: 420px; object-fit: cover; display: block; }
.gallery-thumbs {
    display: flex;
    gap: 10px;
    padding: 12px;
    overflow-x: auto;
    max-width: 100%;
    overscroll-behavior-x: contain;
    border-top: 1px solid rgba(0,0,0,0.06);
    background: #fafafa;
}
.thumb { border: 1px solid rgba(0,0,0,0.10); border-radius: 12px; padding: 0; background: white; cursor: pointer; overflow: hidden; width: 84px; height: 60px; flex: 0 0 auto; }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb img[src$="placeholder.svg"] { object-fit: contain; padding: 10px; background: linear-gradient(135deg, #0b0f19, #111827); }
.gallery-main[src$="placeholder.svg"] { object-fit: contain; background: linear-gradient(135deg, #0b0f19, #111827); }

.product-summary { padding: 6px 0; }
.tag-chip { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: #111; color: white; font-weight: 900; letter-spacing: 0.4px; font-size: 0.78rem; }
.tag-chip i { margin-right: 8px; opacity: 0.95; }
.product-title { font-size: 2.3rem; line-height: 1.1; margin-top: 12px; }
.product-rating { display: flex; gap: 10px; align-items: baseline; margin-top: 10px; flex-wrap: wrap; }
.product-rating .stars { color: #f59e0b; font-weight: 900; }
.product-rating .muted { color: #777; font-weight: 600; }
.product-price { font-size: 2.2rem; font-weight: 900; color: var(--dark); margin-top: 14px; }
.per-unit { font-size: 1rem; color: #777; font-weight: 700; }
.product-desc { margin-top: 12px; color: #555; line-height: 1.7; }
.feature-list { display: grid; gap: 10px; margin-top: 16px; }
.feature { display: flex; gap: 10px; align-items: flex-start; color: #333; font-weight: 700; }
.feature i { color: #22c55e; margin-top: 2px; }

.product-body { padding: 20px 0 70px; }
.product-body-inner { display: grid; grid-template-columns: 1fr 420px; gap: 26px; align-items: start; }
.product-body-inner > * { min-width: 0; }
.product-booking { width: 100%; max-width: 460px; justify-self: end; }
.content-card {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
    text-align: left;
}
.content-card h3 { margin-bottom: 10px; }
.muted-text { color: #555; line-height: 1.7; text-align: left; word-break: break-word; }
.bullets { margin: 10px 0 0 18px; color: #555; line-height: 1.7; text-align: left; }

.product-page .bullets li { margin: 8px 0; }

/* Key information (product page) */
.product-page .keyinfo-card h3 { margin-bottom: 12px; }

.product-page .keyinfo-item {
    border: 1px solid rgba(15,23,42,0.10);
    border-radius: 16px;
    background: rgba(255,255,255,0.78);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    backdrop-filter: blur(10px) saturate(140%);
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(15,23,42,0.06);
}

.product-page .keyinfo-item > summary {
    cursor: pointer;
    padding: 12px 12px;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 1000;
    color: var(--ink);
    background: linear-gradient(135deg, rgba(212,175,55,0.10), rgba(255,255,255,0.88));
    border-left: 4px solid rgba(212,175,55,0.55);
}

.product-page .keyinfo-item > summary::-webkit-details-marker { display: none; }

.product-page .keyinfo-item > summary::after {
    content: '▾';
    margin-left: auto;
    opacity: 0.75;
    font-weight: 900;
}

.product-page .keyinfo-item[open] > summary::after { content: '▴'; }

.product-page .keyinfo-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15,23,42,0.06);
    border: 1px solid rgba(15,23,42,0.10);
    flex: 0 0 auto;
}

.product-page .keyinfo-label {
    font-size: 1rem;
    letter-spacing: 0.1px;
}

.product-page .keyinfo-body {
    padding: 12px 12px 14px;
    background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(248,250,252,0.96));
    color: #111;
}

.product-page .keyinfo-body .muted-text { color: #3f3f46; font-weight: 650; }
.product-page .keyinfo-body strong { color: #111; font-weight: 950; }
.product-page .keyinfo-body .bullets { margin-top: 0; }

.booking-card {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 84px;
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
}
.booking-card h3 { margin-bottom: 14px; }
.form-group { margin-bottom: 16px; }
label { display: block; font-weight: 800; margin-bottom: 8px; font-size: 0.92rem; }
input, select, textarea { width: 100%; padding: 14px; border: 1px solid #ddd; border-radius: 12px; font-family: 'Inter', sans-serif; font-size: 1rem; outline: none; background: var(--surface); color: inherit; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,0.15); }

.times-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.time-btn { border: 1px solid rgba(0,0,0,0.12); background: white; border-radius: 12px; padding: 10px 8px; font-weight: 900; cursor: pointer; transition: var(--transition); }
.time-btn:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.time-btn.active { background: var(--dark); color: white; border-color: var(--dark); }
.time-btn.sold-out { border-color: rgba(239,68,68,0.28); background: rgba(239,68,68,0.04); }
.time-btn.disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; box-shadow: none !important; transform: none !important; }
.field-hint { margin-top: 8px; color: #777; font-size: 0.9rem; }

.guests-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.guests-grid small { display: block; color: #777; font-weight: 700; margin-bottom: 6px; }
.price-breakdown { margin-top: 10px; color: #666; font-size: 0.92rem; display: flex; gap: 12px; flex-wrap: wrap; }

.addons { display: grid; gap: 10px; }
.checkbox { display: flex; gap: 10px; align-items: center; font-weight: 800; color: #222; }
.checkbox input { width: auto; padding: 0; }
.muted-check { opacity: 0.8; }
.addon-prices { color: #666; font-weight: 700; font-size: 0.9rem; }

.secure-note { margin-top: 12px; font-size: 0.88rem; color: #777; text-align: center; }

/* Buttons that look like portal tabs */
button.portal-tab { -webkit-appearance: none; appearance: none; font-family: inherit; cursor: pointer; }

.recs .rec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.recs .rec-card { border: 1px solid rgba(255,255,255,0.55); border-radius: 16px; padding: 14px; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 8px; transition: var(--transition); background: rgba(255,255,255,0.78); -webkit-backdrop-filter: blur(14px) saturate(160%); backdrop-filter: blur(14px) saturate(160%); }
.recs .rec-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.10); }
.recs .rec-img { height: 140px; border-radius: 12px; overflow: hidden; background: #f1f5f9; }
.recs .rec-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rec-top { display: flex; justify-content: space-between; align-items: center; }
.rec-chip { background: #eef2ff; color: #1f2937; padding: 6px 10px; border-radius: 999px; font-weight: 900; font-size: 0.78rem; }
.rec-rating { color: #f59e0b; font-weight: 900; }
.rec-title { font-weight: 900; font-size: 1.05rem; }
.rec-desc { color: #666; line-height: 1.5; font-size: 0.92rem; }
.rec-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }
.rec-price { font-weight: 900; }
.rec-cta { font-weight: 900; }

@media (max-width: 980px) {
    .product-hero-inner { grid-template-columns: 1fr; }
    .gallery-main { height: 340px; }
    .product-body-inner { grid-template-columns: 1fr; }
    .product-booking { justify-self: stretch; max-width: none; }
    .booking-card { position: relative; top: 0; }
    .times-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 520px) {
    .gallery-main { height: 260px; }
    .times-grid { grid-template-columns: repeat(2, 1fr); }
    .product-title { font-size: 1.9rem; }
    .product-price { font-size: 1.8rem; }
}

/* Never show the mobile menu/backdrop on desktop */
@media (min-width: 769px) {
    .nav-backdrop, .nav-mobile { display: none !important; }
}

/* ==============================================
    DolceVita Marketplace v2.1
   Lead Developer: alee
   Last Updated: 2026.01.12
   "Crafted with care, not generated" - alee
   ============================================== */

/* --- Booking flow (Headout-like, premium) --- */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.booking-mini {
    display: grid;
    gap: 8px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 12px;
    background: rgba(255,255,255,0.75);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    backdrop-filter: blur(10px) saturate(140%);
    margin: 10px 0 14px;
}
.booking-mini-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: baseline;
}
.booking-mini-label { color: var(--text-muted); font-weight: 800; font-size: .86rem; }
.booking-mini-value { font-weight: 900; }

.booking-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 12px;
}

.booking-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.82);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    backdrop-filter: blur(10px) saturate(140%);
    font-weight: 900;
    font-size: 0.82rem;
    color: #0b1220;
    line-height: 1;
}

.booking-tag i { opacity: 0.85; }

.booking-callout {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.80);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    backdrop-filter: blur(10px) saturate(140%);
}

.booking-callout.urgent {
    border-color: rgba(245,158,11,0.35);
    background: rgba(245,158,11,0.08);
}

.booking-callout.good {
    border-color: rgba(34,197,94,0.35);
    background: rgba(34,197,94,0.06);
}

.booking-callout.danger {
    border-color: rgba(239,68,68,0.35);
    background: rgba(239,68,68,0.06);
}

.booking-callout.neutral {
    border-color: rgba(59,130,246,0.25);
    background: rgba(59,130,246,0.05);
}

.booking-tag.good {
    border-color: rgba(34,197,94,0.30);
    background: rgba(34,197,94,0.06);
}

.booking-tag.danger {
    border-color: rgba(239,68,68,0.30);
    background: rgba(239,68,68,0.06);
}

.booking-tag.neutral {
    border-color: rgba(59,130,246,0.22);
    background: rgba(59,130,246,0.05);
}

/* Media library picker (admin/supplier) */
.media-library-toolbar { display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:space-between; }
.media-library-search { width:min(520px, 100%); padding:10px 12px; border:1px solid var(--border); border-radius:12px; background:var(--surface); }
.media-library-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap:10px; }
.media-library-item { border:1px solid var(--border); border-radius:14px; overflow:hidden; background:var(--surface); }
.media-library-item img { width:100%; height: 92px; object-fit:cover; display:block; background:#fafafa; }
.media-library-meta { padding:10px; display:grid; gap:8px; }
.media-library-actions { display:flex; gap:8px; flex-wrap:wrap; }
.media-library-actions .ghost-btn { padding:8px 10px; border-radius:999px; }
.media-library-item.is-picked { outline: 2px solid rgba(34,197,94,0.35); outline-offset: -2px; }

.price-details {
    margin-top: 12px;
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 16px;
    background: rgba(255,255,255,0.78);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    backdrop-filter: blur(10px) saturate(140%);
    overflow: hidden;
}

.price-details summary {
    cursor: pointer;
    padding: 12px 12px;
    font-weight: 950;
    list-style: none;
}

.price-details summary::-webkit-details-marker { display: none; }

.price-details summary::after {
    content: '▾';
    float: right;
    opacity: 0.75;
}

.price-details[open] summary::after { content: '▴'; }

.price-details-body {
    padding: 0 12px 12px;
    display: grid;
    gap: 8px;
}

.price-details-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: #222;
    font-weight: 800;
    font-size: 0.95rem;
}

.price-details-row span:first-child { color: #444; font-weight: 850; }

.price-details-row.total {
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.10);
    font-weight: 1000;
}

.booking-step { margin-top: 14px; }
.step-head {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.step-num {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 1000;
    background: rgba(15,23,42,0.06);
    border: 1px solid rgba(0,0,0,0.08);
}
.step-title { font-weight: 1000; }
.step-sub { color: var(--text-muted); font-size: .9rem; margin-top: 2px; }

.date-strip {
    margin-top: 10px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(108px, 1fr);
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
}
.date-strip::-webkit-scrollbar { height: 8px; }
.date-strip::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.10); border-radius: 999px; }

.date-chip {
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 16px;
    padding: 10px 10px;
    text-align: left;
    background: rgba(255,255,255,0.88);
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
    scroll-snap-align: start;
}
.date-chip:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.10); }
.date-chip.selected {
    border-color: rgba(212,175,55,0.55);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.16);
}
.date-chip-top { display:block; color: var(--text-muted); font-weight: 900; font-size: .85rem; }
.date-chip-mid { display:block; font-weight: 1000; margin-top: 2px; }
.date-chip-price { display:inline-flex; margin-top: 8px; font-weight: 1000; color: #0b1220; }
.date-chip-more { background: rgba(15,23,42,0.06); }

.selected-date-price {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.75);
}
.selected-date-price-label { color: var(--text-muted); font-weight: 900; }
.selected-date-price-value { display: inline-flex; align-items: baseline; gap: 8px; font-weight: 1000; }
.selected-date-price-unit { color: var(--text-muted); font-weight: 900; font-size: .9rem; }

.options-grid {
    margin-top: 10px;
    display: grid;
    gap: 10px;
}

.option-card {
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 18px;
    padding: 12px;
    background: rgba(255,255,255,0.78);
    cursor: pointer;
    text-align: left;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
}
.option-card:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0,0,0,0.10); }
.option-card.selected { border-color: rgba(212,175,55,0.55); box-shadow: 0 0 0 4px rgba(212,175,55,0.16); }

.option-card-top { display:flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.option-card-title { font-weight: 1000; }
.option-card-price { font-weight: 1000; color: #0b1220; white-space: nowrap; }
.option-card-sub { margin-top: 6px; color: var(--text-muted); line-height: 1.4; }
.option-card-badge {
    display: inline-flex;
    margin-top: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 1000;
    font-size: .78rem;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(15,23,42,0.06);
}
.option-card-cta {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 14px;
    font-weight: 1000;
    border: 1px solid rgba(15,23,42,0.12);
    background: rgba(15,23,42,0.05);
}

/* Flatpickr calendar day price tag */
.flatpickr-calendar {
    width: min(420px, calc(100vw - 24px));
    border-radius: 16px;
}
.flatpickr-rContainer,
.flatpickr-days,
.dayContainer {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
}

/* Prevent large media from forcing horizontal scroll */
img, video, iframe { max-width: 100%; height: auto; }

.flatpickr-day {
    position: relative;
    height: 58px;
    line-height: 58px;
    padding-bottom: 0;
}

.cal-day-price {
    position: absolute;
    left: 50%;
    bottom: 3px;
    transform: translateX(-50%);
    display: inline-flex;
    font-weight: 1000;
    font-size: .72rem;
    margin-top: 0;
    padding: 2px 6px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.85);
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
}

/* Checkout disabled state */
.checkout-btn[disabled],
.checkout-btn[aria-disabled="true"] {
    opacity: 0.65;
    cursor: not-allowed;
    filter: saturate(0.9);
}

/* --- Supplier apply (conversion layout) --- */
body.supplier-apply .site-nav .nav-links { display: none; }
body.supplier-apply .site-nav .nav-actions .ghost-btn { display: none; }

.supplier-apply-wrap { padding-top: 92px; padding-bottom: 34px; }
.supplier-apply-form-only { max-width: 860px; margin: 0 auto; }
.supplier-apply-top { margin-bottom: 14px; }
.supplier-apply-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    align-items: start;
}

.supplier-apply-hero {
    background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(255,255,255,0.70));
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 18px 46px rgba(0,0,0,0.08);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    backdrop-filter: blur(10px) saturate(150%);
}

.supplier-apply-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    font-size: .9rem;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(212,175,55,0.14);
    border: 1px solid rgba(212,175,55,0.22);
}

.supplier-apply-hero h1 {
    margin-top: 12px;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}
.supplier-apply-lead {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.55;
}

.supplier-apply-benefits {
    margin-top: 16px;
    display: grid;
    gap: 12px;
}

.supplier-benefit {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.70);
}
.supplier-benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14,165,233,0.10);
    border: 1px solid rgba(14,165,233,0.18);
}
.supplier-benefit-title { font-weight: 1000; }

.supplier-apply-trust {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.supplier-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(0,0,0,0.07);
    font-weight: 900;
    font-size: .92rem;
}

.supplier-apply-steps {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.supplier-step {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.07);
    background: rgba(255,255,255,0.60);
    font-weight: 900;
}
.supplier-step-num {
    width: 26px;
    height: 26px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.18);
    border: 1px solid rgba(212,175,55,0.28);
    font-size: .9rem;
}
.supplier-apply-fineprint { margin-top: 12px; font-size: .95rem; }

.supplier-apply-faq {
    margin-top: 16px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 22px;
    padding: 18px 18px 10px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.06);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    backdrop-filter: blur(10px) saturate(150%);
}
.supplier-apply-faq h2 { margin: 0 0 12px; font-size: 1.1rem; }
.supplier-apply-faq details {
    border-top: 1px solid rgba(0,0,0,0.07);
    padding: 10px 0;
}
.supplier-apply-faq details:first-of-type { border-top: 0; }
.supplier-apply-faq summary {
    cursor: pointer;
    font-weight: 1000;
    list-style: none;
}
.supplier-apply-faq summary::-webkit-details-marker { display: none; }
.supplier-faq-body { margin-top: 8px; line-height: 1.6; }

.supplier-apply-form-card { padding: 18px; border-radius: 22px; }
.supplier-apply-form-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.supplier-apply-alert {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    background: rgba(255,247,237,0.92);
    border: 1px solid rgba(253,186,116,0.65);
    color: #9a3412;
    padding: 12px 14px;
    border-radius: 16px;
    margin: 10px 0 16px;
    font-weight: 900;
}

.supplier-apply-form { display: grid; gap: 16px; }

.supplier-form-section { padding-top: 8px; border-top: 1px solid rgba(0,0,0,0.08); }
.supplier-form-section:first-of-type { border-top: 0; padding-top: 0; }

.supplier-section-head { margin-bottom: 10px; }
.supplier-section-head h3 { margin: 0; font-size: 1.05rem; }
.supplier-section-head p { margin-top: 6px; }

.supplier-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.supplier-field label { display: block; font-weight: 900; font-size: .92rem; margin: 0 0 6px; }
.supplier-field input[type="file"] { padding: 12px; }

.supplier-confirm { display: flex; gap: 10px; align-items: flex-start; font-weight: 900; margin-top: 2px; }
.supplier-confirm input { width: auto; margin-top: 3px; }

.supplier-apply-submit { margin-top: 4px; }
.supplier-apply-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }

.supplier-apply-success { text-align: center; padding: 8px 6px 0; }
.supplier-apply-success-icon { font-size: 2.4rem; margin-bottom: 8px; color: rgba(16,185,129,0.92); }
.supplier-apply-success-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

@media (max-width: 980px) {
    .supplier-apply-grid { grid-template-columns: 1fr; }
    .supplier-apply-wrap { padding-top: 84px; }
}
@media (max-width: 640px) {
    .supplier-form-grid { grid-template-columns: 1fr; }
    .supplier-apply-hero, .supplier-apply-form-card { padding: 16px; }
}

@media (max-width: 380px) {
    /* Extra-tight devices: keep everything on one row */
    .brand { font-size: 0.98rem; }
    .brand span { font-size: 0.94rem; }
    .nav-btn { padding: 8px 9px; font-size: 0.9rem; }
    .nav-menu summary { width: 40px; height: 38px; }
}

/* Desktop header spacing: brand left; links and actions grouped on the right. */
.nav-inner { justify-content: flex-start; }
.nav-links { margin-left: clamp(28px, 4.5vw, 140px); flex: 1; justify-content: flex-end; min-width: 0; }

/* Keep "More" menu as mobile-only control. */
.site-nav .nav-menu { display: none; }

/* Non-home pages: solid white sticky header (no transparency). */
.site-nav:not(.is-overlay) { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.10); -webkit-backdrop-filter: none; backdrop-filter: none; }
.site-nav:not(.is-overlay).is-scrolled { background: #fff; box-shadow: 0 10px 28px rgba(0,0,0,0.08); }

/* Homepage: pill header controls its own width; do not clamp to the content container. */
.site-nav[data-variant="home"] .container.nav-inner { max-width: min(2392px, calc(100% - 20px)); margin-left: auto; margin-right: auto; }

.nav-actions { margin-left: 16px; flex-shrink: 0; }

.site-nav.is-overlay.is-scrolled {
    background: var(--nav-solid-bg);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: none;
}
.site-nav.is-overlay.is-scrolled .brand { color: var(--ink); }
.site-nav.is-overlay.is-scrolled .nav-links a { color: rgba(15,15,15,0.78); opacity: 0.92; }
.site-nav.is-overlay.is-scrolled .nav-menu summary {
    background: rgba(15,15,15,0.08);
    border-color: rgba(0,0,0,0.14);
    color: var(--ink);
}
.site-nav.is-overlay.is-scrolled .ghost-btn { border-color: rgba(0,0,0,0.14); color: var(--ink); }
.site-nav.is-overlay.is-scrolled .ghost-btn:hover {
    background: var(--accent);
    color: var(--ivory);
    border-color: var(--accent);
}
.site-nav.is-overlay.is-scrolled .nav-btn { background: var(--dark); color: #fff; }

/* --- Header compact + clearer nav typography (2026-02-15) --- */
.site-nav {
    padding: 9px 0;
}

.site-nav-spacer { height: 76px; }

.brand {
    font-size: 0.95rem;
    letter-spacing: 0.1px;
}

.nav-links {
    gap: 18px;
}

.nav-links a,
.site-nav .nav-menu-panel a,
.site-nav .nav-btn,
.site-nav .ghost-btn,
.site-nav .pill-btn {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0;
    text-rendering: geometricPrecision;
}

.nav-links a {
    font-size: 0.98rem;
    font-weight: 700;
    color: rgba(15,15,15,0.84);
}

.site-nav .nav-actions {
    gap: 8px;
}

.site-nav .nav-btn {
    padding: 9px 14px;
    font-size: 0.92rem;
    font-weight: 850;
    line-height: 1.1;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.site-nav .nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.14);
}

.site-nav .nav-cart-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.14);
    background: rgba(255,255,255,0.92);
    color: var(--ink);
}

.site-nav .nav-cart-btn i {
    font-size: 0.96rem;
    line-height: 1;
}

.site-nav.is-overlay .nav-cart-btn {
    background: rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.96);
    border-color: rgba(255,255,255,0.35);
}

.site-nav.is-overlay.is-scrolled .nav-cart-btn {
    background: rgba(255,255,255,0.92);
    color: var(--ink);
    border-color: rgba(0,0,0,0.14);
}

@media (max-width: 768px) {
    .site-nav { padding: 6px 0; }
    .site-nav-spacer { height: 68px; }
    .nav-inner { gap: 8px; }
    .brand { font-size: 1.02rem; }
    .site-nav .nav-actions { gap: 6px; }
    .site-nav .nav-btn { padding: 8px 11px; font-size: 0.88rem; }
    .site-nav .nav-cart-btn { width: 35px; height: 35px; }
    .nav-menu summary { width: 36px; height: 34px; padding: 0; justify-content: center; }
}

@media (max-width: 520px) {
    .site-nav-spacer { height: 66px; }
    .site-nav .nav-btn { padding: 8px 10px; font-size: 0.86rem; }
    .site-nav .nav-cart-btn { width: 34px; height: 34px; }
}

/* --- Homepage header: glass pill style --- */
.site-nav[data-variant="home"] {
    padding: 10px 0;
    background: transparent;
    border-bottom: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
}

.site-nav[data-variant="home"] .nav-inner {
    max-width: min(2392px, calc(100% - 20px));
    margin: 0 auto;
    padding: 10px 28px;
    border-radius: 999px;
    /* Glassy + transparent (match chip/glass look) */
    background: linear-gradient(180deg, rgba(255,255,255,0.40), rgba(255,255,255,0.18));
    border: 1px solid rgba(255,255,255,0.34);
    -webkit-backdrop-filter: blur(18px) saturate(175%);
    backdrop-filter: blur(18px) saturate(175%);
    box-shadow: 0 8px 20px rgba(15,23,42,0.09);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
}

.site-nav[data-variant="home"] .brand {
    font-size: 1.12rem;
    font-weight: 900;
    color: #121212;
    white-space: nowrap;
}

.site-nav[data-variant="home"] .nav-links {
    /* Match global spacing: links occupy remaining space and align right */
    margin-left: clamp(28px, 4.5vw, 140px);
    flex: 1;
    min-width: 0;
    justify-content: flex-end;
    gap: clamp(22px, 2.3vw, 40px);
}

.site-nav[data-variant="home"] .nav-links a {
    color: rgba(15,15,15,0.95);
    font-size: 0.98rem;
    font-weight: 780;
}

.site-nav[data-variant="home"] .nav-actions {
    margin-left: 16px;
}

.site-nav[data-variant="home"] .nav-btn {
    background: var(--gold);
    color: var(--ink);
    border-color: rgba(199,155,42,0.45);
    box-shadow: 0 8px 18px rgba(199,155,42,0.26);
    min-width: 0;
    width: auto;
    justify-content: center;
    padding: 8px 16px;
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-nav[data-variant="home"] .nav-btn:hover {
    background: var(--gold-2);
    color: var(--ink);
    box-shadow: 0 12px 24px rgba(199,155,42,0.30);
}

/* Cart stays visible on homepage too */
.site-nav[data-variant="home"] .nav-cart-btn { display: inline-flex; }

.site-nav[data-variant="home"].is-scrolled {
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
}

.site-nav[data-variant="home"].is-scrolled .nav-inner {
    background: linear-gradient(180deg, rgba(255,255,255,0.48), rgba(255,255,255,0.24));
    border-color: rgba(255,255,255,0.40);
    box-shadow: 0 8px 18px rgba(15,23,42,0.09);
}

/* --- Non-home pages: use the same pill header container --- */
.site-nav:not([data-variant="home"]) {
    background: transparent;
    border-bottom: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}
.site-nav:not([data-variant="home"]) .nav-inner {
    max-width: min(2392px, calc(100% - 20px));
    margin: 0 auto;
    padding: 10px 28px;
    border-radius: 999px;
    /* Glassy + transparent (same look as homepage) */
    background: linear-gradient(180deg, rgba(255,255,255,0.40), rgba(255,255,255,0.18));
    border: 1px solid rgba(255,255,255,0.28);
    -webkit-backdrop-filter: blur(18px) saturate(175%);
    backdrop-filter: blur(18px) saturate(175%);
    box-shadow: 0 8px 20px rgba(15,23,42,0.09);
}
.site-nav:not([data-variant="home"]).is-scrolled .nav-inner {
    background: linear-gradient(180deg, rgba(255,255,255,0.52), rgba(255,255,255,0.26));
    border-color: rgba(255,255,255,0.34);
}

@media (max-width: 980px) {
    .site-nav[data-variant="home"] { padding: 8px 0; }
    .site-nav[data-variant="home"] .nav-inner {
        max-width: calc(100% - 12px);
        padding: 8px 12px;
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(255,255,255,0.44), rgba(255,255,255,0.20));
        display: grid;
        grid-template-columns: minmax(0,1fr) auto auto;
        column-gap: 8px;
    }
    .site-nav[data-variant="home"] .brand {
        font-size: 0.90rem;
        line-height: 1.05;
    }
    .site-nav[data-variant="home"] .nav-btn {
        min-width: 0;
        padding: 8px 11px;
        font-size: 0.82rem;
    }

    .site-nav:not([data-variant="home"]) .nav-inner {
        max-width: calc(100% - 12px);
        padding: 8px 12px;
        border-radius: 20px;
    }
}

/* --- Header consistency + mobile cleanup (2026-02-22) --- */
.site-nav[data-variant="home"] .brand,
.site-nav:not([data-variant="home"]) .brand {
    font-size: 1.1rem;
}

.site-nav[data-variant="home"] .nav-inner,
.site-nav:not([data-variant="home"]) .nav-inner {
    padding: 10px 22px;
}

@media (max-width: 768px) {
    .site-nav[data-variant="home"] .nav-inner,
    .site-nav:not([data-variant="home"]) .nav-inner {
        max-width: calc(100% - 14px);
        padding: 8px 10px;
        border-radius: 16px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 8px;
    }

    /* Mobile: hide desktop link row; show hamburger menu. */
    .site-nav .nav-links { display: none; }
    .site-nav .nav-menu { display: block; justify-self: center; }

    .site-nav .brand {
        display: inline-flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 5px;
        font-size: 0.94rem;
        line-height: 1.05;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .site-nav .brand span {
        display: inline;
        font-size: inherit;
        margin-top: 0;
    }

    .site-nav .nav-actions { gap: 6px; }
    .site-nav .nav-cart-btn { width: 32px; height: 32px; }
    .site-nav .nav-btn { padding: 7px 10px; font-size: 0.8rem; }
    .site-nav .nav-menu summary { width: 34px; height: 34px; }
}

@media (max-width: 520px) {
    /* Phones: stack the brand so it never gets clipped by the menu/cart/CTA. */
    .site-nav .brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        line-height: 1.05;
    }

    .site-nav .brand span {
        display: block;
    }
}

@media (max-width: 420px) {
    .site-nav .brand { font-size: 0.88rem; }
    .site-nav .nav-btn { padding: 7px 9px; font-size: 0.78rem; }
}

/* --- Edge-to-edge header bar (2026-02-23) --- */
/*
   Remove the centered "pill" header container and let the header span full width.
   The outer .site-nav already provides the glass/sticky bar styles.
*/
.site-nav[data-variant="home"] .container.nav-inner,
.site-nav[data-variant="home"] .nav-inner,
.site-nav:not([data-variant="home"]) .nav-inner {
    max-width: none;
    width: 100%;
    margin: 0;
    border-radius: 0;
    /* Keep the bar full-bleed, but inset the contents from the edges. */
    padding: 8px clamp(14px, 10vw, 160px);
    background: transparent;
    border: 0;
    box-shadow: none;
    box-sizing: border-box;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

/* Remove outer padding so the header bar is truly full-bleed. */
.site-nav[data-variant="home"],
.site-nav:not([data-variant="home"]) {
    padding: 0;
}

/* Non-home pages: ensure the bar itself is visible (override older "transparent" section). */
.site-nav:not([data-variant="home"]) {
    /* Highly polished glass (more see-through, still glassy) */
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.04));
    border-bottom: 0;
    -webkit-backdrop-filter: blur(20px) saturate(180%) contrast(110%);
    backdrop-filter: blur(20px) saturate(180%) contrast(110%);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.55) inset,
        0 -1px 0 rgba(0,0,0,0.06) inset,
        0 12px 34px rgba(15,23,42,0.10);
}
.site-nav:not([data-variant="home"]).is-scrolled {
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.055));
    border-bottom: 0;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.62) inset,
        0 -1px 0 rgba(0,0,0,0.06) inset,
        0 14px 38px rgba(15,23,42,0.12);
}

/* Homepage: edge-to-edge glass bar (was previously on the pill container). */
.site-nav[data-variant="home"] {
    /* Highly polished glass over the hero */
    /* Darker glass at top so white logo/links are readable over the hero */
    background: linear-gradient(180deg, rgba(10,12,18,0.16), rgba(10,12,18,0.08));
    border-bottom: 0;
    -webkit-backdrop-filter: blur(22px) saturate(190%) contrast(112%);
    backdrop-filter: blur(22px) saturate(190%) contrast(112%);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.22) inset,
        0 14px 42px rgba(15,23,42,0.12);
}
.site-nav[data-variant="home"].is-scrolled {
    /* Light glass while scrolling for a clean sticky header */
    background: linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.045));
    border-bottom: 0;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.64) inset,
        0 16px 46px rgba(15,23,42,0.14);
}

/* Soft blurred bottom edge (no hard line). */
.site-nav[data-variant="home"],
.site-nav:not([data-variant="home"]) {
    overflow: visible;
}
.site-nav[data-variant="home"]::after,
.site-nav:not([data-variant="home"])::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14px;
    height: 28px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(15,23,42,0.10), rgba(15,23,42,0));
    filter: blur(14px);
    opacity: 0.75;
}
.site-nav[data-variant="home"].is-scrolled::after,
.site-nav:not([data-variant="home"]).is-scrolled::after {
    opacity: 0.85;
}

/* Homepage: blend into hero with a softer, tint-matched fade (no hard edge). */
.site-nav[data-variant="home"]::after {
    background: linear-gradient(180deg, rgba(10,12,18,0.09), rgba(10,12,18,0));
    opacity: 0.90;
}
.site-nav[data-variant="home"].is-scrolled::after {
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0));
    opacity: 0.85;
}

/* Homepage uses the overlay class; force dark text/icons so it stays readable on light glass. */
/* Brand + links color behavior:
   - Homepage overlay (top): white
   - Homepage overlay (scrolled): black
   - Non-home: black
*/
.site-nav .brand { font-weight: 900; }

.site-nav:not(.is-overlay) .brand {
    color: rgba(10,10,10,0.95);
}
.site-nav:not(.is-overlay) .nav-links a { color: rgba(15,15,15,0.86); opacity: 1; }

.site-nav.is-overlay:not(.is-scrolled) .brand {
    color: rgba(255,255,255,0.96);
}
.site-nav.is-overlay:not(.is-scrolled) .nav-links a { color: rgba(255,255,255,0.90); opacity: 1; }

.site-nav.is-overlay.is-scrolled .brand {
    color: rgba(10,10,10,0.95);
}
.site-nav.is-overlay.is-scrolled .nav-links a { color: rgba(15,15,15,0.86); opacity: 1; }

/* Menu + cart controls: match the same white-at-top, black-when-scrolled behavior on homepage. */
.site-nav.is-overlay:not(.is-scrolled) .nav-menu summary {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.30);
    color: rgba(255,255,255,0.92);
}
.site-nav.is-overlay:not(.is-scrolled) .nav-cart-btn {
    background: rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.92);
    border-color: rgba(255,255,255,0.28);
}
.site-nav.is-overlay.is-scrolled .nav-menu summary,
.site-nav.is-overlay.is-scrolled .nav-cart-btn {
    background: rgba(255,255,255,0.92);
    color: rgba(10,10,10,0.95);
    border-color: rgba(0,0,0,0.14);
}

/* Ensure home header controls use the light-glass scheme (not dark overlay styling). */
.site-nav[data-variant="home"] .nav-menu summary {
    background: rgba(15,15,15,0.08);
    border-color: rgba(0,0,0,0.14);
    color: var(--ink);
}
.site-nav[data-variant="home"] .nav-cart-btn {
    background: rgba(255,255,255,0.92);
    color: var(--ink);
    border-color: rgba(0,0,0,0.14);
}

@media (max-width: 768px) {
    .site-nav[data-variant="home"] .container.nav-inner,
    .site-nav[data-variant="home"] .nav-inner,
    .site-nav:not([data-variant="home"]) .nav-inner {
        padding: 7px clamp(12px, 6vw, 40px);
    }

    /* Mobile: nudge burger icon to the right a touch. */
    .site-nav .nav-menu summary {
        position: relative;
        left: 10px;
    }
}

/* Keep non-home pages from jumping under the fixed header. */
.site-nav-spacer { height: 72px; }
@media (max-width: 768px) { .site-nav-spacer { height: 66px; } }
@media (max-width: 520px) { .site-nav-spacer { height: 64px; } }