/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --bg: #0a0a0a; --surface: #141414; --card: #1a1a1a; --card-border: rgba(200,169,126,.12);
    --gold: #c8a97e; --gold-light: #e8d5b5; --gold-dark: #a08050;
    --text: #f5f0eb; --text-sec: #8a8a8a; --text-dim: #5a5a5a;
    --success: #4caf50; --danger: #ef4444; --radius: 14px; --radius-sm: 8px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
    --gradient: linear-gradient(135deg, var(--gold), var(--gold-dark));
    --font: 'Heebo', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; direction: rtl; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, select, textarea { font-family: var(--font); }
img { max-width: 100%; display: block; }

/* ===== LOADING ===== */
#loading-screen { position: fixed; inset: 0; z-index: 9999; background: var(--bg); display: flex; align-items: center; justify-content: center; transition: opacity .5s; }
#loading-screen.hidden { opacity: 0; pointer-events: none; }
.loader { text-align: center; }
.scissors-icon { font-size: 3rem; animation: spin 1.5s ease-in-out infinite; display: inline-block; color: var(--gold); }
@keyframes spin { 0%,100% { transform: rotate(0); } 50% { transform: rotate(180deg); } }
.loader p { color: var(--text-sec); margin-top: .5rem; font-size: .9rem; }

/* ===== TOAST ===== */
#toast-container { position: fixed; top: 90px; left: 50%; transform: translateX(-50%); z-index: 10000; display: flex; flex-direction: column; gap: .5rem; align-items: center; }
.toast { padding: .8rem 1.5rem; border-radius: var(--radius-sm); color: #fff; font-size: .9rem; font-weight: 500; animation: toastIn .4s ease; box-shadow: 0 8px 30px rgba(0,0,0,.4); min-width: 200px; text-align: center; }
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.info { background: var(--gold-dark); }
.toast.out { animation: toastOut .3s ease forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toastOut { to { opacity: 0; transform: translateY(-20px); } }

/* ===== NAVBAR ===== */
#navbar { position: fixed; top: 0; right: 0; left: 0; z-index: 1000; padding: 1rem 0; transition: background var(--transition), box-shadow var(--transition); }
#navbar.scrolled { background: rgba(10,10,10,.92); backdrop-filter: blur(16px); box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: .5rem; font-size: 1.2rem; font-weight: 700; }
.logo-icon { color: var(--gold); font-size: 1.4rem; }
.logo-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; align-items: center; gap: .5rem; list-style: none; }
.nav-link { padding: .5rem .8rem; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 500; color: var(--text-sec); transition: color var(--transition), background var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .7rem 1.5rem; border-radius: var(--radius-sm); font-weight: 600; font-size: .9rem; transition: all var(--transition); }
.btn-primary { background: var(--gradient); color: #1a1a1a; }
.btn-primary:hover { box-shadow: 0 4px 20px rgba(200,169,126,.35); transform: translateY(-1px); }
.btn-outline { border: 1.5px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: rgba(200,169,126,.1); }
.btn-glass { background: rgba(255,255,255,.08); backdrop-filter: blur(8px); color: var(--text); border: 1px solid rgba(255,255,255,.1); }
.btn-glass:hover { background: rgba(255,255,255,.14); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-sm { padding: .45rem 1rem; font-size: .8rem; }
.btn-lg { padding: .85rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-arrow { transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(-4px); }

/* ===== HERO ===== */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,.7) 0%, rgba(10,10,10,.85) 50%, var(--bg) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 700px; padding: 2rem 1.5rem; animation: fadeUp .8s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge-circle { display: flex; align-items: center; justify-content: center; background: rgba(200,169,126,.15); color: var(--gold); width: 110px; height: 110px; border-radius: 50%; font-size: .9rem; font-weight: 700; border: 1.5px solid rgba(200,169,126,.3); margin: 0 auto 2.5rem; text-align: center; line-height: 1.3; padding: 1rem; box-shadow: 0 0 20px rgba(200,169,126,.1); transition: all var(--transition); }
.hero-badge-circle:hover { background: rgba(200,169,126,.25); transform: scale(1.05); }
.hero-title { margin-bottom: 1rem; }
.hero-name { display: block; font-size: clamp(2.5rem,6vw,4rem); font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.2; }
.hero-subtitle { display: block; font-size: clamp(1.1rem,3vw,1.5rem); font-weight: 300; color: var(--text-sec); margin-top: .3rem; }
.hero-description { color: var(--text-sec); font-size: 1rem; max-width: 500px; margin: 0 auto 2rem; line-height: 1.8; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-number { display: block; font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: .8rem; color: var(--text-sec); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

/* ===== SECTIONS ===== */
.section { display: none; min-height: 100vh; padding: 100px 0 60px; }
.section.active-section { display: block; }
#hero.active-section { padding: 0; }
.section-container { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-badge { display: inline-block; background: rgba(200,169,126,.12); color: var(--gold); padding: .3rem .9rem; border-radius: 50px; font-size: .75rem; font-weight: 600; letter-spacing: .5px; margin-bottom: .8rem; }
.section-title { font-size: clamp(1.8rem,4vw,2.5rem); font-weight: 800; margin-bottom: .5rem; }
.section-subtitle { color: var(--text-sec); font-size: .95rem; }

/* ===== PRICES ===== */
.prices-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.2rem; }
.price-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 1.8rem; transition: all var(--transition); position: relative; overflow: hidden; }
.price-card::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: var(--gradient); opacity: 0; transition: opacity var(--transition); }
.price-card:hover { border-color: rgba(200,169,126,.3); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.2); }
.price-card:hover::before { opacity: 1; }
.price-name { font-size: 1.1rem; font-weight: 600; margin-bottom: .5rem; }
.price-amount { font-size: 1.8rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.price-amount span { font-size: .9rem; font-weight: 400; -webkit-text-fill-color: var(--text-sec); }
.skeleton { pointer-events: none; }
.skeleton-line { height: 20px; background: rgba(255,255,255,.05); border-radius: 4px; margin-bottom: .8rem; animation: pulse 1.5s infinite; }
.skeleton-line.short { width: 60%; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* ===== HOURS ===== */
.hours-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 2rem; max-width: 500px; margin: 0 auto; }
.hours-loading { text-align: center; color: var(--text-sec); padding: 2rem; }
.hour-row { display: flex; justify-content: space-between; align-items: center; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.hour-row:last-child { border-bottom: none; }
.hour-day { font-weight: 600; }
.hour-time { color: var(--gold); font-weight: 500; }
.hour-time.closed { color: var(--text-dim); font-weight: 400; }

/* ===== BOOKING ===== */
.login-prompt { text-align: center; padding: 4rem 1rem; background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); }
.prompt-icon { font-size: 3rem; margin-bottom: 1rem; }
.login-prompt h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.login-prompt p { color: var(--text-sec); margin-bottom: 1.5rem; font-size: .9rem; }
.booking-step { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 1.8rem; margin-bottom: 1.5rem; }
.step-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.2rem; display: flex; align-items: center; gap: .6rem; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--gradient); color: #1a1a1a; font-size: .8rem; font-weight: 800; }
.service-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: .8rem; }
.service-option { padding: 1rem; border: 1.5px solid rgba(255,255,255,.08); border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition); text-align: center; }
.service-option:hover { border-color: rgba(200,169,126,.3); background: rgba(200,169,126,.05); }
.service-option.selected { border-color: var(--gold); background: rgba(200,169,126,.1); }
.service-option .svc-name { font-weight: 600; margin-bottom: .3rem; }
.service-option .svc-price { color: var(--gold); font-weight: 700; }

/* Calendar */
.calendar-container { max-width: 400px; margin: 0 auto; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.cal-month-label { font-weight: 700; font-size: 1.1rem; }
.cal-nav { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.06); color: var(--text); font-size: 1.2rem; transition: all var(--transition); }
.cal-nav:hover { background: rgba(200,169,126,.15); color: var(--gold); }
.calendar-days-header { display: grid; grid-template-columns: repeat(7,1fr); text-align: center; margin-bottom: .5rem; }
.calendar-days-header span { font-size: .8rem; color: var(--text-sec); font-weight: 600; padding: .5rem; }
.calendar-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: .9rem; font-weight: 500; cursor: default; transition: all var(--transition); color: var(--text-dim); }
.cal-day.available { cursor: pointer; color: var(--text); background: rgba(200,169,126,.08); }
.cal-day.available:hover { background: rgba(200,169,126,.2); color: var(--gold); }
.cal-day.selected { background: var(--gradient) !important; color: #1a1a1a !important; font-weight: 700; }
.cal-day.today { border: 1.5px solid var(--gold); }

/* Time Slots */
.time-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px,1fr)); gap: .6rem; }
.time-slot { padding: .7rem; text-align: center; border: 1.5px solid rgba(255,255,255,.08); border-radius: var(--radius-sm); cursor: pointer; font-weight: 600; font-size: .95rem; transition: all var(--transition); }
.time-slot:hover { border-color: rgba(200,169,126,.3); background: rgba(200,169,126,.05); }
.time-slot.selected { border-color: var(--gold); background: rgba(200,169,126,.15); color: var(--gold); }
.time-slot.booked { opacity: .3; cursor: not-allowed; text-decoration: line-through; pointer-events: none; }
.no-slots { text-align: center; color: var(--text-sec); padding: 2rem; font-size: .9rem; }

/* Confirm */
.confirm-card { background: rgba(200,169,126,.05); border: 1px solid rgba(200,169,126,.15); border-radius: var(--radius-sm); padding: 1.5rem; }
.confirm-detail { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.confirm-detail:last-of-type { border-bottom: none; margin-bottom: 1rem; }
.confirm-label { color: var(--text-sec); }
.confirm-value { font-weight: 600; }

/* ===== APPOINTMENTS LIST ===== */
.appointments-list { display: flex; flex-direction: column; gap: 1rem; }
.appointment-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; transition: all var(--transition); }
.appointment-card:hover { border-color: rgba(200,169,126,.2); }
.appt-info { display: flex; flex-direction: column; gap: .3rem; }
.appt-service { font-weight: 700; font-size: 1.05rem; }
.appt-datetime { color: var(--text-sec); font-size: .9rem; }
.appt-status { font-size: .8rem; padding: .25rem .7rem; border-radius: 50px; font-weight: 600; }
.appt-status.confirmed { background: rgba(76,175,80,.15); color: var(--success); }
.appt-status.cancelled { background: rgba(239,68,68,.15); color: var(--danger); }
.empty-state { text-align: center; padding: 4rem 1rem; color: var(--text-sec); }
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }

/* ===== ADMIN ===== */
.admin-tabs { display: flex; gap: .5rem; margin-bottom: 1.5rem; background: var(--card); border-radius: var(--radius-sm); padding: .4rem; border: 1px solid var(--card-border); }
.admin-tab { flex: 1; padding: .7rem 1rem; border-radius: 6px; font-weight: 600; font-size: .9rem; color: var(--text-sec); transition: all var(--transition); }
.admin-tab.active { background: var(--gradient); color: #1a1a1a; }
.admin-panel { display: none; }
.admin-panel.active { display: block; }
.admin-panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; flex-wrap: wrap; gap: .5rem; }
.admin-panel-header h3 { font-size: 1.1rem; }
.admin-bookings-list { display: flex; flex-direction: column; gap: .8rem; }
.admin-booking-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-sm); padding: 1.2rem; display: grid; grid-template-columns: 1fr 1fr 1fr auto; align-items: center; gap: 1rem; }
.admin-booking-card .ab-name { font-weight: 700; }
.admin-booking-card .ab-detail { color: var(--text-sec); font-size: .85rem; }
.admin-filter select { background: var(--card); color: var(--text); border: 1px solid var(--card-border); border-radius: var(--radius-sm); padding: .5rem .8rem; font-size: .85rem; }

/* Admin Prices */
.admin-price-row { display: grid; grid-template-columns: 1fr 120px auto; gap: .8rem; align-items: center; margin-bottom: .8rem; }
.admin-price-row input { background: var(--surface); border: 1px solid var(--card-border); border-radius: var(--radius-sm); padding: .6rem .8rem; color: var(--text); font-size: .9rem; }
.admin-price-row input:focus { outline: none; border-color: var(--gold); }
.remove-row-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(239,68,68,.1); color: var(--danger); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all var(--transition); }
.remove-row-btn:hover { background: rgba(239,68,68,.2); }

/* Admin Availability */
.avail-row { display: grid; grid-template-columns: 100px auto 1fr 1fr; gap: 1rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.avail-row:last-child { border-bottom: none; }
.avail-day-name { font-weight: 600; }
.toggle-switch { position: relative; width: 48px; height: 26px; }
.toggle-switch input { display: none; }
.toggle-slider { position: absolute; inset: 0; background: rgba(255,255,255,.1); border-radius: 50px; cursor: pointer; transition: var(--transition); }
.toggle-slider::before { content: ''; position: absolute; width: 20px; height: 20px; border-radius: 50%; background: #fff; top: 3px; right: 3px; transition: var(--transition); }
.toggle-switch input:checked + .toggle-slider { background: var(--gold); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(-22px); }
.avail-row input[type="time"] { background: var(--surface); border: 1px solid var(--card-border); border-radius: var(--radius-sm); padding: .5rem; color: var(--text); font-size: .85rem; direction: ltr; }
.avail-row input[type="time"]:focus { outline: none; border-color: var(--gold); }
.avail-row input[type="time"]:disabled { opacity: .3; }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; inset: 0; z-index: 5000; background: rgba(0,0,0,.7); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.show { display: flex; }
.modal { background: var(--surface); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 2rem; width: 100%; max-width: 420px; position: relative; animation: modalIn .3s ease; }
.modal-sm { max-width: 360px; text-align: center; }
@keyframes modalIn { from { opacity: 0; transform: scale(.95) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-close { position: absolute; top: 1rem; left: 1rem; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.06); color: var(--text-sec); font-size: 1.3rem; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.modal-close:hover { background: rgba(255,255,255,.12); color: var(--text); }
.modal-header { text-align: center; margin-bottom: 1.5rem; }
.modal-header h2 { font-size: 1.4rem; margin-bottom: .3rem; }
.modal-header p { color: var(--text-sec); font-size: .9rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: var(--text-sec); }
.form-group input { width: 100%; padding: .75rem 1rem; background: var(--bg); border: 1.5px solid rgba(255,255,255,.08); border-radius: var(--radius-sm); color: var(--text); font-size: .9rem; transition: border var(--transition); }
.form-group input:focus { outline: none; border-color: var(--gold); }
.auth-switch { text-align: center; margin-top: 1.2rem; font-size: .85rem; color: var(--text-sec); }
.auth-switch a { color: var(--gold); font-weight: 600; margin-right: .3rem; }
.confirm-dialog-actions { display: flex; gap: .8rem; justify-content: center; margin-top: 1.5rem; }
#confirm-dialog-message { color: var(--text-sec); font-size: .9rem; margin-top: .5rem; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .section { padding: 80px 0 40px; }
    .hero-name { font-size: clamp(2.2rem, 8vw, 3rem); }
    .hamburger { display: flex; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--surface); flex-direction: column; padding: 5rem 2rem 2rem; gap: 0; transition: right var(--transition); border-left: 1px solid var(--card-border); z-index: 1000; }
    .nav-links.open { right: 0; box-shadow: -100vw 0 0 rgba(0,0,0,0.6); }
    .nav-link { padding: 1rem 0; font-size: 1.1rem; display: block; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .hero-stats { gap: 1.2rem; }
    .stat-divider { height: 30px; }
    .admin-booking-card { grid-template-columns: 1fr 1fr; }
    .avail-row { grid-template-columns: 80px auto 1fr 1fr; gap: .6rem; font-size: .85rem; }
}

@media (max-width: 480px) {
    .section-container { padding: 0 1rem; }
    .hero-actions { flex-direction: column; gap: 1rem; width: 100%; max-width: 320px; margin: 0 auto 3rem; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .service-options { grid-template-columns: 1fr; }
    .time-slots { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .time-slot { padding: 0.9rem 0.5rem; min-height: 48px; font-size: 1.05rem; }
    .avail-row { grid-template-columns: 1fr 1fr; gap: .5rem; }
    .avail-day-name { grid-column: 1; }
    .admin-booking-card { grid-template-columns: 1fr; }
    .cal-nav { width: 44px; height: 44px; }
    #view-toggle-btn { width: 38px !important; height: 38px !important; font-size: 1rem !important; top: 0.8rem !important; right: 0.8rem !important; }
}

/* ===== FORCE MOBILE VIEW (For PC screens) ===== */
@media (min-width: 481px) {
    body.force-mobile {
        max-width: 480px;
        margin: 0 auto;
        border-left: 1px solid var(--card-border);
        border-right: 1px solid var(--card-border);
        box-shadow: 0 0 50px rgba(0,0,0,0.5);
        position: relative;
        overflow-x: hidden;
    }
    body.force-mobile #navbar {
        max-width: 480px;
        margin: 0 auto;
        left: auto;
        right: auto;
    }
}
body.force-mobile .hero-img { object-position: center; }
body.force-mobile .service-options { grid-template-columns: 1fr; }
body.force-mobile .time-slots { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
body.force-mobile .time-slot { padding: 0.9rem 0.5rem; min-height: 48px; font-size: 1.05rem; }
body.force-mobile .admin-booking-card { grid-template-columns: 1fr; }
body.force-mobile .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--surface); flex-direction: column; padding: 5rem 2rem 2rem; gap: 0;
    transition: right var(--transition); border-left: 1px solid var(--card-border); z-index: 1000;
}
body.force-mobile .nav-links.open { right: 0; box-shadow: -100vw 0 0 rgba(0,0,0,0.6); }
body.force-mobile .nav-link { padding: 1rem 0; font-size: 1.1rem; display: block; border-bottom: 1px solid rgba(255,255,255,0.05); }
body.force-mobile .hamburger { display: flex; }
body.force-mobile .hero-stats { gap: 1.2rem; }
body.force-mobile .stat-divider { height: 30px; }
body.force-mobile .avail-row { grid-template-columns: 80px auto 1fr 1fr; gap: .6rem; font-size: .85rem; }
body.force-mobile .admin-tabs { flex-wrap: wrap; }

