/* --- 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;
    --page-bg: var(--soft-white);
    --surface: #ffffff;
    --surface-2: #f3f4f6;
    --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.92);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; }
html { -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--page-bg);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
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;
}

.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); }
}

.reveal { animation: fadeInUp 0.8s forwards; opacity: 0; }
.reveal-delay-1 { animation-delay: 0.2s; }
.reveal-delay-2 { animation-delay: 0.4s; }

/* --- 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;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-nav-spacer { height: 66px; }

.site-nav.is-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent);
    border-bottom: 0;
    backdrop-filter: saturate(150%) blur(6px);
}

.site-nav.is-overlay.is-scrolled {
    background: var(--nav-solid-bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-inner { flex-wrap: nowrap; }
.brand { font-family: 'Playfair Display', serif; font-size: 1.22rem; 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;
    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-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: min(92vw, 320px);
    background: rgba(10,12,18,0.96);
    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);
    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);
    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);
    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;
}
.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(--dark); color: white; padding: 10px 22px;
    border-radius: 50px; text-decoration: none; font-weight: 600;
    transition: var(--transition);
}
.nav-btn { box-shadow: 0 10px 24px rgba(0,0,0,0.12); }
.nav-btn:hover { background: var(--gold); color: var(--dark); transform: translateY(-1px); box-shadow: var(--btn-shadow-soft); }

.site-nav.is-overlay .brand { color: white; }
.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: white; color: var(--dark); }
.site-nav.is-overlay.is-scrolled .brand { color: var(--ink); }
.site-nav.is-overlay.is-scrolled .nav-links a { color: var(--ink); opacity: 0.92; }
.site-nav.is-overlay.is-scrolled { background: var(--nav-solid-bg); }
.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 .nav-btn { background: var(--dark); color: #fff; }

/* Premium footer */
.site-footer { background: var(--dark); color: white; padding: 58px 0 26px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.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; }
.footer-bottom { margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.55); font-size: 0.85rem; text-align: center; }

/* --- HERO SECTION --- */
header.hero {
    height: 82vh; min-height: 620px; position: relative; overflow: hidden;
    display: flex; align-items: center;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('img/hero.jpg') center/cover no-repeat;
    z-index: -1; animation: zoomEffect 20s infinite alternate;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.35); z-index: 0;
}
.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; }

/* --- SEARCH BAR --- */
.search-wrapper {
    background: white; 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);
}
.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(--dark); color: white; padding: 15px 30px;
    border-radius: 40px; border: none; font-weight: 600; cursor: pointer;
    transition: var(--transition);
}
.search-wrapper button:hover { background: var(--gold); }
.pill-btn { background: var(--dark); color: white; padding: 10px 18px; border-radius: 999px; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); border: none; cursor: pointer; }
.pill-btn { box-shadow: 0 12px 28px rgba(0,0,0,0.18); }
/* Playful hover by alee */
.pill-btn:hover { background: var(--gold); color: var(--dark); 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(15,15,15,0.92); color: white; border-color: rgba(15,15,15,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: 100%;
    display: 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: linear-gradient(135deg, rgba(15,15,15,1), rgba(11,15,25,1));
    color: white;
    box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}
.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(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    font-variant-numeric: tabular-nums;
}

.checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* --- CARDS GRID --- */
.section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
.section-surface { background: white; border: 1px solid var(--border); border-left: none; border-right: none; }
.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: white; border-radius: 20px; overflow: hidden;
    box-shadow: var(--shadow); transition: var(--transition);
    position: relative; text-decoration: none; color: inherit; display: block;
}
/* Slight rotation for organic feel - alee's touch */
.card:nth-child(3n+1) { transform: rotate(0.3deg); }
.card:nth-child(3n+2) { transform: rotate(-0.2deg); }
.card:hover { transform: translateY(-10px) rotate(0deg) !important; }
.card:hover { transform: translateY(-10px) rotate(0deg) !important; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.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: white;
    padding: 5px 15px; font-size: 0.75rem; font-weight: 700;
    border-radius: 4px; text-transform: uppercase; letter-spacing: 1px;
}
.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-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; }

/* --- 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: 12px 10px; }
    .brand { max-width: 45vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 1.1rem; }
    .container { padding: 0 12px; }

    .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 { align-items: center; justify-content: space-between; flex-wrap: nowrap; }
    .nav-actions { gap: 8px; flex-wrap: nowrap; }
    .nav-btn { padding: 10px 16px; white-space: nowrap; }

    .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: 96px 14px 56px; }
    .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; -webkit-overflow-scrolling: touch; }
}
/* --- 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: white; padding: 30px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); text-align: center; transition: 0.3s; }
.prop-item:hover { transform: translateY(-5px); }
.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: white; padding: 30px; border-radius: 12px; border: 1px solid #eee; }
/* 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: white; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.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; }

/* 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: white; border-radius: 18px; box-shadow: var(--shadow); display: grid; grid-template-columns: 92px 1fr; gap: 14px; border: 1px solid #eee; text-decoration: none; color: inherit; overflow: hidden; transition: var(--transition); }
.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.05); border: 1px solid rgba(255,255,255,0.1); padding: 20px; border-radius: 16px; }
.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: white; border: 1px solid #ddd; border-radius: 14px; box-shadow: var(--shadow); padding: 16px; display: none; gap: 12px; z-index: 200; }
.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: 120px 20px 80px; }
.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: white; border: 1px solid #eee; padding: 20px; border-radius: 14px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.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; }

@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: 1.1fr 0.9fr; gap: 26px; align-items: start; }
.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; 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; }

.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; }
.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; }
.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; }
.content-card { background: white; border: 1px solid var(--border); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); }
.content-card h3 { margin-bottom: 10px; }
.muted-text { color: #555; line-height: 1.7; }
.bullets { margin: 10px 0 0 18px; color: #555; line-height: 1.7; }

.booking-card { background: white; border: 1px solid var(--border); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); position: sticky; top: 84px; }
.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 { appearance: none; -webkit-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(0,0,0,0.08); border-radius: 16px; padding: 14px; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 8px; transition: var(--transition); }
.recs .rec-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.10); }
.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; }
    .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 Platform v2.1
   Lead Developer: alee
   Last Updated: 2026.01.12
   "Crafted with care, not generated" - alee
   ============================================== */