
:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f6;
  --bg-muted: #efeff1;
  --surface: #ffffff;
  --surface-2: #f8f8f9;
  --ink: #111111;
  --ink-soft: #353535;
  --muted: #6f6f75;
  --line: #e5e5e8;
  --line-strong: #d4d4d8;
  --shadow: 0 18px 40px rgba(0,0,0,.06);
  --shadow-soft: 0 10px 24px rgba(0,0,0,.04);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }

.topbar {
  background: #0f0f10;
  color: #ffffff;
  border-bottom: 1px solid #1f1f21;
}
.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.04em;
}
.logo-badge {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.logo img, .brand-tile img, .gate-logo { width: 100%; height: 100%; object-fit: contain; }
.logo-wordmark { color: var(--ink); }
.nav-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.nav-links a:hover, .footer-links a:hover { color: var(--ink); }
.cart-button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 700;
}
.cart-button span {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  margin-left: 8px;
  padding: 0 8px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
}

.hero, .section, .admin-shell, .legal-shell, .footer {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.hero {
  padding-top: 36px;
  padding-bottom: 18px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
}
.hero-copy, .hero-visual, .section-card, .gate-card, .modal-card, .admin-card, .admin-hero, .legal-card {
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: 54px;
  min-height: 560px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
  position: relative;
  overflow: hidden;
}
.hero-copy::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,.06), transparent 70%);
}
.hero-copy::after {
  content: '';
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,.04), transparent 70%);
}
.eyebrow {
  margin: 0 0 12px;
  color: #4f4f54;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}
h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -.05em;
  line-height: 1.02;
}
h1 { font-size: clamp(42px, 5vw, 76px); max-width: 760px; }
h2 { font-size: clamp(30px, 3.6vw, 50px); }
h3 { font-size: 24px; }
p { line-height: 1.7; color: var(--muted); }
.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: 18px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-badges span, .category-chip, .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}
.hero-actions, .gate-actions, .modal-actions, .admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--ink);
}
.btn.primary {
  background: #111111;
  color: #ffffff;
}
.btn.secondary, .btn.ghost {
  background: #ffffff;
  color: #111111;
  border-color: var(--line-strong);
}
.hero-visual {
  padding: 28px;
  min-height: 560px;
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-visual-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.brand-tile.large { width: 90px; height: 90px; padding: 10px; }
.brand-tile.gate-tile { width: 120px; height: 120px; padding: 14px; margin: 0 auto 18px; }
.brand-tile.modal-tile { width: 92px; height: 92px; padding: 10px; margin: 0 auto 18px; }
.brand-tile.footer-tile { width: 68px; height: 68px; padding: 8px; }
.brand-tile.admin-tile { width: 92px; height: 92px; padding: 10px; }
.hero-visual-head strong { display: block; font-size: 24px; }
.hero-visual-head small { color: var(--muted); }
.hero-model-stage {
  --rotateX: 0deg;
  --rotateY: 0deg;
  --glowOpacity: .35;
  --shineX: 50%;
  --shineY: 50%;
  position: relative;
  min-height: 320px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f3f3f5 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 16px 36px rgba(0,0,0,.08);
  transform-style: preserve-3d;
  transition: transform .22s ease, box-shadow .22s ease;
  cursor: pointer;
  isolation: isolate;
}
.hero-model-stage::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.08));
  pointer-events: none;
  z-index: 0;
}
.hero-model-stage:hover {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 22px 54px rgba(0,0,0,.12);
}
.hero-model-stage.is-hovered {
  transform: perspective(1200px) rotateX(var(--rotateX)) rotateY(var(--rotateY)) translateY(-4px);
}
.hero-model-shine {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at var(--shineX) var(--shineY), rgba(255,255,255,.75), rgba(255,255,255,0) 24%),
    radial-gradient(circle at 50% 100%, rgba(22,22,22,.08), rgba(22,22,22,0) 48%);
  opacity: var(--glowOpacity);
  transition: opacity .22s ease;
  pointer-events: none;
  z-index: 1;
}
.hero-model-stage:not(.is-hovered) .hero-model-shine {
  opacity: .3;
}
.hero-model-slide {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  opacity: 0;
  transform: translateZ(24px) scale(1.01);
  transition: opacity .8s ease, transform .22s ease, filter .22s ease;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.1));
  pointer-events: none;
}
.hero-model-slide.is-active {
  opacity: 1;
}
.hero-model-stage.is-hovered .hero-model-slide.is-active {
  transform: translateZ(38px) scale(1.035);
  filter: drop-shadow(0 26px 40px rgba(0,0,0,.14));
}
.hero-slider-dots {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 4;
  display: flex;
  gap: 7px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(210,210,214,.75);
  backdrop-filter: blur(10px);
}
.hero-slide-dot,
button.hero-slide-dot {
  width: 9px !important;
  min-width: 9px !important;
  max-width: 9px !important;
  height: 9px !important;
  min-height: 9px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  border: 0 !important;
  background: #b8b8bd !important;
  cursor: pointer;
  display: block !important;
  line-height: 0 !important;
}
.hero-slide-dot.is-active,
button.hero-slide-dot.is-active {
  width: 24px !important;
  max-width: 24px !important;
  background: #111111 !important;
}
.hero-model-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-model-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}
.hero-product-stack.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mini-product-compact {
  grid-template-columns: 58px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
}
.mini-product-compact img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
}
.mini-product-compact strong {
  font-size: 15px;
}
.mini-product-compact span {
  font-size: 13px;
}
.hero-product-stack { display: grid; gap: 14px; }
.mini-product {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
}
.mini-product img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  border-radius: 16px;
  background: #f4f4f5;
  padding: 8px;
}
.mini-product strong { display: block; color: var(--ink); }
.mini-product span { color: var(--muted); font-size: 14px; }
.hero-highlight {
  margin-top: auto;
  padding: 22px 24px;
  border-radius: 24px;
  background: #111111;
  color: white;
}
.hero-highlight span, .shipping-copy .eyebrow { color: #d7d7db; }
.hero-highlight strong { display: block; margin-top: 8px; font-size: 24px; }

.section {
  padding-top: 10px;
  padding-bottom: 14px;
}
.trust-section, .banner-section, .shop-section, .info-section, .steps-section, .checkout-wrap {
  margin-top: 10px;
}
.trust-grid, .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-card, .step-card, .info-card {
  padding: 26px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.trust-card strong, .step-card strong { color: var(--ink); display: block; }
.banner-section .shipping-banner {
  border-radius: 30px;
  padding: 34px;
  background: #111111;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.shipping-copy h2, .shipping-copy p { color: white; }
.shipping-copy p:last-child { margin-bottom: 0; color: #d7d7db; }
.shipping-pill {
  padding: 18px 24px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-weight: 800;
  white-space: nowrap;
}
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}
.section-title p:last-child { max-width: 520px; margin: 0; }

  to { transform: translateX(0); }
}
.shop-section, .info-section, .steps-section, .checkout-wrap, .trust-section {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.toolbar {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--ink);
  background: #ffffff;
}
input::placeholder, textarea::placeholder { color: #9b9ba1; }
.toolbar input { flex: 1 1 280px; }
.toolbar select { width: 240px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  border-radius: 26px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.product-media {
  position: relative;
  padding: 22px;
  min-height: 300px;
  background: #fafafb;
  border-bottom: 1px solid var(--line);
}
.product-media img { width: 100%; height: 250px; object-fit: contain; }
.badge {
  position: absolute;
  top: 18px;
  right: 18px;
}
.product-body { padding: 24px; }
.product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-head h3 { font-size: 28px; }
.product-copy { margin: 12px 0 14px; min-height: 52px; }
.product-details {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.price {
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
}
.info-split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
  align-items: start;
}
.step-card strong {
  font-size: 40px;
  margin-bottom: 10px;
}
.checkout-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 22px;
}
.cart-card, .order-form {
  padding: 24px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-row strong { color: var(--ink); }
.qty { display: flex; align-items: center; gap: 10px; }
.qty button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  font-size: 24px;
}
.order-form { display: grid; gap: 14px; }
label { display: grid; gap: 8px; color: var(--ink-soft); font-weight: 600; }
textarea { min-height: 100px; resize: vertical; }
.payment-note {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f6f6f7;
  border: 1px solid var(--line);
}
.payment-note strong { color: var(--ink); }
.payment-note p { margin: 6px 0 0; }
.checkbox { grid-template-columns: auto 1fr; align-items: start; font-size: 14px; }
.checkbox input { width: auto; margin-top: 3px; }
.result { font-weight: 700; color: var(--ink); }
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.55);
}
.order-modal.hidden, .gate.hidden { display: none; }
.modal-card {
  width: min(560px, 100%);
  padding: 34px;
  text-align: center;
}
.order-number {
  margin: 18px auto 10px;
  padding: 18px 22px;
  border-radius: 18px;
  background: #f5f5f6;
  border: 1px solid var(--line);
  font-size: 34px;
  font-weight: 800;
  width: fit-content;
  color: var(--ink);
}
.footer {
  margin-top: 22px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.footer-brand span, .footer-links { color: var(--muted); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
}
.gate {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0,0,0,.55);
}
.gate-card {
  width: min(640px, 100%);
  padding: 36px;
  text-align: center;
}
.admin-shell, .legal-shell {
  margin-top: 28px;
  margin-bottom: 20px;
}
.admin-hero {
  padding: 24px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}
.admin-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 22px;
}
.admin-card, .legal-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}
.order-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fafafb;
  margin-bottom: 14px;
}
.order-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.order-card select { width: auto; min-width: 240px; }
.product-form-grid { display: grid; gap: 16px; }
.product-admin-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: #fafafb;
  border: 1px solid var(--line);
}
.product-admin-card img {
  width: 100%;
  max-width: 180px;
  height: 140px;
  object-fit: contain;
  padding: 10px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--line);
}
.product-admin-card .two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.product-editor {
  width: 100%;
  min-height: 340px;
  margin-top: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.legal-card { padding: 40px; }
.legal-card h1 { font-size: clamp(38px, 5vw, 64px); margin-bottom: 24px; }
.legal-content { display: grid; gap: 14px; }
.legal-content h2 { font-size: 24px; margin-top: 12px; }
.legal-content p { margin: 0; }
code { background: #f2f2f3; padding: 2px 6px; border-radius: 8px; }
summary { cursor: pointer; font-weight: 700; }

@media (max-width: 1050px) {
  .hero, .checkout-grid, .info-split, .admin-grid { grid-template-columns: 1fr; }
  .trust-grid, .steps, .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav { flex-wrap: wrap; }
  .nav-links { order: 3; width: 100%; overflow-x: auto; }
  .hero-copy, .hero-visual, .shop-section, .info-section, .steps-section, .checkout-wrap, .trust-section, .gate-card, .modal-card, .admin-card, .admin-hero, .legal-card { padding: 24px; }
  .section-title { display: block; }
  .toolbar select { width: 100%; }
  .shipping-banner { display: block; }
  .shipping-pill { margin-top: 16px; width: fit-content; }
  .trust-grid, .steps, .product-grid, .hero-product-stack.compact { grid-template-columns: 1fr; }
  .product-head { display: block; }
  .price-line { flex-direction: column; align-items: stretch; }
  .footer { align-items: flex-start; }
  .footer-links { width: 100%; }
  .product-admin-card .two, .admin-hero { grid-template-columns: 1fr; }
  .order-card-head { display: block; }
  .order-card select { margin-top: 12px; width: 100%; }
  .logo-badge { width: 52px; height: 52px; }
  .brand-tile.large { width: 82px; height: 82px; }
}


/* Produktkarten: kurze Übersicht, Details im Produktfenster */
.product-card { cursor: pointer; transition: transform .18s ease, box-shadow .18s ease; }
.product-card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(0,0,0,.08); }
.product-body.compact { display: grid; gap: 18px; }
.product-body.compact .price-line { margin-top: 2px; }
.product-more {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  padding: 0;
  width: fit-content;
}
.product-more:hover { color: var(--ink); }

.variant-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 4px;
}
.variant-tabs button {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}
.variant-tabs button.active {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}
.modal-variant-tabs {
  margin: 6px 0 12px;
}
.modal-variant-tabs.hidden {
  display: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.58);
}
.product-modal.hidden { display: none; }
.product-modal-card {
  position: relative;
  width: min(980px, 100%);
  max-height: min(760px, 92vh);
  overflow: auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #111111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.product-modal-media {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 42px;
  background: #f6f6f7;
  border-right: 1px solid var(--line);
}
.product-modal-media img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}
.product-modal-content {
  padding: 52px 46px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-modal-content h2 { font-size: clamp(38px, 5vw, 60px); }
.modal-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 24px 0 10px;
}
.modal-product-meta span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 800;
}
.modal-product-meta strong {
  font-size: 42px;
  line-height: 1;
}
.modal-product-details {
  margin-top: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f5f5f6;
  color: var(--muted);
  line-height: 1.7;
}
.modal-open { overflow: hidden; }
@media (max-width: 820px) {
  .product-modal-card { grid-template-columns: 1fr; }
  .product-modal-media { min-height: 320px; border-right: 0; border-bottom: 1px solid var(--line); }
  .product-modal-content { padding: 34px 26px 28px; }
  .modal-product-meta { align-items: flex-start; flex-direction: column; }
}


/* Button alignment fix */
.btn,
.cart-button,
button,
a.btn,
.product-card .btn,
.product-modal .btn,
.modal-actions .btn,
.hero-actions .btn,
.gate-actions .btn,
.admin-actions .btn,
.price-line .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1.15 !important;
  min-height: 46px;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
  box-sizing: border-box !important;
  max-width: 100%;
}

.btn,
a.btn,
button.btn {
  padding: 12px 18px !important;
}

.price-line .btn,
.product-card .btn {
  min-width: 160px;
  max-width: 100%;
  padding-left: 14px !important;
  padding-right: 14px !important;
}

.modal-actions,
.hero-actions,
.gate-actions,
.admin-actions,
.price-line {
  align-items: stretch;
}

.cart-button {
  min-width: fit-content;
  white-space: nowrap !important;
}

.cart-button span {
  flex: 0 0 auto;
}

@media (max-width: 720px) {
  .btn,
  a.btn,
  button.btn,
  .price-line .btn,
  .product-card .btn {
    width: 100%;
    min-width: 0;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .cart-button {
    width: auto;
  }
}


@media (max-width: 720px) {
  .hero-model-stage, .hero-model-slide { min-height: 240px; }
}


/* Order modal instruction */
.order-next-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin: 18px auto 16px;
  text-align: left;
}
.order-next-step .order-number {
  margin: 0;
  height: 100%;
  min-height: 112px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.order-instruction {
  padding: 18px 20px;
  border-radius: 18px;
  background: #f5f5f6;
  border: 1px solid var(--line);
}
.order-instruction strong {
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
}
.order-instruction p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
@media (max-width: 640px) {
  .order-next-step {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .order-next-step .order-number {
    width: 100%;
  }
  .order-instruction {
    text-align: left;
  }
}


/* Global typography / overflow correction */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body,
button,
input,
textarea,
select,
a {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

h1,
h2,
h3,
p,
span,
strong,
small,
a,
button,
label,
input,
textarea,
select,
div {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  hyphens: auto;
}

.btn,
button,
.cart-button,
a.btn,
.product-more,
.variant-tabs button,
.modal-close,
.qty button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1.15 !important;
  min-height: 46px;
  max-width: 100%;
  white-space: normal !important;
  overflow: hidden;
  text-overflow: clip;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  box-sizing: border-box !important;
}

.btn,
a.btn,
button.btn {
  padding: 12px 18px !important;
}

.hero-actions .btn,
.gate-actions .btn,
.modal-actions .btn,
.admin-actions .btn {
  min-width: 170px;
}

.price-line .btn,
.product-card .btn {
  min-width: 158px;
  max-width: 100%;
  padding-left: 14px !important;
  padding-right: 14px !important;
  font-size: clamp(13px, 1.15vw, 16px);
}

.cart-button {
  white-space: nowrap !important;
  overflow: visible;
  flex: 0 0 auto;
}

.cart-button span {
  flex: 0 0 auto;
  overflow: visible;
}

.hero-copy,
.hero-visual,
.product-card,
.product-body,
.product-modal-card,
.product-modal-content,
.modal-card,
.order-modal .modal-card,
.gate-card,
.admin-card,
.admin-hero,
.legal-card,
.cart-card,
.order-form,
.trust-card,
.step-card,
.info-card {
  min-width: 0;
}

.hero-copy h1 {
  font-size: clamp(40px, 4.7vw, 70px);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 100%;
}

.hero-badges span,
.category-chip,
.badge,
.hero-model-meta span,
.shipping-pill {
  white-space: normal;
  text-align: center;
  line-height: 1.15;
}

.hero-model-meta span {
  min-height: 34px;
}

.mini-product,
.mini-product-compact {
  min-width: 0;
}

.mini-product div,
.mini-product-compact div {
  min-width: 0;
}

.mini-product strong,
.mini-product span,
.mini-product-compact strong,
.mini-product-compact span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-title {
  align-items: flex-start;
}

.section-title p:last-child {
  max-width: 480px;
}

.product-head {
  align-items: flex-start;
}

.product-head h3 {
  font-size: clamp(22px, 2.1vw, 28px);
  max-width: 100%;
}

.product-body.compact {
  gap: 14px;
}

.product-copy,
.product-details {
  min-height: 0;
}

.price-line {
  align-items: center;
  min-width: 0;
}

.price {
  font-size: clamp(30px, 3vw, 36px);
  line-height: 1;
  white-space: nowrap;
  flex: 0 0 auto;
}

.variant-tabs {
  max-width: 100%;
}

.variant-tabs button {
  min-height: 38px;
  padding: 9px 12px !important;
  font-size: clamp(12px, 1vw, 13px);
  flex: 0 1 auto;
}

.product-modal-card {
  max-width: min(980px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 32px));
}

.product-modal-content h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  max-width: calc(100% - 36px);
}

.modal-product-meta {
  align-items: flex-start;
  flex-wrap: wrap;
}

.modal-product-meta span {
  line-height: 1.15;
  text-align: center;
}

.modal-product-meta strong {
  font-size: clamp(32px, 4vw, 42px);
  white-space: nowrap;
}

.modal-product-details,
#modalProductDescription {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.modal-actions {
  align-items: stretch;
}

.modal-actions .btn {
  flex: 1 1 190px;
}

.modal-close {
  padding: 0 !important;
  min-width: 42px;
  min-height: 42px;
  font-size: 28px;
  line-height: 1 !important;
  overflow: visible;
}

.order-number,
#modalOrderNumber {
  max-width: 100%;
  font-size: clamp(24px, 5vw, 34px);
  overflow-wrap: anywhere;
  text-align: center;
}

.order-next-card,
.order-instruction-card,
.next-steps,
.order-next {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.order-next-card strong,
.order-instruction-card strong,
.next-steps strong,
.order-next strong {
  line-height: 1.2;
}

.order-next-card p,
.order-instruction-card p,
.next-steps p,
.order-next p {
  margin-bottom: 0;
}

.cart-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.cart-row strong,
.cart-row small {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.qty {
  flex: 0 0 auto;
}

.qty button {
  min-width: 32px;
  min-height: 32px;
  padding: 0 !important;
  overflow: visible;
}

.order-form .btn[type="submit"] {
  width: 100%;
  min-height: 54px;
  padding-left: 18px !important;
  padding-right: 18px !important;
}

.admin-card .btn,
.admin-actions .btn {
  min-width: 160px;
}

.order-card,
.product-admin-card {
  min-width: 0;
}

.order-card-head {
  align-items: flex-start;
}

.order-card select,
.product-admin-card input,
.product-admin-card textarea {
  min-width: 0;
  max-width: 100%;
}

.footer-brand,
.footer-links {
  min-width: 0;
}

@media (max-width: 1050px) {
  .section-title {
    display: block;
  }

  .section-title p:last-child {
    max-width: 100%;
    margin-top: 12px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 7vw, 62px);
  }
}

@media (max-width: 820px) {
  .product-modal-card {
    max-height: calc(100vh - 24px);
  }

  .product-modal-content h2 {
    max-width: calc(100% - 44px);
  }

  .modal-actions .btn {
    flex-basis: 100%;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    gap: 10px;
    font-size: 10px;
    line-height: 1.35;
  }

  .nav {
    align-items: flex-start;
  }

  .cart-button {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  h3 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .hero-actions .btn,
  .gate-actions .btn,
  .modal-actions .btn,
  .admin-actions .btn,
  .btn,
  a.btn,
  button.btn,
  .price-line .btn,
  .product-card .btn {
    width: 100%;
    min-width: 0;
  }

  .price-line {
    flex-direction: column;
    align-items: stretch;
  }

  .price {
    white-space: normal;
  }

  .shipping-banner {
    align-items: flex-start;
  }

  .shipping-pill {
    white-space: normal;
  }

  .product-modal-content {
    padding-right: 24px;
    padding-left: 24px;
  }

  .product-modal-content h2 {
    max-width: calc(100% - 44px);
  }

  .modal-product-meta {
    flex-direction: column;
  }

  .order-number,
  #modalOrderNumber {
    width: 100%;
  }

  .cart-row {
    grid-template-columns: 1fr;
  }

  .qty {
    justify-content: flex-start;
  }
}


@media (max-width: 720px) {
  .reviews-section { padding: 24px; }
  .reviews-marquee { mask-image: none; -webkit-mask-image: none; }
  .reviews-marquee-inner { gap: 14px; animation-duration: 58s; }
  .review-card { width: 290px; min-height: 240px; padding: 20px; }
  .review-card p { font-size: 15px; }
}


.reviews-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fafafb 0%, #f4f4f6 100%);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 38px;
  box-shadow: var(--shadow-soft);
}
.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(17,17,17,.05), transparent 32%);
}
.reviews-title {
  margin-bottom: 22px;
}
.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.trust-metric-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #fafafb 100%);
  box-shadow: var(--shadow-soft);
}
.trust-metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}
.trust-metric-card strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}
.trust-metric-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}
.reviews-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}
.reviews-marquee-inner {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  animation: reviewsMarqueeRight 68s linear infinite;
  will-change: transform;
}
.reviews-marquee:hover .reviews-marquee-inner {
  animation-play-state: paused;
}
.review-card {
  width: 368px;
  min-height: 258px;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  border: 1px solid #e3e3e7;
  box-shadow: 0 18px 34px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
}
.review-card::after {
  content: '”';
  position: absolute;
  top: 12px;
  right: 18px;
  color: rgba(17,17,17,.08);
  font-size: 84px;
  line-height: 1;
  font-weight: 800;
}
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.review-stars {
  color: #111111;
  font-size: 15px;
  letter-spacing: .16em;
  white-space: nowrap;
}
.review-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  white-space: nowrap;
}
.review-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}
.review-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-meta strong {
  color: var(--ink);
  font-size: 16px;
}
.review-meta span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}
.review-trust-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f6f6f7;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
@keyframes reviewsMarqueeRight {
  from { transform: translateX(calc(-50% - 9px)); }
  to { transform: translateX(0); }
}
@media (max-width: 1050px) {
  .trust-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .reviews-section {
    padding: 24px;
  }
  .trust-metrics {
    grid-template-columns: 1fr;
  }
  .reviews-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .reviews-marquee-inner {
    gap: 14px;
    animation-duration: 60s;
  }
  .review-card {
    width: 292px;
    min-height: 280px;
    padding: 20px;
  }
  .review-top,
  .review-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .review-card p {
    font-size: 15px;
  }
}

