/* =====================================================
   ROYAL LUXE GROOMING — Main Stylesheet
   Theme: Luxury Dark · Purple & Gold
   ===================================================== */

:root {
  --black:       #08080a;
  --black-soft:  #0f0f13;
  --black-card:  #141418;
  --black-border:#1e1e26;
  --purple:      #9c27ff;
  --purple-light:#b44fff;
  --purple-glow: rgba(156, 39, 255, 0.35);
  --gold:        #e8c84a;
  --gold-light:  #f4df8a;
  --gold-glow:   rgba(232, 200, 74, 0.3);
  --white:       #f0eef8;
  --white-muted: #a09ab8;
  --white-faint: rgba(240,238,248,.06);
  --font-display:'Cinzel Decorative', serif;
  --font-serif:  'Cormorant Garamond', serif;
  --font-sans:   'Montserrat', sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
  --shadow-purple: 0 0 40px rgba(156,39,255,.4), 0 0 80px rgba(156,39,255,.15);
  --shadow-gold:   0 0 30px rgba(232,200,74,.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}

/* ——— TYPOGRAPHY ——— */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
em { font-family: var(--font-serif); font-style: italic; color: var(--gold); }

/* ——— NAVIGATION ——— */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(8,8,10,.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--black-border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.nav-logo img { width: 44px; height: 44px; object-fit: contain; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .1em;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--white-muted);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: linear-gradient(135deg, var(--purple), var(--purple-light)) !important;
  color: var(--white) !important;
  padding: .55rem 1.4rem !important;
  border-radius: 100px !important;
  font-weight: 500 !important;
  box-shadow: 0 0 20px var(--purple-glow) !important;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ——— HERO ——— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 2rem 4rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 6s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { opacity: .6; transform: translateX(-50%) scale(1); }
  to   { opacity: 1;  transform: translateX(-50%) scale(1.2); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: .4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  animation: fadeUp .8s ease both;
}
.hero-title {
  display: flex;
  flex-direction: column;
  gap: .1em;
  animation: fadeUp .8s .2s ease both;
}
.hero-title-line {
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--white);
  display: block;
  line-height: 1;
}
.hero-title-line.accent {
  color: var(--purple-light);
  text-shadow: var(--shadow-purple);
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white-muted);
  margin: 1.5rem auto 2.5rem;
  animation: fadeUp .8s .35s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .8s .5s ease both;
}
.hero-info {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  animation: fadeUp .8s .65s ease both;
}
.hero-info-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--white-muted);
  letter-spacing: .05em;
}
.hero-info-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white-muted);
  animation: fadeUp 1s 1s ease both;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white-muted), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), #7b1fa2);
  color: #fff;
  box-shadow: 0 4px 24px var(--purple-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--purple-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--black-border);
}
.btn-ghost:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #c8a82a);
  color: var(--black);
  font-weight: 600;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-lg { padding: 1.1rem 2.8rem; font-size: .9rem; }

/* ——— SECTIONS ——— */
.section {
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}
.section-dark {
  background: var(--black-soft);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-eyebrow {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
}

/* ——— SERVICES ——— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  animation: fadeUp .6s var(--delay, 0s) ease both;
}
.service-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px var(--purple-glow);
}
.service-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--black-card), #1a1510);
}
.service-card.featured:hover { box-shadow: var(--shadow-gold); }
.service-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 100px;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--white-faint);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--purple-light);
}
.service-icon svg { width: 28px; height: 28px; fill: currentColor; }
.service-card h3 {
  font-size: 1rem;
  margin-bottom: .75rem;
  color: var(--white);
}
.service-card p {
  font-size: .85rem;
  color: var(--white-muted);
  line-height: 1.7;
}
.service-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: .75rem;
  letter-spacing: .1em;
  color: var(--purple-light);
  text-decoration: none;
  transition: var(--transition);
}
.service-link:hover { color: var(--gold); }
.service-price {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--gold);
}

/* ——— PRICING ——— */
.pricing-tabs {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.ptab {
  background: transparent;
  border: 1px solid var(--black-border);
  color: var(--white-muted);
  font-family: var(--font-sans);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .6rem 1.5rem;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.ptab:hover, .ptab.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }
.pricing-table {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--black-border);
  transition: background var(--transition);
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--white-faint); }
.pr-size { font-size: .85rem; color: var(--white); }
.pr-dur  { font-size: .75rem; color: var(--white-muted); }
.pr-price { font-family: var(--font-display); color: var(--gold); font-size: .9rem; min-width: 50px; text-align: right; }
.pr-book {
  text-decoration: none;
  background: var(--purple);
  color: #fff;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
  transition: var(--transition);
}
.pr-book:hover { background: var(--purple-light); }
.pricing-note { font-size: .8rem; color: var(--white-muted); text-align: center; }

/* ——— ABOUT ——— */
.about-split {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: center;
}
.about-text .section-title { text-align: left; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.about-text p { color: var(--white-muted); margin-bottom: 1rem; font-size: .95rem; }
.about-hours { margin: 2rem 0; }
.about-hours h4 { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: .4rem 2rem; font-size: .85rem; }
.hours-grid span:nth-child(odd) { color: var(--white-muted); }
.hours-grid span:nth-child(even) { color: var(--white); }
.about-contact { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.contact-pill {
  text-decoration: none;
  background: var(--white-faint);
  border: 1px solid var(--black-border);
  color: var(--white-muted);
  font-size: .8rem;
  padding: .5rem 1rem;
  border-radius: 100px;
  transition: var(--transition);
}
.contact-pill:hover { border-color: var(--purple); color: var(--white); }
.about-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.about-logo-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-wrap img { width: 200px; height: 200px; object-fit: contain; border-radius: 50%; position: relative; z-index: 2; }
.about-logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--purple);
  box-shadow: 0 0 40px var(--purple-glow), inset 0 0 40px var(--purple-glow);
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,100% { box-shadow: 0 0 30px var(--purple-glow), inset 0 0 30px var(--purple-glow); }
  50%      { box-shadow: 0 0 60px var(--purple-glow), inset 0 0 60px var(--purple-glow); }
}
.about-stat {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--black-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  text-align: center;
}
.stat-num { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--white-muted); margin-top: .25rem; }

/* ——— CTA ——— */
.section-cta {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, var(--purple-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.section-cta h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.section-cta p { color: var(--white-muted); margin-bottom: 2.5rem; font-size: 1.1rem; font-family: var(--font-serif); }

/* ——— FOOTER ——— */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  padding: 3rem 2rem;
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-display);
  font-size: .85rem;
  color: var(--gold);
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  text-decoration: none;
  color: var(--white-muted);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--purple-light); }
.footer-copy { font-size: .75rem; color: var(--white-muted); }

/* ——— BOOKING PAGE ——— */
.booking-hero {
  padding: 140px 2rem 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.booking-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: .75rem; }
.booking-hero p { color: var(--white-muted); font-family: var(--font-serif); font-size: 1.1rem; }

.booking-layout {
  padding: 2rem;
  position: relative;
  z-index: 1;
}
.booking-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}
.booking-form-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.booking-summary {
  background: var(--black-card);
  border: 1px solid var(--purple);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 100px;
  box-shadow: 0 0 30px var(--purple-glow);
}
.form-step { display: none; }
.form-step.active { display: block; animation: fadeUp .4s ease; }
.step-indicator {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
}
.step-dot {
  flex: 1;
  height: 3px;
  background: var(--black-border);
  border-radius: 2px;
  margin: 0 2px;
  transition: background .4s;
  position: relative;
}
.step-dot.done, .step-dot.active { background: var(--purple); }
.step-dot.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--purple);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .9rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-glow);
}
.form-group select option { background: var(--black-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkbox-group { display: flex; flex-direction: column; gap: .75rem; }
.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  cursor: pointer;
  transition: border-color var(--transition);
}
.checkbox-item:hover { border-color: var(--purple); }
.checkbox-item input[type=checkbox] { margin-top: 2px; accent-color: var(--purple); }
.checkbox-label { flex: 1; }
.checkbox-label span { display: block; font-size: .85rem; color: var(--white); }
.checkbox-label small { font-size: .75rem; color: var(--white-muted); }
.checkbox-price { font-family: var(--font-display); color: var(--gold); font-size: .8rem; }

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.time-slot {
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: .75rem;
  text-align: center;
  cursor: pointer;
  font-size: .8rem;
  color: var(--white-muted);
  transition: var(--transition);
}
.time-slot:hover:not(.unavailable) { border-color: var(--purple); color: var(--white); }
.time-slot.selected { border-color: var(--purple); background: var(--purple); color: #fff; }
.time-slot.unavailable { opacity: .35; cursor: not-allowed; }

.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--black-border);
}
.summary-title {
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--black-border);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row .label { color: var(--white-muted); }
.summary-row .value { color: var(--white); }
.summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--purple);
}
.summary-total .label { font-family: var(--font-display); color: var(--white); font-size: .9rem; }
.summary-total .value { font-family: var(--font-display); color: var(--gold); font-size: 1.2rem; }

/* Stripe card element */
#card-element {
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: .9rem 1rem;
  transition: border-color var(--transition);
}
#card-element.focused { border-color: var(--purple); box-shadow: 0 0 0 3px var(--purple-glow); }
#card-errors { color: #ff6b6b; font-size: .8rem; margin-top: .5rem; }

/* ——— ADMIN PANEL ——— */
.admin-body {
  background: #0a0a0e;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--white);
  display: flex;
}
.admin-sidebar {
  width: 260px;
  background: var(--black-card);
  border-right: 1px solid var(--black-border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
}
.admin-sidebar-brand {
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.admin-sidebar-brand img { width: 36px; height: 36px; object-fit: contain; }
.admin-sidebar-brand span {
  font-family: var(--font-display);
  font-size: .75rem;
  color: var(--gold);
  line-height: 1.3;
}
.admin-nav { padding: 1rem 0; flex: 1; overflow-y: auto; }
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 1.5rem;
  color: var(--white-muted);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .05em;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav-item:hover, .admin-nav-item.active {
  color: var(--white);
  background: var(--white-faint);
  border-left-color: var(--purple);
}
.admin-nav-item svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.admin-main {
  flex: 1;
  margin-left: 260px;
  display: flex;
  flex-direction: column;
}
.admin-topbar {
  height: 65px;
  background: var(--black-card);
  border-bottom: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
}
.admin-topbar h1 { font-size: 1.1rem; color: var(--white); }
.admin-user {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .82rem;
  color: var(--white-muted);
}
.admin-content { padding: 2rem; flex: 1; }
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.stat-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.stat-card-label {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white-muted);
}
.stat-card-val {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.stat-card-sub { font-size: .78rem; color: var(--white-muted); }
.stat-card-icon {
  width: 36px; height: 36px;
  background: var(--white-faint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  margin-bottom: .25rem;
}
.stat-card-icon svg { width: 18px; height: 18px; fill: currentColor; }
.stat-card.purple { border-color: var(--purple); }
.stat-card.gold { border-color: var(--gold); }

.admin-table-wrap {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.admin-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--black-border);
}
.admin-table-header h3 { font-size: .95rem; color: var(--white); }
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th {
  text-align: left;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white-muted);
  padding: .85rem 1.5rem;
  border-bottom: 1px solid var(--black-border);
  font-weight: 500;
}
.admin-table td {
  padding: .9rem 1.5rem;
  font-size: .85rem;
  border-bottom: 1px solid var(--black-border);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--white-faint); }

.badge {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 100px;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
.badge-pending  { background: rgba(255,183,77,.15); color: #ffb74d; }
.badge-confirmed{ background: rgba(156,39,255,.2);  color: var(--purple-light); }
.badge-completed{ background: rgba(102,187,106,.15); color: #66bb6a; }
.badge-cancelled{ background: rgba(239,83,80,.15);  color: #ef5350; }

/* ——— Login page ——— */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--black);
  position: relative;
}
.login-glow {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--purple-glow), transparent 70%);
  pointer-events: none;
}
.login-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.login-card img { width: 80px; height: 80px; object-fit: contain; margin-bottom: 1.5rem; }
.login-card h1 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
  color: var(--white);
}
.login-card p { font-size: .85rem; color: var(--white-muted); margin-bottom: 2rem; }
.login-error {
  background: rgba(239,83,80,.15);
  border: 1px solid rgba(239,83,80,.3);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-size: .82rem;
  color: #ef5350;
  margin-bottom: 1.5rem;
}

/* ——— SMS Panel ——— */
.sms-compose {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}
.sms-compose h3 { font-size: .95rem; margin-bottom: 1.5rem; }
.sms-char-count { font-size: .75rem; color: var(--white-muted); text-align: right; margin-top: .25rem; }

/* ——— Animations ——— */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .admin-sidebar { transform: translateX(-100%); z-index: 200; transition: transform var(--transition); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(8,8,10,.97);
    padding: 2rem;
    gap: 1.5rem;
  }
  .price-row { grid-template-columns: 1fr auto; }
  .pr-dur, .pr-book { display: none; }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
