/* =========================================================
   HABANERO WOD — BASE.CSS
   ========================================================= */

/* -------------------------
   1) Reset minimal + base
-------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin: 0;
  padding: 0;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}
/* -------------------------
   2) DESIGN TOKENS
-------------------------- */
:root {
  --bg: #0b0d10;
  --surface: #12151b;
  --surface-2: #181c24;

  --text: #f4f6fb;
  --muted: #9aa3b2;

  --border: #232838;
  --shadow: 0 20px 40px rgba(0,0,0,.45);

  --brand: #f5c518;      /* jaune */
  --collectif: #f59e0b;
  --individuel: #22c55e;

  --radius: 14px;
  --radius-sm: 10px;

  --container: 1120px;

  --t: 180ms ease;
}

/* -------------------------
   3) BASE LAYOUT
-------------------------- */
html, body {
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height: 1.75;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* -------------------------
   4) TYPOGRAPHY
-------------------------- */
h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
  max-width: 38ch;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

/* -------------------------
   5) UTILITIES
-------------------------- */
.stack {
  display: grid;
  gap: 1.25rem;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* -------------------------
   6) BUTTONS (UNE FOIS)
-------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 1.25rem;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}

.btn-primary {
  background: var(--brand);
  color: #111;
}

.btn-primary:hover {
  background: #e6b800;
}

/* -------------------------
   7) HEADER
-------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15,17,21,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.site-header .container {
  height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* -------------------------
   8) HERO
-------------------------- */
.hero {
  padding: 3rem 1.5rem;
  background: radial-gradient(circle at top, #141824, #0b0d10 70%);
}

.brand-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem) 1.5rem 0;
}

.brand-logo {
  width: min(520px, 90vw);
  height: auto;
  display: block;
  margin: 0 auto;
}


/* -------------------------
   9) FOOTER (UNE SEULE VERSION)
-------------------------- */
.site-footer {
  background: #07090d;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-desc {
  max-width: 42ch;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}


/* -------------------------
   10) 10. RESPONSIVE (GROUPÉ)
-------------------------- */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
/* =========================================================
   UI SYSTEM — TEXT / BUTTONS / HEADER (REFAC)
   Objectif : lisibilité + anti-collision mobile
========================================================= */

/* -------------------------
   TEXT SPACING (DESKTOP)
-------------------------- */

.text-block,
.hero-text,
.section-text,
.split_text {
  max-width: 40ch;
}

.section h1,
.section h2 {
  margin-bottom: 1.75rem;
}

.section p,
.hero p {
  margin-bottom: 1.5rem;
}


/* -------------------------
   BUTTON SYSTEM (DESKTOP)
-------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 1.25rem;
  border-radius: 14px;
  font-weight: 700;
  text-align: center;
}

.btn + .btn {
  margin-left: 1rem;
  margin-top: 1rem;
}


/* -------------------------
   HEADER LOGO / ICON
-------------------------- */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 66px;   /* taille PRO header */
  height: px;
  object-fit: contain;
}


/* -------------------------
   HEADER STABILITY
-------------------------- */

.site-header {
  height: 68px;
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}


/* =========================================================
   MOBILE — RULES AUTORITAIRES (ANTI-COLLISION)
========================================================= */

@media (max-width: 480px) {

  /* ---- Sections : respiration verticale ---- */
  .hero,
  .cta,
  .section {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  /* ---- Typography : tailles MAX ---- */
  h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
  }

  h2 {
    font-size: 1.4rem;
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }

  /* ---- Texte : largeur pleine en mobile ---- */
  .text-block,
  .hero-text,
  .section-text,
  .split_text {
    max-width: 100%;
  }

  /* ---- Boutons : colonne isolée ---- */
  .hero-actions,
  .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .btn {
    min-height: 52px;
    font-size: 0.95rem;
    padding: 0.75rem 1.1rem;
    white-space: normal;
  }

  .btn + .btn {
    margin-left: 0;
  }
}

/* =========================
   HEADER NAV LINKS — MOBILE FIX
========================= */

@media (max-width: 480px) {

  /* Alléger la navigation */
  .main-nav ul {
    gap: 0.75rem;              /* moins d’espace horizontal */
  }

  .main-nav a {
    font-size: 0.8rem;         /* plus petit */
    font-weight: 500;          /* moins épais */
    opacity: 0.7;              /* visuellement secondaire */
  }

  .main-nav a:hover {
    opacity: 1;
  }
}


@media (max-width: 480px) {
  .main-nav a {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  .main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .main-nav li::marker {
    content: none;
  }
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-surface {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: clamp(1.1rem, 2.2vw, 2rem);
  background:
    radial-gradient(1000px 400px at -20% -10%, rgba(245, 197, 24, 0.16), transparent 40%),
    radial-gradient(800px 300px at 120% 0%, rgba(34, 197, 94, 0.14), transparent 35%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

@media (min-width: 900px) {
  .booking-surface {
    width: calc(100% + 1.5rem);
    margin-inline: -0.75rem;
  }
}

.booking-surface h1,
.booking-surface h2,
.booking-surface h3 {
  margin-bottom: 0.7rem;
}

.booking-surface h1 {
  letter-spacing: -0.02em;
}

.booking-surface p {
  max-width: 72ch;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1.1rem 0 2.1rem;
}

.slot-card {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    #0f131a;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}

.slot-card--full {
  opacity: 0.75;
  border-color: rgba(239, 68, 68, 0.4);
}

.slot-card--full::before {
  background: linear-gradient(180deg, #ef4444, #7f1d1d);
}

.slot-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand), #ff8a00);
}

.slot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 24, 0.45);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.slot-card p {
  margin-bottom: 0.75rem;
}

.slot-card .slot-date-time-emphasis {
  color: #f4f6fb;
  font-weight: 700;
}

.slot-card .btn {
  width: 100%;
  margin-top: 0.25rem;
}

.btn-disabled {
  background: rgba(239, 68, 68, 0.18);
  color: #fecaca;
  border: 1px solid rgba(239, 68, 68, 0.6);
  cursor: not-allowed;
  pointer-events: none;
}

.notice {
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid;
}

.notice p {
  margin: 0 0 0.35rem;
}

.notice p:last-child {
  margin-bottom: 0;
}

.notice-success {
  border-color: rgba(34, 197, 94, 0.5);
  background: linear-gradient(120deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.07));
}

.notice-error {
  border-color: rgba(239, 68, 68, 0.5);
  background: linear-gradient(120deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.06));
}

.booking-form {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.booking-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: #d9deea;
}

.booking-form label.full,
.booking-form .btn {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0c1016;
  color: var(--text);
  padding: 0.78rem 0.88rem;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: rgba(245, 197, 24, 0.75);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.2);
}

.booking-form input[type="date"],
.booking-form input[type="time"],
.booking-form input[type="datetime-local"],
.booking-form input[type="month"],
.booking-form input[type="week"] {
  color-scheme: dark;
  background:
    linear-gradient(180deg, rgba(245, 197, 24, 0.06), rgba(245, 197, 24, 0.02)),
    #0c1016;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator,
.booking-form input[type="datetime-local"]::-webkit-calendar-picker-indicator,
.booking-form input[type="month"]::-webkit-calendar-picker-indicator,
.booking-form input[type="week"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  border-radius: 8px;
  padding: 0.25rem;
  background-color: rgba(245, 197, 24, 0.14);
  filter: invert(88%) sepia(46%) saturate(856%) hue-rotate(339deg) brightness(102%) contrast(94%);
  transition: background-color var(--t), transform var(--t);
}

.booking-form input[type="date"]:hover::-webkit-calendar-picker-indicator,
.booking-form input[type="time"]:hover::-webkit-calendar-picker-indicator,
.booking-form input[type="datetime-local"]:hover::-webkit-calendar-picker-indicator,
.booking-form input[type="month"]:hover::-webkit-calendar-picker-indicator,
.booking-form input[type="week"]:hover::-webkit-calendar-picker-indicator {
  background-color: rgba(245, 197, 24, 0.24);
  transform: scale(1.04);
}

.booking-form input.time-visual[type="time"] {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  padding-right: 2.7rem;
  border-color: rgba(245, 197, 24, 0.36);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23f5c518' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 1rem 1rem;
}

.booking-form input.time-visual[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 2rem;
  cursor: pointer;
}

.booking-form input.time-visual[type="time"]::-webkit-datetime-edit {
  color: #f7f0ce;
}

.booking-form input.time-visual[type="time"]::-webkit-datetime-edit-hour-field,
.booking-form input.time-visual[type="time"]::-webkit-datetime-edit-minute-field {
  border-radius: 6px;
  padding: 0.05rem 0.2rem;
  background: rgba(245, 197, 24, 0.14);
}

.booking-form input[readonly] {
  background: #111824;
  border-color: rgba(245, 197, 24, 0.45);
  color: #f7f0ce;
}

.password-field {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
}

.password-field input {
  flex: 1 1 auto;
}

.password-toggle {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: #111824;
  color: var(--text);
  padding: 0.78rem 1rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--t), box-shadow var(--t), background var(--t), transform var(--t);
}

.password-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.password-toggle:focus {
  outline: none;
  border-color: rgba(245, 197, 24, 0.75);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.2);
}

.booking-form textarea {
  resize: vertical;
  min-height: 130px;
}

.booking-form .btn {
  margin-top: 0.2rem;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1rem;
}

.admin-toolbar__left {
  display: grid;
  gap: 0.2rem;
}

.admin-toolbar__right {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-btn {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
  min-height: 56px;
  height: 56px;
  min-width: 180px;
  width: 180px;
  padding: 0 1.25rem;
  box-sizing: border-box;
  flex: 0 0 180px;
}

.admin-btn,
.admin-search .btn {
  min-height: 56px;
}

.admin-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

.stat-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1rem;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0.2rem 0;
}

.stat-sub {
  font-size: 0.85rem;
  color: var(--muted);
}

.admin-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  align-items: center;
  margin: 1rem 0 1.5rem;
  width: 100%;
}

.admin-search input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0c1016;
  color: var(--text);
  padding: 0.78rem 0.88rem;
  min-width: 0;
  height: 56px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.admin-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.admin-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1rem;
  min-width: 0;
}

.admin-panel header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.admin-panel--search-summary {
  margin-bottom: 1rem;
}

.admin-search-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.dashboard-stack .dashboard-block + .dashboard-block {
  margin-top: 1.4rem;
}

.dashboard-stack .stat-grid,
.dashboard-stack .admin-search,
.dashboard-stack .admin-grid {
  margin: 0;
}

.admin-table {
  display: grid;
  gap: 0.8rem;
}

.admin-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) auto;
  gap: 0.8rem;
  align-items: center;
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.admin-row > div,
.admin-row > strong {
  min-width: 0;
}

.admin-row .small,
.admin-panel p,
.admin-panel a,
.admin-panel strong,
.admin-panel span {
  overflow-wrap: break-word;
  word-break: normal;
}

.admin-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-collectif {
  background: rgba(245, 158, 11, 0.18);
  color: #f5c518;
  border: 1px solid rgba(245, 158, 11, 0.5);
}

.badge-individuel {
  background: rgba(34, 197, 94, 0.18);
  color: #7ee3a1;
  border: 1px solid rgba(34, 197, 94, 0.5);
}

.badge-en_attente {
  background: rgba(59, 130, 246, 0.18);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.5);
}

.badge-confirme {
  background: rgba(34, 197, 94, 0.18);
  color: #7ee3a1;
  border: 1px solid rgba(34, 197, 94, 0.5);
}

.badge-refuse {
  background: rgba(239, 68, 68, 0.18);
  color: #fecaca;
  border: 1px solid rgba(239, 68, 68, 0.5);
}

.badge-annulee {
  background: rgba(239, 68, 68, 0.18);
  color: #fecaca;
  border: 1px solid rgba(239, 68, 68, 0.5);
}

.badge-complet {
  background: rgba(239, 68, 68, 0.18);
  color: #fecaca;
  border: 1px solid rgba(239, 68, 68, 0.6);
}

.admin-filters {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 1.5rem;
}

.admin-type {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.admin-btn.active {
  background: rgba(245, 197, 24, 0.2);
  border-color: rgba(245, 197, 24, 0.6);
}

.admin-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.admin-toolbar__right .btn,
.admin-type .btn,
.admin-actions .btn,
.admin-search .btn {
  margin: 0;
}

.admin-row--wide {
  grid-template-columns: 40px minmax(0, 1.2fr) minmax(0, 0.9fr) auto auto;
}

.admin-row--contacts {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.7fr) auto;
}

.admin-row--head {
  font-weight: 600;
  opacity: 0.7;
}

.admin-check {
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-row--head .admin-check input {
  transform: scale(1.05);
}

.admin-bulk {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.admin-bulk__controls {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

.admin-bulk select {
  height: 56px;
  min-width: 220px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0c1016;
  color: var(--text);
  padding: 0 0.8rem;
}

.admin-reservations-wrap,
.admin-table {
  overflow-x: auto;
}

table,
.admin-reservations,
.admin-table table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table {
  overflow-x: auto;
}

.admin-reservations-wrap {
  overflow-x: auto;
}

.admin-reservations th,
.admin-reservations td,
.admin-table table th,
.admin-table table td,
table th,
table td {
  padding: 10px 16px;
  white-space: nowrap;
  text-align: left;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.admin-reservations th:not(:last-child),
.admin-reservations td:not(:last-child),
.admin-table table th,
.admin-table table th:not(:last-child),
.admin-table table td:not(:last-child),
table th:not(:last-child),
table td:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-reservations tbody tr:last-child td,
.admin-table table tbody tr:last-child td,
table tbody tr:last-child td {
  border-bottom: none;
}

.admin-reservations td form,
.admin-table table td form,
table td form {
  display: inline-block;
  margin-right: 0.35rem;
}

.admin-reservations .badge,
.admin-table table .badge,
table .badge {
  text-transform: none;
  letter-spacing: 0;
}

.badge.pending {
  background: #555;
  color: #fff;
  border: none;
}

.badge.confirmed {
  background: #0f8a4b;
  color: #fff;
  border: none;
}

.badge.cancelled {
  background: #c0392b;
  color: #fff;
  border: none;
}

.admin-detail {
  display: grid;
  gap: 0.6rem;
}

.admin-message {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.9rem;
  line-height: 1.6;
}

.admin-slot-row {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
}

.admin-slot-row p {
  margin-bottom: 0.45rem;
}

@media (max-width: 780px) {
  .booking-form {
    grid-template-columns: 1fr;
  }

  .admin-search {
    grid-template-columns: 1fr;
  }

  .admin-row {
    grid-template-columns: 1fr;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .booking-surface,
  .slot-card {
    animation: riseIn 320ms ease-out both;
  }

  .slot-card:nth-child(2) { animation-delay: 40ms; }
  .slot-card:nth-child(3) { animation-delay: 80ms; }
  .slot-card:nth-child(4) { animation-delay: 120ms; }

  @keyframes riseIn {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Admin header (separate from client header) */
.admin-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 17, 21, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-site-header__inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.admin-main-nav {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.admin-back-btn {
  min-width: 120px;
  width: auto;
  flex: 0 0 auto;
}

.admin-main-nav .admin-btn {
  width: auto;
  min-width: 170px;
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .admin-site-header__inner {
    align-items: stretch;
    flex-direction: column;
    display: flex;
  }

  .admin-main-nav {
    justify-content: flex-start;
  }

  .admin-main-nav .admin-btn {
    min-width: 140px;
  }
}
