/* ============================================================
   ZARAS BEAUTY SECRET — styles.css
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES & RESET
   ============================================================ */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8D5A3;
  --gold-dark:   #8B6914;
  --gold-shadow: rgba(201,168,76,0.18);
  --cream:       #FAF8F4;
  --dark:        #1a1a1a;
  --mid:         #5a5a5a;
  --border:      #e8e3da;
  --white:       #ffffff;
  --red:         #e07070;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--cream); color: var(--dark); }

/* ============================================================
   2. NAVBAR
   ============================================================ */
.navbar {
  background: #1a1a1a;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 1.5px solid var(--gold); }
.nav-name {
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.nav-buchungen {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color .2s;
}
.nav-buchungen:hover { color: var(--gold); }

/* ============================================================
   3. ANCHOR-NAVIGATION
   ============================================================ */
.anchor-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 60px;
  z-index: 190;
}
.anchor-nav ul {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  list-style: none;
  display: flex;
  gap: 0;
}
.anchor-nav a {
  display: block;
  padding: 13px 20px;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mid);
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.anchor-nav a:hover,
.anchor-nav a.active { color: var(--dark); border-bottom-color: var(--gold); }

/* ============================================================
   4. HERO
   ============================================================ */
.hero { max-width: 1200px; margin: 0 auto; padding: 28px 24px 0; }

.salon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.salon-header-left { display: flex; align-items: center; gap: 16px; }
.salon-logo-big {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 18px var(--gold-shadow);
}
.salon-name { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 600; letter-spacing: .5px; }
.salon-location { display: flex; align-items: center; gap: 5px; color: var(--mid); font-size: 0.78rem; margin-top: 3px; }
.share-btn {
  background: none;
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--mid);
  transition: all .2s;
}
.share-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 210px 210px;
  gap: 8px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
}
.photo-main {
  grid-row: 1/3;
  background: linear-gradient(135deg,#2a2420,#1a1208,#2a2420);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.photo-main img { width: 62%; object-fit: contain; filter: drop-shadow(0 4px 24px rgba(201,168,76,.45)); }
.photo-slot {
  background: linear-gradient(135deg,#e8ddd0,#d4c5b0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: rgba(201,168,76,.35);
  overflow: hidden;
  position: relative;
}
.photo-slot img { width: 100%; height: 100%; object-fit: cover; }
.all-photos-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(255,255,255,.95);
  border: none;
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 0.72rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background .2s;
}
.all-photos-btn:hover { background: #fff; }

/* ============================================================
   5. MAIN LAYOUT
   ============================================================ */
.page-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 40px;
  align-items: start;
}
.left-col { display: flex; flex-direction: column; gap: 0; }
section { scroll-margin-top: 125px; }
.section-divider { height: 1px; background: var(--border); margin: 32px 0; }

/* ============================================================
   5a. ÜBER UNS / INFO
   ============================================================ */
.rating-card {
  background: var(--white);
  border-radius: 14px;
  padding: 22px 26px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  gap: 28px;
}
.rating-block { display: flex; align-items: center; gap: 14px; }
.star-box {
  background: #f8f8f8;
  border-radius: 10px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.rating-big { font-size: 1.9rem; font-weight: 700; font-family: 'Cormorant Garamond', serif; line-height: 1; }
.stars-row { color: var(--gold); font-size: .85rem; margin-top: 2px; }
.vline { width: 1px; height: 38px; background: var(--border); }
.reviews-big { font-size: 1.9rem; font-weight: 700; font-family: 'Cormorant Garamond', serif; line-height: 1; }
.reviews-label { font-size: .8rem; color: var(--mid); }

.badges { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.badge { display: flex; align-items: flex-start; gap: 13px; }
.badge-ico { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; color: var(--dark); }
.badge-title { font-weight: 600; font-size: .87rem; }
.badge-sub { font-size: .78rem; color: var(--mid); margin-top: 1px; }

.gold-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg,transparent,var(--gold),transparent);
  margin: 22px 0;
}

.about-text { font-size: .85rem; line-height: 1.85; color: var(--mid); }
.mehr-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: underline;
  margin-top: 8px;
  padding: 0;
}

/* ============================================================
   5b. SERVICES
   ============================================================ */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: .3px;
}
.services-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
}
.search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px;
  background: var(--white);
  width: 230px;
}
.search-wrap input {
  border: none;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  color: var(--dark);
  background: transparent;
  width: 100%;
}
.search-wrap input::placeholder { color: #bbb; }

.filter-bar { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 20px; }
.ftab {
  padding: 7px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: .75rem;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all .2s;
  color: var(--dark);
}
.ftab.active { background: var(--dark); color: var(--white); border-color: var(--dark); }
.ftab:hover:not(.active) { border-color: var(--gold); color: var(--gold); }

.svc-category { margin-bottom: 24px; }
.svc-cat-title {
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark);
  padding: 8px 0;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.svc-cat-count { font-weight: 400; font-size: .78rem; color: var(--mid); }

/* Service Item */
.svc-item {
  background: var(--white);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 7px;
  border: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
  overflow: hidden;
}
.svc-item:hover { border-color: var(--gold-light); box-shadow: 0 2px 8px var(--gold-shadow); }
.svc-item-top {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.svc-name { font-size: .88rem; font-weight: 500; }
.svc-dur { font-size: .75rem; color: var(--mid); margin-top: 2px; }
.svc-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.svc-price { font-size: .88rem; font-weight: 600; }
.details-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .7rem;
  color: var(--mid);
  text-decoration: underline;
  font-family: 'Montserrat', sans-serif;
  padding: 0;
  white-space: nowrap;
  transition: color .2s;
}
.details-btn:hover { color: var(--gold-dark); }
.add-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: var(--white);
  color: var(--gold);
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  line-height: 1;
  flex-shrink: 0;
}
.add-btn:hover { background: var(--gold); color: var(--white); }
.drop-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: var(--mid);
  transition: all .2s;
  flex-shrink: 0;
}
.drop-btn:hover { border-color: var(--gold); color: var(--gold); }
.svc-item.open .drop-btn { transform: rotate(180deg); }

/* Sub-dropdown */
.svc-dropdown {
  display: none;
  border-top: 1px solid #f5f0ea;
  padding: 10px 18px 12px;
  background: #fafaf8;
}
.svc-item.open .svc-dropdown { display: block; }
.sub-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: .8rem;
  border-bottom: 1px dashed #ede8e0;
}
.sub-row:last-child { border-bottom: none; }
.sub-name { color: var(--mid); }
.sub-price { font-weight: 500; color: var(--dark); }
.sub-note { color: var(--red); font-size: .75rem; font-style: italic; margin-top: 6px; }

/* ============================================================
   5c. BEWERTUNGEN
   ============================================================ */
.reviews-overview {
  background: var(--white);
  border-radius: 14px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  margin-bottom: 20px;
}
.ov-bars { border-right: 1px solid var(--border); padding-right: 22px; }
.ov-bars-title {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
}
.bar-row { display: flex; align-items: center; gap: 7px; font-size: .75rem; color: var(--mid); margin-bottom: 4px; }
.bar { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--dark); border-radius: 2px; }
.ov-cat {
  padding: 0 20px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.ov-cat:last-child { border-right: none; }
.ov-cat-label { font-size: .72rem; color: var(--mid); text-transform: uppercase; letter-spacing: .5px; }
.ov-cat-num { font-size: 1.8rem; font-weight: 700; font-family: 'Cormorant Garamond', serif; line-height: 1; }
.ov-cat-icon { font-size: 1.1rem; color: #888; }

.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.review-card {
  background: var(--white);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  border: 1px solid transparent;
  transition: border-color .2s;
}
.review-card:hover { border-color: var(--gold-light); }
.rev-stars { color: var(--dark); font-size: .95rem; margin-bottom: 9px; }
.rev-text { font-size: .82rem; line-height: 1.75; color: var(--mid); margin-bottom: 12px; }
.rev-meta { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.rev-name { font-size: .8rem; font-weight: 600; }
.rev-date { font-size: .72rem; color: #aaa; }
.rev-tag {
  background: #faf6ee;
  color: var(--gold-dark);
  font-size: .68rem;
  padding: 2px 8px;
  border-radius: 5px;
  border: 1px solid var(--gold-light);
  font-weight: 500;
}

/* ============================================================
   5d. STANDORT
   ============================================================ */
.map-wrap { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); height: 300px; margin: 14px 0 8px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.map-note { font-size: .75rem; color: var(--mid); }

/* ============================================================
   6. SIDEBAR
   ============================================================ */
.sidebar { position: sticky; top: 112px; display: flex; flex-direction: column; gap: 14px; }
.sidebar-card {
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 3px 18px rgba(0,0,0,.08);
  border: 1px solid #f0ece4;
}
.sidebar-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: .3px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #f5f0ea;
  font-size: .8rem;
}
.hours-row:last-of-type { border-bottom: none; }
.hours-day { color: var(--mid); }
.hours-time { font-weight: 500; }
.hours-closed { color: #bbb; font-style: italic; font-size: .75rem; }
.today-row .hours-day { font-weight: 600; color: var(--dark); }
.today-row .hours-time { color: var(--gold-dark); font-weight: 600; }

.book-btn {
  width: 100%;
  padding: 15px;
  margin-top: 18px;
  background: linear-gradient(135deg,#C9A84C,#E8C96A,#C9A84C);
  background-size: 200%;
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all .3s;
  box-shadow: 0 4px 16px rgba(201,168,76,.35);
}
.book-btn:hover {
  background-position: right;
  box-shadow: 0 6px 22px rgba(201,168,76,.5);
  transform: translateY(-1px);
}
.sidebar-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: .75rem;
  color: var(--mid);
  justify-content: center;
}
.sidebar-star { color: var(--gold); }

/* ============================================================
   7. BUCHUNGS-MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,15,10,.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  animation: slideUp .3s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px 16px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  z-index: 2;
}
.modal-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; }
.modal-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.modal-close:hover { border-color: var(--dark); color: var(--dark); }

/* Steps indicator */
.modal-steps {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 26px;
  border-bottom: 1px solid var(--border);
  background: #fafaf8;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--mid);
  flex: 1;
}
.step-item.active { color: var(--dark); }
.step-item.done { color: var(--gold-dark); }
.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border);
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 600;
  flex-shrink: 0;
}
.step-item.active .step-num { background: var(--dark); color: var(--white); }
.step-item.done .step-num  { background: var(--gold); color: var(--white); }
.step-line { width: 24px; height: 1px; background: var(--border); flex-shrink: 0; }

.modal-body { padding: 24px 26px; }

/* Step 1 – Service Details */
.service-detail-card {
  background: linear-gradient(135deg,#faf6ee,#f5efe0);
  border: 1px solid var(--gold-light);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 18px;
}
.sdc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 4px; }
.sdc-price { font-size: 1.1rem; font-weight: 700; color: var(--gold-dark); margin-bottom: 14px; }
.sdc-includes { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; color: var(--mid); margin-bottom: 8px; }
.sdc-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.sdc-list li { display: flex; align-items: flex-start; gap: 8px; font-size: .82rem; color: var(--dark); line-height: 1.5; }
.sdc-list li::before { content: "✦"; color: var(--gold); font-size: .65rem; margin-top: 3px; flex-shrink: 0; }
.sdc-dur {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: .78rem;
  font-weight: 500;
  margin-top: 12px;
}

.modal-section-title {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--mid);
  margin-bottom: 10px;
}

/* Step 2 – Date/Time Picker */
.date-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 5px; margin-bottom: 18px; }
.date-cell {
  text-align: center;
  padding: 8px 4px;
  border-radius: 8px;
  cursor: pointer;
  font-size: .75rem;
  transition: all .15s;
  border: 1px solid transparent;
}
.date-cell:hover:not(.disabled) { background: var(--gold-light); }
.date-cell.selected { background: var(--dark); color: var(--white); }
.date-cell.disabled { color: #ccc; cursor: default; }
.date-cell.today { font-weight: 700; border-color: var(--gold); }
.date-header { font-size: .65rem; font-weight: 600; text-align: center; color: var(--mid); padding: 4px 0; text-transform: uppercase; letter-spacing: .5px; }

.month-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.month-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.month-btn:hover { border-color: var(--gold); }
.month-label { font-weight: 600; font-size: .9rem; }

.time-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.time-slot {
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: .78rem;
  font-weight: 500;
  cursor: pointer;
  background: var(--white);
  transition: all .15s;
}
.time-slot:hover:not(.taken) { border-color: var(--gold); color: var(--gold-dark); }
.time-slot.selected { background: var(--dark); color: var(--white); border-color: var(--dark); }
.time-slot.taken { color: #ccc; cursor: default; text-decoration: line-through; }

/* Step 3 – Kontakt */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.form-full { grid-column: 1/-1; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .6px; color: var(--mid); }
.form-field input,
.form-field textarea,
.form-field select {
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px 13px;
  font-family: 'Montserrat', sans-serif;
  font-size: .83rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 70px; }

/* Summary box */
.booking-summary {
  background: #fafaf8;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.bs-row { display: flex; justify-content: space-between; font-size: .8rem; padding: 3px 0; }
.bs-label { color: var(--mid); }
.bs-val { font-weight: 500; }
.bs-total { font-size: .95rem; font-weight: 700; border-top: 1px solid var(--border); padding-top: 8px; margin-top: 6px; }

/* Modal footer */
.modal-footer {
  padding: 16px 26px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  background: #fafaf8;
  border-radius: 0 0 20px 20px;
  position: sticky;
  bottom: 0;
  z-index: 2;
}
.btn-back {
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 20px;
  font-size: .78rem;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  color: var(--mid);
  transition: all .2s;
}
.btn-back:hover { border-color: var(--dark); color: var(--dark); }
.btn-next {
  background: linear-gradient(135deg,#C9A84C,#E8C96A);
  border: none;
  border-radius: 10px;
  padding: 11px 28px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  letter-spacing: .8px;
  transition: all .2s;
  box-shadow: 0 3px 12px var(--gold-shadow);
}
.btn-next:hover { box-shadow: 0 5px 18px rgba(201,168,76,.4); transform: translateY(-1px); }

/* Success screen */
.success-screen { text-align: center; padding: 40px 20px; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.success-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; margin-bottom: 8px; }
.success-sub { font-size: .85rem; color: var(--mid); line-height: 1.7; }

/* ============================================================
   RESPONSIVE — Tablet (max 900px)
   ============================================================ */
@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: relative; top: 0; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-main { grid-row: auto; min-height: 200px; }
  .reviews-overview { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — Handy (max 600px)
   ============================================================ */
@media (max-width: 600px) {

  /* Navbar */
  .navbar { padding: 0 16px; }
  .nav-name { font-size: .82rem; letter-spacing: 1.5px; }
  .nav-buchungen { font-size: .65rem; letter-spacing: .8px; }

  /* Anchor-Nav: horizontal scrollbar */
  .anchor-nav ul {
    padding: 0 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .anchor-nav ul::-webkit-scrollbar { display: none; }
  .anchor-nav a { padding: 12px 14px; font-size: .68rem; white-space: nowrap; }

  /* Hero */
  .hero { padding: 16px 14px 0; }
  .salon-name { font-size: 1.4rem; }
  .salon-logo-big { width: 52px; height: 52px; }

  /* Foto-Raster: nur Hauptbild auf Handy */
  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 220px;
  }
  .photo-main { min-height: 220px; }
  .photo-slot { display: none; }

  /* Page Layout */
  .page-layout { padding: 16px 14px 40px; gap: 24px; }
  .section-title { font-size: 1.25rem; }

  /* Rating Card */
  .rating-card { padding: 16px 18px; gap: 16px; flex-wrap: wrap; }
  .rating-big, .reviews-big { font-size: 1.5rem; }

  /* Services Topbar */
  .services-topbar { flex-direction: column; align-items: stretch; }
  .search-wrap { width: 100%; }
  .filter-bar { gap: 6px; }
  .ftab { padding: 6px 12px; font-size: .7rem; }

  /* Service Items */
  .svc-item-top { padding: 12px 14px; }
  .svc-name { font-size: .83rem; }
  .svc-right { gap: 7px; }
  .svc-price { font-size: .83rem; }

  /* Reviews Overview */
  .reviews-overview {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ov-bars { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 14px; }
  .ov-cat { border-right: none; border-bottom: 1px solid var(--border); padding: 10px 0; flex-direction: row; align-items: center; gap: 12px; }
  .ov-cat:last-child { border-bottom: none; }
  .ov-cat-num { font-size: 1.4rem; }

  /* Bewertungen Grid */
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 14px 16px; }

  /* Karte */
  .map-wrap { height: 220px; }

  /* Sidebar */
  .sidebar-card { padding: 18px; }

  /* Modal — fullscreen auf Handy */
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal {
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
    max-width: 100%;
  }
  .modal-header { padding: 18px 18px 12px; }
  .modal-body { padding: 18px; }
  .modal-footer { padding: 12px 18px 24px; }
  .modal-title { font-size: 1.2rem; }

  /* Kalender */
  .date-cell { padding: 7px 2px; font-size: .7rem; }
  .date-header { font-size: .6rem; }

  /* Zeit-Slots */
  .time-slot { padding: 8px 10px; font-size: .75rem; }

  /* Formular */
  .form-grid { grid-template-columns: 1fr; }
  .form-field input,
  .form-field textarea,
  .form-field select { padding: 12px 13px; font-size: .85rem; }

  /* Buttons größer für Touch */
  .btn-next { padding: 13px 24px; font-size: .8rem; }
  .btn-back { padding: 13px 16px; font-size: .78rem; }
  .book-btn { padding: 16px; font-size: .82rem; }
}

/* ============================================================
   RESPONSIVE — Kleines Handy (max 380px)
   ============================================================ */
@media (max-width: 380px) {
  .salon-name { font-size: 1.2rem; }
  .nav-name { display: none; }
  .ftab { padding: 5px 10px; font-size: .67rem; }
  .svc-right { gap: 5px; }
  .details-btn { display: none; }
}
