/* ═══════════════════════════════════════
   RENTEAZE — app.css
   Aesthetic: Dark luxury editorial
   Fonts: Clash Display + Cabinet Grotesk
═══════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
    /* Brand */
    --brand: #FF5A3D;
    --brand-2: #FF8C42;
    --brand-dim: rgba(255,90,61,0.12);
    --brand-glow: rgba(255,90,61,0.25);

    /* Surfaces */
    --bg: #0B0B0F;
    --bg2: #111118;
    --bg3: #18181f;
    --surf: rgba(255,255,255,0.04);
    --surf2: rgba(255,255,255,0.07);
    --surf3: rgba(255,255,255,0.12);

    /* Borders */
    --bdr: rgba(255,255,255,0.07);
    --bdr2: rgba(255,255,255,0.13);
    --bdr3: rgba(255,255,255,0.2);

    /* Text */
    --t1: #F2F2F5;
    --t2: #8E8E9E;
    --t3: #3D3D50;

    /* Accents */
    --green: #1ED98A;
    --green-dim: rgba(30,217,138,0.1);
    --amber: #F0A840;
    --amber-dim: rgba(240,168,64,0.1);
    --blue: #5B8DF5;
    --blue-dim: rgba(91,141,245,0.1);
    --red: #F04F60;
    --red-dim: rgba(240,79,96,0.1);
    --purple: #A78BFA;
    --purple-dim: rgba(167,139,250,0.1);
    --teal: #2DD4BF;
    --teal-dim: rgba(45,212,191,0.1);

    /* Type */
    --display: 'Clash Display', sans-serif;
    --body: 'Cabinet Grotesk', sans-serif;
    --mono: 'JetBrains Mono', monospace;

    /* Radius */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-2xl: 36px;

    /* Nav */
    --nav-h: 88px;
}

body {
    font-family: var(--body);
    background: var(--bg);
    color: var(--t1);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100dvh;
    font-size: 15px;
    line-height: 1.55;
}

/* ══════ SCREENS ══════ */
.screen { display: none; position: fixed; inset: 0; overflow-y: auto; background: var(--bg); z-index: 10; }
.screen.active { display: block; }

/* ══════ SPLASH ══════ */
.splash-bg {
    position: fixed; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 20% 10%, rgba(255,90,61,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 90%, rgba(255,140,66,0.10) 0%, transparent 55%),
    var(--bg);
    z-index: 0;
}
.splash-orb {
    position: absolute; border-radius: 50%;
    filter: blur(60px); pointer-events: none;
}
.orb-1 { width: 300px; height: 300px; background: rgba(255,90,61,0.18); top: -80px; left: -80px; animation: orb-float 8s ease-in-out infinite; }
.orb-2 { width: 200px; height: 200px; background: rgba(255,140,66,0.12); bottom: 100px; right: -60px; animation: orb-float 10s ease-in-out infinite reverse; }
.orb-3 { width: 150px; height: 150px; background: rgba(91,141,245,0.08); top: 50%; left: 50%; transform: translate(-50%,-50%); animation: orb-float 6s ease-in-out infinite; }
@keyframes orb-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes orb-float-center { 0%,100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-52%) scale(1.1); } }

.splash-content {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center;
    padding: 72px 32px 48px;
    min-height: 100dvh;
}
.splash-logo {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 32px;
}
.logo-mark {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 16px 40px -8px var(--brand-glow);
}
.logo-r {
    font-family: var(--display);
    font-size: 28px; font-weight: 700;
    color: white; line-height: 1;
}
.logo-wordmark {
    font-family: var(--display);
    font-size: 32px; font-weight: 700;
    letter-spacing: -1px;
    color: var(--t1);
}
.splash-tagline {
    font-family: var(--display);
    font-size: 42px; font-weight: 600;
    letter-spacing: -1.5px; line-height: 1.1;
    text-align: center; color: var(--t1);
    margin-bottom: 48px;
}
.splash-cards {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; width: 100%; max-width: 320px;
    margin-bottom: auto;
}
.splash-card {
    background: var(--surf2);
    border: 1px solid var(--bdr2);
    border-radius: var(--r-xl);
    padding: 20px;
    display: flex; flex-direction: column; gap: 10px;
    transition: all 0.3s;
    cursor: default;
}
.splash-card i { font-size: 24px; }
.splash-card span { font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--t1); }
.card-1 { border-color: rgba(255,90,61,0.2); background: rgba(255,90,61,0.06); }
.card-1 i { color: var(--brand); }
.card-2 { border-color: rgba(240,168,64,0.2); background: rgba(240,168,64,0.06); }
.card-2 i { color: var(--amber); }
.card-3 { border-color: rgba(91,141,245,0.2); background: rgba(91,141,245,0.06); }
.card-3 i { color: var(--blue); }
.card-4 { border-color: rgba(30,217,138,0.2); background: rgba(30,217,138,0.06); }
.card-4 i { color: var(--green); }

.splash-cta {
    display: flex; flex-direction: column; gap: 12px;
    width: 100%; padding-top: 40px;
}

/* ══════ BUTTONS ══════ */
.btn-primary {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: white; border: none;
    font-family: var(--display); font-size: 16px; font-weight: 600;
    padding: 16px 24px;
    border-radius: var(--r-xl);
    cursor: pointer;
    box-shadow: 0 12px 32px -6px rgba(255,90,61,0.4);
    transition: all 0.2s;
    width: 100%;
}
.btn-primary:active { transform: scale(0.97); box-shadow: 0 6px 16px -4px rgba(255,90,61,0.3); }
.btn-primary.full-w { width: 100%; }
.btn-primary:disabled { opacity: 0.6; pointer-events: none; }

.btn-ghost {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--surf2); color: var(--t2);
    border: 1px solid var(--bdr2);
    font-family: var(--display); font-size: 15px; font-weight: 500;
    padding: 14px 24px;
    border-radius: var(--r-xl);
    cursor: pointer; transition: all 0.2s; width: 100%;
}
.btn-ghost:hover, .btn-ghost:active { background: var(--surf3); color: var(--t1); }

.icon-btn {
    width: 40px; height: 40px;
    background: var(--surf2); border: 1px solid var(--bdr);
    border-radius: var(--r-md); color: var(--t1);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.15s;
    font-size: 15px;
}
.icon-btn:active { background: var(--surf3); }

/* ══════ AUTH ══════ */
.auth-header {
    padding: 52px 20px 0;
}
.auth-body { padding: 0 24px 48px; }
.auth-panel { display: none; }
.auth-panel.active { display: block; }
.auth-headline { margin-bottom: 32px; }
.auth-headline h2 {
    font-family: var(--display); font-size: 40px; font-weight: 700;
    letter-spacing: -1.5px; line-height: 1.1;
    color: var(--t1); margin-bottom: 6px;
}
.auth-headline p { color: var(--t2); font-size: 15px; }

.field-group { margin-bottom: 18px; }
.field-group label {
    display: block; font-size: 12px; font-weight: 700;
    letter-spacing: 0.5px; text-transform: uppercase;
    color: var(--t3); margin-bottom: 8px;
}
.field-wrap {
    position: relative;
    display: flex; align-items: center;
    background: var(--surf2); border: 1px solid var(--bdr2);
    border-radius: var(--r-md);
    transition: border-color 0.2s;
}
.field-wrap:focus-within { border-color: var(--brand); }
.field-wrap > i { position: absolute; left: 14px; color: var(--t3); font-size: 14px; pointer-events: none; }
.field-wrap input {
    flex: 1; background: none; border: none; outline: none;
    padding: 14px 14px 14px 40px;
    font-family: var(--body); font-size: 15px; color: var(--t1);
}
.field-wrap input:only-child { padding-left: 14px; }
.field-wrap input::placeholder { color: var(--t3); }
.field-toggle {
    background: none; border: none; color: var(--t3);
    padding: 0 14px; cursor: pointer; font-size: 14px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.opt-tag { font-size: 10px; color: var(--t3); text-transform: none; letter-spacing: 0; font-weight: 400; }

.type-toggle {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.type-btn {
    padding: 10px;
    background: var(--surf2); border: 1px solid var(--bdr2);
    border-radius: var(--r-md);
    font-family: var(--body); font-size: 13px; font-weight: 600;
    color: var(--t2); cursor: pointer; transition: all 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.type-btn.active {
    background: var(--brand-dim); border-color: rgba(255,90,61,0.3);
    color: var(--brand);
}

.forgot-link {
    display: block; text-align: right; font-size: 13px;
    color: var(--brand); text-decoration: none; margin-bottom: 24px;
}
.auth-switch { text-align: center; font-size: 14px; color: var(--t2); margin-top: 20px; }
.auth-switch a { color: var(--brand); text-decoration: none; font-weight: 700; }

/* ══════ APP TABS ══════ */
#app { display: none; position: fixed; inset: 0; background: var(--bg); }
#app.active { display: block; }
.tab { display: none; position: absolute; inset: 0; overflow-y: auto; padding-bottom: var(--nav-h); }
.tab.active { display: block; }
.tab::-webkit-scrollbar { display: none; }

/* ══════ EXPLORE HEADER ══════ */
.app-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(11,11,15,0.88);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bdr);
    padding: 12px 0 8px;
}
.header-top {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 20px; margin-bottom: 12px;
}
.header-brand { display: flex; align-items: center; gap: 10px; }
.mini-logo {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border-radius: 10px;
    font-family: var(--display); font-size: 18px; font-weight: 700;
    color: white; display: flex; align-items: center; justify-content: center;
}
.header-location { display: flex; flex-direction: column; gap: 1px; }
.location-label { font-size: 10px; color: var(--t3); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.location-btn {
    background: none; border: none; color: var(--t1);
    font-family: var(--body); font-size: 14px; font-weight: 600;
    display: flex; align-items: center; gap: 5px; cursor: pointer; padding: 0;
}
.location-btn i:first-child { color: var(--brand); }
.location-btn i:last-child { color: var(--t3); font-size: 11px; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.notif-btn { position: relative; }
.notif-badge {
    position: absolute; top: -4px; right: -4px;
    width: 18px; height: 18px;
    background: var(--brand); border-radius: 50%;
    font-size: 9px; font-weight: 700; color: white;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--bg);
}
.avatar-btn {
    width: 36px; height: 36px; border-radius: 50%;
    border: 2px solid var(--brand);
    overflow: hidden; cursor: pointer; padding: 0; background: none;
}
.avatar-btn img { width: 100%; height: 100%; object-fit: cover; }

/* Search Bar */
.search-bar {
    margin: 0 20px 12px;
    background: var(--surf2); border: 1px solid var(--bdr2);
    border-radius: var(--r-xl);
    padding: 12px 16px;
    display: flex; align-items: center; gap: 10px;
    cursor: pointer; transition: border-color 0.2s;
}
.search-bar:hover { border-color: var(--bdr3); }
.search-bar i { color: var(--t3); font-size: 14px; }
.search-placeholder { flex: 1; font-size: 14px; color: var(--t3); }
.search-filter-btn {
    width: 30px; height: 30px;
    background: var(--brand-dim); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand); font-size: 13px;
}

/* Category Pills */
.cats-scroll {
    display: flex; gap: 8px;
    overflow-x: auto; padding: 0 20px 4px;
    scrollbar-width: none;
}
.cats-scroll::-webkit-scrollbar { display: none; }
.cat-pill {
    flex-shrink: 0;
    display: flex; align-items: center; gap: 6px;
    padding: 7px 14px;
    border-radius: 100px;
    background: var(--surf2); border: 1px solid var(--bdr);
    font-family: var(--body); font-size: 13px; font-weight: 600;
    color: var(--t2); cursor: pointer; transition: all 0.2s;
}
.cat-pill i { font-size: 12px; }
.cat-pill.active {
    background: var(--brand-dim); border-color: rgba(255,90,61,0.3);
    color: var(--brand);
}

/* ══════ EXPLORE FEED ══════ */
.explore-feed { padding-top: 8px; }
.feed-section { padding: 20px 0 8px; }
.section-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 20px; margin-bottom: 14px;
}
.section-title {
    font-family: var(--display); font-size: 18px; font-weight: 600;
    color: var(--t1); letter-spacing: -0.3px;
}
.see-all-btn {
    background: none; border: none;
    font-family: var(--body); font-size: 13px; font-weight: 700;
    color: var(--brand); cursor: pointer; padding: 0;
}
.sort-row { display: flex; gap: 6px; }
.sort-pill {
    padding: 5px 11px;
    background: var(--surf2); border: 1px solid var(--bdr);
    border-radius: 100px; font-size: 12px; font-weight: 600;
    color: var(--t2); cursor: pointer; transition: all 0.15s;
}
.sort-pill.active { background: var(--brand-dim); border-color: rgba(255,90,61,0.3); color: var(--brand); }

/* Featured Scroll */
.featured-scroll {
    display: flex; gap: 14px;
    padding: 0 20px;
    overflow-x: auto; scrollbar-width: none;
}
.featured-scroll::-webkit-scrollbar { display: none; }
.featured-card {
    flex-shrink: 0; width: 240px;
    background: var(--bg3); border: 1px solid var(--bdr2);
    border-radius: var(--r-xl); overflow: hidden;
    cursor: pointer; transition: transform 0.2s, border-color 0.2s;
    position: relative;
}
.featured-card:active { transform: scale(0.98); }
.featured-card .fcard-img {
    width: 100%; height: 160px; object-fit: cover; display: block;
}
.featured-card .fcard-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(11,11,15,0.95) 0%, transparent 100%);
    padding: 40px 14px 14px;
}
.featured-card .fcard-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--brand); color: white;
    font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
    padding: 3px 8px; border-radius: 100px;
    margin-bottom: 6px; text-transform: uppercase;
}
.featured-card .fcard-title {
    font-family: var(--display); font-size: 16px; font-weight: 600;
    color: var(--t1); letter-spacing: -0.3px;
}
.featured-card .fcard-meta {
    display: flex; align-items: center; gap: 10px;
    margin-top: 4px;
}
.featured-card .fcard-loc { font-size: 12px; color: var(--t2); }
.featured-card .fcard-price {
    font-family: var(--display); font-size: 14px; font-weight: 600;
    color: var(--t1); margin-left: auto;
}
.featured-card .fcard-save {
    position: absolute; top: 12px; right: 12px;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
    border: none; color: white; font-size: 13px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s;
}
.featured-card .fcard-save.saved { color: var(--brand); background: rgba(255,90,61,0.2); }
.fcard-sponsored {
    position: absolute; top: 12px; left: 12px;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
    color: var(--amber); font-size: 9px; font-weight: 700;
    padding: 3px 7px; border-radius: 4px; letter-spacing: 1px; text-transform: uppercase;
}

/* Listings Grid */
.listings-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; padding: 0 20px;
}
.grid-card {
    background: var(--bg3); border: 1px solid var(--bdr);
    border-radius: var(--r-lg); overflow: hidden;
    cursor: pointer; transition: all 0.2s;
}
.grid-card:active { transform: scale(0.97); }
.grid-card .gcard-img-wrap { position: relative; }
.grid-card .gcard-img { width: 100%; height: 120px; object-fit: cover; display: block; }
.grid-card .gcard-save {
    position: absolute; top: 8px; right: 8px;
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(0,0,0,0.5); border: none; color: white;
    font-size: 11px; display: flex; align-items: center; justify-content: center;
    cursor: pointer;
}
.grid-card .gcard-save.saved { color: var(--brand); }
.grid-card .gcard-body { padding: 10px; }
.grid-card .gcard-type {
    font-size: 10px; font-weight: 700; color: var(--t3);
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px;
}
.grid-card .gcard-title {
    font-family: var(--display); font-size: 13px; font-weight: 600;
    color: var(--t1); line-height: 1.3; margin-bottom: 4px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.grid-card .gcard-rating {
    display: flex; align-items: center; gap: 3px;
    font-size: 11px; color: var(--t2); margin-bottom: 6px;
}
.grid-card .gcard-rating i { color: var(--amber); font-size: 10px; }
.grid-card .gcard-price {
    font-family: var(--display); font-size: 14px; font-weight: 700; color: var(--t1);
}
.grid-card .gcard-price span { font-size: 10px; font-weight: 400; color: var(--t2); }

/* Promo Banner */
.promo-banner {
    margin: 8px 20px 8px;
    background: linear-gradient(135deg, #1a0500, #250a00);
    border: 1px solid rgba(255,90,61,0.3);
    border-radius: var(--r-xl); padding: 22px;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; position: relative; overflow: hidden;
}
.promo-banner::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,90,61,0.08), transparent);
}
.promo-content { position: relative; z-index: 1; }
.promo-eyebrow {
    font-size: 10px; font-weight: 700; color: var(--brand);
    text-transform: uppercase; letter-spacing: 1px;
    display: block; margin-bottom: 4px;
}
.promo-title {
    font-family: var(--display); font-size: 22px; font-weight: 700;
    color: var(--t1); letter-spacing: -0.5px; margin-bottom: 2px;
}
.promo-sub { font-size: 13px; color: var(--t2); margin-bottom: 12px; }
.promo-sub strong { color: var(--brand); }
.promo-btn {
    background: var(--brand); color: white;
    border: none; padding: 8px 16px;
    border-radius: 100px; font-size: 12px; font-weight: 700;
    font-family: var(--body); cursor: pointer;
}
.promo-art {
    position: relative; z-index: 1; font-size: 64px;
    color: rgba(255,90,61,0.2); transform: rotate(-15deg);
}

/* Full Listings */
.listings-full { padding: 0 20px; display: flex; flex-direction: column; gap: 14px; }
.full-card {
    background: var(--bg3); border: 1px solid var(--bdr);
    border-radius: var(--r-xl); overflow: hidden;
    cursor: pointer; transition: all 0.2s;
    display: flex; gap: 0; flex-direction: column;
}
.full-card:active { transform: scale(0.99); }
.full-card .fc-img-wrap { position: relative; }
.full-card .fc-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.full-card .fc-cat-badge {
    position: absolute; bottom: 12px; left: 12px;
    background: var(--bg); border: 1px solid var(--bdr2);
    color: var(--t1); font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 100px;
    display: flex; align-items: center; gap: 5px;
}
.full-card .fc-save {
    position: absolute; top: 12px; right: 12px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(11,11,15,0.7); backdrop-filter: blur(8px);
    border: none; color: white; font-size: 14px;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.full-card .fc-save.saved { color: var(--brand); }
.full-card .fc-body { padding: 16px; }
.full-card .fc-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.full-card .fc-title {
    font-family: var(--display); font-size: 18px; font-weight: 600;
    color: var(--t1); letter-spacing: -0.4px;
}
.full-card .fc-rating {
    display: flex; align-items: center; gap: 4px;
    font-size: 13px; font-weight: 700; color: var(--t1);
}
.full-card .fc-rating i { color: var(--amber); }
.full-card .fc-loc { font-size: 13px; color: var(--t2); margin-bottom: 12px; }
.full-card .fc-loc i { color: var(--brand); margin-right: 4px; }
.full-card .fc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--bdr); }
.full-card .fc-price { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--t1); }
.full-card .fc-price span { font-size: 13px; font-weight: 400; color: var(--t2); }
.full-card .fc-book-btn {
    background: var(--brand-dim); border: 1px solid rgba(255,90,61,0.25);
    color: var(--brand); font-family: var(--display); font-size: 13px; font-weight: 700;
    padding: 9px 18px; border-radius: 100px; cursor: pointer; transition: all 0.2s;
}
.full-card .fc-book-btn:active { background: rgba(255,90,61,0.2); }
.full-card .fc-vendor { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.full-card .fc-vendor img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }
.full-card .fc-vendor span { font-size: 12px; color: var(--t2); }
.full-card .fc-vendor .fc-verified { color: var(--brand); font-size: 11px; }
.full-card .fc-durations { display: flex; gap: 6px; margin-bottom: 12px; }
.fc-dur {
    padding: 4px 10px; border-radius: 100px;
    background: var(--surf2); border: 1px solid var(--bdr);
    font-size: 11px; font-weight: 600; color: var(--t2);
}
.fc-dur.active { background: var(--brand-dim); border-color: rgba(255,90,61,0.25); color: var(--brand); }

/* ══════ SIMPLE HEADER ══════ */
.simple-header {
    padding: 52px 20px 16px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--bdr);
}
.tab-title {
    font-family: var(--display); font-size: 28px; font-weight: 700;
    color: var(--t1); letter-spacing: -0.8px;
}
.powered-by { font-size: 11px; color: var(--t3); }
.powered-by strong { color: var(--brand); }

/* ══════ VENDOR TAB ══════ */
.vendor-hero { position: relative; padding: 52px 20px 0; }
.vendor-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(255,90,61,0.06) 0%, transparent 100%);
    pointer-events: none;
}
.vendor-hero-content { position: relative; }
.vendor-greeting {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
}
.vendor-sub { font-size: 11px; color: var(--t3); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 4px; }
.vendor-name { font-family: var(--display); font-size: 26px; font-weight: 700; color: var(--t1); letter-spacing: -0.6px; }
.vendor-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    border: 2px solid var(--brand); overflow: hidden;
}
.vendor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.vendor-stats {
    background: var(--surf2); border: 1px solid var(--bdr2);
    border-radius: var(--r-xl); padding: 20px;
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
}
.vstat { text-align: center; }
.vstat-val { display: block; font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--t1); }
.vstat-lbl { font-size: 11px; color: var(--t3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; }
.vstat-div { width: 1px; height: 32px; background: var(--bdr2); }

.boost-banner {
    margin: 0 20px 20px;
    background: var(--bg3); border: 1px solid var(--bdr2);
    border-radius: var(--r-xl); padding: 18px 20px;
    display: flex; align-items: center; justify-content: space-between;
}
.boost-content { flex: 1; }
.boost-tag {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--amber-dim); color: var(--amber);
    font-size: 10px; font-weight: 700; padding: 3px 8px;
    border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.boost-content h4 { font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--t1); margin-bottom: 2px; }
.boost-content p { font-size: 12px; color: var(--t2); }
.boost-btn {
    background: var(--amber); color: #1a0f00;
    border: none; padding: 10px 16px;
    border-radius: var(--r-md); font-family: var(--display);
    font-size: 13px; font-weight: 700; cursor: pointer;
    flex-shrink: 0; margin-left: 12px;
}

.vendor-section { padding: 0 20px 20px; }
.add-listing-btn {
    background: var(--brand-dim); border: 1px solid rgba(255,90,61,0.25);
    color: var(--brand); font-family: var(--body); font-size: 13px; font-weight: 700;
    padding: 7px 14px; border-radius: 100px; cursor: pointer;
    display: flex; align-items: center; gap: 5px;
}

.vendor-inventory { display: flex; flex-direction: column; gap: 10px; }
.vinv-card {
    background: var(--bg3); border: 1px solid var(--bdr);
    border-radius: var(--r-lg); overflow: hidden;
    display: flex; gap: 0;
}
.vinv-img { width: 80px; height: 80px; object-fit: cover; flex-shrink: 0; }
.vinv-body { flex: 1; padding: 12px; display: flex; flex-direction: column; justify-content: space-between; }
.vinv-title { font-family: var(--display); font-size: 14px; font-weight: 600; color: var(--t1); }
.vinv-meta { font-size: 11px; color: var(--t2); margin-top: 2px; }
.vinv-pills { display: flex; gap: 5px; align-items: center; }
.vinv-pill {
    font-size: 10px; font-weight: 700; padding: 3px 7px; border-radius: 4px;
}
.vinv-pill.active { background: var(--green-dim); color: var(--green); }
.vinv-pill.inactive { background: var(--red-dim); color: var(--red); }
.vinv-pill.bookings { background: var(--blue-dim); color: var(--blue); }
.vinv-more {
    width: 32px; height: 32px; flex-shrink: 0;
    background: none; border: none; color: var(--t3); font-size: 14px;
    cursor: pointer; align-self: center; margin-right: 8px;
}

.bookings-list { display: flex; flex-direction: column; gap: 10px; }
.booking-item {
    background: var(--bg3); border: 1px solid var(--bdr);
    border-radius: var(--r-lg); padding: 14px;
    display: flex; align-items: center; gap: 12px;
}
.booking-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--surf3); flex-shrink: 0; overflow: hidden; }
.booking-avatar img { width: 100%; height: 100%; object-fit: cover; }
.booking-info { flex: 1; }
.booking-name { font-size: 14px; font-weight: 600; color: var(--t1); }
.booking-listing { font-size: 12px; color: var(--t2); }
.booking-dates { font-size: 11px; color: var(--t3); }
.booking-amount { font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--green); }
.booking-status {
    font-size: 10px; font-weight: 700; padding: 3px 7px; border-radius: 4px;
}
.booking-status.confirmed { background: var(--green-dim); color: var(--green); }
.booking-status.pending { background: var(--amber-dim); color: var(--amber); }

/* ══════ WALLET TAB ══════ */
.wallet-card-wrap { padding: 20px; }
.wallet-card {
    background: linear-gradient(135deg, #FF5A3D, #c73d26);
    border-radius: var(--r-2xl); padding: 26px;
    box-shadow: 0 24px 60px -12px rgba(255,90,61,0.4);
    position: relative; overflow: hidden;
}
.wallet-card::before {
    content: ''; position: absolute;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(255,255,255,0.07);
    top: -60px; right: -60px;
}
.wallet-card::after {
    content: ''; position: absolute;
    width: 140px; height: 140px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
    bottom: -40px; left: 60px;
}
.wcard-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; position: relative; z-index: 1; }
.wcard-label { font-size: 11px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.wcard-balance { font-family: var(--display); font-size: 36px; font-weight: 700; color: white; letter-spacing: -1px; }
.wcard-logo {
    background: rgba(255,255,255,0.2); border-radius: 10px;
    padding: 8px 12px;
}
.wcard-logo span { font-family: var(--display); font-size: 14px; font-weight: 700; color: white; }
.wcard-footer { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.wcard-tag {
    background: rgba(255,255,255,0.15); border-radius: 8px;
    padding: 6px 12px; display: inline-block;
    font-family: var(--mono); font-size: 13px; color: rgba(255,255,255,0.9);
}
.wcard-btns { display: flex; gap: 10px; }
.wcard-btn {
    flex: 1; background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: white; font-family: var(--body); font-size: 12px; font-weight: 700;
    padding: 10px 14px; border-radius: var(--r-md);
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px;
    transition: all 0.2s;
}
.wcard-btn:active { background: rgba(255,255,255,0.25); }

.wallet-actions {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 0; padding: 0 20px 24px;
}
.waction {
    background: none; border: none; cursor: pointer;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 8px 4px;
}
.waction-ico {
    width: 52px; height: 52px;
    background: var(--surf2); border: 1px solid var(--bdr2);
    border-radius: var(--r-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--t1); transition: all 0.2s;
}
.waction:active .waction-ico { background: var(--brand-dim); color: var(--brand); }
.waction span { font-size: 11px; font-weight: 700; color: var(--t2); }

.wallet-txn-section, .wallet-banks-section { margin-bottom: 24px; }
.txn-list { padding: 0 20px; display: flex; flex-direction: column; gap: 2px; }
.txn-item {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--bdr);
}
.txn-item:last-child { border-bottom: none; }
.txn-ico {
    width: 40px; height: 40px; border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
}
.txn-ico.in { background: var(--green-dim); color: var(--green); }
.txn-ico.out { background: var(--red-dim); color: var(--red); }
.txn-ico.lock { background: var(--blue-dim); color: var(--blue); }
.txn-info { flex: 1; }
.txn-title { font-size: 14px; font-weight: 600; color: var(--t1); }
.txn-date { font-size: 12px; color: var(--t3); }
.txn-amount { font-family: var(--display); font-size: 15px; font-weight: 700; }
.txn-amount.in { color: var(--green); }
.txn-amount.out { color: var(--red); }

.banks-list { padding: 0 20px; display: flex; flex-direction: column; gap: 10px; }
.bank-item {
    background: var(--bg3); border: 1px solid var(--bdr);
    border-radius: var(--r-lg); padding: 14px;
    display: flex; align-items: center; gap: 12px;
}
.bank-ico {
    width: 40px; height: 40px; border-radius: var(--r-md);
    background: var(--surf2); display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--t1);
}
.bank-info { flex: 1; }
.bank-name { font-size: 14px; font-weight: 600; color: var(--t1); }
.bank-number { font-size: 12px; color: var(--t3); font-family: var(--mono); }
.bank-primary { color: var(--green); font-size: 12px; }
.bank-default-tag { background: var(--green-dim); color: var(--green); font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 4px; }

/* ══════ PROFILE TAB ══════ */
.profile-hero {
    padding: 52px 20px 24px;
    display: flex; flex-direction: column; align-items: center;
    border-bottom: 1px solid var(--bdr);
    text-align: center;
}
.profile-avatar-wrap { position: relative; margin-bottom: 14px; }
.profile-avatar { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; border: 3px solid var(--brand); }
.profile-avatar-edit {
    position: absolute; bottom: 0; right: 0;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--brand); color: white;
    border: 2px solid var(--bg); font-size: 11px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
}
.profile-name { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--t1); letter-spacing: -0.5px; margin-bottom: 2px; }
.profile-tag { font-size: 14px; color: var(--t2); margin-bottom: 12px; }
.profile-badges { display: flex; gap: 8px; justify-content: center; }
.pbadge { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.pbadge-type { background: var(--brand-dim); color: var(--brand); }
.pbadge-kyc { background: var(--amber-dim); color: var(--amber); }
.pbadge-kyc.verified { background: var(--green-dim); color: var(--green); }

.profile-menu { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.pmenu-group {
    background: var(--bg3); border: 1px solid var(--bdr);
    border-radius: var(--r-xl); overflow: hidden;
}
.pmenu-item {
    width: 100%; background: none; border: none;
    display: flex; align-items: center; gap: 12px;
    padding: 16px 16px; cursor: pointer; transition: all 0.15s;
    border-bottom: 1px solid var(--bdr);
    text-align: left;
}
.pmenu-item:last-child { border-bottom: none; }
.pmenu-item:active { background: var(--surf); }
.pmenu-ico {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
}
.ico-orange { background: var(--brand-dim); color: var(--brand); }
.ico-blue { background: var(--blue-dim); color: var(--blue); }
.ico-green { background: var(--green-dim); color: var(--green); }
.ico-purple { background: var(--purple-dim); color: var(--purple); }
.ico-teal { background: var(--teal-dim); color: var(--teal); }
.ico-amber { background: var(--amber-dim); color: var(--amber); }
.ico-slate { background: var(--surf2); color: var(--t2); }
.pmenu-item span { flex: 1; font-size: 15px; font-weight: 600; color: var(--t1); }
.pmenu-arr { color: var(--t3); font-size: 12px; }
.logout-btn {
    width: 100%; background: var(--red-dim); border: 1px solid rgba(240,79,96,0.2);
    border-radius: var(--r-xl); padding: 16px;
    font-family: var(--body); font-size: 15px; font-weight: 700;
    color: var(--red); cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}

/* ══════ BOTTOM NAV ══════ */
.bottom-nav {
    position: fixed; bottom: 0; left: 0; right: 0;
    height: var(--nav-h); z-index: 100;
    background: rgba(17,17,24,0.92);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--bdr);
    display: flex; align-items: center; justify-content: space-around;
    padding: 0 8px 16px;
}
.nav-btn {
    flex: 1; background: none; border: none;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    color: var(--t3); cursor: pointer; padding: 8px 4px; transition: color 0.2s;
}
.nav-btn i { font-size: 20px; }
.nav-btn span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; }
.nav-btn.active { color: var(--brand); }
.nav-btn.active i { color: var(--brand); }
.nav-fab-wrap { position: relative; flex: 1; display: flex; justify-content: center; align-items: center; }
.nav-fab {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border-radius: 50%; border: none;
    color: white; font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 8px 24px -4px rgba(255,90,61,0.5);
    transition: all 0.2s;
    position: relative; bottom: 8px;
}
.nav-fab:active { transform: scale(0.93); }

/* ══════ SHEETS ══════ */
.sheet {
    position: fixed; inset: 0; z-index: 200;
    display: flex; flex-direction: column; justify-content: flex-end;
}
.sheet.hidden { display: none; }
.sheet-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
    animation: fade-in 0.25s ease;
}
.sheet-panel {
    position: relative; z-index: 1;
    background: var(--bg2);
    border-radius: var(--r-2xl) var(--r-2xl) 0 0;
    border-top: 1px solid var(--bdr2);
    max-height: 92dvh; overflow-y: auto;
    animation: slide-up 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    scrollbar-width: none;
}
.sheet-panel::-webkit-scrollbar { display: none; }
.sheet-tall { max-height: 96dvh; }
.sheet-handle {
    width: 40px; height: 4px; border-radius: 2px;
    background: var(--bdr3); margin: 14px auto 4px;
}
@keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

/* Sheet content */
.sheet-title {
    font-family: var(--display); font-size: 22px; font-weight: 700;
    color: var(--t1); letter-spacing: -0.5px; margin-bottom: 6px;
}
.sheet-sub { font-size: 13px; color: var(--t2); margin-bottom: 20px; }
.sheet-header { padding: 8px 22px 20px; border-bottom: 1px solid var(--bdr); }
.sheet-body { padding: 20px 22px; }

/* Listing Sheet */
.ls-images { position: relative; overflow: hidden; }
.ls-img { width: 100%; height: 280px; object-fit: cover; display: block; }
.ls-img-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
    background: linear-gradient(to top, var(--bg2), transparent);
}
.ls-back {
    position: absolute; top: 16px; left: 16px;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
    border: none; color: white; font-size: 14px;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.ls-save {
    position: absolute; top: 16px; right: 16px;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
    border: none; color: white; font-size: 14px;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.ls-save.saved { color: var(--brand); }
.ls-body { padding: 20px; }
.ls-type-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--brand-dim); color: var(--brand);
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    padding: 4px 10px; border-radius: 100px; margin-bottom: 10px;
}
.ls-title { font-family: var(--display); font-size: 26px; font-weight: 700; color: var(--t1); letter-spacing: -0.8px; margin-bottom: 6px; }
.ls-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.ls-rating { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--t1); }
.ls-rating i { color: var(--amber); }
.ls-loc { font-size: 14px; color: var(--t2); }
.ls-loc i { color: var(--brand); margin-right: 5px; }
.ls-vendor { display: flex; align-items: center; gap: 10px; padding: 14px 0; border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); margin-bottom: 16px; }
.ls-vendor-ava { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bdr2); }
.ls-vendor-info { flex: 1; }
.ls-vendor-name { font-size: 14px; font-weight: 700; color: var(--t1); }
.ls-vendor-tag { font-size: 12px; color: var(--t3); }
.ls-vendor-verified { color: var(--green); font-size: 13px; }
.ls-desc { font-size: 14px; color: var(--t2); line-height: 1.65; margin-bottom: 20px; }
.ls-amenities { margin-bottom: 20px; }
.ls-amenities-title { font-family: var(--display); font-size: 16px; font-weight: 600; color: var(--t1); margin-bottom: 12px; }
.ls-amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ls-amenity { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--t2); }
.ls-amenity i { color: var(--brand); font-size: 12px; width: 16px; }

.ls-duration-select { margin-bottom: 20px; }
.ls-duration-title { font-size: 13px; font-weight: 700; color: var(--t3); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.ls-durations { display: flex; gap: 8px; flex-wrap: wrap; }
.ls-dur-btn {
    padding: 8px 16px; border-radius: 100px;
    background: var(--surf2); border: 1px solid var(--bdr2);
    font-family: var(--body); font-size: 13px; font-weight: 600;
    color: var(--t2); cursor: pointer; transition: all 0.2s;
}
.ls-dur-btn.active { background: var(--brand-dim); border-color: rgba(255,90,61,0.3); color: var(--brand); }

.ls-price-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0; border-top: 1px solid var(--bdr);
    margin-bottom: 16px;
}
.ls-price { font-family: var(--display); font-size: 30px; font-weight: 700; color: var(--t1); }
.ls-price span { font-size: 14px; font-weight: 400; color: var(--t2); }
.ls-escrow-note { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--green); }
.ls-escrow-note i { font-size: 11px; }

/* Checkout Sheet */
.co-header { padding: 16px 22px 14px; border-bottom: 1px solid var(--bdr); }
.co-title { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--t1); }
.co-sub { font-size: 13px; color: var(--t2); margin-top: 2px; }
.co-listing { display: flex; gap: 12px; padding: 16px 22px; border-bottom: 1px solid var(--bdr); }
.co-listing-img { width: 70px; height: 70px; border-radius: var(--r-md); object-fit: cover; flex-shrink: 0; }
.co-listing-info { flex: 1; }
.co-listing-title { font-size: 14px; font-weight: 700; color: var(--t1); }
.co-listing-meta { font-size: 12px; color: var(--t2); margin-top: 2px; }
.co-listing-loc { font-size: 12px; color: var(--t3); }
.co-breakdown { padding: 16px 22px; border-bottom: 1px solid var(--bdr); display: flex; flex-direction: column; gap: 10px; }
.co-line { display: flex; justify-content: space-between; font-size: 14px; }
.co-line .label { color: var(--t2); }
.co-line .value { font-weight: 600; color: var(--t1); }
.co-line.total { border-top: 1px solid var(--bdr); padding-top: 10px; }
.co-line.total .label { font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--t1); }
.co-line.total .value { font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--brand); }
.co-payment-method { padding: 16px 22px; border-bottom: 1px solid var(--bdr); }
.co-pm-title { font-size: 12px; font-weight: 700; color: var(--t3); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.co-pm-options { display: flex; gap: 8px; }
.co-pm-opt {
    flex: 1; padding: 12px 8px;
    background: var(--surf2); border: 1px solid var(--bdr2);
    border-radius: var(--r-md); cursor: pointer;
    display: flex; flex-direction: column; align-items: center; gap: 5px; transition: all 0.2s;
}
.co-pm-opt.active { background: var(--brand-dim); border-color: rgba(255,90,61,0.3); }
.co-pm-opt i { font-size: 18px; color: var(--t1); }
.co-pm-opt span { font-size: 11px; font-weight: 700; color: var(--t2); }
.co-pm-opt.active span { color: var(--brand); }
.co-pm-opt.active i { color: var(--brand); }
.co-escrow-note {
    margin: 14px 22px 0;
    background: var(--green-dim); border: 1px solid rgba(30,217,138,0.2);
    border-radius: var(--r-md); padding: 12px;
    font-size: 12px; color: var(--green);
    display: flex; align-items: flex-start; gap: 8px;
}
.co-escrow-note i { margin-top: 1px; }
.co-cta { padding: 16px 22px 32px; }
.co-pin-row { margin-bottom: 14px; }
.co-pin-label { font-size: 12px; font-weight: 700; color: var(--t3); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.co-pin-input {
    display: flex; gap: 8px; justify-content: center;
}
.pin-digit {
    width: 52px; height: 56px;
    background: var(--surf2); border: 1px solid var(--bdr2);
    border-radius: var(--r-md); text-align: center;
    font-family: var(--display); font-size: 24px; font-weight: 700;
    color: var(--t1); outline: none;
}
.pin-digit:focus { border-color: var(--brand); }

/* Add Listing Sheet */
.al-steps { display: flex; gap: 4px; margin-bottom: 24px; }
.al-step { flex: 1; height: 3px; border-radius: 2px; background: var(--surf3); transition: background 0.3s; }
.al-step.done { background: var(--brand); }
.al-step-content { display: none; }
.al-step-content.active { display: block; }
.al-step-title { font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--t1); margin-bottom: 6px; }
.al-step-sub { font-size: 13px; color: var(--t2); margin-bottom: 20px; }
.niche-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.niche-card {
    background: var(--surf2); border: 1px solid var(--bdr2);
    border-radius: var(--r-lg); padding: 18px;
    cursor: pointer; transition: all 0.2s; text-align: left;
}
.niche-card.active { background: var(--brand-dim); border-color: rgba(255,90,61,0.3); }
.niche-card i { font-size: 24px; color: var(--t2); display: block; margin-bottom: 8px; }
.niche-card.active i { color: var(--brand); }
.niche-card span { font-family: var(--display); font-size: 14px; font-weight: 600; color: var(--t1); display: block; }
.niche-card small { font-size: 11px; color: var(--t3); }

.duration-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.dur-chip {
    padding: 7px 14px; border-radius: 100px;
    background: var(--surf2); border: 1px solid var(--bdr2);
    font-size: 12px; font-weight: 600; color: var(--t2); cursor: pointer; transition: all 0.2s;
}
.dur-chip.active { background: var(--brand-dim); border-color: rgba(255,90,61,0.3); color: var(--brand); }

.img-upload-area {
    border: 2px dashed var(--bdr3); border-radius: var(--r-xl);
    padding: 32px; text-align: center; cursor: pointer;
    transition: all 0.2s; margin-bottom: 16px;
}
.img-upload-area:hover { border-color: var(--brand); background: var(--brand-dim); }
.img-upload-area i { font-size: 28px; color: var(--t3); margin-bottom: 8px; display: block; }
.img-upload-area span { font-size: 14px; color: var(--t2); }
.img-upload-area strong { color: var(--brand); }

/* ══════ MODAL ══════ */
.modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal.hidden { display: none; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.75); backdrop-filter: blur(4px); }
.modal-box {
    position: relative; z-index: 1;
    background: var(--bg2); border: 1px solid var(--bdr2);
    border-radius: var(--r-xl); padding: 28px;
    width: 100%; max-width: 380px;
    animation: modal-pop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modal-pop { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.modal-title { font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--t1); margin-bottom: 8px; }
.modal-body { font-size: 14px; color: var(--t2); line-height: 1.6; margin-bottom: 20px; }
.modal-actions { display: flex; gap: 10px; }

/* ══════ TOAST ══════ */
.toast {
    position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px);
    background: var(--bg3); border: 1px solid var(--bdr2);
    color: var(--t1); font-size: 14px; font-weight: 600;
    padding: 12px 20px; border-radius: 100px;
    z-index: 500; opacity: 0; pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap; max-width: 90vw;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast i { font-size: 15px; }
.toast.success i { color: var(--green); }
.toast.error i { color: var(--red); }

/* ══════ LOADER ══════ */
.loader {
    position: fixed; inset: 0; z-index: 400;
    background: rgba(11,11,15,0.85); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
}
.loader.hidden { display: none; }
.loader-inner { text-align: center; }
.loader-ring {
    width: 44px; height: 44px;
    border: 3px solid var(--surf3);
    border-top-color: var(--brand);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }
#loader-text { font-size: 13px; color: var(--t2); font-weight: 600; }

/* ══════ EMPTY STATE ══════ */
.empty-state {
    text-align: center; padding: 60px 32px;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.empty-state i { color: var(--t3); }
.empty-state p { font-size: 15px; color: var(--t2); }

/* ══════ ANIMATIONS ══════ */
.fade-in { animation: fadeUp 0.4s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ════════════════════════════════════════════════
   PWA & ACCESSIBILITY ENHANCEMENTS
   Added for PWA upgrade — Renteaze v1.1
════════════════════════════════════════════════ */

/* ── Skip Navigation Link (WCAG 2.4.1) ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--brand);
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 0 var(--r-md) 0;
    font-weight: 600;
    font-size: 14px;
    z-index: 99999;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
.reduce-motion *, .reduce-motion *::before, .reduce-motion *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
}

/* ── Focus Visible (WCAG 2.4.7) ── */
:focus-visible {
    outline: 3px solid var(--brand);
    outline-offset: 3px;
    border-radius: var(--r-sm);
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--brand);
    outline-offset: 2px;
}

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

/* ── Offline Bar ── */
.offline-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99998;
    background: var(--amber);
    color: #0B0B0F;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.3s ease;
}
.offline-bar.hidden { display: none; }
body.is-offline .screen { padding-top: 38px; }

/* ── PWA Install Banner ── */
.pwa-banner {
    position: fixed;
    bottom: calc(var(--nav-h) + 12px);
    left: 12px;
    right: 12px;
    z-index: 9999;
    background: var(--bg3);
    border: 1px solid var(--bdr2);
    border-radius: var(--r-lg);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    animation: slideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pwa-banner.hidden { display: none; }
@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.pwa-banner-content {
    display: flex; align-items: center; gap: 12px; flex: 1;
}
.pwa-banner-icon img {
    border-radius: 10px;
    width: 40px; height: 40px;
}
.pwa-banner-text {
    display: flex; flex-direction: column; gap: 1px;
}
.pwa-banner-text strong { font-size: 14px; font-weight: 700; color: var(--t1); }
.pwa-banner-text span   { font-size: 12px; color: var(--t2); }
.pwa-banner-actions { display: flex; align-items: center; gap: 8px; }
.pwa-install-btn {
    background: var(--brand);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.15s;
}
.pwa-install-btn:hover { opacity: 0.9; }
.pwa-dismiss-btn {
    background: var(--surf2);
    border: none;
    color: var(--t2);
    width: 28px; height: 28px;
    border-radius: 50%;
    font-size: 11px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}

/* ── Update Available Bar ── */
.update-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 99999;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
}
.update-reload-btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

/* ── Safe Area Insets (notch / home bar support) ── */
body {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}
.bottom-nav {
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    height: calc(var(--nav-h) + env(safe-area-inset-bottom));
}

/* ── High Contrast Mode Support ── */
@media (prefers-contrast: more) {
    :root {
        --bdr: rgba(255,255,255,0.3);
        --bdr2: rgba(255,255,255,0.5);
        --t2: #C0C0C8;
    }
    .btn-primary {
        border: 2px solid var(--brand);
    }
}

/* ── Forced Colors (Windows High Contrast) ── */
@media (forced-colors: active) {
    .btn-primary { forced-color-adjust: none; }
    .nav-fab     { forced-color-adjust: none; }
}

/* ── Color Scheme: Light mode support (future) ── */
@media (prefers-color-scheme: light) {
    /* Currently dark-only — reserved for future light theme */
}

/* ── Touch target minimum size (WCAG 2.5.5) ── */
button, a, [role="button"] {
    min-height: 44px;
    min-width: 44px;
}
.cat-pill, .sort-pill, .see-all-btn {
    min-height: 36px; /* content-dense pill exception, documented */
}

/* ── Keyboard-only focus indicator enhancement ── */
.nav-btn:focus-visible {
    background: var(--brand-dim);
    border-radius: var(--r-sm);
}

/* ── RTL support placeholder ── */
[dir="rtl"] .fa-arrow-right { transform: scaleX(-1); }
[dir="rtl"] .pmenu-arr      { transform: scaleX(-1); }
[dir="rtl"] .auth-body      { direction: rtl; }

/* ── Print styles ── */
@media print {
    .bottom-nav, .pwa-banner, .offline-bar, .app-header { display: none !important; }
    body { background: #fff; color: #000; }
}
