/* ===== VARIABLES ===== */
:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --bg-el: #1e1e1e;
  --bg-el2: #262626;
  --gold: #c9a84c;
  --gold-l: #e8c97a;
  --gold-d: #9a7a30;
  --text: #f0f0f0;
  --text-s: #aaa;
  --text-m: #666;
  --border: #2a2a2a;
  --border-l: #3a3a3a;
  --green: #4ade80;
  --red: #f87171;
  --orange: #fb923c;
  --blue: #60a5fa;
  --r: 12px;
  --r-sm: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.7);
  --tr: 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', 'Inter', system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-title {
  text-align: center;
  margin-bottom: 16px;
}
.section-sub {
  text-align: center;
  color: var(--text-s);
  font-size: 1.05rem;
  margin-bottom: 56px;
}
.gold { color: var(--gold); }
.hidden { display: none !important; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--tr);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-l);
  border-color: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-l);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-s);
  border-color: var(--border);
  padding: 10px 20px;
  font-size: 0.875rem;
}
.btn-ghost:hover { border-color: var(--border-l); color: var(--text); }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn-danger { background: var(--red); color: #fff; border-color: var(--red); }
.btn-danger:hover { background: #ef4444; }
.btn-success { background: var(--green); color: #000; border-color: var(--green); }
.btn-success:hover { background: #22c55e; }
.btn-warning { background: var(--orange); color: #000; border-color: var(--orange); }
.btn-full { width: 100%; justify-content: center; }

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-pending { background: rgba(251,146,60,0.15); color: var(--orange); border: 1px solid rgba(251,146,60,0.3); }
.badge-accepted { background: rgba(74,222,128,0.15); color: var(--green); border: 1px solid rgba(74,222,128,0.3); }
.badge-rejected { background: rgba(248,113,113,0.15); color: var(--red); border: 1px solid rgba(248,113,113,0.3); }
.badge-alternative { background: rgba(96,165,250,0.15); color: var(--blue); border: 1px solid rgba(96,165,250,0.3); }
.badge-gold { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--tr);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.nav-logo span.dot { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--text-s);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--tr);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { margin-left: 16px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--tr);
  display: block;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: 80px 0;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.hero-title {
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  color: var(--text-s);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-s);
  margin-top: 2px;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-badge-wrap {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-circle {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  position: absolute;
  animation: spin 20s linear infinite;
}
.hero-circle::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: -4px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-center {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--bg-el2), var(--bg-card));
  border: 1px solid var(--border-l);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
}
.hero-center-icon { font-size: 5rem; }
.hero-center-text { font-size: 0.85rem; color: var(--text-s); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ===== SERVICES ===== */
.services { background: var(--bg-card); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-d), var(--gold));
  opacity: 0;
  transition: var(--tr);
}
.service-card:hover {
  border-color: var(--border-l);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border-color: rgba(201,168,76,0.4);
  background: linear-gradient(135deg, var(--bg-el), var(--bg));
}
.service-card.featured::before { opacity: 1; }
.service-icon { font-size: 2.5rem; margin-bottom: 16px; }
.service-card h3 { margin-bottom: 8px; }
.service-badge-row { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.service-desc { color: var(--text-s); font-size: 0.9rem; margin-bottom: 20px; flex-grow: 1; }
.service-features {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-s);
}
.service-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.service-price { font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.service-price-from { font-size: 0.75rem; color: var(--text-m); display: block; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.about-text { color: var(--text-s); margin-bottom: 16px; }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-highlight {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 16px;
}
.about-highlight-icon { font-size: 1.5rem; margin-bottom: 8px; }
.about-highlight h4 { font-size: 0.95rem; margin-bottom: 4px; }
.about-highlight p { font-size: 0.8rem; color: var(--text-s); }
.about-visual {
  position: relative;
}
.about-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px;
  text-align: center;
}
.about-big-num { font-size: 4rem; font-weight: 900; color: var(--gold); line-height: 1; }
.about-big-label { color: var(--text-s); margin-top: 8px; }
.about-divider { width: 40px; height: 2px; background: var(--border); margin: 24px auto; }

/* ===== PROCESS ===== */
.process { background: var(--bg-card); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 17%;
  right: 17%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-d), transparent);
}
.process-step { text-align: center; }
.process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { color: var(--text-s); font-size: 0.9rem; }

/* ===== BOOKING SECTION ===== */
.booking-cta {
  text-align: center;
  padding: 80px 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
}
.booking-cta h2 { margin-bottom: 16px; }
.booking-cta p { color: var(--text-s); margin-bottom: 40px; font-size: 1.05rem; }
.booking-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.status-check-small {
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--text-m);
}
.status-check-small a { color: var(--gold); text-decoration: underline; cursor: pointer; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--tr);
}
.faq-question:hover { background: var(--bg-el); }
.faq-question.open { color: var(--gold); }
.faq-chevron { transition: var(--tr); font-size: 1.2rem; flex-shrink: 0; }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--bg-card);
}
.faq-answer.open { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-s);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact { background: var(--bg-card); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-label { font-size: 0.8rem; color: var(--text-m); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-value { font-weight: 600; }
.contact-value a { transition: var(--tr); }
.contact-value a:hover { color: var(--gold); }
.contact-hours {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
}
.contact-hours h3 { margin-bottom: 20px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-s); }
.hours-time { font-weight: 600; }
.hours-time.closed { color: var(--red); }

/* ===== FOOTER ===== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.footer-copy { color: var(--text-m); font-size: 0.85rem; }
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a { color: var(--text-m); font-size: 0.85rem; transition: var(--tr); }
.footer-links a:hover { color: var(--gold); }
.footer-admin-link {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.footer-admin-link a { color: var(--text-m); font-size: 0.8rem; transition: var(--tr); }
.footer-admin-link a:hover { color: var(--text-s); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: var(--tr);
  backdrop-filter: blur(4px);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-l);
  border-radius: 16px;
  width: 100%;
  max-width: 740px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.96) translateY(8px);
  transition: var(--tr);
}
.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px 0;
  margin-bottom: 24px;
}
.modal-title { font-size: 1.3rem; font-weight: 700; }
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-el);
  color: var(--text-s);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
  flex-shrink: 0;
}
.modal-close:hover { background: var(--bg-el2); color: var(--text); }
.modal-body { padding: 0 32px 32px; }

/* Progress indicator */
.step-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-m);
  flex-shrink: 0;
  transition: var(--tr);
}
.step-dot.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.1); }
.step-dot.done { border-color: var(--green); background: rgba(74,222,128,0.1); color: var(--green); }
.step-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  transition: var(--tr);
}
.step-line.done { background: var(--gold-d); }
.step-label {
  display: none;
}

/* Booking steps */
.booking-step { display: none; }
.booking-step.active { display: block; }
.step-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.step-sub { color: var(--text-s); font-size: 0.875rem; margin-bottom: 24px; }

/* Service selection */
.service-options { display: flex; flex-direction: column; gap: 12px; }
.service-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-el);
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: var(--tr);
  user-select: none;
}
.service-option:hover { border-color: var(--border-l); }
.service-option.selected { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.service-option.disabled { opacity: 0.4; cursor: not-allowed; }
.service-option input[type="checkbox"] { display: none; }
.service-option-check {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 2px solid var(--border-l);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--tr);
}
.service-option.selected .service-option-check {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  font-size: 0.8rem;
  font-weight: 800;
}
.service-option-icon { font-size: 1.5rem; flex-shrink: 0; }
.service-option-info { flex: 1; }
.service-option-name { font-weight: 600; font-size: 0.95rem; }
.service-option-desc { color: var(--text-s); font-size: 0.8rem; }
.service-option-badge { margin-top: 4px; }
.service-option-price { font-size: 1.1rem; font-weight: 800; color: var(--gold); flex-shrink: 0; }
.booking-total {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--r-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.booking-total-label { font-size: 0.875rem; color: var(--text-s); }
.booking-total-price { font-size: 1.4rem; font-weight: 800; color: var(--gold); }
.booking-hint { color: var(--text-m); font-size: 0.8rem; margin-top: 8px; text-align: center; }

/* Calendar */
.calendar-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.calendar-section { }
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal-header h4 { font-size: 1rem; }
.cal-nav {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: var(--bg-el);
  color: var(--text);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
}
.cal-nav:hover { background: var(--bg-el2); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-weekday {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-m);
  padding: 6px 0;
  text-transform: uppercase;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--tr);
  border: 1px solid transparent;
}
.cal-day.empty { cursor: default; }
.cal-day.disabled { color: var(--text-m); cursor: not-allowed; }
.cal-day.today { border-color: var(--border-l); color: var(--gold); }
.cal-day.available { color: var(--text); }
.cal-day.available:hover { background: var(--bg-el); border-color: var(--border-l); }
.cal-day.full { color: var(--text-m); cursor: not-allowed; text-decoration: line-through; }
.cal-day.selected { background: var(--gold); color: #000; font-weight: 700; border-color: var(--gold); }

/* Time slots */
.time-slots-section { display: flex; flex-direction: column; justify-content: flex-start; }
.time-slots-section h4 { font-size: 0.95rem; margin-bottom: 16px; color: var(--text-s); }
.time-slots-section .no-date { color: var(--text-m); font-size: 0.875rem; text-align: center; padding: 40px 0; }
.time-slots { display: flex; flex-direction: column; gap: 8px; }
.time-slot {
  padding: 12px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--tr);
  text-align: left;
  background: var(--bg-el);
  color: var(--text);
}
.time-slot.available:hover { border-color: var(--gold); color: var(--gold); cursor: pointer; }
.time-slot.selected { background: var(--gold); color: #000; border-color: var(--gold); }
.time-slot.booked { color: var(--text-m); cursor: not-allowed; text-decoration: line-through; background: var(--bg-card); }

/* Contact form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-s); margin-bottom: 8px; }
.form-label .required { color: var(--red); margin-left: 2px; }
.form-input {
  width: 100%;
  background: var(--bg-el);
  border: 1px solid var(--border-l);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--tr);
  outline: none;
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-input::placeholder { color: var(--text-m); }
textarea.form-input { resize: vertical; min-height: 80px; }

/* Summary */
.summary-box {
  background: var(--bg-el);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 16px;
}
.summary-section { padding: 20px 24px; border-bottom: 1px solid var(--border); }
.summary-section:last-child { border-bottom: none; }
.summary-section-title { font-size: 0.75rem; font-weight: 700; color: var(--text-m); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.875rem; padding: 4px 0; }
.summary-row .label { color: var(--text-s); }
.summary-total { padding: 16px 24px; background: rgba(201,168,76,0.06); display: flex; justify-content: space-between; align-items: center; }
.summary-total-label { font-weight: 700; }
.summary-total-price { font-size: 1.5rem; font-weight: 800; color: var(--gold); }

/* Success screen */
.booking-success {
  text-align: center;
  padding: 20px 0;
}
.success-icon { font-size: 4rem; margin-bottom: 16px; }
.success-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.success-sub { color: var(--text-s); margin-bottom: 24px; }
.booking-id-box {
  background: var(--bg-el);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 16px 24px;
  margin-bottom: 24px;
  display: inline-block;
}
.booking-id-label { font-size: 0.75rem; color: var(--text-m); margin-bottom: 4px; }
.booking-id-code { font-size: 1.3rem; font-weight: 800; color: var(--gold); letter-spacing: 2px; }

/* Modal nav buttons */
.modal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* Status check modal */
.status-result { margin-top: 20px; }
.status-card {
  background: var(--bg-el);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
}
.status-card h3 { margin-bottom: 4px; }
.status-card-meta { color: var(--text-s); font-size: 0.875rem; margin-bottom: 16px; }
.status-details { font-size: 0.875rem; color: var(--text-s); margin-top: 12px; }
.status-alt {
  margin-top: 16px;
  padding: 16px;
  background: rgba(96,165,250,0.08);
  border: 1px solid rgba(96,165,250,0.2);
  border-radius: var(--r-sm);
}
.status-alt h4 { color: var(--blue); font-size: 0.875rem; margin-bottom: 8px; }
.status-alt p { font-size: 0.85rem; color: var(--text-s); }

/* ===== ADMIN ===== */
.admin-page {
  min-height: 100vh;
  background: var(--bg);
}
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.admin-login-card {
  background: var(--bg-card);
  border: 1px solid var(--border-l);
  border-radius: 16px;
  padding: 48px 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
}
.admin-login-logo { text-align: center; margin-bottom: 32px; }
.admin-login-logo div:first-child { font-size: 2rem; margin-bottom: 8px; }
.admin-login-logo h1 { font-size: 1.3rem; }
.admin-login-logo p { color: var(--text-s); font-size: 0.85rem; }
.admin-login-error {
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.3);
  color: var(--red);
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  margin-bottom: 16px;
  display: none;
}

.admin-dashboard { display: none; }
.admin-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.admin-header-logo { font-size: 1rem; font-weight: 800; }
.admin-header-right { display: flex; align-items: center; gap: 16px; }
.admin-main { padding: 32px; max-width: 1200px; margin: 0 auto; }
.admin-page-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }
.admin-page-sub { color: var(--text-s); font-size: 0.875rem; margin-bottom: 32px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 24px;
}
.stat-label { font-size: 0.8rem; color: var(--text-s); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.stat-num { font-size: 2rem; font-weight: 800; }
.stat-num.gold { color: var(--gold); }
.stat-num.green { color: var(--green); }
.stat-num.orange { color: var(--orange); }
.stat-num.red { color: var(--red); }

.admin-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 4px;
  margin-bottom: 24px;
  width: fit-content;
}
.admin-tab {
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-s);
  transition: var(--tr);
}
.admin-tab:hover { color: var(--text); }
.admin-tab.active { background: var(--bg-el); color: var(--text); }

.bookings-list { display: flex; flex-direction: column; gap: 16px; }
.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--tr);
}
.booking-card:hover { border-color: var(--border-l); }
.booking-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-el);
  cursor: pointer;
  gap: 16px;
}
.booking-card-title { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.booking-card-name { font-weight: 700; }
.booking-card-id { color: var(--text-m); font-size: 0.8rem; font-family: monospace; }
.booking-card-meta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.booking-card-date { font-size: 0.875rem; color: var(--text-s); }
.booking-card-chevron { color: var(--text-m); transition: var(--tr); }
.booking-card.expanded .booking-card-chevron { transform: rotate(180deg); }
.booking-card-body {
  display: none;
  padding: 20px;
  border-top: 1px solid var(--border);
}
.booking-card.expanded .booking-card-body { display: block; }
.booking-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}
.booking-detail-section h4 { font-size: 0.75rem; font-weight: 700; color: var(--text-m); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.booking-detail-row { display: flex; gap: 12px; margin-bottom: 8px; font-size: 0.875rem; }
.booking-detail-key { color: var(--text-s); min-width: 80px; flex-shrink: 0; }
.booking-services-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.booking-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.admin-note {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(96,165,250,0.05);
  border: 1px solid rgba(96,165,250,0.15);
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  color: var(--blue);
}
.admin-note strong { display: block; margin-bottom: 4px; font-size: 0.75rem; text-transform: uppercase; }
.reject-form, .alt-form {
  margin-top: 16px;
  padding: 16px;
  background: var(--bg-el);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
}
.reject-form h4, .alt-form h4 { font-size: 0.875rem; margin-bottom: 12px; }
.reject-form .form-group { margin-bottom: 12px; }
.alt-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }

.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-m);
}
.empty-state-icon { font-size: 3rem; margin-bottom: 12px; }
.empty-state h3 { color: var(--text-s); margin-bottom: 8px; }

/* Admin calendar */
.admin-cal-grid {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.admin-cal-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.admin-cal-header-row h3 { font-size: 1.1rem; }
.admin-cal-body { padding: 24px; }
.admin-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.admin-cal-weekday {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-m);
  padding: 8px;
  text-transform: uppercase;
}
.admin-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.admin-cal-day {
  min-height: 80px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px;
  font-size: 0.8rem;
  cursor: default;
  transition: var(--tr);
}
.admin-cal-day .day-num { font-weight: 700; margin-bottom: 4px; color: var(--text-s); }
.admin-cal-day.today { border-color: var(--gold-d); }
.admin-cal-day.today .day-num { color: var(--gold); }
.admin-cal-day.closed { background: var(--bg-el); }
.admin-cal-day.closed .day-num { color: var(--text-m); }
.admin-cal-event {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border-radius: 3px;
  padding: 2px 4px;
  font-size: 0.7rem;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}
.admin-cal-event.accepted { background: rgba(74,222,128,0.15); color: var(--green); }
.admin-cal-event.rejected { background: rgba(248,113,113,0.15); color: var(--red); }

/* Admin settings - block dates */
.block-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  margin-bottom: 20px;
}
.block-section h3 { margin-bottom: 16px; }
.block-form { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; }
.block-form .form-group { margin-bottom: 0; }
.blocked-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.blocked-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-el);
  border-radius: var(--r-sm);
  font-size: 0.875rem;
}
.blocked-item .info { color: var(--text-s); }
.pw-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
}
.pw-section h3 { margin-bottom: 16px; }
.pw-form { display: flex; flex-direction: column; gap: 16px; max-width: 400px; }

/* Toast notifications */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  background: var(--bg-el);
  border: 1px solid var(--border-l);
  border-radius: var(--r-sm);
  padding: 14px 20px;
  font-size: 0.875rem;
  min-width: 280px;
  max-width: 400px;
  box-shadow: var(--shadow);
  animation: slideIn 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.success { border-left: 3px solid var(--green); }
.toast.error { border-left: 3px solid var(--red); }
.toast.info { border-left: 3px solid var(--blue); }
@keyframes slideIn { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(120%); opacity: 0; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-sub { margin: 0 auto 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .calendar-wrap { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .about-highlights { grid-template-columns: 1fr; }
  .booking-details-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .modal { border-radius: 0; max-height: 100vh; margin: 0; }
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-header { padding: 20px 20px 0; }
  .modal-body { padding: 0 20px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .admin-main { padding: 16px; }
  .about-box { padding: 24px; }
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 16px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--text-s);
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--tr);
}
.nav-mobile a:hover { color: var(--gold); }

/* ===== ADDED: cancelled badge, customer actions, info modal ===== */
.badge-cancelled { background: rgba(140,140,140,0.15); color: #9a9a9a; border: 1px solid rgba(140,140,140,0.3); }

.status-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.info-contact {
  margin: 16px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info-contact div {
  background: var(--bg-el);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-weight: 600;
  color: var(--text);
}
.info-contact a { color: var(--gold); }

/* ===== LEGAL PAGES (Impressum / Datenschutz / AGB) ===== */
.legal-main {
  max-width: 880px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-s);
  font-size: 0.9rem;
  margin-bottom: 28px;
  transition: var(--tr);
}
.legal-back:hover { color: var(--gold); }
.legal-main h1 { margin-bottom: 8px; }
.legal-updated { color: var(--text-m); font-size: 0.85rem; margin-bottom: 28px; }
.legal-toc {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-toc a {
  font-size: 0.85rem;
  color: var(--text-s);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: var(--tr);
}
.legal-toc a:hover { border-color: var(--gold); color: var(--gold); }
.legal-toc a.active { background: rgba(201,168,76,0.1); border-color: var(--gold); color: var(--gold); }
.legal-disclaimer {
  background: rgba(251,146,60,0.06);
  border: 1px solid rgba(251,146,60,0.25);
  border-radius: var(--r);
  padding: 16px 20px;
  margin-bottom: 36px;
  font-size: 0.88rem;
  color: var(--text-s);
  line-height: 1.7;
}
.legal-disclaimer strong { color: var(--orange); }
.legal-section { margin-bottom: 36px; scroll-margin-top: 100px; }
.legal-section h2 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--gold);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.legal-section h3 { font-size: 1.05rem; margin: 22px 0 8px; color: var(--text); }
.legal-section p,
.legal-section li { color: var(--text-s); margin-bottom: 10px; font-size: 0.95rem; line-height: 1.75; }
.legal-section ul { padding-left: 22px; list-style: disc; margin-bottom: 14px; }
.legal-section ul li { margin-bottom: 6px; }
.legal-section a { color: var(--gold); text-decoration: underline; }
.legal-section strong { color: var(--text); }
.legal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.legal-box p { margin-bottom: 4px; }
.legal-placeholder {
  color: var(--orange);
  background: rgba(251,146,60,0.08);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

/* ===== COOKIE BANNER & CONSENT ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  background: var(--bg-card);
  border-top: 1px solid var(--border-l);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.45);
  transform: translateY(110%);
  transition: transform 0.4s ease;
  padding: 20px 0;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-banner-text { flex: 1; min-width: 280px; }
.cookie-banner-text h4 { font-size: 1rem; margin-bottom: 6px; }
.cookie-banner-text p { color: var(--text-s); font-size: 0.85rem; line-height: 1.6; margin: 0; }
.cookie-banner-text a { color: var(--gold); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.cookie-cat {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 16px;
  margin-bottom: 12px;
  background: var(--bg-el);
}
.cookie-cat-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.cookie-cat-info h4 { font-size: 0.95rem; margin-bottom: 4px; }
.cookie-cat-info p { color: var(--text-s); font-size: 0.82rem; margin: 0; line-height: 1.5; }
.cookie-modal-actions { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; justify-content: flex-end; }

/* Toggle switch */
.switch { position: relative; display: inline-block; width: 48px; height: 26px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; inset: 0; background: var(--bg-el2); border: 1px solid var(--border-l); border-radius: 26px; transition: var(--tr); }
.slider::before { content: ''; position: absolute; height: 18px; width: 18px; left: 3px; top: 3px; background: var(--text-s); border-radius: 50%; transition: var(--tr); }
.switch input:checked + .slider { background: var(--gold); border-color: var(--gold); }
.switch input:checked + .slider::before { transform: translateX(22px); background: #000; }
.switch.disabled { opacity: 0.6; }
.switch.disabled .slider { cursor: not-allowed; }

/* ===== ADMIN STATISTICS ===== */
.stats-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  margin-bottom: 20px;
}
.stats-section h3 { margin-bottom: 20px; font-size: 1.05rem; }
.stats-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.chart-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.chart-label { width: 150px; flex-shrink: 0; font-size: 0.85rem; color: var(--text-s); text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.chart-track { flex: 1; background: var(--bg-el); border-radius: 4px; height: 26px; position: relative; overflow: hidden; }
.chart-fill { height: 100%; background: linear-gradient(90deg, var(--gold-d), var(--gold)); border-radius: 4px; min-width: 2px; transition: width 0.6s ease; }
.chart-value { width: 120px; flex-shrink: 0; font-size: 0.85rem; font-weight: 700; color: var(--gold); }
.chart-value.muted { color: var(--text-s); }
.stats-empty { color: var(--text-m); font-size: 0.9rem; text-align: center; padding: 20px; }

/* ===== SURCHARGE (Kostenaufschlag) ===== */
.surcharge-item {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
  padding: 8px 12px;
  background: rgba(251,146,60,0.06);
  border: 1px solid rgba(251,146,60,0.2);
  border-radius: var(--r-sm);
  margin-top: 8px;
  font-size: 0.85rem;
}
.surcharge-item .amount { color: var(--orange); font-weight: 700; white-space: nowrap; }
.surcharge-item .cmt { color: var(--text-s); flex: 1; }
.surcharge-item .del { color: var(--text-m); cursor: pointer; font-size: 1rem; line-height: 1; }
.surcharge-item .del:hover { color: var(--red); }
.booking-total-adjusted { color: var(--gold); font-weight: 800; }
.booking-total-base { color: var(--text-m); text-decoration: line-through; font-size: 0.8rem; margin-right: 6px; }

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 80px 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201,168,76,0.06), transparent 70%);
}
.newsletter-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 44px 32px;
}
.newsletter-icon { font-size: 2.5rem; margin-bottom: 12px; }
.newsletter-box h2 { margin-bottom: 12px; }
.newsletter-box > p { color: var(--text-s); margin-bottom: 28px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto 16px;
}
.newsletter-form .form-input { flex: 1; }
.newsletter-hint { font-size: 0.8rem; color: var(--text-m); max-width: 480px; margin: 0 auto; line-height: 1.6; }
.newsletter-hint a { color: var(--gold); text-decoration: underline; }
@media (max-width: 560px) {
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 800px) {
  .stats-two-col { grid-template-columns: 1fr; }
  .chart-label { width: 110px; }
  .chart-value { width: 90px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; justify-content: center; }
}
