/* Apex Pickleball - clean green & lime */
:root {
  --green-950: #07231a;
  --green-900: #0b2e20;
  --green-800: #0f3d2b;
  --green-700: #155a3c;
  --green-600: #1d7a4f;
  --green-100: #e3f1e8;
  --lime: #c8f031;
  --lime-600: #a9d316;
  --lime-100: #f3fbd6;
  --cream: #f6f8ef;
  --white: #ffffff;
  --ink: #0f1a14;
  --muted: #56655b;
  --line: #dfe6d8;
  --danger: #b42318;
  --danger-bg: #fdecea;
  --warn-bg: #fff7db;
  --warn: #8a5a00;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(15, 26, 20, 0.06), 0 8px 24px rgba(15, 26, 20, 0.06);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--cream); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: var(--green-700); text-underline-offset: 3px; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
.container { width: min(1120px, 100% - 2.5rem); margin-inline: auto; }
.narrow { width: min(760px, 100% - 2.5rem); margin-inline: auto; }
.muted { color: var(--muted); }
.small { font-size: 0.875rem; }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--lime); padding: 0.5rem 1rem; z-index: 100; }
.skip-link:focus { left: 1rem; }
:focus-visible { outline: 3px solid var(--lime-600); outline-offset: 2px; }

/* Buttons */
.btn { white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font: inherit; font-weight: 700; border: 0; border-radius: 999px; padding: 0.9rem 1.6rem; cursor: pointer; text-decoration: none; transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease; line-height: 1.2; }
.btn:active { transform: translateY(1px); }
.btn-lime { background: var(--lime); color: var(--green-900); box-shadow: 0 4px 0 var(--lime-600); }
.btn-lime:hover { background: #d4f55a; }
.btn-green { background: var(--green-800); color: var(--white); }
.btn-green:hover { background: var(--green-700); }
.btn-outline { background: transparent; color: var(--green-800); box-shadow: inset 0 0 0 2px var(--green-800); }
.btn-outline-light { background: transparent; color: var(--white); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7); }
.btn-danger { background: var(--danger-bg); color: var(--danger); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.9rem; box-shadow: none; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.1rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(246, 248, 239, 0.92); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 68px; }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--green-900); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { white-space: nowrap; font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; }
.brand-text small { font-size: 0.72rem; color: var(--muted); font-weight: 600; }
.brand-light { color: var(--white); }
.brand-light .brand-text small { color: rgba(255, 255, 255, 0.7); }
.main-nav { display: flex; align-items: center; gap: 0.75rem; }
.nav-menu summary { list-style: none; cursor: pointer; width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; border-radius: 12px; }
.nav-menu summary::-webkit-details-marker { display: none; }
.nav-menu summary span { display: block; width: 22px; height: 2px; background: var(--green-900); border-radius: 2px; }
.nav-menu ul { list-style: none; margin: 0; padding: 0.5rem; position: absolute; right: 1rem; top: 64px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); min-width: 220px; }
.nav-menu li a { display: block; padding: 0.7rem 1rem; text-decoration: none; color: var(--ink); font-weight: 600; border-radius: 10px; }
.nav-menu li a:hover, .nav-menu li a[aria-current] { background: var(--green-100); color: var(--green-800); }
.desktop-links { display: none; list-style: none; margin: 0; padding: 0; gap: 0.25rem; }
.desktop-links a { display: block; padding: 0.5rem 0.8rem; text-decoration: none; color: var(--ink); font-weight: 600; border-radius: 10px; }
.desktop-links a:hover, .desktop-links a[aria-current] { background: var(--green-100); color: var(--green-800); }
@media (min-width: 900px) { .desktop-links { display: flex; } .nav-menu { display: none; } }
@media (max-width: 420px) { .brand-text small { display: none; } }

/* Hero */
.hero { position: relative; color: var(--white); background: var(--green-900); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url("/assets/img/sample-hero.jpg") center / cover no-repeat; opacity: 0.35; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 46, 32, 0.2), rgba(11, 46, 32, 0.95)); }
.hero-inner { position: relative; z-index: 1; padding: clamp(4rem, 12vw, 8rem) 0 clamp(3rem, 8vw, 5rem); }
.eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green-900); background: var(--lime); padding: 0.35rem 0.8rem; border-radius: 999px; margin-bottom: 1rem; }
.hero h1 span { color: var(--lime); }
.hero p.lead { font-size: clamp(1.05rem, 2.4vw, 1.3rem); max-width: 36rem; color: rgba(255, 255, 255, 0.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 2rem; padding: 0; list-style: none; font-weight: 600; color: rgba(255, 255, 255, 0.9); }
.hero-facts li::before { content: "●"; color: var(--lime); margin-right: 0.5rem; font-size: 0.7em; vertical-align: middle; }

/* Sections */
.section { padding: clamp(3rem, 8vw, 5.5rem) 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--green-900); color: var(--white); }
.section-dark .muted { color: rgba(255, 255, 255, 0.72); }
.section-head { max-width: 40rem; margin-bottom: 2rem; }
.page-hero { background: var(--green-900); color: var(--white); padding: clamp(2.5rem, 7vw, 4rem) 0; }
.page-hero p { color: rgba(255, 255, 255, 0.8); max-width: 40rem; margin: 0; }
.grid { display: grid; gap: 1.25rem; }
@media (min-width: 720px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.card-lime { background: var(--lime-100); border-color: #e2f2a8; }
.card-dark { background: var(--green-800); border-color: var(--green-700); color: var(--white); }

/* Pricing */
.price-cards { display: grid; gap: 1rem; }
@media (min-width: 640px) { .price-cards { grid-template-columns: 1fr 1fr; } }
.price-card { border-radius: var(--radius); padding: 1.75rem; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.price-card.peak { background: var(--green-800); color: var(--white); border-color: var(--green-800); }
.price-card .label { font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.price-card.peak .label { color: var(--lime); }
.price-card .amount { font-size: 2.8rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin: 0.3rem 0; }
.price-card .amount small { font-size: 1rem; font-weight: 600; opacity: 0.7; }
.note { display: flex; gap: 0.75rem; align-items: flex-start; background: var(--lime-100); border: 1px solid #e2f2a8; border-radius: var(--radius-sm); padding: 1rem 1.25rem; }
.note-warn { background: var(--warn-bg); border-color: #f5e3a3; color: #5c3d00; }
.note-error { background: var(--danger-bg); border-color: #f6c8c3; color: var(--danger); }

/* Steps */
.steps { counter-reset: step; display: grid; gap: 1rem; padding: 0; list-style: none; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li { counter-increment: step; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; position: relative; }
.steps li::before { content: counter(step); display: grid; place-items: center; width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--lime); color: var(--green-900); font-weight: 800; margin-bottom: 0.9rem; }
.section-dark .steps li { background: var(--green-800); border-color: var(--green-700); }

/* Gallery */
.gallery { display: grid; gap: 0.75rem; grid-template-columns: repeat(2, 1fr); }
.gallery img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-sm); }
.gallery img:first-child { grid-column: span 2; aspect-ratio: 16 / 9; }

/* Info list */
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.9rem; }
.info-list li { display: flex; gap: 0.8rem; align-items: flex-start; }
.info-list .icon { flex: none; width: 2.2rem; height: 2.2rem; border-radius: 10px; background: var(--green-100); color: var(--green-800); display: grid; place-items: center; font-size: 1.05rem; }
.map-embed { width: 100%; aspect-ratio: 4 / 3; border: 0; border-radius: var(--radius); background: var(--green-100); }

/* FAQ / rules */
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 1.25rem; margin-bottom: 0.75rem; }
.faq summary { cursor: pointer; font-weight: 700; padding: 1.1rem 0; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--green-600); }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding-bottom: 1.1rem; color: var(--muted); }
.placeholder-flag { display: inline-block; font-size: 0.7rem; font-weight: 800; background: var(--warn-bg); color: var(--warn); border-radius: 6px; padding: 0.1rem 0.4rem; margin-left: 0.4rem; vertical-align: middle; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.5rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }
.court-diagram { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; }

/* Footer */
.site-footer { background: var(--green-950); color: rgba(255, 255, 255, 0.82); padding: 3.5rem 0 6rem; margin-top: 0; }
.site-footer a { color: var(--white); }
.site-footer h3 { color: var(--lime); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.5rem; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { text-decoration: none; }
.footer-address { margin-top: 1rem; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); margin-top: 2.5rem; padding-top: 1.25rem; font-size: 0.85rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; }
.credits { opacity: 0.6; }

/* WhatsApp button */
.whatsapp-fab { position: fixed; right: 1rem; bottom: calc(1rem + env(safe-area-inset-bottom)); z-index: 60; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: var(--white); display: grid; place-items: center; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); }
.whatsapp-fab svg { width: 30px; height: 30px; }
.page-book .whatsapp-fab { bottom: calc(5.5rem + env(safe-area-inset-bottom)); }
@media (min-width: 900px) { .page-book .whatsapp-fab { bottom: 1.5rem; } }

/* ---------- Booking ---------- */
.booking-layout > * { min-width: 0; }
.booking-layout { display: grid; gap: 1.5rem; align-items: start; padding: 1.5rem 0 3rem; }
@media (min-width: 900px) { .booking-layout { grid-template-columns: 1fr 380px; padding-top: 2.5rem; } .summary-panel { position: sticky; top: 90px; } }
.step-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow); margin-bottom: 1rem; }
@media (min-width: 640px) { .step-card { padding: 1.5rem; } }
.step-title { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; font-size: 1.1rem; }
.step-title .num { display: grid; place-items: center; width: 1.9rem; height: 1.9rem; border-radius: 50%; background: var(--green-800); color: var(--lime); font-size: 0.9rem; font-weight: 800; flex: none; }
.date-strip { display: flex; gap: 0.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0.25rem 0.1rem 0.75rem; margin: 0 -0.25rem; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.date-chip { flex: none; scroll-snap-align: start; width: 4.4rem; padding: 0.6rem 0.2rem; border-radius: 14px; border: 1.5px solid var(--line); background: var(--white); font: inherit; cursor: pointer; text-align: center; color: var(--ink); }
.date-chip .dow { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; color: var(--muted); letter-spacing: 0.05em; }
.date-chip .day { display: block; font-size: 1.4rem; font-weight: 800; line-height: 1.2; }
.date-chip .mon { display: block; font-size: 0.75rem; color: var(--muted); font-weight: 600; }
.date-chip[aria-pressed="true"] { background: var(--green-800); border-color: var(--green-800); color: var(--white); }
.date-chip[aria-pressed="true"] .dow, .date-chip[aria-pressed="true"] .mon { color: var(--lime); }
.slot-group + .slot-group { margin-top: 1rem; }
.slot-group h4 { margin: 0 0 0.5rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); display: flex; justify-content: space-between; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(5.6rem, 1fr)); gap: 0.5rem; }
.slot { font: inherit; font-weight: 700; font-size: 0.92rem; padding: 0.7rem 0.25rem; border-radius: 12px; border: 1.5px solid var(--line); background: var(--white); cursor: pointer; color: var(--ink); }
.slot:hover:not([disabled]) { border-color: var(--green-600); }
.slot[disabled] { background: repeating-linear-gradient(-45deg, #f1f3ee, #f1f3ee 6px, #e8ebe4 6px, #e8ebe4 12px); color: #9aa59d; cursor: not-allowed; text-decoration: line-through; border-color: transparent; }
.slot.in-range { background: var(--lime-100); border-color: var(--lime-600); }
.slot[aria-pressed="true"] { background: var(--green-800); color: var(--white); border-color: var(--green-800); }
.legend { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.9rem; font-size: 0.8rem; color: var(--muted); }
.legend span::before { content: ""; display: inline-block; width: 0.8rem; height: 0.8rem; border-radius: 4px; margin-right: 0.35rem; vertical-align: -1px; border: 1.5px solid var(--line); background: var(--white); }
.legend .lg-taken::before { background: repeating-linear-gradient(-45deg, #f1f3ee, #f1f3ee 3px, #dfe3da 3px, #dfe3da 6px); border-color: transparent; }
.legend .lg-selected::before { background: var(--green-800); border-color: var(--green-800); }
.field .duration-select { width: 100%; font: inherit; font-size: 16px; font-weight: 700; padding: 0.85rem 2.6rem 0.85rem 1rem; border-radius: 12px; border: 1.5px solid var(--green-600); background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 7.5l5 5 5-5' fill='none' stroke='%230f3d2b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 0.9rem center / 1.1rem no-repeat; color: var(--ink); appearance: none; -webkit-appearance: none; cursor: pointer; }
.field .duration-select:focus { outline: none; box-shadow: 0 0 0 3px rgba(29, 122, 79, 0.2); }
.duration-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(7rem, 1fr)); gap: 0.5rem; }
.duration { font: inherit; text-align: left; padding: 0.7rem 0.9rem; border-radius: 12px; border: 1.5px solid var(--line); background: var(--white); cursor: pointer; color: var(--ink); }
.duration strong { display: block; font-size: 1rem; }
.duration small { color: var(--muted); font-weight: 600; }
.duration[aria-pressed="true"] { background: var(--green-800); border-color: var(--green-800); color: var(--white); }
.duration[aria-pressed="true"] small { color: var(--lime); }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 700; margin-bottom: 0.35rem; font-size: 0.92rem; }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: 16px; padding: 0.8rem 0.9rem; border-radius: 12px; border: 1.5px solid var(--line); background: var(--white); color: var(--ink); }
.field input:focus, .field select:focus { border-color: var(--green-600); outline: none; box-shadow: 0 0 0 3px rgba(29, 122, 79, 0.15); }
.field .hint { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; }
.field-row { display: grid; gap: 0 1rem; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.summary { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.summary-head { background: var(--green-800); color: var(--white); padding: 1.1rem 1.25rem; }
.summary-head h3 { margin: 0; }
.summary-head p { margin: 0.2rem 0 0; color: rgba(255, 255, 255, 0.8); font-size: 0.92rem; }
.summary-body { padding: 1.1rem 1.25rem; }
.summary-empty { color: var(--muted); margin: 0; }
.rows { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.rows td { padding: 0.4rem 0; vertical-align: top; }
.rows td:last-child { text-align: right; font-weight: 700; white-space: nowrap; }
.rows .sub td { color: var(--muted); font-size: 0.85rem; padding-top: 0; }
.rows .sub td:last-child { font-weight: 600; }
.rows tr.total td { border-top: 1px solid var(--line); padding-top: 0.7rem; font-size: 1.05rem; font-weight: 800; }
.rows tr.pay td { color: var(--green-700); font-weight: 800; }
.rows tr.balance td { font-weight: 700; }
.pay-callout { margin-top: 0.9rem; background: var(--lime-100); border-radius: 12px; padding: 0.8rem 1rem; font-size: 0.88rem; }
.sticky-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.06); padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom)); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.sticky-bar .sb-info { line-height: 1.25; font-size: 0.9rem; }
.sticky-bar .sb-info strong { display: block; font-size: 1.05rem; }
.sticky-bar[hidden] { display: none; }
@media (min-width: 900px) { .sticky-bar { display: none; } }
.spinner { width: 1.1rem; height: 1.1rem; border-radius: 50%; border: 2.5px solid currentColor; border-right-color: transparent; animation: spin 0.8s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-block { display: flex; align-items: center; gap: 0.6rem; color: var(--muted); padding: 1rem 0; }
.confirm-card { text-align: center; }
.confirm-badge { width: 4.5rem; height: 4.5rem; border-radius: 50%; background: var(--lime); color: var(--green-900); display: grid; place-items: center; margin: 0 auto 1rem; font-size: 2.2rem; font-weight: 800; }
.confirm-details { text-align: left; margin: 1.5rem auto 0; max-width: 26rem; }
.status-pill { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 999px; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.st-BOOKED { background: var(--green-100); color: var(--green-700); }
.st-PENDING_PAYMENT { background: var(--warn-bg); color: var(--warn); }
.st-PAYMENT_CONFLICT { background: var(--danger-bg); color: var(--danger); }
.st-CANCELLED { background: #eceeea; color: var(--muted); }
.st-BLOCKED { background: #e7e3f7; color: #4b3a99; }

/* ---------- Admin ---------- */
.admin-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.5rem 0 1rem; }
.day-nav { display: flex; align-items: center; gap: 0.5rem; }
.day-nav input { font: inherit; padding: 0.55rem 0.7rem; border-radius: 10px; border: 1.5px solid var(--line); }
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr)); gap: 0.75rem; margin-bottom: 1rem; }
.stat { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0.9rem 1rem; }
.stat b { display: block; font-size: 1.5rem; }
.stat span { color: var(--muted); font-size: 0.85rem; font-weight: 600; }
.timeline { display: grid; grid-template-columns: repeat(32, 1fr); gap: 2px; margin: 0.5rem 0 0.25rem; }
.timeline div { height: 28px; border-radius: 4px; background: var(--green-100); }
.timeline .t-BOOKED { background: var(--green-700); }
.timeline .t-PENDING_PAYMENT { background: #f1c84b; }
.timeline .t-BLOCKED { background: #7c6bd6; }
.timeline-labels { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--muted); }
.admin-list { display: grid; gap: 0.75rem; }
.admin-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.1rem; display: grid; gap: 0.4rem; }
.admin-item header { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.admin-item .when { font-weight: 800; font-size: 1.05rem; }
.admin-item .meta { color: var(--muted); font-size: 0.9rem; }
.admin-item .money { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.92rem; }
.admin-item .money b { color: var(--green-700); }
.admin-item .actions { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.3rem; }
.flag { background: var(--warn-bg); color: var(--warn); font-weight: 700; font-size: 0.85rem; border-radius: 8px; padding: 0.35rem 0.6rem; }
.flag-danger { background: var(--danger-bg); color: var(--danger); }
.toast { position: fixed; left: 50%; bottom: 1.5rem; transform: translateX(-50%); background: var(--green-900); color: var(--white); padding: 0.8rem 1.2rem; border-radius: 12px; z-index: 90; box-shadow: var(--shadow); max-width: calc(100% - 2rem); }
.page-admin .whatsapp-fab { display: none; }
.legend .lg-booked::before { background: var(--green-700); border-color: var(--green-700); }
.legend .lg-pending::before { background: #f1c84b; border-color: #f1c84b; }
.legend .lg-blocked::before { background: #7c6bd6; border-color: #7c6bd6; }
.legend .lg-free::before { background: var(--green-100); border-color: var(--green-100); }
