:root{
  --wrap:1280px;
  --shopwrap:1520px;
  --ease:cubic-bezier(.22,.7,.2,1);

  --bg:#f5f6f8;
  --surface:#ffffff;
  --surface-2:#f1f3f6;
  --surface-3:#e8ebf0;

  --text:#171a20;
  --text-2:#525a66;
  --text-3:#7b8390;

  --line:#dce1e8;
  --line-2:#cfd6df;
  --line-soft:#edf1f5;

  --accent:#c62828;
  --accent-2:#e85a5a;
  --accent-soft:rgba(198,40,40,.08);

  --shadow-1:0 8px 24px rgba(20,22,28,.06);
  --shadow-2:0 16px 40px rgba(20,22,28,.10);
  --shadow-3:0 26px 60px rgba(20,22,28,.14);
}

*{
  box-sizing:border-box;
}

html{
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(198,40,40,.05), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  display:block;
  max-width:100%;
  height:auto;
}

.section{
  padding:0 0 42px;
}

.product-page-shell{
  padding-top:24px;
}

.product-wrap{
  width:calc(100% - 24px);
  max-width:1720px;
  margin:0 auto;
}

.product-layout{
  display:grid;
  grid-template-columns:minmax(420px, .95fr) minmax(480px, 1.05fr);
  gap:28px;
  align-items:start;
}

.product-gallery-card,
.product-buybox__inner,
.content-card,
.variant-table-wrap,
.related-card{
  background:linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border:1px solid #e3e8ef;
  border-radius:28px;
  box-shadow:
    0 10px 24px rgba(20,22,28,.04),
    0 20px 46px rgba(20,22,28,.05);
}

.product-gallery-card{
  overflow:hidden;
  padding:22px;
}

/* =========================
   GALERIE
========================= */

.product-gallery{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.product-gallery__stage{
  position:relative;
  z-index:0;
  isolation:isolate;
  overflow:hidden;
  border-radius:24px;
  background:
    radial-gradient(circle at top, rgba(255,255,255,.92) 0%, rgba(255,255,255,.2) 32%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, #fbfbfc 0%, #eceef1 100%);
  width:100%;
  aspect-ratio:6 / 7;
  min-height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.product-gallery__stage img{
  position:relative;
  z-index:1;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  transition:transform .35s var(--ease), opacity .2s ease;
  cursor:zoom-in;
}

.product-gallery__stage:hover img{
  transform:scale(1.015);
}

/* =========================
   GRÖSSEN-BADGE IM PRODUKTBILD
========================= */

.product-size-corner-badge{
  position:absolute;
  top:0;
  right:0;
  z-index:2;

  width:132px;
  height:132px;
  min-width:0;
  min-height:0;
  padding:0;
  margin:0;

  display:block;
  pointer-events:none;
  overflow:hidden;

  background:transparent;
  border:0;
  border-radius:0 24px 0 0;
  box-shadow:none;
  transform:none;
}

.product-size-corner-badge::before{
  content:"";
  position:absolute;
  top:0;
  right:0;

  width:0;
  height:0;

  border-top:132px solid #c62828;
  border-left:132px solid transparent;

  filter:none;
  box-shadow:none;
}

.product-size-corner-badge::after{
  content:none;
  display:none;
}

.product-size-corner-badge__inner{
  position:absolute;
  top:1px;
  right:-13px;
  z-index:3;

  width:118px;
  height:92px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;

  transform:rotate(45deg);
  transform-origin:center;

  color:#fff;
  text-align:center;
}

.product-size-corner-badge__label{
  display:block;
  transform:translateY(-5px);

  font-size:9px;
  line-height:1;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;

  color:rgba(255,255,255,.88);
  text-shadow:0 2px 7px rgba(0,0,0,.30);
}

.product-size-corner-badge__value{
  display:block;
  transform:translateY(-6px);

  font-size:35px;
  line-height:.85;
  font-weight:950;
  letter-spacing:-.08em;

  color:#fff;
  text-shadow:0 5px 13px rgba(0,0,0,.42);
}

.product-size-corner-badge.is-hidden{
  display:none !important;
}

.product-gallery__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border:1px solid rgba(255,255,255,.72);
  border-radius:999px;
  background:rgba(255,255,255,.88);
  color:#171a20;
  font-size:34px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:3;
  box-shadow:0 10px 24px rgba(20,22,28,.14);
  transition:
    transform .18s var(--ease),
    box-shadow .18s var(--ease),
    background .18s var(--ease);
}

.product-gallery__nav:hover{
  transform:translateY(-50%) scale(1.05);
  background:#fff;
  box-shadow:0 14px 28px rgba(20,22,28,.18);
}

.product-gallery__nav:active{
  transform:translateY(-50%) scale(.98);
}

.product-gallery__nav--prev{
  left:14px;
}

.product-gallery__nav--next{
  right:14px;
}

.product-gallery__thumbs{
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:12px;
}

.product-gallery__thumb{
  appearance:none;
  border:1px solid #e3e8ef;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  padding:0;
  cursor:pointer;
  aspect-ratio:1 / 1;
  min-width:0;
  transition:
    transform .22s var(--ease),
    border-color .22s var(--ease),
    box-shadow .22s var(--ease);
}

.product-gallery__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.product-gallery__thumb:hover{
  transform:translateY(-2px);
  border-color:#cfd6df;
  box-shadow:0 12px 24px rgba(20,22,28,.08);
}

.product-gallery__thumb.is-active{
  border-color:rgba(198,40,40,.45);
  box-shadow:0 12px 24px rgba(198,40,40,.12);
}

.product-gallery__empty{
  width:100%;
  height:100%;
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--text-3);
  font-size:15px;
  font-weight:700;
}

/* =========================
   BUYBOX
========================= */

.product-buybox{
  position:sticky;
  top:20px;
}

.product-buybox__inner{
  position:relative;
  overflow:visible;
  padding:28px;
  display:grid;
  gap:18px;
}

.product-topline{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.product-badge,
.product-availability-chip{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
}

.product-badge{
  background:#f2f5f9;
  border:1px solid #dde3eb;
  color:#49515d;
}

.product-availability-chip{
  background:rgba(17,120,65,.08);
  border:1px solid rgba(17,120,65,.18);
  color:#117841;
}

.product-title{
  margin:0;
  font-size:42px;
  line-height:1.03;
  letter-spacing:-.9px;
  color:#171a20;
}

.product-shortdesc{
  margin:0;
  font-size:16px;
  line-height:1.8;
  color:var(--text-2);
}

.product-price-panel{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:16px;
  align-items:center;
  padding:22px;
  border-radius:22px;
  background:linear-gradient(180deg, #fdfdfd 0%, #f5f7fa 100%);
  border:1px solid #e3e8ef;
}

.product-price-panel.has-discount{
  border-color:rgba(19,138,82,.18) !important;
  box-shadow:
    0 10px 24px rgba(20,22,28,.04),
    0 0 0 1px rgba(19,138,82,.06) inset !important;
}

.product-price-label{
  display:block;
  margin-bottom:8px;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#7b8390;
}

.product-price-line{
  display:flex;
  align-items:flex-end;
  flex-wrap:wrap;
  gap:12px;
  margin-top:6px;
}

.product-price-current{
  font-size:clamp(2.1rem, 4vw, 2.2rem);
  line-height:1;
  font-weight:900;
  letter-spacing:-0.045em;
  color:#138a52;
  transition:color .22s ease, transform .22s ease;
}

.product-price-current.is-discounted{
  color:#138a52 !important;
  text-shadow:0 10px 24px rgba(19,138,82,.12);
}

.product-price-old{
  display:none;
  align-items:center;
  font-size:1.12rem;
  line-height:1;
  font-weight:800;
  color:#c62828;
  text-decoration:line-through;
  text-decoration-thickness:2px;
  text-decoration-color:rgba(198,40,40,.75);
  text-underline-offset:3px;
  opacity:.95;
  transform:translateY(-2px);
}

.product-price-old.is-visible{
  display:inline-flex !important;
}

.product-price-range{
  margin-top:10px;
  font-size:13px;
  color:#7b8390;
}

.product-tax-note{
  margin-top:8px;
  font-size:13px;
  line-height:1.5;
  color:#6b7280;
}

.product-stock-box{
  min-width:180px;
  padding:14px 16px;
  border-radius:18px;
  background:#fff;
  border:1px solid #e3e8ef;
  display:grid;
  gap:4px;
  box-shadow:0 8px 18px rgba(20,22,28,.04);
}

.product-stock-box strong{
  font-size:14px;
  color:#171a20;
}

.product-stock-box span{
  font-size:13px;
  color:var(--text-2);
}

.product-stock-box.is-unavailable{
  border-color:rgba(198,40,40,.18);
  background:linear-gradient(180deg, #fff7f7 0%, #fff1f1 100%);
}

.product-stock-box.is-unavailable strong{
  color:#a32020;
}
.product-stock-box:not(.is-unavailable){
  border-color:rgba(17,120,65,.20);
  background:linear-gradient(180deg, #f3fff8 0%, #ebfff4 100%);
  box-shadow:
    0 8px 18px rgba(17,120,65,.07),
    inset 0 1px 0 rgba(255,255,255,.76);
}

.product-stock-box:not(.is-unavailable) strong{
  color:#117841;
}

.product-stock-box:not(.is-unavailable) span{
  color:#2f6f4f;
}
/* =========================
   RABATT / COUNTDOWN
========================= */

.product-discount-box{
  display:block;
  margin-top:16px;
}

.product-discount-box.is-hidden,
.product-discount-badge.is-hidden,
.product-discount-until.is-hidden,
.product-corner-sale.is-hidden{
  display:none !important;
}

.product-discount-until{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:12px;
  min-height:84px;
  padding:14px 16px;
  border-radius:20px;
  background:linear-gradient(180deg, #fffafa 0%, #fff1f1 100%);
  border:1px solid rgba(198,40,40,.12);
  box-shadow:
    0 8px 18px rgba(198,40,40,.07),
    inset 0 1px 0 rgba(255,255,255,.75);
}

.product-discount-head{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.product-discount-badge-inline{
  order:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, #dc3a3a 0%, #ad1e1e 100%);
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.03em;
  white-space:nowrap;
  box-shadow:
    0 6px 14px rgba(198,40,40,.14),
    inset 0 1px 0 rgba(255,255,255,.18);
  flex:0 0 auto;
}

.product-discount-until__label{
  order:2;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#9f1f1f;
  padding-left:4px;
}

.product-discount-countdown{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:10px;
}

.countdown-box{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:8px 6px;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(198,40,40,.10);
  box-shadow:0 6px 14px rgba(198,40,40,.06);
}

.countdown-box strong{
  font-size:22px;
  line-height:1;
  font-weight:900;
  color:#8f1f1f;
  font-variant-numeric:tabular-nums;
}

.countdown-box span{
  margin-top:5px;
  font-size:11px;
  font-weight:800;
  color:#a85a5a;
  text-transform:uppercase;
  letter-spacing:.06em;
}

/* =========================
   OPTIONEN
========================= */

.product-option-group{
  display:grid;
  gap:12px;
}

.product-option-group__title{
  margin:0;
  font-size:16px;
  color:#171a20;
  font-weight:700;
}

.product-option-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.option-pill{
  appearance:none;
  position:relative;
  min-height:44px;
  padding:0 14px;
  border:1px solid rgba(0,0,0,.18);
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(0,0,0,.08) 100%);
  color:#27313d;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
  opacity:1;
  transition:
    transform .22s var(--ease),
    box-shadow .22s var(--ease),
    border-color .22s var(--ease),
    background .22s var(--ease),
    color .22s var(--ease),
    opacity .22s var(--ease),
    filter .22s var(--ease);
}

.option-pill:hover{
  transform:translateY(-2px);
  border-color:rgba(0,0,0,.35);
  box-shadow:0 10px 20px rgba(0,0,0,.35);
}

.option-pill.is-active{
  background:linear-gradient(180deg, rgba(34,197,94,.18) 0%, rgba(22,163,74,.30) 100%);
  color:#0f6b3f;
  border-color:#16a34a;
  z-index:2;
  box-shadow:
    0 0 0 3px rgba(22,163,74,.95),
    0 0 0 6px rgba(22,163,74,.20),
    0 12px 24px rgba(20,22,28,.10);
}

.option-pill--color{
  padding-left:8px;
  padding-right:14px;
  gap:8px;
}

.option-pill__swatch{
  width:30px;
  height:30px;
  border-radius:50%;
  border:1px solid rgba(0,0,0,.16);
  flex:0 0 30px;
  box-shadow:
    0 2px 6px rgba(20,22,28,.12),
    inset 0 1px 0 rgba(255,255,255,.35);
}

.option-pill.is-unavailable,
.option-pill.is-disabled{
  position:relative;
  opacity:.65;
  border-color:rgba(198,40,40,.20);
  background:linear-gradient(180deg, rgba(239,68,68,.04) 0%, rgba(220,38,38,.07) 100%);
  color:#7b3b3b;
  cursor:not-allowed;
  box-shadow:none;
}

.option-pill{
  overflow:hidden;
}

.option-pill.is-unavailable::before,
.option-pill.is-disabled::before,
.option-pill.is-out-of-stock::before{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  top:50%;
  height:2px;
  background:rgba(17,24,39,.72);
  border-radius:999px;
  pointer-events:none;
  z-index:4;
  transform:translateY(-50%) rotate(-12deg);
  transform-origin:center;
}

.option-pill.is-unavailable::after,
.option-pill.is-disabled::after,
.option-pill.is-out-of-stock::after{
  content:none;
  display:none;
}

.option-pill.is-unavailable .option-pill__swatch,
.option-pill.is-disabled .option-pill__swatch,
.option-pill.is-out-of-stock .option-pill__swatch{
  opacity:.65;
  filter:grayscale(.3);
}

.option-pill.has-sale{
  padding-right:42px;
  border-color:rgba(212,167,44,.45);
  box-shadow:
    0 0 0 1px rgba(212,167,44,.16) inset,
    0 8px 18px rgba(212,167,44,.10);
}

.option-pill.has-sale:hover{
  border-color:rgba(212,167,44,.62);
  box-shadow:
    0 0 0 1px rgba(212,167,44,.22) inset,
    0 12px 24px rgba(212,167,44,.16);
}

.option-pill.has-sale.is-active{
  border-color:#16a34a;
  box-shadow:
    0 0 0 3px rgba(22,163,74,.95),
    0 0 0 6px rgba(22,163,74,.22),
    0 12px 24px rgba(20,22,28,.10);
}

.option-pill.has-sale::after{
  content:"%";
  position:absolute;
  right:8px;
  top:50%;
  transform:translateY(-50%);
  width:26px;
  height:24px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.48), rgba(255,255,255,0) 58%),
    linear-gradient(180deg, #f8df89 0%, #d7a92c 100%);
  border:1px solid rgba(130,90,0,.18);
  box-shadow:
    0 4px 10px rgba(212,167,44,.24),
    inset 0 1px 0 rgba(255,255,255,.52);
  font-size:11px;
  line-height:1;
  font-weight:900;
  color:#4a3200;
  pointer-events:none;
}

/* =========================
   META / AKTIONEN
========================= */



.product-actions{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  gap:12px;
  align-items:center;
}

.product-qty-box{
  display:flex;
  align-items:center;
  min-height:52px;
  border:1px solid #dde3eb;
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 8px 18px rgba(20,22,28,.04);
}

.qty-btn{
  width:44px;
  height:52px;
  border:0;
  background:transparent;
  font-size:24px;
  color:#27313d;
  cursor:pointer;
}

#product-qty{
  width:64px;
  height:52px;
  border:0;
  outline:none;
  text-align:center;
  font-size:15px;
  font-weight:800;
  color:#171a20;
  -moz-appearance:textfield;
  appearance:textfield;
}

#product-qty::-webkit-outer-spin-button,
#product-qty::-webkit-inner-spin-button{
  -webkit-appearance:none;
  margin:0;
}

.product-buy-btn{
  border:1px solid rgba(20,140,90,.25);
  background:linear-gradient(180deg, rgba(34,197,94,.14) 0%, rgba(22,163,74,.22) 100%);
  color:#116a3f;
  font-size:17px;
  font-weight:800;
  min-height:58px;
  padding:0 26px;
  border-radius:16px;
  backdrop-filter:blur(6px);
  box-shadow:0 6px 16px rgba(20,22,28,.08);
  transition:
    transform .18s var(--ease),
    box-shadow .18s var(--ease),
    border-color .18s var(--ease),
    background .18s var(--ease),
    color .18s var(--ease);
}

.product-buy-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(20,140,90,.45);
  background:linear-gradient(180deg, rgba(34,197,94,.22) 0%, rgba(22,163,74,.32) 100%);
  box-shadow:0 10px 24px rgba(20,22,28,.12);
}

.product-buy-btn:active{
  transform:translateY(0);
  box-shadow:0 4px 10px rgba(20,22,28,.08);
}

.product-secondary-btn{
  border:1px solid #d9dfe8;
  background:linear-gradient(180deg, #ffffff 0%, #eef2f6 100%);
  color:#1d2430;
  box-shadow:0 10px 18px rgba(20,22,28,.05);
}

.product-buy-btn:hover,
.product-secondary-btn:hover{
  transform:translateY(-2px);
}

.product-cart-feedback{
  display:none;
  margin-top:12px;
  padding:14px 16px;
  border-radius:16px;
  font-size:14px;
  font-weight:700;
  line-height:1.6;
  box-shadow:0 8px 18px rgba(20,22,28,.04);
}

.product-cart-feedback.is-visible{
  display:block;
}

.product-cart-feedback.is-success{
  background:linear-gradient(180deg, #f2fff8 0%, #ebfff4 100%);
  border:1px solid rgba(25,135,84,.20);
  color:#146c43;
}

.product-cart-feedback.is-error{
  background:linear-gradient(180deg, #fff5f5 0%, #fef0f0 100%);
  border:1px solid rgba(198,40,40,.18);
  color:#8f1d1d;
}

.product-unavailable-box{
  display:grid;
  gap:6px;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(198,40,40,.16);
  background:linear-gradient(180deg, #fff8f8 0%, #fff1f1 100%);
  box-shadow:0 8px 18px rgba(198,40,40,.06);
}

.product-unavailable-box strong{
  font-size:15px;
  color:#a32020;
}

.product-unavailable-box span{
  font-size:13px;
  color:#8b4a4a;
}

/* =========================
   TRUST
========================= */

.product-trust-strip{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
}

.trust-mini-card{
  padding:14px;
  border-radius:18px;
  border:1px solid #e3e8ef;
  background:#fff;
  box-shadow:0 8px 18px rgba(20,22,28,.04);
  display:grid;
  gap:4px;
}

.trust-mini-card strong{
  font-size:14px;
  color:#171a20;
}

.trust-mini-card span{
  font-size:12px;
  color:var(--text-2);
}

/* =========================
   CONTENT
========================= */

.product-description-full{
  width:100%;
}

.product-description-full .content-card__body{
  padding:22px 28px 28px;
}

.content-card{
  overflow:hidden;
}

.content-card__head{
  padding:22px 24px 0;
}

.content-card__head h2{
  margin:0;
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.5px;
  color:#171a20;
}

.content-card__body{
  padding:18px 24px 24px;
}

.product-description{
  font-size:15px;
  line-height:1.9;
  color:var(--text-2);
  max-width:none;
}

.product-description > section{
  padding:0 0 26px;
  margin:0 0 26px;
  border-bottom:1px solid var(--line-soft);
}

.product-description > section:last-child{
  padding-bottom:0;
  margin-bottom:0;
  border-bottom:0;
}

.product-description > section > h2,
.product-description > section > h3{
  margin:0 0 10px;
  color:var(--text);
  font-size:clamp(1.05rem, 1.6vw, 1.25rem);
  line-height:1.3;
  letter-spacing:-.015em;
}

.product-description > section > p{
  margin:0;
}

.product-description > section > p + p{
  margin-top:14px;
}

.product-description ul,
.product-description ol{
  margin:14px 0 0;
  padding-left:24px;
}

.product-description li + li{
  margin-top:6px;
}

.details-list{
  display:grid;
  gap:12px;
}

.details-list__row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  padding-bottom:12px;
  border-bottom:1px solid #edf1f5;
}

.details-list__row strong{
  font-size:14px;
  color:#171a20;
}

.details-list__row span{
  font-size:14px;
  color:var(--text-2);
  text-align:right;
}

.details-list__empty{
  font-size:14px;
  color:var(--text-2);
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
}

.section-head h2{
  margin:0;
  font-size:30px;
  line-height:1.12;
  letter-spacing:-.6px;
  color:#20252c;
}

.section-head p{
  margin:8px 0 0;
  font-size:15px;
  color:var(--text-2);
  line-height:1.7;
}

/* =========================
   VARIANT TABLE
========================= */

.variant-table-wrap{
  overflow:hidden;
}

.variant-table{
  width:100%;
  border-collapse:collapse;
}

.variant-table th,
.variant-table td{
  padding:16px 18px;
  text-align:left;
  border-bottom:1px solid #edf1f5;
  font-size:14px;
}

.variant-table th{
  background:#f7f9fc;
  color:#171a20;
  font-weight:800;
}

.variant-table td{
  color:var(--text-2);
}

.variant-row{
  cursor:pointer;
  transition:background .18s ease;
}

.variant-row:hover{
  background:rgba(20,22,28,.025);
}

.variant-row.is-active{
  background:rgba(198,40,40,.06);
}

/* =========================
   RELATED PRODUCTS
========================= */

.related-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}

.related-card{
  overflow:hidden;
  border-radius:24px;
  background:linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border:1px solid #e3e8ef;
  box-shadow:
    0 10px 24px rgba(20,22,28,.04),
    0 20px 46px rgba(20,22,28,.05);
  transition:
    transform .28s var(--ease),
    box-shadow .28s var(--ease),
    border-color .28s var(--ease);
  min-width:0;
  display:flex;
  flex-direction:column;
}

.related-card:hover{
  transform:translateY(-6px);
  border-color:#cfd6df;
  box-shadow:
    0 18px 36px rgba(20,22,28,.08),
    0 30px 62px rgba(20,22,28,.08);
}

.related-card__image{
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio:6 / 7;
  min-height:220px;
  padding:12px;
  overflow:hidden;
  background:
    radial-gradient(circle at top, rgba(255,255,255,.92) 0%, rgba(255,255,255,.24) 34%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, #fbfbfc 0%, #eceef1 100%);
  border-bottom:1px solid #edf1f5;
}

.related-card__image img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  transition:transform .35s var(--ease);
}

.related-card:hover .related-card__image img{
  transform:scale(1.04);
}

.related-card__body{
  padding:18px;
  display:grid;
  gap:14px;
  flex:1 1 auto;
}

.related-card__body h3{
  margin:0;
  font-size:19px;
  line-height:1.22;
  letter-spacing:-.3px;
  color:#1f242b;
}

.related-card__body h3 a{
  color:inherit;
  text-decoration:none;
}

.related-card__body p{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:var(--text-2);
  min-height:48px;
}

.related-card__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:auto;
}

.related-card__bottom strong{
  font-size:24px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.6px;
  color:#1a1f26;
}

.related-card__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:12px;
  border:0;
  background:linear-gradient(180deg, #5a5e66 0%, #31353c 100%);
  color:#fff;
  font-size:14px;
  font-weight:800;
  box-shadow:0 12px 22px rgba(45,49,56,.14);
  white-space:nowrap;
}

.related-card__image.is-empty{
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle at top, rgba(255,255,255,.9) 0%, rgba(255,255,255,.24) 34%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, #fbfbfc, #eceef1);
}

.related-card__image-empty{
  color:var(--text-3);
  font-size:14px;
  font-weight:700;
}

/* =========================
   LIGHTBOX
========================= */

.image-lightbox{
  position:fixed;
  inset:0;
  background:rgba(10,12,16,.88);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
  z-index:9999;
}

.image-lightbox.is-open{
  opacity:1;
  pointer-events:auto;
}

.image-lightbox img{
  max-width:92vw;
  max-height:92vh;
  border-radius:14px;
  box-shadow:0 40px 120px rgba(0,0,0,.6);
  animation:zoomIn .28s ease;
}

@keyframes zoomIn{
  from{
    transform:scale(.85);
    opacity:.4;
  }
  to{
    transform:scale(1);
    opacity:1;
  }
}

.lightbox-close{
  position:absolute;
  top:28px;
  right:36px;
  font-size:28px;
  background:none;
  border:0;
  color:#fff;
  cursor:pointer;
  opacity:.8;
}

.lightbox-close:hover{
  opacity:1;
}

/* =========================
   CORNER SALE
========================= */

.product-corner-sale{
  position:absolute;
  top:-18px;
  right:-14px;
  z-index:8;
  min-width:118px;
  min-height:118px;
  padding:16px 14px 14px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  border-radius:26px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, #e53935 0%, #b71c1c 100%);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:
    0 18px 34px rgba(198,40,40,.32),
    0 8px 18px rgba(20,22,28,.14),
    inset 0 1px 0 rgba(255,255,255,.28);
  transform:rotate(8deg);
  transition:
    transform .22s var(--ease),
    box-shadow .22s var(--ease),
    opacity .22s ease;
}

.product-corner-sale:hover{
  transform:rotate(6deg) translateY(-2px);
  box-shadow:
    0 24px 44px rgba(198,40,40,.36),
    0 12px 24px rgba(20,22,28,.16),
    inset 0 1px 0 rgba(255,255,255,.3);
}

.product-corner-sale__label{
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  opacity:.92;
}

.product-corner-sale__value{
  font-size:30px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.04em;
  text-shadow:0 3px 10px rgba(0,0,0,.18);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1300px){
  .related-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .related-card__image{
    height:280px;
  }
}

@media (max-width: 1100px){
  .product-layout{
    grid-template-columns:1fr;
  }

  .product-buybox{
    position:static;
  }

  .product-title{
    font-size:34px;
  }

  .related-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 760px){
  .product-wrap{
    width:min(100% - 18px, var(--shopwrap));
  }

  .product-gallery-card{
    padding:14px;
    border-radius:22px;
  }

  .product-gallery__stage{
    border-radius:18px;
    min-height:220px;
  }

  .product-size-corner-badge{
    width:106px;
    height:106px;
    border-radius:0 18px 0 0;
  }

  .product-size-corner-badge::before{
    border-top-width:106px;
    border-left-width:106px;
  }

  .product-size-corner-badge__inner{
    top:0;
    right:-10px;
    width:94px;
    height:72px;
    gap:4px;
    transform:rotate(45deg);
  }

  .product-size-corner-badge__label{
    transform:translateY(-4px);
    font-size:7px;
  }

  .product-size-corner-badge__value{
    transform:translateY(-5px);
    font-size:28px;
  }

  .product-gallery__nav{
    width:42px;
    height:42px;
    font-size:28px;
  }

  .product-gallery__thumbs{
    display:flex;
    gap:10px;
    overflow-x:auto;
    padding-bottom:4px;
    scrollbar-width:thin;
  }

  .product-gallery__thumb{
    flex:0 0 78px;
    width:78px;
  }

  .product-buybox__inner{
    padding:20px 18px;
    border-radius:22px;
  }

  .product-title{
    font-size:28px;
  }

  .product-price-panel{
    grid-template-columns:1fr;
  }

  .product-price-current{
    font-size:32px;
  }



  .product-actions{
    grid-template-columns:1fr;
  }

  .product-trust-strip{
    grid-template-columns:1fr;
  }

  .variant-table th,
  .variant-table td{
    padding:12px 10px;
    font-size:13px;
  }

  .product-discount-countdown{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .product-discount-head{
    align-items:flex-start;
  }

  .product-corner-sale{
    top:-12px;
    right:-8px;
    min-width:96px;
    min-height:96px;
    border-radius:22px;
    padding:12px 10px 10px;
  }

  .product-corner-sale__label{
    font-size:10px;
  }

  .product-corner-sale__value{
    font-size:24px;
  }

  .product-gallery__empty{
    min-height:320px;
  }

  .related-grid{
    grid-template-columns:1fr;
  }

  .related-card__image{
    min-height:180px;
    padding:10px;
  }
}

@media (max-width: 430px){
  .product-title{
    font-size:24px;
  }
  .product-size-corner-badge{
    width:94px;
    height:94px;
  }

  .product-size-corner-badge::before{
    border-top-width:94px;
    border-left-width:94px;
  }

  .product-size-corner-badge__inner{
    top:-1px;
    right:-9px;
    width:84px;
    height:64px;
  }

  .product-size-corner-badge__label{
    font-size:6px;
  }

  .product-size-corner-badge__value{
    font-size:25px;
  }
  .product-shortdesc{
    font-size:15px;
  }

  .product-price-current{
    font-size:28px;
  }

  .content-card__head{
    padding:18px 18px 0;
  }

  .content-card__body{
    padding:14px 18px 18px;
  }

  .content-card__head h2{
    font-size:24px;
  }

  .product-corner-sale{
    min-width:84px;
    min-height:84px;
    top:-8px;
    right:-4px;
    transform:rotate(6deg);
  }

  .product-corner-sale__value{
    font-size:20px;
  }
}


body.is-modal-open{
  overflow:hidden;
}

.cart-success-modal{
  position:fixed;
  inset:0;
  z-index:10020;
  opacity:0;
  pointer-events:none;
  transition:opacity .22s ease;
}

.cart-success-modal.is-open{
  opacity:1;
  pointer-events:auto;
}

.cart-success-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,18,24,.52);
  backdrop-filter:blur(4px);
}

.cart-success-modal__dialog{
  position:relative;
  width:min(680px, calc(100% - 24px));
  margin:clamp(24px, 8vh, 72px) auto 0;
  background:linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border:1px solid #e3e8ef;
  border-radius:28px;
  box-shadow:
    0 18px 40px rgba(20,22,28,.16),
    0 34px 80px rgba(20,22,28,.18);
  padding:24px;
  animation:cartSuccessPop .22s var(--ease);
}

@keyframes cartSuccessPop{
  from{
    transform:translateY(12px) scale(.985);
    opacity:.7;
  }
  to{
    transform:translateY(0) scale(1);
    opacity:1;
  }
}

.cart-success-modal__close{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border:1px solid #dbe2ea;
  border-radius:999px;
  background:#fff;
  color:#1b2330;
  font-size:18px;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(20,22,28,.06);
}

.cart-success-modal__head{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding-right:44px;
  margin-bottom:20px;
}

.cart-success-modal__icon{
  width:54px;
  height:54px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg, rgba(34,197,94,.16) 0%, rgba(22,163,74,.24) 100%);
  border:1px solid rgba(20,140,90,.22);
  color:#0f8a4c;
  font-size:26px;
  font-weight:900;
  flex:0 0 54px;
}

.cart-success-modal__head h3{
  margin:2px 0 6px;
  font-size:26px;
  line-height:1.1;
  letter-spacing:-.04em;
  color:#171a20;
}

.cart-success-modal__head p{
  margin:0;
  font-size:14px;
  line-height:1.65;
  color:var(--text-2);
}

.cart-success-product{
  display:grid;
  grid-template-columns:140px minmax(0,1fr);
  gap:18px;
  padding:18px;
  border-radius:22px;
  background:linear-gradient(180deg, #fcfcfd 0%, #f4f7fa 100%);
  border:1px solid #e7ecf2;
}

.cart-success-product__image-wrap{
  height:140px;
  border-radius:18px;
  overflow:hidden;
  background:
    radial-gradient(circle at top, rgba(255,255,255,.92) 0%, rgba(255,255,255,.24) 34%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, #fbfbfc 0%, #eceef1 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
}

.cart-success-product__image{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
}

.cart-success-product__content{
  display:grid;
  gap:12px;
  min-width:0;
}

.cart-success-product__name{
  font-size:20px;
  line-height:1.2;
  color:#161b22;
}

.cart-success-product__options{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.cart-success-product__option{
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid #dfe6ee;
  font-size:12px;
  color:#55606d;
  font-weight:700;
}

.cart-success-product__option strong{
  color:#171a20;
}

.cart-success-product__meta{
  display:grid;
  gap:8px;
}

.cart-success-product__meta-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  font-size:14px;
  color:var(--text-2);
}

.cart-success-product__meta-row strong{
  color:#171a20;
  font-size:15px;
}

.cart-success-product__meta-row--total strong{
  color:#118a52;
  font-size:18px;
  font-weight:900;
}

.cart-success-modal__footerinfo{
  margin-top:16px;
  font-size:13px;
  color:#6f7782;
  font-weight:700;
}

.cart-success-modal__actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:18px;
}

.cart-success-modal__btn{
  min-height:52px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  font-weight:800;
  text-decoration:none;
  transition:
    transform .18s var(--ease),
    box-shadow .18s var(--ease),
    border-color .18s var(--ease),
    background .18s var(--ease);
}

.cart-success-modal__btn--ghost{
  border:1px solid #d9dfe8;
  background:linear-gradient(180deg, #ffffff 0%, #eef2f6 100%);
  color:#1d2430;
  box-shadow:0 10px 18px rgba(20,22,28,.05);
  cursor:pointer;
}

.cart-success-modal__btn--primary{
  border:1px solid rgba(20,140,90,.25);
  background:linear-gradient(180deg, rgba(34,197,94,.14) 0%, rgba(22,163,74,.22) 100%);
  color:#116a3f;
  box-shadow:0 10px 20px rgba(20,22,28,.08);
}

.cart-success-modal__btn:hover{
  transform:translateY(-1px);
}

@media (max-width: 700px){
  .cart-success-modal__dialog{
    width:min(100% - 16px, 680px);
    padding:18px;
    border-radius:22px;
  }

  .cart-success-modal__head h3{
    font-size:22px;
  }

  .cart-success-product{
    grid-template-columns:1fr;
  }

  .cart-success-product__image-wrap{
    height:220px;
  }

  .cart-success-modal__actions{
    grid-template-columns:1fr;
  }
}


.product-meta-stack{
  display:grid;
  gap:10px;
}

.product-meta-duo{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px;
}

.product-meta-line{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid #e3e8ef;
  background:#fff;
  box-shadow:0 8px 18px rgba(20,22,28,.04);
}

.product-meta-line--sku{
  width:100%;
}

.product-meta-line__label{
  flex:0 0 auto;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#494a4c;
  line-height:1.5;
}

.product-meta-line strong{
  flex:1 1 auto;
  min-width:0;
  font-size:15px;
  line-height:1.5;
  color:#171a20;
  text-align:right;
  overflow-wrap:anywhere;
  word-break:break-word;
}

@media (max-width: 640px){
  .product-meta-duo{
    grid-template-columns:1fr;
  }
}

/* =========================
   REVIEWS / PRODUKTBEWERTUNGEN
========================= */

.shop-reviews-card{
  background:linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border:1px solid #e3e8ef;
  border-radius:28px;
  box-shadow:
    0 10px 24px rgba(20,22,28,.04),
    0 20px 46px rgba(20,22,28,.05);
  overflow:hidden;
}

.shop-reviews-card__head{
  padding:26px 28px 10px;
}

.shop-reviews-card__eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(198,40,40,.08);
  border:1px solid rgba(198,40,40,.12);
  color:#a32020;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.shop-reviews-card__head h2{
  margin:12px 0 10px;
  font-size:30px;
  line-height:1.1;
  letter-spacing:-.6px;
  color:#171a20;
}

.shop-reviews-card__head p{
  margin:0;
  font-size:15px;
  line-height:1.75;
  color:var(--text-2);
}

.shop-reviews-summary{
  display:grid;
  grid-template-columns:minmax(280px, 360px) minmax(0,1fr);
  gap:22px;
  padding:18px 28px 10px;
}

.shop-reviews-summary__main{
  padding:22px;
  border-radius:24px;
  background:
    radial-gradient(circle at top left, rgba(198,40,40,.06), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fa 100%);
  border:1px solid #e5eaf0;
  box-shadow:0 10px 22px rgba(20,22,28,.04);
}

.shop-reviews-summary__score{
  font-size:64px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.06em;
  color:#171a20;
  margin-bottom:14px;
}

.shop-reviews-summary__meta{
  display:grid;
  gap:10px;
}

.shop-reviews-stars{
  display:inline-flex;
  align-items:center;
  font-size:24px;
  letter-spacing:.08em;
  color:#e0b54c;
  text-shadow:0 4px 10px rgba(224,181,76,.16);
}

.shop-reviews-stars__filled{
  display:inline-block;
}

.shop-reviews-summary__text{
  display:grid;
  gap:4px;
}

.shop-reviews-summary__text strong{
  font-size:18px;
  line-height:1.3;
  color:#171a20;
}

.shop-reviews-summary__text span{
  font-size:14px;
  line-height:1.6;
  color:var(--text-2);
}

.shop-reviews-summary__bars{
  display:grid;
  gap:10px;
  padding:18px 20px;
  border-radius:24px;
  background:linear-gradient(180deg, #fcfcfd 0%, #f4f7fa 100%);
  border:1px solid #e5eaf0;
  box-shadow:0 10px 22px rgba(20,22,28,.04);
}

.shop-rating-bar{
  display:grid;
  grid-template-columns:88px minmax(0,1fr) 44px;
  align-items:center;
  gap:12px;
}

.shop-rating-bar span{
  font-size:13px;
  font-weight:700;
  color:#434c58;
}

.shop-rating-bar strong{
  font-size:13px;
  font-weight:800;
  color:#171a20;
  text-align:right;
}

.shop-rating-bar__track{
  position:relative;
  height:12px;
  border-radius:999px;
  background:#e9edf2;
  overflow:hidden;
}

.shop-rating-bar__fill{
  position:absolute;
  inset:0 auto 0 0;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg, #f1c75f 0%, #d9a93a 100%);
  box-shadow:0 4px 10px rgba(217,169,58,.18);
}

.shop-review-formbox{
  margin:18px 28px 28px;
  padding:22px;
  border-radius:24px;
  background:
    radial-gradient(circle at top left, rgba(198,40,40,.04), transparent 45%),
    linear-gradient(180deg, #fcfcfd 0%, #f4f7fa 100%);
  border:1px solid #e5eaf0;
  box-shadow:0 10px 22px rgba(20,22,28,.04);
}

.shop-review-formbox__head{
  margin-bottom:18px;
}

.shop-review-formbox__head h3{
  margin:0 0 6px;
  font-size:24px;
  line-height:1.15;
  letter-spacing:-.4px;
  color:#171a20;
}

.shop-review-formbox__head p{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:var(--text-2);
}

.shop-review-form{
  display:grid;
  gap:14px;
}

.shop-review-form__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}

.shop-field{
  display:grid;
  gap:7px;
}

.shop-field label{
  font-size:13px;
  font-weight:800;
  color:#303946;
  letter-spacing:.02em;
}

.shop-field input,
.shop-field select,
.shop-field textarea{
  width:100%;
  min-width:0;
  border-radius:16px;
  border:1px solid #d9e0e8;
  background:#fff;
  color:#171a20;
  font-size:15px;
  line-height:1.5;
  padding:14px 16px;
  transition:
    border-color .16s ease,
    box-shadow .16s ease,
    background .16s ease;
  box-shadow:0 6px 14px rgba(20,22,28,.03);
}

.shop-field textarea{
  resize:vertical;
  min-height:140px;
}

.shop-field input::placeholder,
.shop-field textarea::placeholder{
  color:#8a93a0;
}

.shop-field input:focus,
.shop-field select:focus,
.shop-field textarea:focus{
  outline:0;
  border-color:rgba(198,40,40,.42);
  box-shadow:
    0 0 0 4px rgba(198,40,40,.10),
    0 10px 20px rgba(20,22,28,.05);
}

.shop-review-form__actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:4px;
}

.shop-review-submit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 22px;
  border-radius:16px;
  border:1px solid rgba(20,140,90,.25);
  background:linear-gradient(180deg, rgba(34,197,94,.14) 0%, rgba(22,163,74,.22) 100%);
  color:#116a3f;
  font-size:15px;
  font-weight:800;
  box-shadow:0 10px 20px rgba(20,22,28,.08);
  cursor:pointer;
  transition:
    transform .18s var(--ease),
    box-shadow .18s var(--ease),
    border-color .18s var(--ease),
    background .18s var(--ease);
}

.shop-review-submit:hover{
  transform:translateY(-1px);
  border-color:rgba(20,140,90,.42);
  background:linear-gradient(180deg, rgba(34,197,94,.22) 0%, rgba(22,163,74,.32) 100%);
  box-shadow:0 14px 26px rgba(20,22,28,.10);
}

.shop-review-message{
  font-size:14px;
  font-weight:700;
  color:#146c43;
  min-height:20px;
}

@media (max-width: 980px){
  .shop-reviews-summary{
    grid-template-columns:1fr;
  }
}

@media (max-width: 760px){
  .shop-reviews-card__head{
    padding:20px 18px 8px;
  }

  .shop-reviews-card__head h2{
    font-size:25px;
  }

  .shop-reviews-summary{
    padding:16px 18px 8px;
  }

  .shop-reviews-summary__main,
  .shop-reviews-summary__bars{
    padding:18px;
    border-radius:20px;
  }

  .shop-reviews-summary__score{
    font-size:50px;
  }

  .shop-rating-bar{
    grid-template-columns:72px minmax(0,1fr) 40px;
    gap:10px;
  }

  .shop-review-formbox{
    margin:16px 18px 18px;
    padding:18px;
    border-radius:20px;
  }

  .shop-review-formbox__head h3{
    font-size:21px;
  }

  .shop-review-form__grid{
    grid-template-columns:1fr;
  }

  .shop-review-form__actions{
    flex-direction:column;
    align-items:stretch;
  }

  .shop-review-submit{
    width:100%;
  }
}

@media (max-width: 430px){
  .shop-reviews-card__head h2{
    font-size:22px;
  }

  .shop-reviews-summary__score{
    font-size:42px;
  }

  .shop-reviews-stars{
    font-size:20px;
  }
}

.sr-only{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0, 0, 0, 0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

.product-badge--adult{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:
    radial-gradient(circle at top left, rgba(198,40,40,.14), transparent 60%),
    linear-gradient(180deg, #fff6f6 0%, #fff0f0 100%);
  border:1px solid rgba(198,40,40,.18);
  color:#9f1f1f;
  box-shadow:
    0 8px 18px rgba(198,40,40,.08),
    inset 0 1px 0 rgba(255,255,255,.65);
}

.product-badge__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:28px;
  height:28px;
  padding:0 8px;
  border-radius:999px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, #dc3a3a 0%, #ad1e1e 100%);
  color:#fff;
  font-size:11px;
  font-weight:900;
  letter-spacing:.04em;
  box-shadow:
    0 6px 14px rgba(198,40,40,.16),
    inset 0 1px 0 rgba(255,255,255,.20);
}

.product-age-notice{
  display:grid;
  grid-template-columns:72px minmax(0,1fr);
  gap:16px;
  align-items:start;
  padding:18px;
  border-radius:22px;
  background:
    radial-gradient(circle at top left, rgba(198,40,40,.08), transparent 48%),
    linear-gradient(180deg, #fffafa 0%, #fff2f2 100%);
  border:1px solid rgba(198,40,40,.14);
  box-shadow:
    0 10px 22px rgba(198,40,40,.07),
    inset 0 1px 0 rgba(255,255,255,.72);
}

.product-age-notice__icon{
  width:72px;
  height:72px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, #e53935 0%, #b71c1c 100%);
  color:#fff;
  font-size:24px;
  font-weight:900;
  letter-spacing:-.04em;
  box-shadow:
    0 14px 26px rgba(198,40,40,.18),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.product-age-notice__content{
  display:grid;
  gap:6px;
  min-width:0;
}

.product-age-notice__content strong{
  font-size:18px;
  line-height:1.2;
  color:#8f1f1f;
  letter-spacing:-.02em;
}

.product-age-notice__content p{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:#7b3b3b;
}

.product-age-inline-note{
  margin-top:12px;
  padding:12px 14px;
  border-radius:16px;
  background:linear-gradient(180deg, #fff8f8 0%, #fff1f1 100%);
  border:1px solid rgba(198,40,40,.14);
  color:#8f1f1f;
  font-size:13px;
  line-height:1.6;
  font-weight:700;
  box-shadow:0 8px 18px rgba(198,40,40,.05);
}

@media (max-width: 760px){
  .product-age-notice{
    grid-template-columns:1fr;
    gap:12px;
    padding:16px;
    border-radius:20px;
  }

  .product-age-notice__icon{
    width:60px;
    height:60px;
    border-radius:18px;
    font-size:20px;
  }

  .product-age-notice__content strong{
    font-size:16px;
  }

  .product-age-notice__content p{
    font-size:13px;
  }
}

.product-loyalty-inline{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:12px;
  align-items:center;
  margin-top:14px;
  padding:14px 16px;
  border-radius:18px;
  background:
    radial-gradient(circle at top left, rgba(212,167,44,.10), transparent 52%),
    linear-gradient(180deg, #fffdf8 0%, #fbf6ea 100%);
  border:1px solid rgba(212,167,44,.18);
  box-shadow:
    0 8px 18px rgba(212,167,44,.08),
    inset 0 1px 0 rgba(255,255,255,.82);
}

.product-loyalty-inline__icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.48) 0%, rgba(255,255,255,0) 45%),
    linear-gradient(180deg, #f8df89 0%, #d7a92c 100%);
  border:1px solid rgba(130,90,0,.16);
  font-size:20px;
  box-shadow:
    0 6px 14px rgba(212,167,44,.14),
    inset 0 1px 0 rgba(255,255,255,.62);
}

.product-loyalty-inline__content{
  display:grid;
  gap:3px;
  min-width:0;
}

.product-loyalty-inline__label{
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#8a6a16;
}

.product-loyalty-inline__value{
  font-size:15px;
  line-height:1.45;
  font-weight:800;
  color:#5f4706;
  letter-spacing:-.01em;
  overflow-wrap:anywhere;
  word-break:break-word;
}

@media (max-width: 760px){
  .product-loyalty-inline{
    gap:10px;
    padding:12px 14px;
    border-radius:16px;
  }

  .product-loyalty-inline__icon{
    width:38px;
    height:38px;
    border-radius:12px;
    font-size:18px;
  }

  .product-loyalty-inline__value{
    font-size:14px;
  }
}

/* =========================================================
   Aufpreis / Abzug direkt in Varianten-Pills
   + = dezentes Rot, - = dezentes Grün, 0 wird per JS versteckt
========================================================= */

.option-pill{
  gap:8px;
}

.option-pill > span:not(.option-pill__swatch):not(.option-pill__price-delta){
  min-width:0;
}

.option-pill__price-delta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;

  min-height:21px;
  padding:0 8px;

  border-radius:999px;
  font-size:11px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.01em;
  white-space:nowrap;

  background:rgba(82,90,102,.075);
  border:1px solid rgba(82,90,102,.11);
  color:#606977;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.74);
}

.option-pill__price-delta[hidden]{
  display:none !important;
}

/* Aufpreis: kostet mehr */
.option-pill.has-price-plus .option-pill__price-delta{
  background:rgba(198,40,40,.075);
  border-color:rgba(198,40,40,.16);
  color:#a32020;
}

/* Abzug: günstiger */
.option-pill.has-price-minus .option-pill__price-delta{
  background:rgba(19,138,82,.08);
  border-color:rgba(19,138,82,.16);
  color:#117841;
}

/* Aktiver Button: Badge ruhig halten */
.option-pill.is-active .option-pill__price-delta{
  background:rgba(255,255,255,.86);
  border-color:rgba(255,255,255,.82);
  box-shadow:
    0 4px 10px rgba(20,22,28,.08),
    inset 0 1px 0 rgba(255,255,255,.90);
}

.option-pill.is-active.has-price-plus .option-pill__price-delta{
  color:#8f1f1f;
}

.option-pill.is-active.has-price-minus .option-pill__price-delta{
  color:#0f6b3f;
}

/* Deaktiviert / nicht möglich */
.option-pill.is-unavailable .option-pill__price-delta,
.option-pill.is-disabled .option-pill__price-delta,
.option-pill.is-out-of-stock .option-pill__price-delta{
  opacity:.55;
  filter:grayscale(.25);
}

/* Falls Rabatt-% ebenfalls im Button sitzt */
.option-pill.has-sale.has-price-delta{
  padding-right:42px;
}

@media (max-width:760px){
  .option-pill{
    gap:7px;
  }

  .option-pill__price-delta{
    min-height:19px;
    padding:0 7px;
    font-size:10px;
  }
}

/* Farben fix */
.option-pill--color.option-pill--color-compact{
  min-width:44px;
  width:auto;
  padding-left:8px;
  padding-right:8px;
  gap:0;
}

.option-pill--color.option-pill--color-compact .option-pill__swatch{
  margin:0;
}

.option-pill--color.option-pill--color-compact .option-pill__label{
  display:none;
  margin-left:8px;
  white-space:nowrap;
}

/* Schwarz bleibt immer beschriftet */
.option-pill--color.option-pill--color-compact.option-pill--color-black{
  gap:8px;
  padding-right:14px;
}

.option-pill--color.option-pill--color-compact.option-pill--color-black .option-pill__label{
  display:inline;
}

/* Ausgewählte Farbe zeigt ihren Namen */
.option-pill--color.option-pill--color-compact.is-active{
  gap:8px;
  padding-right:14px;
}

.option-pill--color.option-pill--color-compact.is-active .option-pill__label{
  display:inline;
}

/* Falls Preisbadge am Button hängt, nicht kaputt machen */
.option-pill--color.option-pill--color-compact .option-pill__price-delta{
  margin-left:6px;
}

/* Auf Handy noch kompakter */
@media (max-width:760px){
  .option-pill--color.option-pill--color-compact{
    min-width:40px;
    padding-left:7px;
    padding-right:7px;
  }

  .option-pill--color.option-pill--color-compact .option-pill__swatch{
    width:28px;
    height:28px;
    flex-basis:28px;
  }

  .option-pill--color.option-pill--color-compact.is-active,
  .option-pill--color.option-pill--color-compact.option-pill--color-black{
    padding-right:11px;
  }
}



/* =========================================================
   PRODUKTDETAIL: GEBRAUCHT-BADGE IN DER BILD-ECKE
   nutzt das vorhandene Größen-Ecken-Badge
   ========================================================= */

.product-size-corner-badge--used::before{
  border-top-color:#c62828;
}

.product-size-corner-badge--used .product-size-corner-badge__inner{
  top:4px;
  right:-18px;
  width:126px;
  height:96px;
  gap:6px;
}

.product-size-corner-badge--used .product-size-corner-badge__label{
  transform:translateY(-4px);

  font-size:8px;
  letter-spacing:.16em;
  color:rgba(255,255,255,.88);
}

.product-size-corner-badge--used .product-size-corner-badge__value{
  transform:translateY(-5px);

  font-size:18px;
  line-height:.95;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:#ffffff;
}

@media (max-width: 760px){
  .product-size-corner-badge--used .product-size-corner-badge__inner{
    top:2px;
    right:-15px;
    width:104px;
    height:76px;
  }

  .product-size-corner-badge--used .product-size-corner-badge__label{
    font-size:6px;
  }

  .product-size-corner-badge--used .product-size-corner-badge__value{
    font-size:14px;
  }
}

@media (max-width: 430px){
  .product-size-corner-badge--used .product-size-corner-badge__inner{
    top:1px;
    right:-13px;
    width:92px;
    height:66px;
  }

  .product-size-corner-badge--used .product-size-corner-badge__value{
    font-size:12px;
  }
}