:root {
  --bg: #eef1f5;
  --bg2: #ffffff;
  --surface: #ffffff;
  --text: #15171c;
  --muted: #5c6470;
  --dim: #8a93a0;
  --line: rgba(21, 23, 28, .1);
  --stage-bg: #f5f5f7;
  --accent: #e06b2f;
  --accent-deep: #b84f1c;
  --ok: #1f7a3a;
  --danger: #c41e2a;
  --radius: 18px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Source Serif 4", Georgia, serif;
  --touch: 44px;
  --shadow: 0 10px 32px rgba(21, 23, 28, .07);
}

* { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
}
body.has-sticky-cta {
  padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
}
a { color: inherit; text-decoration: none }
button, input, select { font: inherit }
img { max-width: 100%; display: block }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.wrap { width: min(1120px, calc(100% - 1.5rem)); margin: 0 auto }

.trustbar {
  background: var(--bg2);
  color: var(--muted);
  text-align: center;
  font-size: .78rem;
  padding: .45rem .75rem;
  border-bottom: 1px solid var(--line);
  letter-spacing: .01em;
}
.trustbar.buy-journey {
  font-size: .7rem;
  line-height: 1.35;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(238,241,245,.86);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  gap: 1rem;
}
.logo {
  min-height: var(--touch);
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  display: block;
  height: 28px;
  width: auto;
}
.footer .logo-img { height: 26px }
.nav-links { display: flex; gap: 1.25rem; font-size: .9rem; color: var(--muted) }
.nav-links a {
  color: inherit;
  min-height: var(--touch);
  display: inline-flex;
  align-items: center;
}
.nav-links a:hover { color: var(--text) }
.nav-r { display: flex; align-items: center; gap: .5rem }
.cart-btn {
  position: relative;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  min-width: var(--touch);
  min-height: var(--touch);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cart-n {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--accent);
  color: #fff;
  font-size: .65rem;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-n.show { display: flex }
.burger {
  display: none;
  background: none;
  border: 0;
  width: var(--touch);
  height: var(--touch);
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0 10px;
}
.burger span { display: block; height: 2px; background: var(--text) }

/* —— Apple-style buy page —— */
.buy {
  background: #fff;
  padding: 1.25rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
}
.buy-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.buy-gallery { order: 0 }
.buy-config { order: 1 }
.buy-stage,
.pdp-visual-wrap {
  position: relative;
  width: 100%;
  min-height: clamp(300px, 78vw, 400px);
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--c, #e06b2f) 18%, transparent), transparent 62%),
    var(--stage-bg, #f5f5f7);
  border: 1px solid var(--line);
  transition: background .45s ease;
  overflow: hidden;
  --stage-scale: 1;
}
.buy-stage img,
#heroImg,
.pdp-img {
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .14));
  animation: heroFloat 6s ease-in-out infinite;
  transition: opacity .2s ease, transform .35s ease;
  transform: scale(var(--stage-scale, 1));
  transform-origin: center center;
}
.pdp-img {
  padding: .35rem;
}
/* Apple finish plates in product cards only */
.product-img-wrap.finish-pad img,
img.finish-pad.product-img {
  animation: none;
  transform: scale(1.65);
}
.buy-stage-video {
  width: min(96%, 420px);
  max-height: 90%;
  border-radius: 14px;
  background: #000;
}
.buy-stage-badge {
  position: absolute;
  top: .85rem;
  left: .85rem;
  z-index: 2;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  pointer-events: none;
}
.buy-thumbs {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}
.buy-thumbs button {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--stage-bg, #f5f5f7);
  padding: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .15s, transform .12s;
}
.buy-thumbs button:hover { transform: translateY(-1px) }
.buy-thumbs button.active { border-color: #15171c }
.buy-thumbs img { width: 100%; height: 100%; object-fit: contain; object-position: center }
.pdp-thumbs img { width: 100%; height: 100%; object-fit: contain; object-position: center }
.buy-thumbs .thumb-play,
.pdp-thumbs .thumb-play {
  position: absolute;
  inset: auto 4px 4px auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(21, 23, 28, .82);
  color: #fff;
  font-size: 9px;
  display: grid;
  place-items: center;
  line-height: 1;
}

.buy h1,
.buy-config h1 {
  margin-top: 0;
  font-size: clamp(1.7rem, 5.5vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.buy-verb { color: var(--muted); font-weight: 500 }
.buy-from {
  margin-top: .55rem;
  color: var(--muted);
  font-size: .95rem;
}
.buy-from strong { color: var(--text); font-weight: 600 }
.buy-dealer {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: .82rem;
}
.buy-facts a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.buy-step { margin-top: 1.6rem; padding-top: 1.25rem; border-top: 1px solid var(--line) }
.step-title {
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -.015em;
  margin-bottom: .85rem;
  line-height: 1.3;
}
.step-title strong { font-weight: 700; color: var(--text) }
.step-title span { color: var(--muted) }

.color-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
}
.color-card {
  display: flex;
  align-items: center;
  gap: .7rem;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .85rem 1rem;
  cursor: pointer;
  min-height: var(--touch);
  transition: border-color .15s, background .15s, transform .12s;
  color: var(--text);
  font-weight: 500;
}
.color-card:hover { transform: translateY(-1px); border-color: rgba(0,0,0,.18) }
.color-card.active {
  border-color: #15171c;
  background: #f7f8fa;
  box-shadow: inset 0 0 0 1px #15171c;
}
.color-card i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sw, #888);
  border: 1px solid rgba(0,0,0,.15);
  flex-shrink: 0;
}

.storage-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
}
.storage-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .95rem 1rem;
  cursor: pointer;
  min-height: var(--touch);
  color: var(--text);
  text-decoration: none;
  transition: border-color .15s, background .15s, transform .12s;
}
.storage-card:hover { transform: translateY(-1px); border-color: rgba(0,0,0,.18) }
.storage-card:disabled,
.storage-card.is-oos {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}
.storage-card.active {
  border-color: #15171c;
  background: #f7f8fa;
  box-shadow: inset 0 0 0 1px #15171c;
}
.storage-card-size { font-weight: 600 }
.storage-card-price {
  color: var(--text);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.25;
}
.storage-card-was {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
  margin-top: .12rem;
}
.ka-price-banner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  margin: 0 0 1rem;
  padding: .75rem 1rem;
  background: rgba(36, 138, 61, .08);
  border: 1px solid rgba(36, 138, 61, .22);
  border-radius: 8px;
  font-size: .84rem;
  line-height: 1.4;
}
.ka-price-banner p { margin: 0; }
.ka-price-banner strong { font-weight: 700; }
.ka-price-banner-close {
  flex: 0 0 auto;
  background: none;
  border: 0;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 0 .15rem;
}

.storage-help {
  margin-top: .75rem;
  font-size: .84rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .65rem .85rem;
  background: #fafafa;
}
.storage-help summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  min-height: var(--touch);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.storage-help summary::-webkit-details-marker { display: none }
.storage-help summary::after {
  content: '+';
  font-weight: 400;
  color: var(--muted);
  font-size: 1.1rem;
}
.storage-help[open] summary::after { content: '−' }
.storage-help p { margin: .45rem 0 0; line-height: 1.45 }

.buy-included {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: .84rem;
  color: var(--muted);
  display: grid;
  gap: .35rem;
}
.buy-included li {
  position: relative;
  padding-left: 1.15rem;
  line-height: 1.35;
}
.buy-included li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ok, #248a3d);
  font-weight: 700;
  font-size: .78rem;
}
.buy-included strong { color: var(--text); font-weight: 600 }
.buy-coupon-promo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem .65rem;
  margin: .85rem 0 1rem;
  padding: .85rem 1rem;
  background: var(--bg2, #f5f5f7);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.buy-coupon-promo-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
}
.buy-coupon-promo-code {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .3rem .55rem;
}
.buy-coupon-promo-hint {
  flex: 1 1 100%;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.35;
}
.buy-price-was {
  display: inline-block;
  margin-left: .35rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
}
.buy-price {
  font-size: clamp(1.65rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -.02em;
}
.cart-panel-foot {
  flex-direction: column;
  align-items: stretch;
  gap: .65rem;
}
.cart-coupon-wrap { width: 100%; }
.cart-coupon-chip {
  width: 100%;
  display: block;
  text-align: left;
  font: inherit;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.35;
  padding: .65rem .75rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}
.cart-coupon-chip.is-active {
  border-color: rgba(36, 138, 61, .35);
  background: rgba(36, 138, 61, .08);
  color: #1a6b32;
}
.cart-price-breakdown {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  font-size: .82rem;
}
.cart-line {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  color: var(--muted);
}
.cart-line-total {
  margin-top: .15rem;
  padding-top: .45rem;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 1.05rem;
}
.cart-line-total strong {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}
.cart-you-save {
  margin: 0;
  font-size: .8rem;
  font-weight: 600;
  color: #248a3d;
  text-align: right;
}
.cart-deal { color: var(--text); }
.cart-was {
  font-size: .78rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 500;
}
.card-foot .price-deal {
  font-size: 1.05rem;
  font-weight: 700;
}
.card-foot .price-was {
  font-size: .78rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 500;
}
.price-neukunde {
  font-size: .68rem;
  font-weight: 600;
  color: #248a3d;
  margin-top: .1rem;
}
.cart-line-discount span:last-child { color: #248a3d; font-weight: 600; }
.cart-panel-foot .btn { width: 100%; }
.co-coupon-applied-badge {
  margin: 0;
  padding: .55rem .65rem;
  font-size: .82rem;
  font-weight: 600;
  color: #1a6b32;
  background: rgba(36, 138, 61, .08);
  border: 1px solid rgba(36, 138, 61, .25);
  border-radius: 6px;
}

.buy-help-link {
  margin: .75rem 0 0;
  font-size: .84rem;
}
.buy-help-link a {
  color: var(--text);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.buy-checkout { margin-top: 1.6rem }
.buy-summary {
  font-size: .92rem;
  color: var(--muted);
  margin-bottom: .35rem;
}
.buy-price {
  font-size: clamp(1.6rem, 4.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: .35rem;
}
.buy-price small {
  font-size: .85rem;
  font-weight: 400;
  color: var(--muted);
  margin-left: .25rem;
}
.buy-note {
  font-size: .82rem;
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.4;
}
.buy-note strong { color: var(--text); font-weight: 600 }
.btn-buy-main {
  width: 100%;
  min-height: 52px;
  font-size: 1.02rem;
  border-radius: 8px;
  font-weight: 600;
}
.buy-facts {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: .4rem;
  font-size: .86rem;
  color: var(--muted);
}
.buy-facts strong { color: var(--text); font-weight: 600 }

.buy-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .85rem;
}
.buy-chip {
  font-size: .75rem;
  font-weight: 500;
  color: var(--text);
  padding: .35rem .65rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  line-height: 1.2;
}
.buy-after-cta {
  margin: .65rem 0 0;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.4;
}
.buy-after-cta a {
  color: var(--text);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.buy-help {
  padding: 1.75rem 0 0;
}
.buy-help-inner {
  max-width: 720px;
}
.buy-help-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 .75rem;
}
.buy-help-grid {
  display: grid;
  gap: .5rem;
}
.buy-help-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .65rem .85rem;
  background: #fff;
}
.buy-help-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: .88rem;
  list-style: none;
}
.buy-help-item summary::-webkit-details-marker { display: none }
.buy-help-item p {
  margin: .5rem 0 0;
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.45;
}
.buy-help-item a { color: inherit }

.buy-faq {
  margin-top: .85rem;
  display: grid;
  gap: .45rem;
  font-size: .84rem;
  color: var(--muted);
}
.buy-faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .5rem .75rem;
  background: #fff;
}
.buy-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  min-height: var(--touch);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.buy-faq summary::-webkit-details-marker { display: none }
.buy-faq summary::after {
  content: '+';
  flex-shrink: 0;
  font-weight: 400;
  color: var(--muted);
}
.buy-faq details[open] summary::after { content: '−' }
.buy-faq p { margin: .35rem 0 0; line-height: 1.45 }
.buy-faq a { color: inherit; text-decoration: underline }

.trust-neu {
  padding: 2rem 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-neu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
.trust-neu-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow);
}
.trust-neu-item strong {
  display: block;
  font-size: .95rem;
  margin-bottom: .25rem;
  color: var(--text);
}
.trust-neu-item span {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.45;
}

.footer-col-brand .footer-tagline {
  margin: .75rem 0 0;
  line-height: 1.45;
}
.footer-col-brand .footer-social {
  justify-content: flex-start;
  margin: .85rem 0 0;
  gap: .45rem;
}
.footer-bottom {
  margin-top: 1.35rem;
  padding: 1rem 0 .25rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-bottom-lead {
  margin: 0 0 .4rem;
  font-size: .84rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
.footer-bottom-contact {
  margin: 0 0 .35rem;
  font-size: .8rem;
  line-height: 1.5;
}
.footer-bottom-contact a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom-contact a:hover { color: var(--text) }
.footer-dot {
  margin: 0 .35rem;
  color: var(--dim);
}
.footer-bottom-reg {
  margin: 0 0 .65rem;
  font-size: .74rem;
  color: var(--dim);
  line-height: 1.45;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .25rem .55rem;
  margin: 0 0 .65rem;
  font-size: .78rem;
}
.footer-bottom-legal a {
  color: var(--muted);
  padding: .2rem .35rem;
  border-radius: 6px;
}
.footer-bottom-legal a:hover {
  color: var(--text);
  background: var(--bg2, #f5f5f7);
}
.footer-bottom .footer-copy {
  margin: 0;
  padding: 0;
  border-top: none;
  font-size: .72rem;
  color: var(--dim);
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.footer-social-link:hover {
  background: var(--bg2, #f5f5f7);
  border-color: #c8c8cc;
  transform: translateY(-1px);
}
.footer-social-link img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: .88;
}

.legal-form {
  margin-top: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: .92rem;
  line-height: 1.55;
}

.cfg-label {
  font-size: .78rem;
  color: var(--muted);
  margin: .85rem 0 .45rem;
  font-weight: 500;
}
.cfg-label strong { color: var(--text) }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-8px) }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px) }
  to { opacity: 1; transform: none }
}
@keyframes pulseSoft {
  0% { opacity: .45 }
  40% { opacity: 1 }
  100% { opacity: 1 }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.pulse { animation: pulseSoft .35s ease }

.img-swap-out {
  opacity: 0;
  transform: scale(calc(var(--stage-scale, 1) * 0.98));
  transition: opacity .12s ease, transform .12s ease;
}
.img-swap-in {
  animation: imgSwapIn .22s ease both;
}
@keyframes imgSwapIn {
  from { opacity: 0; transform: scale(calc(var(--stage-scale, 1) * 0.98)); }
  to { opacity: 1; transform: scale(var(--stage-scale, 1)); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border-radius: 8px;
  padding: .8rem 1.2rem;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.01em;
  border: 0;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  min-height: var(--touch);
}
.btn-primary {
  background: #15171c;
  color: #fff;
}
.btn-primary:hover { background: #2a2d33 }
.btn-primary:active { background: #0e1013 }
.btn-ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: #f4f5f7 }
.btn-dark {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-dark:hover { background: #f7f8fa }
.btn-add {
  min-width: var(--touch);
  min-height: var(--touch);
  border-radius: 8px;
  font-size: 1.25rem;
}
.btn:disabled { opacity: .45; cursor: not-allowed }

.section { padding: 2.75rem 0 }
.section-head { margin-bottom: 1.35rem }
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  letter-spacing: -.02em;
  font-weight: 600;
}
.section-head p { color: var(--muted); margin-top: .35rem; font-size: .95rem }

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .9rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  transition: border-color .15s, transform .15s, box-shadow .15s;
  box-shadow: var(--shadow);
}
.card:hover { border-color: rgba(0,0,0,.16); box-shadow: 0 14px 36px rgba(0,0,0,.08) }
.card.featured { border-color: rgba(224,107,47,.45) }
.card-link { display: block; color: inherit }
.badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: #f0f2f5;
  color: var(--text);
  padding: .25rem .5rem;
  border-radius: 6px;
  margin-bottom: .65rem;
}
.card.featured .badge {
  background: rgba(224,107,47,.14);
  color: var(--accent-deep);
}

.card-media { margin-bottom: .75rem }
.product-img-wrap,
.phone-visual {
  height: 240px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--c, #86868b) 16%, transparent), transparent 62%),
    var(--stage-bg, #f5f5f7);
  border: 1px solid var(--line);
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .35s ease;
}
.product-img-wrap img,
.product-img {
  width: min(96%, 300px);
  height: auto;
  max-height: 96%;
  object-fit: contain;
}
.card-swatches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  margin-top: .65rem;
}
.card-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,.12);
  background: var(--sw, #888);
  cursor: pointer;
  padding: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
  transition: transform .12s, box-shadow .12s, border-color .12s;
}
.card-swatch:hover { transform: scale(1.08) }
.card-swatch.active {
  border-color: #15171c;
  box-shadow: 0 0 0 2px rgba(21,23,28,.12), inset 0 0 0 1px rgba(0,0,0,.08);
}
.card-color-label {
  margin-top: .4rem;
  font-size: .8rem;
  color: var(--muted);
}
.product-img-wrap.no-img::after,
.phone-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 78px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(0,0,0,.2);
  border-radius: 8px;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .5rem;
  transition: opacity .2s ease, transform .35s ease;
}
.card-cat { font-size: .75rem; color: var(--dim); margin-bottom: .2rem }
.card-name { font-weight: 600; letter-spacing: -.01em; font-size: 1.02rem }
.card-meta { font-size: .85rem; color: var(--muted); margin-top: .2rem }
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  gap: .75rem;
}
.price { font-weight: 700; font-size: 1.2rem }
.stock { font-size: .78rem; color: var(--ok) }
.stock.out { color: var(--danger) }

.about {
  background: var(--bg2);
  border-block: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}
.about ul { list-style: none; display: grid; gap: .75rem }
.about li {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7f8fa;
}
.about li strong { display: block; margin-bottom: .25rem }

.footer {
  padding: 2.5rem 0 calc(5.5rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer h5 { color: var(--text); margin-bottom: .75rem; font-size: .85rem }
.footer-grid a {
  margin: .35rem 0;
  color: var(--muted);
  min-height: 36px;
  display: flex;
  align-items: center;
}
.footer-grid a:hover { color: var(--text) }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .85rem;
  align-items: center;
  padding-top: 0;
  border-top: 0;
}
.footer-legal a {
  display: inline-block;
  color: var(--muted);
  min-height: 0;
  margin: 0;
  line-height: 1.5;
  padding: .15rem 0;
}
.footer-legal a:hover { color: var(--text) }
.footer-copy {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--dim);
  margin-top: 1rem;
}
.footer-compact {
  padding: 2rem 0 2.5rem;
}
.footer-compact .footer-copy {
  margin-top: .75rem;
  border-top: 0;
  padding-top: 0;
}

.sticky-hero {
  position: fixed;
  left: 50%;
  bottom: calc(.75rem + env(safe-area-inset-bottom, 0px));
  transform: translate3d(-50%, 120%, 0);
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 46px;
  padding: .55rem .7rem .55rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3a06a, var(--accent));
  color: #1a0f08;
  font-weight: 600;
  font-size: .9rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
  border: 0;
  transition: transform .22s ease;
  opacity: 0;
  pointer-events: none;
  max-width: calc(100% - 1.25rem);
  text-decoration: none;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}
.sticky-hero.show {
  transform: translate3d(-50%, 0, 0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-hero-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 12rem;
  color: inherit;
  font-weight: 600;
}
.sticky-hero-cta {
  background: rgba(26, 15, 8, .16);
  color: #1a0f08;
  padding: .4rem .8rem;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.sticky-cta-short { display: none; }

@media (max-width: 560px) {
  .co-box .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: .55rem;
  }
  .co-box .field.full { grid-column: 1 / -1 }
  .co-box .field input,
  .co-box .field select,
  .co-box .coupon-input {
    min-height: 44px;
    padding: .55rem .65rem;
  }
  .co-box .co-steps {
    margin: .65rem 0 .75rem;
    font-size: .75rem;
    gap: .35rem;
  }
  .co-actions {
    gap: .65rem;
    padding: .85rem 0 calc(1.35rem + env(safe-area-inset-bottom, 0px));
  }
  body.has-sticky-cta {
    padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
  }
  .buy-stage,
  .pdp-visual-wrap {
    min-height: clamp(200px, 48vw, 280px);
    aspect-ratio: 1 / 1;
    border-radius: 18px;
  }
  .buy-stage img,
  #heroImg,
  .pdp-img {
    max-width: 86%;
    max-height: 86%;
  }
  .buy-stage-badge {
    top: .65rem;
    left: .65rem;
    font-size: .68rem;
    padding: .28rem .55rem;
  }
  .buy-thumbs button,
  .pdp-thumbs button {
    width: 56px;
    height: 56px;
    border-radius: 10px;
  }
  .sticky-hero {
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate3d(0, 110%, 0);
    max-width: none;
    width: 100%;
    border-radius: 0;
    min-height: 54px;
    padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom, 0px));
    justify-content: space-between;
    gap: .75rem;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, .14);
    font-size: .92rem;
  }
  .sticky-hero.show {
    transform: translate3d(0, 0, 0);
  }
  .sticky-hero-label {
    max-width: 55%;
    flex: 1;
    min-width: 0;
  }
  .sticky-hero-cta {
    font-size: .84rem;
    padding: .45rem .85rem;
  }
}

@media (max-width: 360px) {
  .sticky-cta-full { display: none; }
  .sticky-cta-short { display: inline; }
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s cubic-bezier(.22, 1, .36, 1);
  z-index: 50;
}
.overlay.open { opacity: 1; pointer-events: auto }

.panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100%;
  background: #fff;
  border-left: 1px solid var(--line);
  z-index: 60;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.22, 1, .36, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,.08);
  will-change: transform;
}
.panel.open { transform: translateX(0) }
.panel-h, .panel-f {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.panel-f { border-bottom: 0; border-top: 1px solid var(--line); margin-top: auto }
.panel-f .btn { min-height: var(--touch); flex: 0 0 auto }
.panel-b { padding: 1rem 1.1rem; overflow: auto; flex: 1 }

/* Mobile: bottom sheet — must come AFTER base .panel so it wins */
@media (max-width: 560px) {
  .panel {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: min(72vh, 100dvh);
    border-left: 0;
    border-radius: 18px 18px 0 0;
    transform: translate3d(0, 105%, 0);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, .18);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
  }
  .panel.open {
    transform: translate3d(0, 0, 0);
  }
  .panel-h {
    position: relative;
    padding: 1.2rem 1rem .7rem;
    justify-content: center;
    border-bottom-color: rgba(0, 0, 0, .06);
  }
  .panel-h::before {
    content: '';
    position: absolute;
    top: .5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    border-radius: 999px;
    background: #d0d0d0;
  }
  .panel-h h3 {
    font-size: 1rem;
    margin: 0;
  }
  .panel-h .close-x {
    position: absolute;
    right: .35rem;
    top: .55rem;
  }
  .panel-b {
    flex: 0 1 auto;
    max-height: 40vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: .65rem 1rem;
  }
  .panel-f {
    padding: .75rem 1rem calc(.85rem + env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    align-items: stretch;
    gap: .65rem;
  }
  .panel-f .btn {
    width: 100%;
    min-height: 52px;
    flex: none;
  }
  .cart-item {
    padding: .55rem 0;
    gap: .65rem;
  }
}
.close-x {
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  min-width: var(--touch);
  min-height: var(--touch);
}
.empty { color: var(--dim); padding: 1rem 0 }
.cart-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: .75rem;
  align-items: center;
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-thumb .product-img-wrap,
.cart-thumb .phone-visual {
  height: 56px;
  margin: 0;
  border-radius: 8px;
}
.cart-thumb .product-img,
.cart-img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  padding: 2px;
}
.cart-item-name { font-size: .9rem }
.cart-item-meta { font-size: .78rem; color: var(--muted) }
.rm {
  background: none;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.1rem;
  min-width: var(--touch);
  min-height: var(--touch);
}

.co-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 70;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.co-overlay.open { display: flex }
.co-box {
  width: 100%;
  max-height: min(92dvh, 820px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px 16px 0 0;
  padding: 1.15rem 1.15rem 0;
}
.co-box > :first-child,
.co-steps {
  flex-shrink: 0;
}
#coForm {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.co-step:not([hidden]) {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.co-step-scroll {
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .35rem;
}
.co-steps {
  display: flex;
  gap: .5rem;
  margin: 1rem 0 1rem;
  font-size: .8rem;
  color: var(--dim);
}
.co-steps span.active { color: var(--text); font-weight: 600 }
.co-steps span.done { color: var(--ok); font-weight: 500 }
.co-steps span.done::before {
  content: '✓ ';
  font-size: .75rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
.field { display: flex; flex-direction: column; gap: .3rem }
.field.full { grid-column: 1 / -1 }
.field label { font-size: .8rem; color: var(--muted) }
.field input, .field select,
.coupon-input {
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  padding: .75rem .8rem;
  min-height: var(--touch);
}
.coupon-input { flex: 1; width: 100% }
.field input:focus-visible,
.field select:focus-visible,
.coupon-input:focus-visible {
  outline: 2px solid color-mix(in srgb, #15171c 25%, transparent);
  outline-offset: 0;
  border-color: #c8c8cc;
}
.btn-sm {
  padding: .55rem .85rem;
  min-height: 2.5rem;
  font-size: .85rem;
  flex-shrink: 0;
}
.soft-check {
  font-size: .78rem;
  color: var(--dim);
  margin: .85rem 0 0;
  line-height: 1.4;
}
.pay-opts { display: grid; gap: .6rem }
.co-block { margin: 0 0 1rem }
.co-block-ship {
  margin-top: .25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}
.co-block-ship.is-pickup .co-ship-partner { display: none }
.co-ship-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .5rem .75rem;
  margin-bottom: .55rem;
}
.co-ship-partner {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.co-ship-partner-logo {
  display: block;
  width: 84px;
  min-width: 84px;
  height: auto;
}
.co-ship-partner-text {
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.25;
  white-space: nowrap;
}
@media (max-width: 380px) {
  .co-ship-partner-text { white-space: normal; max-width: 6.5rem }
}
.co-s3-lead {
  margin: 0 0 1rem;
  padding: .55rem .75rem;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.4;
  text-align: center;
  background: var(--bg2, #f5f5f7);
  border-radius: 10px;
}
.co-trust-stripe {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .65rem;
  justify-content: center;
  margin: 0 0 .75rem;
  padding: .5rem .65rem;
  font-size: .72rem;
  font-weight: 500;
  color: var(--text);
  background: #f0faf3;
  border: 1px solid #c8e6d0;
  border-radius: 10px;
  line-height: 1.35;
}
.co-trust-stripe span { white-space: nowrap }
.co-vorkasse-flow {
  margin: 0 0 .85rem;
  padding: .65rem .85rem .65rem 1.35rem;
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.45;
  background: var(--bg2, #f5f5f7);
  border-radius: 10px;
}
.co-vorkasse-flow li { margin: .2rem 0 }
.pay-order-summary {
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  background: var(--bg2, #f5f5f7);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.pay-order-summary h2 {
  margin: 0 0 .65rem;
  font-size: 1rem;
}
.pay-order-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .35rem 0;
  font-size: .88rem;
  border-bottom: 1px solid var(--line);
}
.pay-order-line:last-child { border-bottom: 0 }
.pay-order-total {
  margin-top: .5rem;
  padding-top: .55rem;
  font-weight: 600;
  font-size: .95rem;
  border-top: 1px solid var(--line);
}
.pay-cta-note {
  margin: 0 0 1rem;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.45;
}
.pay-widerruf {
  margin-top: 1.25rem;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.45;
}
.co-coupon-block {
  margin: .95rem 0 0;
  padding: .9rem 1rem;
  background: var(--bg2, #f5f5f7);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.co-coupon-label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 .2rem;
}
.co-coupon-hint {
  margin: 0 0 .55rem;
  font-size: .75rem;
  color: var(--muted);
  line-height: 1.35;
}
.co-coupon-block .coupon-input {
  min-height: 2.6rem;
  padding: .6rem .7rem;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .04em;
  background: #fff;
}
.co-checkout-foot {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.co-checkout-foot .check {
  margin: 0 0 .85rem;
}
.co-summary-card {
  margin: .85rem 0 0;
  padding: .85rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
}
.co-summary-title {
  margin: 0 0 .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.co-secure-note {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .75rem;
  padding: 0;
  font-size: .75rem;
  color: var(--muted);
  line-height: 1.35;
  background: none;
  border: none;
}
.co-secure-icon {
  flex-shrink: 0;
  margin-top: .1rem;
  color: var(--ok);
}
.co-actions-submit .btn-primary {
  font-weight: 600;
}
.co-block-title {
  margin: 0 0 .55rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
}
.pay-opt {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  min-height: var(--touch);
  background: #fff;
  position: relative;
}
.pay-opt:has(input:checked) {
  border-color: #15171c;
  background: #fff;
  box-shadow: none;
}
.pay-opt-body {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  flex: 1;
  min-width: 0;
}
.pay-opt-body small {
  color: var(--muted);
  line-height: 1.4;
  font-size: .8rem;
}
.pay-opt-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem .5rem;
}
.pay-opt.is-disabled {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
  background: #fafafa;
}
.pay-opt.is-disabled input { cursor: not-allowed }
.pay-badge {
  display: inline;
  margin-left: .4rem;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  vertical-align: middle;
}
#coForm input[type="radio"] {
  accent-color: #15171c;
}
.ship-opts {
  margin: 0;
  padding: .2rem;
  border: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.ship-opt {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  margin: 0;
  padding: .7rem .75rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  min-height: var(--touch);
  background: transparent;
}
.ship-opt + .ship-opt {
  border-top: 1px solid color-mix(in srgb, var(--line) 85%, transparent);
}
.ship-opt:has(input:checked) {
  background: var(--bg2, #f5f5f7);
  border-top-color: transparent;
  box-shadow: none;
}
.ship-opt:has(input:checked) + .ship-opt {
  border-top-color: transparent;
}
.ship-opt.is-disabled {
  opacity: .45;
  pointer-events: none;
}
.ship-opt-muted {
  opacity: .88;
}
.ship-opt-muted:has(input:checked) {
  opacity: 1;
}
.ship-opt input { margin-top: .2rem; flex-shrink: 0 }
.ship-opt-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .65rem;
  flex: 1;
  min-width: 0;
}
.ship-opt-text { flex: 1; min-width: 0 }
.ship-opt-tag {
  flex-shrink: 0;
  font-size: .78rem;
  font-weight: 600;
  padding: 0;
  border: none;
  background: none;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.ship-opt-tag-ok {
  color: var(--ok);
}
.ship-opt-tag-muted {
  color: var(--muted);
  font-weight: 500;
}
.ship-opt strong { font-weight: 600; font-size: .9rem }
.ship-opt small {
  display: block;
  margin-top: .15rem;
  line-height: 1.35;
  color: var(--muted);
  font-size: .8rem;
}
.pickup-note {
  margin: 1rem 0 0;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.4;
}
.co-summary { margin: 0; font-size: .88rem }
.co-summary-group {
  padding: .15rem 0;
  border-bottom: 1px solid var(--line);
}
.co-summary-group:last-of-type { border-bottom: none }
.co-summary-included {
  padding: .35rem 0 .5rem;
  border-bottom-style: dashed;
}
.co-summary-fees { padding-top: .35rem }
.co-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .75rem;
  padding: .3rem 0;
  color: var(--muted);
}
.co-line-product {
  color: var(--text);
  font-weight: 500;
}
.co-line-included {
  font-size: .82rem;
}
.co-line-val {
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}
.co-line-val-ok { color: var(--ok); font-weight: 500 }
.co-line-total {
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  border-top: 1px solid var(--line);
  margin-top: .45rem;
  padding-top: .65rem;
}
.co-line-total .co-line-val { font-size: 1.05rem }
.co-summary-meta {
  margin: .45rem 0 0;
  font-size: .75rem;
  color: var(--dim);
  line-height: 1.35;
}
.co-line.total {
  color: var(--text);
  font-weight: 600;
  border-top: 1px solid var(--line);
  margin-top: .4rem;
  padding-top: .7rem;
}
.coupon-row { display: flex; gap: .5rem }
.coupon-msg { font-size: .8rem; margin-top: .35rem }
.coupon-msg.ok { color: var(--ok) }
.coupon-msg.err { color: var(--danger) }
.check {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  font-size: .85rem;
  color: var(--muted);
  margin: 1rem 0;
}
.check a { color: #0b57d0; text-decoration: underline }
.co-actions {
  display: flex;
  gap: .5rem;
  justify-content: stretch;
  flex-wrap: wrap;
  flex-shrink: 0;
  margin: 0;
  padding: .75rem 0 calc(1.1rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  background: #fff;
}
.co-actions .btn { flex: 1 }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal.open { display: flex }
.modal-box {
  width: min(400px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.modal-box h3 { margin-bottom: .5rem }
.modal-box p,
.modal-box #mMsg { color: var(--muted); margin-bottom: 1rem }
.modal-box #mMsg p { margin-bottom: .5rem }
.pay-tip {
  margin: 0 0 .85rem;
  padding: .75rem .9rem;
  border-radius: 10px;
  background: #eef7f0;
  border: 1px solid #cfe6d4;
  color: #1d1d1f;
  font-size: .88rem;
  line-height: 1.45;
}
.pay-tip strong { font-weight: 600 }
.pay-box {
  margin: .75rem 0;
  padding: .35rem 0;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 10px;
  background: #f5f5f7;
  text-align: left;
  overflow: hidden;
}
.pay-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .65rem;
  padding: .7rem .9rem;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  font-size: .92rem;
  color: #1d1d1f;
}
.pay-line:last-child { border-bottom: 0 }
.pay-line-main {
  display: grid;
  gap: .15rem;
  min-width: 0;
  flex: 1;
}
.pay-line span { color: #6e6e73; font-size: .78rem }
.pay-line strong {
  font-weight: 600;
  word-break: break-all;
  text-align: left;
  font-size: .98rem;
}
.pay-hint {
  margin-top: .15rem;
  font-size: .72rem;
  color: #6e6e73;
  line-height: 1.35;
}
.pay-copy {
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  color: #1d1d1f;
  border-radius: 999px;
  padding: .45rem .75rem;
  font: inherit;
  font-size: .78rem;
  font-weight: 500;
  cursor: pointer;
  min-height: 40px;
}
.pay-copy:active { background: #eee }
.pay-toast {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  background: #1d1d1f;
  color: #f5f5f7;
  padding: .55rem 1rem;
  border-radius: 999px;
  font-size: .85rem;
  z-index: 90;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}
.legal .pay-box { margin-top: 1rem }

.pdp {
  padding: 1.25rem 0 5.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.pdp-brand {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .35rem;
}
.pdp-desc { color: var(--muted); margin-bottom: .25rem }
.pdp-visual-wrap {
  border: 1px solid var(--line);
}
.pdp-visual-wrap.no-img::after {
  content: "";
  width: 64px;
  height: 120px;
  border: 2px solid rgba(0,0,0,.2);
  border-radius: 12px;
}
.pdp-thumbs {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}
.pdp-thumbs button {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--stage-bg, #f5f5f7);
  padding: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .15s, transform .15s;
}
.pdp-thumbs button:hover { transform: translateY(-1px) }
.pdp-thumbs button.active { border-color: #15171c }
.pdp h1 {
  font-size: clamp(1.55rem, 5vw, 2.3rem);
  letter-spacing: -.02em;
  margin: .5rem 0;
  font-weight: 700;
}
.pdp .tagline { color: var(--muted); margin-bottom: .75rem }
.pdp .big-price { font-size: 1.85rem; font-weight: 700; margin: 1rem 0 .35rem }
.pdp .big-price small {
  font-size: .85rem;
  font-weight: 400;
  color: var(--muted);
}
.pdp-info.buy-config .buy-step:first-of-type { margin-top: 1.25rem }
.pdp .buy-from { margin-bottom: .75rem }

.legal {
  padding: 3rem 0 4rem;
  max-width: 720px;
}
.legal h1 { font-size: 2rem; margin-bottom: 1.25rem; letter-spacing: -.02em }
.legal h2 { font-size: 1.15rem; margin: 1.5rem 0 .6rem }
.legal h3 { font-size: 1rem; margin: 1rem 0 .4rem }
.legal p, .legal li { color: var(--muted); margin-bottom: .65rem }
.legal ul { padding-left: 1.2rem; margin-bottom: 1rem }
.legal a { color: #0b57d0 }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-stage img, #heroImg, .img-swap-in, .pulse { animation: none !important; transition: none !important }
  .reveal { opacity: 1; transform: none }
}

@media (min-width: 561px) {
  .grid { grid-template-columns: 1fr 1fr }
  .form-grid { grid-template-columns: 1fr 1fr }
  .trust-neu-grid { grid-template-columns: repeat(3, 1fr) }
  .color-cards { grid-template-columns: repeat(3, 1fr) }
  .color-card { flex-direction: column; text-align: center; gap: .55rem; padding: 1rem .75rem }
  .sticky-hero-label { max-width: none }
}

@media (min-width: 901px) {
  .wrap { width: min(1120px, calc(100% - 2rem)) }
  .buy { padding: 2.5rem 0 3.5rem }
  .buy-layout {
    grid-template-columns: 1.05fr .95fr;
    gap: 3rem;
    align-items: start;
  }
  .buy-gallery {
    position: sticky;
    top: 72px;
  }
  .buy-stage,
  .pdp-visual-wrap {
    min-height: 480px;
    aspect-ratio: 1 / 1.08;
  }
  .grid { grid-template-columns: repeat(3, 1fr) }
  .contact-grid { grid-template-columns: repeat(3, 1fr) }
  .about-grid { grid-template-columns: 1.2fr .8fr; gap: 2rem }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem }
  .footer { padding-bottom: 2rem }
  .pdp {
    grid-template-columns: 1.05fr .95fr;
    gap: 2.75rem;
    padding: 2.5rem 0 4rem;
  }
  .pdp-gallery {
    position: sticky;
    top: 72px;
  }
  .co-overlay {
    align-items: center;
    padding: 1rem;
  }
  .co-box {
    width: min(560px, 100%);
    border-radius: 16px;
    padding: 1.25rem 1.25rem 0;
  }
  .nav-links { display: flex }
  .burger { display: none }
  .product-img-wrap, .phone-visual { height: 190px }
  .card:hover { transform: translateY(-2px) }
}

@media (max-width: 900px) {
  .buy-stage img,
  #heroImg,
  .pdp-img {
    animation: none;
  }
  .buy {
    padding-bottom: calc(2.5rem + env(safe-area-inset-bottom, 0px));
  }
  .nav-links { display: none }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    z-index: 41;
    gap: .35rem;
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
  }
  .nav-links.open a {
    width: 100%;
    white-space: normal;
    padding: .35rem 0;
  }
  .burger { display: flex }
  .nav-inner { position: relative }
}
