/* ================================================================
   apart wellness — Sauna Modellübersicht
   Porsche-inspiriertes Layout: linke Sidebar + rechtes Grid
================================================================ */

/* ── Seiten-Hintergrund (alle Kategorie-Übersichtsseiten) ── */
.sov-page {
  background: #f2f2f0;
  min-height: 100vh;
}

/* Breadcrumb (wiederverwendet auf allen Kategorie-Seiten) */
.sov-breadcrumb {
  padding: 96px 0 0;
  background: #f2f2f0;
}
.sov-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #aaa;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.sov-breadcrumb a { color: #aaa; text-decoration: none; transition: color 0.2s; }
.sov-breadcrumb a:hover { color: #111; }
.sov-breadcrumb span { color: #ccc; }

/* Farbakzent-Varianten für je Kategorie */
.sov-page--dampfbad  { background: #f0f4f7; }
.sov-page--whirlpool { background: #f0f3f7; }
.sov-page--hottub    { background: #f5f2ee; }
.sov-page--icetub    { background: #f0f4f5; }
.sov-page--wellness  { background: #f4f4f0; }
.sov-page--gewerbe   { background: #f2f2f0; }

/* Kompaktere Karten für 2-Modell-Kategorien (2-col statt 3) */
.sov-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 680px) {
  .sov-grid--2col { grid-template-columns: 1fr; }
}
/* Header ist fixed/sticky → body braucht Abstand */
.sov-page body,
body.sov-page {
  padding-top: 0;
}

/* ── Seiten-Titel (oberhalb des Layouts) ── */
.sov-pagetitle {
  padding: 72px 0 48px;
  background: #f2f2f0;
}
.sov-pagetitle .container {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}
.sov-pagetitle h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #111;
  margin: 0;
  line-height: 1.1;
}
.sov-konfiglink {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  flex-shrink: 0;
}
.sov-konfiglink:hover { opacity: 0.6; }

/* ── Haupt-Layout: Sidebar + Content ── */
.sov-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  padding: 36px 0 80px;
}

/* ================================================================
   LINKE SIDEBAR
================================================================ */
.sov-sidebar {
  position: sticky;
  top: 90px;
  background: transparent;
}

/* Filtergruppen-Titel */
.sov-filter-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 10px;
}

.sov-filter-divider {
  border: none;
  border-top: 1px solid #e8e8e6;
  margin: 20px 0 20px;
}

/* Baureihen-Liste (Radio) */
.sov-filter-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sov-filter-list li label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  color: #444;
  transition: color 0.2s;
  user-select: none;
}
.sov-filter-list li label:hover { color: #111; }
.sov-filter-list input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid #bbb;
  background: #fff;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s;
}
.sov-filter-list input[type="radio"]:checked {
  border-color: #111;
  background: #111;
}
.sov-filter-list input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
}
.sov-filter-count {
  color: #aaa;
  font-size: 12px;
  margin-left: auto;
}

/* Accordion-Gruppen */
.sov-accordion {
  border-top: 1px solid #ddd;
}
.sov-accordion-item {
  border-bottom: 1px solid #ddd;
}
.sov-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  padding: 13px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #111;
  cursor: pointer;
  text-align: left;
}
.sov-accordion-btn i {
  font-size: 10px;
  color: #888;
  transition: transform 0.25s ease;
}
.sov-accordion-item.open .sov-accordion-btn i {
  transform: rotate(180deg);
}
.sov-accordion-body {
  display: none;
  padding: 4px 0 14px;
  flex-direction: column;
  gap: 4px;
}
.sov-accordion-item.open .sov-accordion-body {
  display: flex;
}
.sov-accordion-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #444;
  cursor: pointer;
  padding: 3px 0;
  user-select: none;
}
.sov-accordion-check input[type="checkbox"] {
  width: 15px; height: 15px;
  accent-color: #111;
  cursor: pointer;
}

/* Reset-Button */
.sov-reset-btn {
  margin-top: 24px;
  width: 100%;
  padding: 11px 0;
  background: #e8e8e6;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #333;
  cursor: pointer;
  transition: background 0.2s ease;
}
.sov-reset-btn:hover { background: #ddd; }

/* ================================================================
   RECHTER CONTENT
================================================================ */
.sov-content {}

/* Überschrift + Vergleichs-Link */
.sov-content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.sov-content-head h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #111;
  margin: 0;
}
.sov-compare-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #555;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color 0.2s;
}
.sov-compare-link:hover { color: #111; }

/* ── Karten-Grid (3-spaltig) ── */
.sov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ================================================================
   EINZELNE MODELL-KARTE
================================================================ */
.sov-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(0,0,0,0.06);
}
.sov-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

/* Produktbild oben */
.sov-card__img-wrap {
  background: #fff;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.sov-card__img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.sov-card:hover .sov-card__img-wrap img {
  transform: scale(1.04);
}

/* Karten-Body */
.sov-card__body {
  padding: 20px 20px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Modellname */
.sov-card__name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
  margin: 0 0 4px;
  line-height: 1.1;
}

/* Preis / ab-Preis */
.sov-card__price {
  font-size: 12px;
  font-weight: 400;
  color: #666;
  margin: 0 0 14px;
}
.sov-card__price strong {
  font-weight: 600;
  color: #111;
}

/* Badges */
.sov-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 18px;
}
.sov-card__badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #333;
  background: #f0f0ee;
  border: 1px solid #e0e0de;
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}
.sov-card__badge--year {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* Technische Kennzahlen */
.sov-card__specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
  border-top: 1px solid #f0f0ee;
}
.sov-card__spec {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0ee;
}
.sov-card__spec-val {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111;
  line-height: 1;
  margin-bottom: 3px;
}
.sov-card__spec-label {
  font-size: 10px;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.02em;
}

/* Fußnote + Link */
.sov-card__footnote {
  font-size: 10px;
  color: #bbb;
  line-height: 1.5;
  margin-bottom: 12px;
}
.sov-card__techlink {
  font-size: 11px;
  font-weight: 500;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: block;
  margin-bottom: 20px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.sov-card__techlink:hover { opacity: 0.5; }

/* CTA-Button */
.sov-card__cta {
  display: block;
  width: 100%;
  padding: 15px 20px;
  background: #111;
  color: #fff;
  border: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease;
  margin-top: auto;
}
.sov-card__cta:hover { background: #8d0303; }

/* ── Karte die nicht bestellbar ist (gedimmt) ── */
.sov-card--unavailable .sov-card__img-wrap img {
  filter: grayscale(0.3) opacity(0.7);
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  .sov-layout {
    grid-template-columns: 190px 1fr;
    gap: 28px;
  }
  .sov-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .sov-layout {
    grid-template-columns: 1fr;
  }
  .sov-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
    align-items: start;
  }
  .sov-filter-list { margin-bottom: 0; }
  .sov-reset-btn { grid-column: 1 / -1; }
  .sov-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .sov-sidebar {
    grid-template-columns: 1fr;
  }
  .sov-grid {
    grid-template-columns: 1fr;
  }
  .sov-card__img-wrap { min-height: 140px; }
  .sov-card__img-wrap img { height: 130px; }
  .sov-card__name { font-size: 20px; }
}

/* ================================================================
   SEO-Intro-Sektion — GEO-optimierter Inhaltsblock
================================================================ */
.sov-seo-intro {
  background: #fff;
  border-top: 1px solid #e8e8e6;
  border-bottom: 1px solid #e8e8e6;
  padding: 52px 0;
  margin-bottom: 0;
}
.sov-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.sov-intro-text h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #111;
  margin: 0 0 16px;
  line-height: 1.3;
}
.sov-intro-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  margin: 0 0 14px;
}
.sov-intro-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e6;
}
.sov-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.sov-fact strong {
  font-size: 20px;
  font-weight: 700;
  color: #8d0303;
  letter-spacing: -0.02em;
}
.sov-fact span {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sov-intro-usps h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sov-intro-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sov-intro-list li {
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.sov-intro-list li i {
  color: #8d0303;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.sov-intro-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.sov-intro-tel {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
}
.sov-intro-tel:hover { color: #8d0303; }
.sov-intro-tel i { font-size: 13px; }

/* ================================================================
   FAQ-Sektion auf Sauna-Übersichtsseite
================================================================ */
.sov-faq-section {
  background: #f7f7f5;
  padding: 64px 0;
  border-top: 1px solid #e8e8e6;
}
.sov-faq-section h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  letter-spacing: -0.025em;
  color: #111;
  margin: 0 0 10px;
  text-align: center;
}
.sov-faq-intro {
  text-align: center;
  color: #666;
  font-size: 15px;
  margin: 0 0 40px;
}
.sov-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.sov-faq-item {
  background: #fff;
  border: 1px solid #e8e8e6;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.sov-faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.sov-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  list-style: none;
  gap: 12px;
  line-height: 1.4;
  -webkit-user-select: none;
  user-select: none;
}
.sov-faq-item summary::-webkit-details-marker { display: none; }
.sov-faq-item summary i {
  font-size: 11px;
  color: #999;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.sov-faq-item[open] summary i { transform: rotate(180deg); }
.sov-faq-item[open] summary { color: #8d0303; border-bottom: 1px solid #f0f0ee; }
.sov-faq-answer {
  padding: 16px 20px;
}
.sov-faq-answer p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin: 0;
}
.sov-faq-cta {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin: 0;
}
.sov-faq-cta a {
  color: #8d0303;
  font-weight: 600;
  text-decoration: none;
}
.sov-faq-cta a:hover { text-decoration: underline; }

/* Responsive SEO-Elemente */
@media (max-width: 900px) {
  .sov-intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .sov-intro-facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .sov-faq-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .sov-intro-facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .sov-intro-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================================================================
   FOOTER — schwarze Leiste (alle Übersichtsseiten)
================================================================ */
.detail-footer {
  background: #111;
  color: #fff;
  padding: 24px 0;
  margin-top: 0;
}
.detail-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.detail-footer .logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.detail-footer .logo .logo-word {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.detail-footer .logo .logo-sub {
  font-size: 9px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.detail-footer p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.detail-footer p a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.detail-footer p a:hover { color: #fff; }
.detail-footer-back {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.detail-footer-back:hover { color: #fff; }

@media (max-width: 700px) {
  .detail-footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
