/* ===========================
   ANANDA — NEWSOUL INSPIRED DESIGN
   Modern, clean, warm tones
   =========================== */

:root {
  /* Ananda Warm Palette (newsoul-inspired) */
  --bg-cream: #FDFBF8;
  --bg-soft: #F7F3ED;
  --bg-warm: #EFE8E0;
  --surface: #FFFFFF;
  --text-primary: #2D2A26;
  --text-secondary: #6B645C;
  --text-muted: #9C948A;
  --accent: #A67B5B;
  --accent-dark: #8B6547;
  --accent-soft: #D4B8A8;
  --border: #E8E0D8;
  --success: #5B8B6F;
  --shadow-sm: 0 2px 8px rgba(45, 42, 38, 0.04);
  --shadow-md: 0 4px 16px rgba(45, 42, 38, 0.06);
  --shadow-lg: 0 12px 40px rgba(45, 42, 38, 0.08);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: min(1200px, calc(100% - 3rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--bg-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

/* ===========================
   TYPOGRAPHY
   =========================== */

h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

.lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

.premium-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

/* ===========================
   HEADER & NAV
   =========================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 248, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
}

.brand-logo {
  height: 56px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text-primary);
}

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

/* ===========================
   BUTTONS
   =========================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--text-primary);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.button:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.button-secondary:hover {
  background: var(--bg-soft);
  border-color: var(--accent);
}

.button-small {
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
}

.button-large {
  padding: 1.2rem 2.5rem;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ===========================
   HERO SECTION
   =========================== */

.page-hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.compact-hero {
  padding: 4rem 0 3rem;
}

.page-hero .container {
  max-width: 800px;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero .lead {
  margin: 0 auto;
}

/* ===========================
   SECTIONS
   =========================== */

.section {
  padding: 5rem 0;
}

/* ===========================
   CARDS
   =========================== */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.3s;
}

.card:hover {
  border-color: var(--accent-soft);
  box-shadow: var(--shadow-md);
}

/* ===========================
   SERVICE CARDS (newsoul style)
   =========================== */

.premium-service-section {
  padding: 5rem 0;
  background: var(--bg-soft);
}

.premium-section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.premium-section-head h2 {
  max-width: 600px;
  margin: 0 auto;
}

.premium-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.premium-treatment-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.premium-treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-soft);
}

.premium-treatment-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.premium-treatment-image.image-back {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23E8E0D8" width="400" height="300"/><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-size="48" fill="%23A67B5B" opacity="0.3">👐</text></svg>');
}

.premium-treatment-image.image-aroma {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23D4B8A8" width="400" height="300"/><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-size="48" fill="%238B6547" opacity="0.3">🌿</text></svg>');
}

.premium-treatment-image.image-couple {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23E8D8C8" width="400" height="300"/><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-size="48" fill="%23A67B5B" opacity="0.3">💑</text></svg>');
}

.premium-treatment-image.image-thai {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23D4C8B8" width="400" height="300"/><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-size="48" fill="%236B645C" opacity="0.3">🧘</text></svg>');
}

.premium-treatment-image.image-hotstone {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23C8B8A8" width="400" height="300"/><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-size="48" fill="%238B6547" opacity="0.3">🪨</text></svg>');
}

.premium-treatment-image.image-herbal {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23B8C8A8" width="400" height="300"/><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-size="48" fill="%235B8B6F" opacity="0.3">🌱</text></svg>');
}

.premium-treatment-image.image-face {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23E8D8D8" width="400" height="300"/><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-size="48" fill="%23A67B5B" opacity="0.3">💆</text></svg>');
}

.premium-treatment-image.image-foot {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23D8D8E8" width="400" height="300"/><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-size="48" fill="%236B645C" opacity="0.3">🦶</text></svg>');
}

.premium-treatment-body {
  padding: 1.5rem;
}

.premium-treatment-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.premium-treatment-body > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.premium-treatment-prices {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.premium-treatment-prices > div {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
}

.premium-treatment-prices span {
  color: var(--text-secondary);
}

.premium-treatment-prices strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}

.premium-treatment-button {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--text-primary);
  color: #fff;
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.premium-treatment-button:hover {
  background: var(--accent);
}

.premium-treatment-card-single-center {
  grid-column: 1 / -1;
  max-width: 400px;
  margin: 0 auto;
}

/* ===========================
   PRICE OVERVIEW CARD
   =========================== */

.premium-price-overview-card {
  background: var(--text-primary);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin-bottom: 3rem;
}

.price-overview-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.price-overview-header h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.price-overview-header p {
  color: var(--accent-soft);
  font-size: 1rem;
}

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

.price-quick-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.price-quick-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.price-quick-item.highlight {
  background: var(--accent);
  border-color: var(--accent);
}

.price-quick-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  opacity: 0.95;
}

.price-quick-from {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.price-quick-value {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

/* ===========================
   INFO SECTION
   =========================== */

.premium-info-section {
  padding: 5rem 0;
}

.premium-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.premium-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.premium-info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.premium-info-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   FOOTER
   =========================== */

.site-footer {
  background: var(--bg-warm);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

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

.footer-grid strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-grid p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 0.5rem;
}

.footer-grid a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-grid a:hover {
  color: var(--accent);
}

/* ===========================
   BOOKING SYSTEM
   =========================== */

.booking-system-container {
  max-width: 800px;
  margin: 0 auto;
}

.booking-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.booking-step h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.booking-option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.booking-option-card {
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.booking-option-card:hover {
  border-color: var(--accent);
  background: var(--bg-warm);
}

.booking-option-card.selected {
  border-color: var(--accent);
  background: rgba(166, 123, 91, 0.08);
}

.booking-option-card h4 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.booking-option-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0 0 0.75rem;
}

.booking-option-card .price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
}

/* Time slots */
.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.time-slot {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  text-align: center;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.time-slot:hover {
  border-color: var(--accent);
  background: var(--bg-warm);
}

.time-slot.selected {
  background: var(--text-primary);
  color: #fff;
  border-color: var(--text-primary);
}

.time-slot.booked {
  opacity: 0.4;
  cursor: not-allowed;
  background: var(--border);
}

/* Form fields */
.modern-field {
  display: block;
  margin-bottom: 1.5rem;
}

.modern-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.modern-field input,
.modern-field select,
.modern-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--surface);
}

.modern-field input:focus,
.modern-field select:focus,
.modern-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* ===========================
   CONTACT PAGE
   =========================== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-info a {
  color: var(--accent);
  font-weight: 500;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
  .nav-wrap {
    min-height: 70px;
  }
  
  .site-nav {
    display: none;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .button {
    width: 100%;
  }
  
  .premium-service-grid {
    grid-template-columns: 1fr;
  }
  
  .price-quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .page-hero {
    padding: 3rem 0 2rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .premium-price-overview-card {
    padding: 2rem 1.5rem;
  }
  
  .booking-step {
    padding: 1.5rem;
  }
  
  .time-slot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===========================
   UTILITY
   =========================== */

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.hidden {
  display: none !important;
}

/* ===========================
   ADMIN DASHBOARD STYLES
   =========================== */

.admin-page-body {
  background: linear-gradient(135deg, #F7F3ED 0%, #EFE8E0 100%);
  min-height: 100vh;
}

.admin-main-shell {
  padding: 2rem 0 4rem;
}

.admin-access-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .admin-access-grid {
    grid-template-columns: 1fr;
  }
}

.admin-sidebar-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.admin-sidebar-card .premium-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.admin-sidebar-card h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin: 0 0 1rem;
  color: var(--text-primary);
}

.admin-sidebar-card .lead {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.admin-side-links {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.admin-side-links li {
  margin-bottom: 0.5rem;
}

.admin-nav-button {
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.admin-nav-button:hover {
  background: var(--bg-warm);
}

.admin-nav-button.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.admin-note-box {
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  padding: 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
}

.admin-note-box strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.admin-note-box p {
  margin: 0;
  color: var(--text-secondary);
}

.admin-quick-tips {
  margin-top: 1.5rem;
  background: #E8F0F8;
  border-left: 3px solid #4A90D9;
  padding: 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
}

.admin-quick-tips strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.admin-quick-tips ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-secondary);
}

.admin-quick-tips li {
  margin-bottom: 0.25rem;
}

.admin-content-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

/* Lock Screen */
.admin-lock-screen {
  max-width: 420px;
  margin: 2rem auto;
  text-align: center;
}

.admin-lock-screen h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin: 0.5rem 0 1rem;
  color: var(--text-primary);
}

.admin-lock-screen p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.admin-login-form {
  text-align: left;
}

.admin-login-form .modern-field {
  margin-bottom: 1rem;
}

.admin-login-form input[type="text"],
.admin-login-form input[type="password"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.admin-login-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.admin-password-strength {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 0.5rem 0;
  overflow: hidden;
}

.admin-strength-fill {
  height: 100%;
  width: 0%;
  transition: all 0.3s;
  border-radius: 2px;
}

.admin-strength-fill.weak {
  width: 33%;
  background: #DC504A;
}

.admin-strength-fill.medium {
  width: 66%;
  background: #E8A83E;
}

.admin-strength-fill.strong {
  width: 100%;
  background: #5B8B6F;
}

.admin-password-hint {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0.5rem 0 1rem;
}

.admin-login-message {
  color: #DC504A;
  font-size: 0.9rem;
  margin-top: 1rem;
  min-height: 1.2em;
}

.admin-setup-notice {
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  color: #2E7D32;
  font-size: 0.9rem;
}

/* Dashboard */
.admin-dashboard .admin-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-dashboard .admin-header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.admin-welcome {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.admin-stat-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
}

.admin-stat-card span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.admin-stat-card strong {
  display: block;
  font-size: 1.8rem;
  color: var(--text-primary);
  font-family: "Cormorant Garamond", serif;
}

.admin-view-switcher {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.admin-tab {
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}

.admin-tab:hover {
  color: var(--text-primary);
}

.admin-tab.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.admin-view {
  display: none;
}

.admin-view.is-active {
  display: block;
}

/* Calendar */
.admin-calendar-toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.admin-calendar-toolbar h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  margin: 0;
  color: var(--text-primary);
  min-width: 200px;
  text-align: center;
}

.admin-calendar-view-switch {
  display: flex;
  gap: 0.25rem;
}

.admin-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.admin-calendar-weekday {
  background: var(--bg-soft);
  padding: 0.75rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.admin-calendar-cell {
  background: var(--surface);
  min-height: 100px;
  padding: 0.5rem;
  cursor: pointer;
  transition: background 0.2s;
}

.admin-calendar-cell:hover {
  background: var(--bg-soft);
}

.admin-calendar-cell-empty {
  background: var(--bg-soft);
  cursor: default;
}

.admin-calendar-date {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.admin-calendar-empty-text {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.admin-calendar-booking {
  background: var(--accent);
  color: #fff;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.admin-calendar-booking.booking-confirmed {
  background: var(--success);
}

.admin-calendar-booking strong {
  display: block;
  font-weight: 600;
}

.admin-calendar-booking span {
  display: block;
  font-size: 0.7rem;
  opacity: 0.9;
}

.admin-calendar-booking small {
  display: block;
  font-size: 0.65rem;
  opacity: 0.8;
}

.admin-calendar-more {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-align: center;
  padding: 0.25rem;
}

/* Appointments List */
.admin-list-toolbar {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.admin-filter-field {
  min-width: 180px;
}

.admin-filter-field select,
.admin-filter-field input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  background: var(--surface);
}

.admin-appointments-list {
  display: grid;
  gap: 1rem;
}

.admin-appointment-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all 0.2s;
}

.admin-appointment-card:hover {
  box-shadow: var(--shadow-sm);
}

.admin-appointment-card.appointment-confirmed {
  border-left: 4px solid var(--success);
}

.admin-appointment-card.appointment-cancelled {
  border-left: 4px solid #DC504A;
  opacity: 0.7;
}

.admin-appointment-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.admin-appointment-top strong {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-family: "Cormorant Garamond", serif;
}

.admin-status-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-confirmed {
  background: #D4EDDA;
  color: #155724;
}

.status-pending {
  background: #FFF3CD;
  color: #856404;
}

.status-cancelled {
  background: #F8D7DA;
  color: #721C24;
}

.admin-appointment-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.admin-appointment-meta > div span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-appointment-meta > div strong {
  color: var(--text-primary);
  font-weight: 500;
}

.admin-appointment-note {
  background: var(--surface);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  border: 1px dashed var(--border);
}

.admin-appointment-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.admin-appointment-actions .button {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* Customers List */
.admin-customers-list {
  display: grid;
  gap: 1rem;
}

.admin-customer-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.admin-customer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-customer-header h4 {
  margin: 0 0 0.5rem;
  color: var(--text-primary);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}

.admin-customer-contact {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.admin-customer-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.admin-customer-stats strong {
  color: var(--accent);
}

.admin-customer-bookings strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.admin-customer-bookings ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-customer-bookings li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.admin-customer-bookings li:last-child {
  border-bottom: none;
}

.admin-customer-booking-date {
  color: var(--text-primary);
  font-weight: 500;
}

.admin-customer-booking-service {
  color: var(--text-secondary);
}

/* Dialog */
.admin-dialog {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-lg);
}

.admin-dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.admin-dialog-content {
  padding: 2rem;
}

.admin-dialog-content h3 {
  margin: 0 0 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.admin-edit-form .modern-field {
  margin-bottom: 1rem;
}

.admin-edit-form label span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.admin-edit-form input,
.admin-edit-form select,
.admin-edit-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
}

.admin-edit-form input:focus,
.admin-edit-form select:focus,
.admin-edit-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.admin-dialog-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

/* Toast Notifications */
.admin-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.admin-toast {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 280px;
  max-width: 400px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.admin-toast.success {
  border-left-color: var(--success);
}

.admin-toast.error {
  border-left-color: #DC504A;
}

.admin-toast.warning {
  border-left-color: #E8A83E;
}

.admin-toast-icon {
  font-size: 1.2rem;
}

.admin-toast-message {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.admin-toast-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* Week View */
.admin-week-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.admin-week-day {
  background: var(--surface);
  min-height: 400px;
}

.admin-week-day.is-today {
  background: var(--bg-soft);
}

.admin-week-day-header {
  background: var(--bg-soft);
  padding: 0.75rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.admin-week-day-header strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.admin-week-day-header span {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.admin-week-slots {
  padding: 0.5rem;
}

.admin-week-slot {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  min-height: 50px;
}

.admin-week-slot.has-booking {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  cursor: pointer;
}

.admin-week-slot-empty {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.admin-week-booking strong {
  display: block;
  font-weight: 600;
}

.admin-week-booking span {
  display: block;
  font-size: 0.7rem;
  opacity: 0.9;
}

.admin-week-booking small {
  display: block;
  font-size: 0.65rem;
  opacity: 0.8;
}

/* Day View */
.admin-day-view {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.admin-day-view.is-today {
  background: var(--bg-soft);
}

.admin-day-header {
  background: var(--bg-soft);
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.admin-day-header h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--text-primary);
}

.admin-day-header span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.admin-day-slots {
  padding: 1rem;
}

.admin-day-slot {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-day-slot.has-booking {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.admin-day-slot-empty {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.admin-day-booking {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.admin-day-booking-time {
  min-width: 60px;
  font-weight: 600;
}

.admin-day-booking-info {
  flex: 1;
}

.admin-day-booking-category {
  display: block;
  font-weight: 500;
}

.admin-day-booking-name,
.admin-day-booking-phone {
  display: block;
  font-size: 0.8rem;
  opacity: 0.9;
}

.admin-day-booking-actions {
  display: flex;
  gap: 0.5rem;
}

.admin-empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===========================
   IMPRESSUM / LEGAL PAGES
   =========================== */

.impressum-content {
  max-width: 900px;
  margin: 0 auto;
}

.impressum-block {
  margin-bottom: 2.5rem;
}

.impressum-block h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.impressum-block h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 1.5rem 0 0.75rem 0;
}

.impressum-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.impressum-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-secondary);
}

.impressum-card a {
  color: var(--accent);
  text-decoration: none;
}

.impressum-card a:hover {
  text-decoration: underline;
}

.impressum-card strong {
  color: var(--text-primary);
}

/* ===========================
   BOOKING SYSTEM — NEWSOUL STYLE
   =========================== */

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

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

.booking-main {
  max-width: 100%;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.booking-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}

.booking-step h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.step-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* Treatment Grid */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

@media (max-width: 640px) {
  .treatment-grid {
    grid-template-columns: 1fr;
  }
}

.treatment-card {
  position: relative;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
}

.treatment-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.treatment-card:hover {
  border-color: var(--accent);
  background: var(--bg-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.treatment-card.selected {
  border-color: var(--accent);
  background: rgba(166, 123, 91, 0.08);
  box-shadow: 0 0 0 3px rgba(166, 123, 91, 0.15);
}

.treatment-card.highlight {
  border-color: var(--accent-soft);
}

.treatment-card.highlight.selected {
  box-shadow: 0 0 0 3px rgba(166, 123, 91, 0.25);
}

.treatment-card-content {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.treatment-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
}

.treatment-info {
  flex: 1;
  min-width: 0;
}

.treatment-info h3 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.treatment-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0 0 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.treatment-durations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.duration-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-soft);
  padding: 0.25rem 0.5rem;
  border-radius: 99px;
  border: 1px solid var(--border);
}

.treatment-price {
  text-align: right;
  flex-shrink: 0;
}

.price-from {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-value {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.popular-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 99px;
}

/* Duration Selection */
.duration-selection {
  max-width: 400px;
}

/* Date/Time Grid */
.datetime-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .datetime-grid {
    grid-template-columns: 1fr;
  }
}

/* Time Slots Visual */
.time-slots-visual {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.slot-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.5rem;
}

.time-slot {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
}

.time-slot:hover:not(.booked) {
  border-color: var(--accent);
  background: var(--bg-soft);
}

.time-slot.selected {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.time-slot.booked {
  opacity: 0.4;
  cursor: not-allowed;
  background: var(--border);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Booking Sidebar */
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

.booking-summary-card,
.booking-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.booking-summary-card h3,
.booking-info-card h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--text-primary);
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row span {
  color: var(--text-secondary);
}

.summary-row strong {
  color: var(--text-primary);
  font-weight: 600;
}

.summary-total {
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 2px solid var(--border);
  font-size: 1.1rem;
}

.summary-total strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--accent);
}

/* Info Cards */
.booking-info-card h4 {
  margin-bottom: 0.75rem;
}

.booking-info-card ol,
.booking-info-card ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.booking-info-card li {
  margin-bottom: 0.5rem;
}

.info-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.info-list {
  list-style: disc;
}

/* Modern Field Improvements */
.modern-field {
  display: block;
  margin-bottom: 1.5rem;
}

.modern-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.modern-field input,
.modern-field select,
.modern-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--surface);
}

.modern-field input:focus,
.modern-field select:focus,
.modern-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(166, 123, 91, 0.1);
}

.modern-field textarea {
  resize: vertical;
  min-height: 100px;
}

/* Submit Button */
.booking-form .button.button-large {
  margin-top: 1rem;
}

/* Scrollbar for treatment grid on mobile */
@media (max-width: 640px) {
  .treatment-grid {
    max-height: 500px;
    overflow-y: auto;
  }
}
