/* ================================================================
   apart wellness — Sauna Einzelseite (Porsche KPI-Stil)
   Layout: linke KPI-Spalte + rechtes freigestelltes Produktbild
================================================================ */

/* ── Seiten-Hintergrund ── */
body.sdp-page {
  background: #fff;
}

/* ── Breadcrumb ── */
.sdp-breadcrumb {
  padding: 100px 0 0;
  background: #fff;
}
.sdp-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #aaa;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.sdp-breadcrumb a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}
.sdp-breadcrumb a:hover { color: #111; }
.sdp-breadcrumb span { color: #ccc; }

/* ── Seitenüberschrift ── */
.sdp-header {
  padding: 28px 0 0;
  background: #fff;
}
.sdp-header .container {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}
.sdp-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 8px;
}
.sdp-model-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #111;
  margin: 0;
  line-height: 1.0;
}
.sdp-badges {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.sdp-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #333;
  background: #f0f0ee;
  border: 1px solid #e0e0de;
  border-radius: 999px;
  padding: 4px 12px;
}
.sdp-badge--dark {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* ── Haupt-Layout: KPI-Spalte + Bild ── */
.sdp-main {
  padding: 56px 0 0;
  background: #fff;
}
.sdp-split {
  display: grid;
  grid-template-columns: 42% 1fr;
  align-items: center;
  gap: 0;
  min-height: 520px;
}

/* ════════════════════════════════════════
   LINKE SPALTE: KPI-Zahlen
════════════════════════════════════════ */
.sdp-kpis {
  padding: 0 48px 80px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Einzelner KPI-Block */
.sdp-kpi {
  padding: 32px 0 28px;
  border-bottom: 1px solid #eee;
}
.sdp-kpi:first-child {
  padding-top: 0;
}

/* Hauptzahl extrem groß, thin */
.sdp-kpi-val {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
  margin-bottom: 8px;
}
.sdp-kpi-num {
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 200;
  letter-spacing: -0.04em;
  color: #111;
  line-height: 0.9;
  font-family: var(--font-head, 'Quicksand', -apple-system, sans-serif);
}
.sdp-kpi-unit {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #111;
  line-height: 1;
  padding-bottom: 4px;
}
/* Slash / Trennzeichen zwischen zwei Werten (z.B. 3 kW / 10,5 kW) */
.sdp-kpi-slash {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 200;
  color: #ccc;
  margin: 0 6px;
  padding-bottom: 4px;
}

/* Label-Text darunter */
.sdp-kpi-label {
  font-size: 11px;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* "Alle technischen Details" Button */
.sdp-tech-btn {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: #f0f0ee;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
  width: fit-content;
}
.sdp-tech-btn:hover {
  background: #e6e6e4;
  border-color: #ccc;
}

/* ════════════════════════════════════════
   RECHTE SPALTE: Freigestelltes Produktbild
════════════════════════════════════════ */
.sdp-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 460px;
  position: relative;
}
.sdp-visual img {
  width: 100%;
  max-width: 680px;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 32px 48px rgba(0,0,0,0.12));
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.sdp-visual:hover img {
  transform: scale(1.02) translateY(-6px);
}

/* ── Technische Daten Tabelle (darunter) ── */
.sdp-specs-section {
  padding: 0 0 80px;
  background: #fff;
}
.sdp-specs-section .container {
  border-top: 1px solid #eee;
  padding-top: 56px;
}
.sdp-specs-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 28px;
}
.sdp-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}
.sdp-spec-item {
  padding: 22px 24px;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.sdp-spec-item:nth-child(3n) { border-right: none; }
.sdp-spec-item:nth-last-child(-n+3) { border-bottom: none; }
.sdp-spec-key {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 6px;
}
.sdp-spec-val {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #111;
}

/* ── CTA-Leiste am Boden ── */
.sdp-cta-bar {
  background: #111;
  padding: 36px 0;
}
.sdp-cta-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.sdp-cta-bar-text {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 300;
}
.sdp-cta-bar-text strong {
  color: #fff;
  font-weight: 600;
  display: block;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.sdp-cta-price {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.sdp-cta-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.sdp-cta-primary {
  padding: 14px 28px;
  background: #fff;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.sdp-cta-primary:hover {
  background: #8d0303;
  color: #fff;
}
.sdp-cta-ghost {
  padding: 14px 28px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}
.sdp-cta-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* ── Highlight-Badge (Bestseller / Exklusiv) ── */
.sdp-badge--highlight {
  background: #8d0303;
  color: #fff;
  border-color: #8d0303;
}

/* ── Modell-Navigation (Cross-Links zu anderen Saunen) ── */
.sdp-model-nav {
  padding: 64px 0;
  background: #f7f7f5;
  border-top: 1px solid #ebebeb;
}
.sdp-model-nav-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 24px;
}
.sdp-model-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.sdp-model-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.sdp-model-nav-item:hover {
  border-color: #111;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.sdp-model-nav-item:hover .sdp-model-nav-arrow {
  color: #8d0303;
  transform: translateX(3px);
}
.sdp-model-nav-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #111;
  line-height: 1;
}
.sdp-model-nav-sub {
  font-size: 11px;
  color: #999;
  font-weight: 400;
  margin-top: 3px;
  display: block;
}
.sdp-model-nav-name,
.sdp-model-nav-sub {
  display: block;
}
.sdp-model-nav-item > span:not(.sdp-model-nav-arrow) {
  flex: 1;
}
.sdp-model-nav-arrow {
  color: #ccc;
  font-size: 14px;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.25s ease;
}

/* ── Detail-Footer ── */
.detail-footer {
  background: #111;
  padding: 28px 0;
}
.detail-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.detail-footer .logo {
  text-decoration: none;
}
.detail-footer .logo .logo-word {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.detail-footer .logo .logo-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
}
.detail-footer p {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  flex: 1;
  line-height: 1.6;
}
.detail-footer p a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.detail-footer p a:hover {
  color: #fff;
}
.detail-footer-back {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.detail-footer-back:hover {
  color: #fff;
}

/* ── Aktives Mega-Menu-Item ── */
.dd-model-item--active {
  background: rgba(0,0,0,0.04);
  border-left: 3px solid #8d0303;
  padding-left: 13px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .sdp-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .sdp-visual {
    min-height: 320px;
    order: -1;
    padding: 0 0 32px;
  }
  .sdp-kpis { padding: 0 0 48px; }
  .sdp-kpi-num { font-size: 72px; }
  .sdp-specs-grid { grid-template-columns: repeat(2, 1fr); }
  .sdp-spec-item:nth-child(3n) { border-right: 1px solid #eee; }
  .sdp-spec-item:nth-child(2n) { border-right: none; }
  .sdp-spec-item:nth-last-child(-n+2) { border-bottom: none; }
  .sdp-spec-item:nth-last-child(3) { border-bottom: 1px solid #eee; }
  .sdp-model-nav-grid { grid-template-columns: 1fr; }
  .detail-footer-inner { justify-content: center; text-align: center; }
  .detail-footer p { order: 3; flex-basis: 100%; }
}
@media (max-width: 640px) {
  .sdp-kpi-num  { font-size: 56px; }
  .sdp-kpi-unit { font-size: 22px; }
  .sdp-kpi-slash { font-size: 28px; }
  .sdp-specs-grid { grid-template-columns: 1fr; }
  .sdp-spec-item { border-right: none !important; }
  .sdp-spec-item:nth-last-child(-n+1) { border-bottom: none; }
  .sdp-spec-item:nth-last-child(2)    { border-bottom: 1px solid #eee; }
  .sdp-cta-bar .container { flex-direction: column; align-items: flex-start; }
  .sdp-cta-btns { flex-direction: column; width: 100%; }
  .sdp-cta-primary, .sdp-cta-ghost { text-align: center; }
  .sdp-model-title { font-size: 32px; }
  .sdp-model-nav { padding: 40px 0; }
  .detail-footer-back { display: none; }
}
