/* Kevin Barbeiro — sistema de design
   Tema escuro inspirado no espaço real e no Instagram (@kv.barber):
   paredes carvão, mobiliário preto e a barra LED verde néon como acento. */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* semântica mantida das versões anteriores: --paper é o fundo, --ink é o texto */
  --ink: #eef0ea;
  --ink-soft: #c7ccc3;
  --paper: #191b19;
  --paper-soft: #212422;
  --black: #0d0f0d;
  --stone: #6c746c;
  --stone-dark: #9aa398;
  --line: rgba(238, 240, 234, 0.12);
  --line-soft: rgba(238, 240, 234, 0.16);

  --green: #3dff73;
  --green-soft: rgba(61, 255, 115, 0.14);
  --green-glow: rgba(61, 255, 115, 0.45);
  --red-soft: #ff8a8a;

  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius: 2px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0 0 0.4em;
  text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-dark);
  margin-bottom: 0.8em;
  display: block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Barra verde néon — como a LED do espaço */
.stripe {
  display: block;
  width: 64px;
  height: 5px;
  background: var(--green);
  box-shadow: 0 0 14px var(--green-glow), 0 0 4px var(--green-glow);
  border-radius: 3px;
}

.stripe.center { margin-inline: auto; }

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.95em 2em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--green);
  color: var(--black);
  border-color: var(--green);
}
.btn-primary:hover { background: #63ff8e; box-shadow: 0 0 18px var(--green-glow); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }

.btn-outline.on-dark {
  color: var(--ink);
  border-color: var(--line-soft);
}
.btn-outline.on-dark:hover { border-color: var(--green); color: var(--green); }

.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.4; cursor: not-allowed; }
.btn-link {
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--stone-dark);
  text-decoration: underline; text-underline-offset: 3px;
}

/* Navegação */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.site-nav .logo-mark { height: 40px; width: auto; }
.site-nav .links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-nav .links a { color: var(--ink-soft); }
.site-nav .links a:hover { color: var(--ink); }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; font-size: 0.8rem;
}

@media (max-width: 780px) {
  .site-nav .links {
    position: fixed; inset: 76px 0 0 0; background: var(--paper);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 8px 24px 24px; transform: translateY(-8px);
    opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease;
    border-bottom: 1px solid var(--line);
  }
  .site-nav .links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav .links a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
}

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--ink-soft);
  padding: 64px 0 28px;
}
.site-footer h4 {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--stone);
  margin-bottom: 1em;
}
.site-footer .cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-soft);
}
.site-footer a:hover { color: var(--green); text-decoration: underline; }
.site-footer p { color: var(--stone); }
.site-footer .bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 0.78rem; color: var(--stone-dark);
  flex-wrap: wrap; gap: 12px;
}
@media (max-width: 780px) {
  .site-footer .cols { grid-template-columns: 1fr; gap: 2rem; }
}

/* Hero (index) */
.hero {
  background: var(--black);
  color: var(--ink);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  min-height: calc(100vh - 76px);
  padding-block: 48px;
}
.hero .copy .stripe { margin-bottom: 1.6rem; }
.hero h1 { color: var(--ink); }
.hero .lede { color: var(--stone-dark); max-width: 34ch; font-size: 1.05rem; }
.hero .cta-row { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.hero .portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero .portrait img { width: 100%; height: 100%; object-fit: cover; }
.hero .portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,19,15,0.65) 100%);
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; min-height: auto; padding-top: 56px; }
  .hero .portrait { order: -1; max-width: 420px; margin: 0 auto; }
}

/* Secções genéricas */
section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 3.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }

.section-dark { background: var(--black); color: var(--ink); }
.section-dark p { color: var(--stone-dark); }
.section-dark .eyebrow { color: var(--stone); }
.section-dark h2 { color: var(--ink); }

.section-alt { background: var(--paper-soft); }

/* Sobre */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}
.about-grid .figure img { border-radius: var(--radius); box-shadow: var(--shadow); }
.credential {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.credential img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--radius); }
.credential span { font-size: 0.85rem; color: var(--stone-dark); }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-grid .figure { max-width: 420px; margin: 0 auto; }
}

/* Serviços */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--paper);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
}
.service-card .row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; margin-bottom: 0.6rem;
}
.service-card h3 { margin: 0; }
.service-card .price { font-family: var(--font-display); font-size: 1.6rem; white-space: nowrap; }
.service-card .meta { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone-dark); margin-bottom: 0.8rem; }
.service-card p { font-size: 0.92rem; margin-bottom: 0; flex: 1; }
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Galeria — carrossel de cartões deslizantes (arrastar tipo Tinder) */
.swipe-deck { max-width: 380px; margin: 0 auto; }
.swipe-stack { position: relative; aspect-ratio: 4 / 5; }
.swipe-card {
  position: absolute; inset: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--stone);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), opacity 0.35s ease;
  cursor: grab; touch-action: pan-y;
}
.swipe-card:active { cursor: grabbing; }
.swipe-card.dragging { transition: none; }
.swipe-card img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; user-select: none; }
.swipe-card.pos-0 { z-index: 3; transform: translate(0, 0) scale(1) rotate(0deg); opacity: 1; }
.swipe-card.pos-1 { z-index: 2; transform: translateY(10px) scale(0.95) rotate(0deg); opacity: 0.9; }
.swipe-card.pos-2 { z-index: 1; transform: translateY(20px) scale(0.9) rotate(0deg); opacity: 0.8; }
.swipe-card.hidden { z-index: 0; transform: translateY(20px) scale(0.9) rotate(0deg); opacity: 0; pointer-events: none; }

/* O cartão a voar não deve criar scroll horizontal na página */
section:has(.swipe-deck) { overflow-x: clip; }

.swipe-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 1.6rem; }
.swipe-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--paper); cursor: pointer; font-size: 1.1rem; font-family: var(--font-body); color: var(--ink);
}
.swipe-btn:hover { border-color: var(--stone-dark); }
.swipe-counter { font-size: 0.8rem; letter-spacing: 0.06em; color: var(--stone-dark); min-width: 3.5em; text-align: center; }

.swipe-deck.on-dark .swipe-btn { background: transparent; border-color: var(--line-soft); color: var(--paper); }
.swipe-deck.on-dark .swipe-counter { color: var(--stone); }

/* Localização / contactos */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { padding: 1rem 0; border-bottom: 1px solid var(--line); display: flex; gap: 1rem; }
.contact-list li .label { width: 110px; flex-shrink: 0; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone-dark); }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* CTA final */
.cta-band {
  background: var(--black); color: var(--ink); text-align: center;
}
.cta-band h2 { color: var(--ink); }
.cta-band p { color: var(--stone-dark); }

/* ===== Páginas internas (marcar, conta, admin) ===== */
.page-head {
  background: var(--black); color: var(--ink);
  padding: 64px 0 48px;
}
.page-head h1 { color: var(--ink); font-size: clamp(2.4rem, 6vw, 4rem); }
.page-head p { color: var(--stone-dark); max-width: 46ch; }

.page-body { padding: 56px 0 96px; }
.narrow { max-width: 640px; margin: 0 auto; }

/* Stepper do agendamento */
.stepper {
  display: flex; gap: 0.5rem; margin-bottom: 3rem; list-style: none; padding: 0;
}
.stepper li {
  flex: 1; text-align: center; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone-dark);
  padding-bottom: 0.8rem; border-bottom: 3px solid var(--line);
}
.stepper li.active { color: var(--ink); border-color: var(--green); }
.stepper li.done { color: var(--ink); border-color: var(--stone); }

.booking-step { display: none; }
.booking-step.active { display: block; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.option-list { display: grid; gap: 0.75rem; }
.option-card {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1rem 1.4rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); cursor: pointer; text-align: left; width: 100%;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.option-card:hover { border-color: var(--stone-dark); }
.option-card.selected { border-color: var(--green); background: var(--paper-soft); box-shadow: inset 3px 0 0 var(--green); }
.option-card .name { font-weight: 600; }
.option-card .sub { font-size: 0.82rem; color: var(--stone-dark); display: block; margin-top: 0.2rem; }
.option-card .price { font-family: var(--font-display); font-size: 1.3rem; }

.slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.slot-btn {
  padding: 0.8rem 0.4rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); cursor: pointer; font-family: var(--font-body); font-weight: 600;
  font-size: 0.9rem;
}
.slot-btn:hover { border-color: var(--stone-dark); }
.slot-btn.selected { background: var(--green); color: var(--black); border-color: var(--green); }
.slot-btn[disabled] { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }
@media (max-width: 560px) { .slot-grid { grid-template-columns: repeat(3, 1fr); } }

.date-input-row { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 1.5rem; }
input[type="date"], input[type="text"], input[type="tel"], input[type="email"], input[type="password"], select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85em 1em;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  width: 100%;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--green); outline-offset: 1px; }

.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone-dark); margin-bottom: 0.5rem; }
.field .hint { font-size: 0.8rem; color: var(--stone-dark); margin-top: 0.4rem; }

.summary-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem;
  background: var(--paper-soft); margin-bottom: 1.5rem;
}
.summary-card .row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.summary-card .row:last-child { border-bottom: none; }
.summary-card .row .k { color: var(--stone-dark); }

.step-actions { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; }

.guest-toggle { display: flex; gap: 0.75rem; margin-bottom: 1.6rem; }
.guest-toggle button {
  flex: 1; padding: 0.9rem; border: 1px solid var(--line); background: var(--paper);
  cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: 0.85rem;
  border-radius: var(--radius);
}
.guest-toggle button.active { background: var(--green); color: var(--black); border-color: var(--green); }

.confirm-panel { text-align: center; padding: 2rem 0; }
.confirm-panel .stripe { margin: 0 auto 1.5rem; }

.alert {
  padding: 0.9rem 1.1rem; border-radius: var(--radius); font-size: 0.88rem; margin-bottom: 1.2rem;
}
.alert-error { background: rgba(255, 138, 138, 0.1); color: var(--red-soft); border: 1px solid var(--red-soft); }
.alert-ok { background: var(--green-soft); color: var(--green); border: 1px solid var(--green); }

/* Calendário (admin) */
.calendar-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem;
}
.calendar-header h3 { margin: 0; text-transform: capitalize; }
.calendar-header button {
  width: 36px; height: 36px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); cursor: pointer; font-size: 1.1rem; font-family: var(--font-body);
}
.calendar-header button:hover { border-color: var(--stone-dark); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar-grid .weekday {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--stone-dark); text-align: center; padding-bottom: 0.6rem;
}
.calendar-day {
  aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper);
  cursor: pointer; font-size: 0.88rem; font-family: var(--font-body); position: relative; color: var(--ink);
}
.calendar-day:hover { border-color: var(--stone-dark); }
.calendar-day.other-month { opacity: 0.25; pointer-events: none; }
.calendar-day.today { font-weight: 700; }
.calendar-day.selected { background: var(--green); color: var(--black); border-color: var(--green); }
.calendar-day .dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green-glow); position: absolute; bottom: 8px;
}
.calendar-day.selected .dot { background: var(--black); }

/* Dias passados vs. dias a vir */
.calendar-day.past { background: var(--paper-soft); border-color: var(--line); color: var(--stone-dark); }
.calendar-day.past .dot { background: var(--stone-dark); }
.calendar-day.upcoming { background: var(--paper); border-color: var(--ink); color: var(--ink); }
.calendar-day.past.selected, .calendar-day.upcoming.selected {
  background: var(--green); color: var(--black); border-color: var(--green);
}
.calendar-day.past.selected .dot, .calendar-day.upcoming.selected .dot { background: var(--black); }

/* Layout marcações: calendário+lista à esquerda, resumo à direita */
.bookings-layout { display: grid; grid-template-columns: 1fr 280px; gap: 3rem; align-items: start; }
.bookings-stats {
  background: var(--paper-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; position: sticky; top: 96px;
}
.bookings-stats h4 {
  font-family: var(--font-body); text-transform: uppercase; font-size: 0.72rem;
  letter-spacing: 0.14em; color: var(--stone-dark); margin: 0 0 1.2rem;
}
.stat-tile { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.stat-tile:last-child { border-bottom: none; }
.stat-tile .stat-value { display: block; font-family: var(--font-display); font-size: 2.1rem; line-height: 1; }
.stat-tile .stat-label { display: block; font-size: 0.78rem; color: var(--stone-dark); margin-top: 0.3rem; }
.stat-tile.confirmed .stat-value { color: var(--green); }
.stat-tile.cancelled .stat-value { color: var(--stone-dark); }
@media (max-width: 900px) {
  .bookings-layout { grid-template-columns: 1fr; }
  .bookings-stats { position: static; }
}

/* Cartões de marcação do dia (mais legíveis que a lista simples) */
.day-booking {
  display: flex; align-items: center; gap: 1.3rem; padding: 1.1rem 1.3rem;
  border: 1px solid var(--line); border-left: 4px solid var(--stone); border-radius: var(--radius);
  margin-bottom: 0.7rem; background: var(--paper);
}
.day-booking.status-confirmed { border-left-color: var(--green); }
.day-booking.status-cancelled { border-left-color: var(--stone-dark); opacity: 0.65; }
.day-booking .time-block { font-family: var(--font-display); font-size: 1.5rem; min-width: 92px; line-height: 1.15; }
.day-booking .time-block small { display: block; font-family: var(--font-body); font-size: 0.76rem; color: var(--stone-dark); font-weight: 400; }
.day-booking .info-block { flex: 1; display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.day-booking .info-block strong { font-size: 1rem; }
.day-booking .info-block .service { font-size: 0.88rem; color: var(--stone-dark); }
.day-booking .info-block .phone { font-size: 0.82rem; color: var(--stone-dark); }
.day-booking .status-block { display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem; flex-shrink: 0; }
@media (max-width: 560px) {
  .day-booking { flex-wrap: wrap; }
  .day-booking .status-block { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; margin-top: 0.6rem; }
}
@media (max-width: 560px) {
  .calendar-day { font-size: 0.78rem; }
}

/* Cabeçalho da lista do dia + botão nova marcação */
.day-list-header {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 2.5rem;
}
.day-list-header h3 { margin: 0; }

/* Formulário de marcação (novo/editar), painel admin */
.booking-form-panel {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-soft);
  padding: 1.6rem; margin: 1.2rem 0 2rem;
}
.booking-form-panel h4 { margin: 0 0 1.2rem; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.1em; color: var(--stone-dark); }

/* Gestão de serviços (admin) */
.service-admin-row {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem;
  margin-bottom: 1rem; background: var(--paper);
}
.service-admin-row .row-2col { display: flex; gap: 1.2rem; }
.service-admin-row .row-2col .field { flex: 1; }
.checkbox-label { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; margin: 0.8rem 0 1.2rem; cursor: pointer; }
.checkbox-label input { width: 18px; height: 18px; }

/* Listas de marcações (conta/admin) */
.booking-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 1rem; align-items: center;
  padding: 1.2rem 0; border-bottom: 1px solid var(--line); font-size: 0.92rem;
}
.booking-row .tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3em 0.7em; border-radius: 20px; display: inline-block; width: fit-content;
}
.tag-confirmed { background: var(--green-soft); color: var(--green); }
.tag-cancelled { background: rgba(238, 240, 234, 0.08); color: var(--stone-dark); }
@media (max-width: 700px) {
  .booking-row { grid-template-columns: 1fr; gap: 0.3rem; }
}

.admin-panel-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td, .hours-table th { padding: 0.7rem 0.5rem; border-bottom: 1px solid var(--line); font-size: 0.9rem; text-align: left; }
.hours-table input[type="time"] { padding: 0.5em; width: auto; }
.hours-table input[type="checkbox"] { width: 18px; height: 18px; }

.blocked-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.blocked-list li { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.blocked-list button { background: none; border: none; color: var(--red-soft); cursor: pointer; font-size: 0.85rem; }

.tabs { display: flex; gap: 2rem; border-bottom: 1px solid var(--line); margin-bottom: 2.5rem; }
.tabs button {
  background: none; border: none; padding: 0.8rem 0; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--stone-dark); border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tabs button.active { color: var(--ink); border-color: var(--green); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.25s ease; }

.empty-state { text-align: center; padding: 3rem 1rem; color: var(--stone-dark); }

.badge-admin-only { font-size: 0.75rem; color: var(--stone-dark); text-align: center; margin-top: 1rem; }
