/* ── Preisliste ──────────────────────────────────────────────── */
.price-disclaimer {
  background: var(--color-accent-light);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  font-size: .9rem;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
}
.price-section { margin-bottom: 3.5rem; }
.price-section-header {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.25rem;
  padding-bottom: .875rem;
  border-bottom: 3px solid var(--color-accent);
}
.price-section-header h2 { font-size: 1.3rem; color: var(--color-accent); }
.price-section-icon { font-size: 1.4rem; }

/* 3-Spalten-Layout für Haarschnitt */
.price-section--split .price-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .price-section--split .price-cols { grid-template-columns: 1fr; }
}
.price-col h3 {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent-light);
  padding-bottom: .5rem;
  margin-bottom: .75rem;
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table tr { border-bottom: 1px solid var(--color-bg-alt); transition: background .15s; }
.price-table tr:hover { background: var(--color-bg-alt); }
.price-table td { padding: .8rem .5rem; vertical-align: top; font-size: .95rem; }
.price-table td:first-child { color: var(--color-text); }
.price-table td:last-child {
  text-align: right;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
  padding-left: 1rem;
}
.price-table td small { display: block; font-size: .78rem; color: var(--color-text-muted); font-family: var(--font-body); font-weight: 400; margin-top: .15rem; }
.price-cta-box {
  background: var(--color-bg-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  color: var(--color-white);
  margin-top: 3rem;
  border-top: 4px solid var(--color-accent);
}
.price-cta-box h3 { color: var(--color-white); margin-bottom: .5rem; }
.price-cta-box p  { color: rgba(255,255,255,.75); margin-bottom: 1.5rem; }

/* ============================================================
   Prices Page Redesign
   ============================================================ */
.prices-page {
  background:
    radial-gradient(circle at 10% 8%, rgba(255,255,255,.96), transparent 30rem),
    linear-gradient(180deg, #fbf6f1 0%, #fffaf6 48%, #fbf6f1 100%);
}

.prices-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 44vh, 500px);
  background: linear-gradient(90deg, #fffaf6 0%, #fbf6f1 52%, #f7eee8 100%);
}

.prices-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 57%;
  background:
    radial-gradient(circle at 17% 28%, rgba(255,255,255,.88), transparent 20rem),
    linear-gradient(90deg, #fffaf6 0%, rgba(251,246,241,.95) 100%);
  pointer-events: none;
}

.prices-hero__grid {
  position: relative;
  display: grid;
  align-items: center;
  min-height: inherit;
  padding-block: clamp(3rem, 6vw, 5rem);
}

@media (min-width: 820px) {
  .prices-hero__grid {
    grid-template-columns: minmax(0, .85fr) minmax(380px, 1.15fr);
  }
}

.prices-hero__content {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.prices-hero h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
}

.prices-hero__content > p {
  max-width: 570px;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.8;
}

.prices-hero__media {
  position: absolute;
  z-index: 0;
  top: 0;
  right: calc(50% - 50vw);
  bottom: 0;
  width: min(62vw, 940px);
  margin: 0;
  overflow: hidden;
  clip-path: circle(clamp(360px, 52vw, 720px) at 100% 50%);
}

.prices-hero__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 38%;
}

.prices-overview {
  padding-top: clamp(2rem, 4vw, 3.5rem);
  background: #fffaf6;
}

.prices-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-width: 980px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(247,238,232,.78));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.prices-note > span {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(155,27,98,.25);
  border-radius: 50%;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

.prices-note strong {
  color: var(--color-primary);
}

.prices-note p {
  margin-top: .25rem;
  color: var(--color-muted);
  font-size: .95rem;
}

.prices-tabs {
  display: grid;
  gap: clamp(1.3rem, 3vw, 2rem);
}

.prices-tab-list {
  display: flex;
  gap: .7rem;
  align-items: stretch;
  overflow-x: auto;
  padding: .45rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-xs);
  scrollbar-width: thin;
}

.prices-tab {
  display: inline-flex;
  flex: 1 0 auto;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-width: max-content;
  min-height: 52px;
  padding: .8rem 1.1rem;
  border: 1px solid transparent;
  border-radius: calc(var(--radius-md) - 8px);
  background: transparent;
  color: var(--color-muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.prices-tab span {
  color: var(--color-primary);
  font-size: 1.15rem;
}

.prices-tab:hover,
.prices-tab:focus-visible {
  color: var(--color-primary);
  background: rgba(155,27,98,.07);
  outline: 0;
}

.prices-tab.is-active {
  color: var(--color-primary);
  background: var(--color-surface);
  border-color: rgba(155,27,98,.26);
  box-shadow: 0 10px 22px rgba(155,27,98,.1);
}

.prices-tab-panel {
  outline: 0;
}

.prices-tab-heading {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.2rem;
}

.prices-tab-heading > span {
  display: grid;
  place-items: center;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 1.45rem;
}

.prices-tab-heading h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.prices-card-grid {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 780px) {
  .prices-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.price-category-card {
  padding: clamp(1.15rem, 3vw, 1.7rem);
  background: rgba(255,255,255,.94);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.price-category-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: .85rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(155,27,98,.55);
}

.price-category-card__header h4 {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.price-list {
  display: grid;
}

.price-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .8rem;
  border-bottom: 1px solid rgba(234, 219, 212, .9);
}

.price-list li:last-child {
  border-bottom: 0;
}

.price-list span {
  color: var(--color-text);
  line-height: 1.35;
}

.price-list strong {
  flex: 0 0 auto;
  max-width: 46%;
  color: var(--color-primary);
  font-weight: 800;
  line-height: 1.35;
  text-align: right;
}

.price-list small {
  display: block;
  margin-top: .2rem;
  color: var(--color-muted);
  font-size: .78rem;
  font-weight: 400;
}

.prices-appointment {
  padding-block: clamp(3rem, 6vw, 4.75rem);
  background:
    radial-gradient(circle at 12% 48%, rgba(216,102,163,.14), transparent 18rem),
    linear-gradient(90deg, #fff6f7 0%, #fbf6f1 100%);
  border-top: 1px solid var(--color-border);
}

.prices-appointment__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(255,255,255,.74);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 760px) {
  .prices-appointment__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

.prices-appointment h2 {
  margin-bottom: .8rem;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.prices-appointment p:not(.section-label) {
  max-width: 660px;
  color: var(--color-muted);
}

.prices-appointment__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 980px) and (min-width: 761px) {
  .prices-hero__media {
    width: 66vw;
    clip-path: circle(clamp(330px, 52vw, 620px) at 100% 50%);
  }

  .prices-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .prices-hero {
    min-height: auto;
  }

  .prices-hero::before {
    display: none;
  }

  .prices-hero__grid {
    gap: 2rem;
    padding-block: 0 3rem;
  }

  .prices-hero__media {
    position: relative;
    inset: auto;
    right: auto;
    width: calc(100% + (var(--container-padding) * 2));
    min-height: 320px;
    margin-inline: calc(var(--container-padding) * -1);
    order: -1;
    clip-path: circle(88% at 62% 30%);
  }

  .prices-note {
    margin-inline: 0;
  }

  .prices-tab-list {
    margin-inline: calc(var(--container-padding) * -1);
    padding-inline: var(--container-padding);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .price-list li {
    flex-direction: column;
    gap: .3rem;
  }

  .price-list strong {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .prices-note {
    flex-direction: column;
  }

  .prices-appointment__actions .btn {
    width: 100%;
  }
}


