:root{
  /* WICHTIG: --bg NICHT überschreiben (kommt aus /css/styles.css wie bei index/rma) */
  /* --bg:#ffffff; */

  --text:#0f172a;
  --muted:#475569;
  --muted2:#64748b;
  --line:#e2e8f0;
  --soft:#f8fafc;

  --brand:#0f2740;
  --accent:#2563eb;     /* seriöses Blau */
  --accent2:#0ea5e9;

  --ok:#16a34a;         /* Compliance green */
  --okbg:#ecfdf3;

  --shadow: 0 10px 26px rgba(15,23,42,.08);
  --shadow2: 0 18px 44px rgba(15,23,42,.10);

  --r:16px;
  --max:1180px;
}

*{box-sizing:border-box}

/* FIX: kein height:100% -> verhindert den harten Übergang beim Scrollen.
   Hintergrund auf html (Canvas), body bleibt transparent. */
html{
  min-height:100%;
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(30,91,214,.15), transparent 55%),
    radial-gradient(900px 500px at 95% 5%, rgba(245,130,32,.12), transparent 60%),
    var(--bg, #f6f8fb);
}
body{
  min-height:100%;
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background: transparent;
  line-height:1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{color:inherit}

.pv-wrap{max-width:var(--max); margin:0 auto; padding:18px 16px 60px}

/* Topbar */
.pv-topbar{
  max-width:var(--max);
  margin:14px auto 0 auto;
  padding:12px 16px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  box-shadow:var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.pv-brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  min-width:0;
}
.pv-logo{height:22px; width:auto; display:block}
.pv-brandtext{
  font-weight:900;
  color:var(--brand);
  letter-spacing:-.2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Language */
.pv-lang{
  display:flex;
  gap:6px;
  background:var(--soft);
  border:1px solid var(--line);
  padding:4px;
  border-radius:999px;
}
.pv-langbtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:30px;
  min-width:44px;
  padding:0 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  color:var(--muted);
  text-decoration:none;
}
.pv-langbtn.is-active{
  background:#fff;
  border:1px solid var(--line);
  box-shadow: 0 2px 10px rgba(15,23,42,.06);
  color:var(--text);
}

/* Panel */
.pv-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow2);
  padding: 18px;
}

/* Layout */
.pv-layout{
  display:grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 18px;
  align-items:start;
}
@media (max-width: 980px){
  .pv-layout{grid-template-columns:1fr}
}

/* Media */
.pv-media{
  border:1px solid var(--line);
  border-radius: 18px;
  overflow:hidden;
  background:var(--soft);
}
.pv-media-main{
  background:var(--soft);
  border-bottom:1px solid var(--line);
}
.pv-media-main img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio: 16/10;
  object-fit: contain;
  cursor:pointer;
}
.pv-media-empty{
  padding:40px 16px;
  text-align:center;
  color:var(--muted2);
}

.pv-thumbs{
  padding:12px;
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:10px;
  background:var(--soft);
}
@media (max-width: 980px){ .pv-thumbs{grid-template-columns: repeat(5, 1fr)} }
@media (max-width: 560px){ .pv-thumbs{grid-template-columns: repeat(4, 1fr)} }

/* Beschreibung unter den Bildern (linke Spalte) */
.pv-media-desc{
  border-top:1px solid var(--line);
  background: var(--soft);
  padding: 12px 14px 14px 14px;
}

.pv-media-desc .pv-desc{
  margin:0;
  max-width:none;
}

/* Rich-Text Styling */
.pv-rich p{
  margin: 0 0 10px 0;
  font-size:14px;
  color: var(--text);
}
.pv-rich p:last-child{margin-bottom:0;}
.pv-rich ul, .pv-rich ol{
  margin: 8px 0 10px 18px;
  padding: 0;
  font-size:14px;
  color: var(--text);
}
.pv-rich li{margin:4px 0;}
.pv-rich a{
  text-decoration: underline;
  text-underline-offset: 2px;
}


.pv-thumb{
  border:1px solid var(--line);
  background:#fff;
  border-radius: 14px;
  overflow:hidden;
  padding:0;
  cursor:pointer;
  box-shadow: 0 2px 10px rgba(15,23,42,.05);
  transition: transform .12s ease, border-color .12s ease;
}
.pv-thumb:hover{transform: translateY(-1px)}
.pv-thumb.is-active{
  border-color: color-mix(in srgb, var(--orange-500) 55%, transparent);
}

.pv-thumb img{
  width:100%;
  height:100%;
  object-fit: scale-down;
  display:block;
  aspect-ratio: 4/3;
}

/* Info */
.pv-info{padding: 2px 2px}
.pv-h1{
  margin:0;
  font-size: clamp(24px, 2.3vw, 34px);
  letter-spacing:-.35px;
  line-height:1.18;
}
.pv-sub{
  margin:8px 0 0 0;
  color:var(--muted);
  font-size:14px;
}

/* Breadcrumb (Taxonomie-Pfad) – Produktansicht zeigt den vollen Tree */
.pv-breadcrumb{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin: 0 0 10px 0;
  font-size: 12px;
  font-weight: 900;
  color: var(--muted);
}
.pv-breadcrumb .pv-bc-link{
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 900;
}
.pv-breadcrumb .pv-bc-sep{
  color: var(--muted2);
  font-weight: 900;
}
.pv-breadcrumb .pv-bc-item{
  color: var(--muted);
  font-weight: 900;
}
.pv-breadcrumb .pv-bc-item.is-current{
  color: var(--text);
}


/* Top cards: SKU/Brand */
.pv-topcards{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width: 560px){ .pv-topcards{grid-template-columns:1fr} }

.pv-mini{
  border:1px solid var(--line);
  border-radius: 16px;
  background:#fff;
  box-shadow: 0 2px 10px rgba(15,23,42,.04);
  padding: 12px 14px;
}
.pv-mini-label{
  font-size:12px;
  color:var(--muted2);
  font-weight:800;
  margin-bottom:6px;
}
.pv-mini-value{
  font-weight:950;
  letter-spacing:-.2px;
  color:var(--brand);
  font-size:14px;
}
.pv-mini-sub{
  margin-top:6px;
  font-size:12px;
  color:var(--muted);
}

/* Price card — Tokama Look (neutral + orange accent line) */
.pv-pricecard{
  margin-top: 12px;
  position: relative;

  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow2);

  padding: 14px 14px 16px;
  overflow: hidden;
}

/* Orange Accent-Leiste oben wie bei deinen Panels */
.pv-pricecard::before{
  content:"";
  position:absolute;
  inset: -1px -1px auto -1px;
  height: 5px;
  background: linear-gradient(90deg, #8220f5, var(--orange-600));
}


.pv-price-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.pv-price{
  font-weight: 950;
  font-size: 28px;
  letter-spacing: -.25px;
  color: var(--text);
}

.pv-price-meta{
  margin-top:4px;
  color:var(--muted);
  font-size:12px;
  font-weight:700;
}
.pv-price-chips{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.pv-chip{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;

  border: 1px solid rgba(230,237,247,.90);
  background: rgba(246,248,251,.55);

  color: rgba(23,50,85,.78);
  font-weight:800;
  white-space:nowrap;
}

.pv-chip-strong{
  border: 1px solid rgba(245,130,32,.28);
  background: rgba(245,130,32,.12);
  color: var(--orange-600);
}

.pv-price-bottom{
  margin-top: 10px;
  color:var(--muted);
  font-size:13px;
}
.pv-price-bottom strong{color:var(--text)}
.pv-sep{margin:0 6px; color:var(--muted2)}

/* Description */
.pv-desc{
  margin: 14px 0 0 0;
  color: var(--text);
  font-size: 14px;
  max-width: 70ch;
}

/* Actions */
.pv-actions{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Mobil: Buttons NICHT nebeneinander, sondern volle Breite untereinander */
@media (max-width: 560px){
  .pv-actions{
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
  }
  .pv-actions .pv-btn{
    width:100%;
  }
}

.pv-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 14px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:900;
  font-size:14px;
  text-decoration:none;
  box-shadow: 0 2px 10px rgba(15,23,42,.05);
  transition: transform .12s ease, box-shadow .12s ease;
}
.pv-btn:hover{transform: translateY(-1px); box-shadow: var(--shadow)}
.pv-btn-primary{
  border: none;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #1a1209;

  box-shadow: 0 12px 32px rgba(245,130,32,.30);
}
.pv-btn-primary:hover{
  filter: brightness(1.03);
}


.pv-btn-ghost{
  background: var(--soft);
}

/* Compliance (Zertifikate) - neutral wie die anderen Cards */
.pv-compliance{
  margin-top: 16px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 2px 10px rgba(15,23,42,.04);
}

.pv-compliance-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.pv-compliance-title{
  font-weight: 950;
  color: var(--text);
  letter-spacing: -.2px;
}

.pv-compliance-sub{
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.pv-badges{
  margin-top: 10px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.pv-badge{
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
  font-weight: 900;
}

.pv-compliance-note{
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

/* Lower */
.pv-lower{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 980px){ .pv-lower{grid-template-columns:1fr} }

.pv-card{
  border:1px solid var(--line);
  border-radius: 18px;
  background:#fff;
  box-shadow: 0 2px 10px rgba(15,23,42,.04);
  padding: 14px;
}
.pv-h2{
  margin:0 0 10px 0;
  font-size: 14px;
  font-weight:950;
  color: var(--text);
  letter-spacing:-.1px;
}

.pv-table{
  width:100%;
  border-collapse: collapse;
  border:1px solid var(--line);
  border-radius: 14px;
  overflow:hidden;
}
.pv-table th, .pv-table td{
  text-align:left;
  padding:10px 10px;
  border-bottom:1px solid var(--line);
  font-size: 13px;
  vertical-align: top;
}
.pv-table tr:last-child th, .pv-table tr:last-child td{border-bottom:none}
.pv-table th{
  width: 44%;
  color: var(--muted2);
  font-weight:900;
  background: var(--soft);
}

/* === Mobile-Optimierung: NUR Technische Daten stapeln (Staffelpreise bleiben horizontal) === */
@media (max-width: 680px){

  /* Technische Daten: jede Zeile als "Card" untereinander statt 2-Spalten-Layout */
  .pv-table tr{
    display:block;
    border-bottom:1px solid var(--line);
  }

  .pv-table tr:last-child{
    border-bottom:none;
  }

  /* Technische Daten: th + td full width untereinander */
  .pv-table th,
  .pv-table td{
    display:block;
    width:100%;
    border-bottom:none;
    padding:10px 12px;
  }

  /* Key-Zeile optisch wie Label */
  .pv-table th{
    background:var(--soft);
    padding-bottom:6px;
  }

  /* Value-Zeile darunter, lange Werte sauber umbrechen */
  .pv-table td{
    padding-top:0;
    overflow-wrap:anywhere;
    word-break:break-word;
  }

  /* Staffelpreise: explizit als Tabelle behalten (horizontal) */
  .pv-tier-table{ display:table; width:100%; }
  .pv-tier-table tr{ display:table-row; }
  .pv-tier-table th,
  .pv-tier-table td{
    display:table-cell;
    width:auto;
    padding:8px 10px;
  }

  /* Optional: schmalere Kopfspalte auf Mobile */
  .pv-tier-table th{ width:52%; }
}


/* Docs */
.pv-docs{
  display:grid;
  gap:10px;
}
.pv-doc{
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: var(--soft);
  text-decoration:none;
  transition: transform .12s ease;
}
.pv-doc:hover{transform: translateY(-1px)}
.pv-doc-title{font-weight:950; color: var(--text)}
.pv-doc-sub{font-size:12px; color: var(--muted)}

.pv-footlinks{
  margin-top: 12px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.pv-footlinks a{
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight:700;
}

/* Footer */
.pv-footer{
  margin-top: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:12px;
}
.pv-footerlinks{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.pv-footer a{
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Lightbox */
.pv-lb{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
  background: rgba(15,23,42,.55);
  z-index: 9999;
}
.pv-lb.is-open{display:flex}
.pv-lb-box{
  width: min(1100px, 100%);
  background:#fff;
  border:1px solid var(--line);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow2);
}
.pv-lb-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 10px 12px;
  border-bottom:1px solid var(--line);
  background: var(--soft);
}
.pv-lb-title{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  color: var(--muted);
  font-size: 12px;
}
.pv-lb-title strong{color: var(--text)}
.pv-lb-count{color: var(--muted2)}
.pv-lb-close{
  -webkit-appearance: none;
  appearance: none;

  /* Quadratisch erzwingen */
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  padding: 0;

  /* Zentrierung des "X" */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;

  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;

  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}

.pv-lb-main{
  position:relative;
  height: min(72vh, 760px);
  background:#fff;
}
.pv-lb-main img{
  width:100%;
  height:100%;
  object-fit: contain;
}

.pv-lb-copyright{
  position:absolute;
  right:10px;
  bottom:10px;
  max-width: calc(100% - 20px);
  display:none;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.62);
  color: rgba(255,255,255,.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -.1px;
  pointer-events:none;
  backdrop-filter: blur(4px);
}
.pv-lb-copyright.is-visible{display:inline-flex}

.pv-lb-nav{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  pointer-events:none;
  padding: 0 10px;
}
.pv-lb-btn{
  pointer-events:auto;
  appearance:none;
  border:1px solid var(--line);
  background:#fff;
  width:44px;
  height:44px;
  border-radius: 14px;
  cursor:pointer;
  font-weight:900;
  box-shadow: 0 10px 26px rgba(15,23,42,.12);
}


/* ===== Ergänzungen: Varianten / Staffelpreise / Dokument-Meta ===== */

.pv-tier{
  margin-top: 12px;
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}
.pv-tier-title{
  font-weight: 950;
  color: var(--text);
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: -.1px;
}
.pv-tier-table{
  width:100%;
  border-collapse: collapse;
  border:1px solid var(--line);
  border-radius: 14px;
  overflow:hidden;
}
.pv-tier-table th, .pv-tier-table td{
  text-align:left;
  padding:8px 10px;
  border-bottom:1px solid var(--line);
  font-size: 13px;
  vertical-align: top;
}
.pv-tier-table tr:last-child th, .pv-tier-table tr:last-child td{border-bottom:none}
.pv-tier-table th{
  width: 44%;
  color: var(--muted2);
  font-weight:900;
  background: var(--soft);
}

.pv-variants{
  margin: 10px 0 12px 0;
}
.pv-variants-title{
  font-weight: 950;
  color: var(--text);
  margin: 0 0 10px 0;
  font-size: 13px;
  letter-spacing: -.1px;
}
.pv-table-variants thead th{
  background: var(--soft);
  color: var(--muted2);
  font-weight: 900;
  font-size: 12px;
}
.pv-table-variants thead th, .pv-table-variants thead td{border-bottom:1px solid var(--line)}

.pv-doc-meta{
  margin-top: 6px;
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.pv-doc-meta span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  font-weight:800;
  color: var(--muted);
  border: 1px solid var(--line);
  background: #fff;
  padding: 6px 8px;
  border-radius: 999px;
}

.pv-comp-details{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.pv-comp-details-title{
  font-weight: 950;
  color: var(--text);
  font-size: 13px;
  margin-bottom: 6px;
}
.pv-comp-details-body{
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  display:grid;
  gap:4px;
}


/* =========================
   Related Products (Kompatibilität & Zubehör) — kompakt / dezent
   ========================= */

.pv-related{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}

.pv-related-title{
  margin: 0 0 6px 0;
  font-weight: 950;
  font-size: 12px;
  color: var(--muted2);
  letter-spacing: -.1px;
  display: none;
}

.pv-related-group{
  margin-top: 8px;
}

.pv-related-group-title{
  margin: 0 0 6px 0;
  font-weight: 900;
  font-size: 11px;
  color: var(--muted2);
}

.pv-related-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

/* Card: kompakter, ohne "großes Bild" */
.pv-rel-item{
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 10px;

  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;

  background: rgba(246,248,251,.55);
  text-decoration: none;
  color: inherit;

  /* dezent: kein starkes Shadow / kein "float" */
  box-shadow: none;
  transform: none;
  transition: background .12s ease, border-color .12s ease;
}
.pv-rel-item:hover{
  background: #fff;
  border-color: color-mix(in srgb, var(--line) 70%, #000 0%);
}

/* Thumbnail strikt klein halten (gegen Oversize-Rendering) */
.pv-related .pv-rel-thumb{
  width: 44px !important;
  height: 44px !important;
  flex: 0 0 44px !important;

  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
}
.pv-related .pv-rel-thumb img{
  width: 100% !important;
  height: 100% !important;
  max-width: 44px !important;
  max-height: 44px !important;
  object-fit: contain;
  display: block;
  background: #fff;
}
.pv-rel-thumb-ph{
  width: 100%;
  height: 100%;
  background: var(--soft);
}

.pv-rel-body{
  min-width: 0;
}

.pv-rel-title{
  font-weight: 950;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pv-rel-sub{
  margin-top: 3px;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pv-rel-sub .pv-rel-sep{ opacity: .45; }

.pv-rel-item.is-inactive{ opacity: .65; }

.pv-rel-inactive{ font-weight: 950; }

.pv-rel-price{
  font-weight: 950;
  font-size: 12px;
  white-space: nowrap;
  margin-left: 6px;
  color: var(--text);
}


/* =========================
   Quick-Contact – etwas größer (besser sichtbar), trotzdem kompakt
   ========================= */

.pv-panel.pv-panel-qc{
  position: relative;
  padding: 12px 18px !important;   /* etwas größer */
  margin: 0 0 18px 0;              /* sauberer Abstand nach unten */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(15,23,42,.08);
}

/* Akzentlinie oben */
.pv-panel.pv-panel-qc::before{
  content:"";
  position:absolute;
  inset: -1px -1px auto -1px;
  height: 4px; /* minimal kräftiger */
  /*background: linear-gradient(90deg, #8220f5, var(--orange-600)); */
}

/* globales section-padding neutralisieren */
.pv-qc{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;

  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
}

.pv-qc-left{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

/* Avatar etwas größer */
.pv-qc-avatar{
  width: 40px;
  height: 40px;
  border-radius: 7px;
  border: 1px solid var(--line);
  background: var(--soft);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 40px;
  position: relative;
}

.pv-qc-avatar img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.pv-qc-avatar.is-fallback img{ display:none; }
.pv-qc-initials{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
  color: var(--brand);
  letter-spacing:-.2px;
  font-size: 13px;
}

.pv-qc-text{min-width:0;}
.pv-qc-title{
  font-weight: 950;
  letter-spacing: -.2px;
  color: var(--text);
  line-height: 1.15;
  font-size: 14px;
}

.pv-qc-sub{
  margin-top: 1px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
}

/* Button etwas größer */
.pv-qc-btn{
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(245,130,32,.24);
}

@media (max-width: 560px){
  .pv-panel.pv-panel-qc{
    padding: 12px 14px !important;
    margin: 0 0 16px 0;
  }
  .pv-qc{
    flex-direction: column;
    align-items: stretch;
  }
  .pv-qc-btn{ width:100%; }
}

