:root {
  --ink: #0d1117;
  --ink-2: #141a23;
  --muted: #6b7280;
  --line: #e5e7eb;
  --line-strong: #d1d5db;
  --paper: #ffffff;
  --soft: #f4f5f7;
  --soft-2: #fafafa;
  --dark: #121820;
  --dark-2: #0b0f14;
  --accent: #ffc400;
  --accent-2: #ffb000;
  --accent-soft: #fff4c2;
  --danger: #b42318;
  --success: #59b514;
  --shadow: 0 18px 48px rgba(15, 23, 42, .10);
  --shadow-soft: 0 10px 28px rgba(15, 23, 42, .08);
  --radius: 16px;
  --radius-sm: 12px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,196,0,.12), transparent 30%),
    linear-gradient(180deg, #f7f8fa 0%, #eef0f3 100%);
  color: var(--ink);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  width: min(1880px, calc(100% - 40px));
  margin: 20px auto 0;
  padding: 16px 24px;
  border: 1px solid rgba(229, 231, 235, .9);
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 950; }
.brand-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--ink);
  border-radius: 9px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 950;
}
.brand-text { letter-spacing: -.02em; }
.brand-text span { color: #ffb000; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(12px,2vw,28px); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.site-nav a { white-space: nowrap; }
.site-nav a:not(.button):hover { color: #b27a00; }
.nav-pill { padding: 10px 16px; border: 1.5px solid var(--ink); border-radius: 7px; }
.nav-cta { min-height: 40px; }
.nav-toggle { display: none; padding: 9px 12px; border: 1px solid var(--line-strong); border-radius: 8px; background: #fff; font-weight: 900; }

.container { flex: 1 0 auto; width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 26px 0 56px; }
.container-wide { width: min(1880px, calc(100% - 32px)); }
section, .band, .steps-section, .split, .two-columns { margin-top: 24px; }

h1, h2, h3, p { overflow-wrap: anywhere; }
h1, .hero-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 5.8vw, 92px);
  line-height: .94;
  letter-spacing: -.03em;
  font-weight: 1000;
  text-transform: uppercase;
}
h2 { margin: 0 0 10px; font-size: clamp(26px,3vw,44px); line-height: 1.04; letter-spacing: -.02em; font-weight: 1000; }
h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -.01em; }
p { margin: 0 0 14px; }
.eyebrow { margin: 0 0 8px; color: var(--muted); font-size: 12px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.help { color: var(--muted); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1.5px solid var(--ink);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  box-shadow: none;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(15,23,42,.10); }
.button.primary { border-color: var(--accent-2); background: linear-gradient(180deg, var(--accent), var(--accent-2)); color: var(--ink); }
.button.primary:hover { background: linear-gradient(180deg, #ffd028, #f0a900); }
.button.secondary { background: #fff; color: var(--ink); }
.button.large { min-height: 56px; padding-inline: 26px; font-size: 15px; }
.button.small { min-height: 34px; padding: 7px 12px; font-size: 12px; }
.button:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.hero-actions, .action-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.action-row.vertical { align-items: stretch; flex-direction: column; }

.app-card, .hero-panel, .auth-card, .payment-box, .success-page, .panel, .shop-card, .notice, .proof-box, .legal-page,
.split, .band, .steps-section, .shop-header, .dashboard-head, .table-wrap, .wizard, .shop-buy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}
.panel, .auth-card, .success-page, .legal-page, .payment-box { padding: clamp(22px,4vw,46px); }
.auth-card, .success-page { max-width: 780px; margin: 32px auto; }

.hero-landing {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(28px,5vw,80px);
  min-height: 620px;
  padding: clamp(34px,5vw,72px);
  overflow: hidden;
  position: relative;
}
.hero-landing::after {
  content: "";
  position: absolute;
  right: 6%;
  top: 12%;
  width: min(620px, 48vw);
  height: min(620px, 48vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,220,240,.82), rgba(197,220,240,.16) 58%, transparent 70%);
  z-index: 0;
}
.hero-copy, .hero-products { position: relative; z-index: 1; }
.hero-copy p { max-width: 520px; font-size: clamp(18px,2vw,24px); color: #202833; }
.hero-benefits { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; color: #111827; font-size: 13px; font-weight: 800; }
.hero-benefits span::before { content: "✓"; margin-right: 7px; font-weight: 950; }
.hero-products { min-height: 500px; display: grid; place-items: center; }
.product-splash { position: relative; width: min(720px, 100%); min-height: 500px; }
.product-splash img { position: absolute; object-fit: contain; filter: drop-shadow(0 28px 26px rgba(15,23,42,.25)); }
.product-splash .hoodie { right: 10%; top: 0; width: 58%; }
.product-splash .shirt { left: 8%; bottom: 1%; width: 48%; }
.ak-print {
  position: absolute;
  left: 53%;
  top: 35%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  color: #fff;
  font-size: 46px;
  line-height: .82;
  text-align: center;
  font-weight: 1000;
  text-shadow: 0 3px 0 #111, 0 0 0 #111;
  pointer-events: none;
}
.ak-print span { display: block; color: var(--accent); font-size: 62px; -webkit-text-stroke: 2px #111; text-shadow: none; }
.production-badge {
  position: absolute;
  right: 0;
  top: 26%;
  display: grid;
  place-items: center;
  width: 154px;
  height: 154px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  text-align: center;
  font-weight: 1000;
  line-height: 1.05;
  box-shadow: 0 18px 30px rgba(255,176,0,.32);
  transform: rotate(-4deg);
}
.production-badge strong { display: block; font-size: 28px; }

.benefit-grid, .step-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 0; }
.benefit-card, .step-card {
  padding: clamp(18px,2vw,34px);
  text-align: center;
  border-right: 1px solid var(--line);
}
.benefit-card:last-child, .step-card:last-child { border-right: 0; }
.line-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 28px;
  font-weight: 1000;
  box-shadow: 0 8px 20px rgba(15,23,42,.06);
}
.line-icon small { color: var(--accent-2); font-size: 18px; }
.benefit-card h3, .step-card h3 { font-size: 14px; text-transform: uppercase; font-weight: 1000; }
.benefit-card p, .step-card p { margin: 0; color: #323a46; font-size: 14px; }
.steps-section { padding: clamp(28px,4vw,54px); text-align: center; }
.step-grid { margin-top: 34px; }
.step-card .line-icon { font-size: 32px; }

.dark-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  padding: 28px clamp(18px,4vw,54px);
  border-radius: 0 0 var(--radius) var(--radius);
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: #fff;
}
.dark-trust span, .shop-trust span, .footer-trust span { display: grid; gap: 2px; }
.dark-trust strong, .shop-trust strong, .footer-trust strong { font-size: 13px; text-transform: uppercase; }
.dark-trust strong::before, .shop-trust strong::before, .footer-trust strong::before { content: "✦"; color: var(--accent); margin-right: 7px; }
.dark-trust small, .shop-trust small, .footer-trust small { color: #c8d0dc; }

.lookup-card, .contact-section { padding: clamp(24px,4vw,42px); }
.split { grid-template-columns: minmax(0,.9fr) minmax(300px,1fr); align-items: start; gap: 26px; }
.two-columns, .form-grid, .option-grid, .preview-pair, .designer, .designer-preview { display: grid; gap: 18px; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.two-columns { grid-template-columns: repeat(2,minmax(0,1fr)); }
.form-grid, .option-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }

label, .label { display: grid; gap: 7px; color: #202833; font-weight: 800; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(255,196,0,.32); border-color: var(--accent-2); }
textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.inline-form { display: flex; gap: 10px; }
.inline-form input { flex: 1; }
.stacked-form, .lookup-form, .tools { display: grid; gap: 14px; }

.wizard { padding: 0; overflow: hidden; }
.wizard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}
.wizard-head h1 { margin: 0; font-size: clamp(28px,3vw,44px); text-transform: none; letter-spacing: -.02em; }
.wizard-shell { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 0; align-items: stretch; }
.wizard-main { padding: 0; }
.wizard-summary-panel {
  border-left: 1px solid var(--line);
  background: #fbfbfc;
  padding: 24px;
}
.wizard-summary-card {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.summary-product-stage { min-height: 160px; display: grid; place-items: center; border-radius: 12px; background: #f4f5f7; }
.summary-product-stage img { max-height: 150px; object-fit: contain; }
.live-summary-list { display: grid; gap: 10px; }
.live-summary-list div { display: flex; justify-content: space-between; gap: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--line); font-size: 13px; }
.live-summary-list dt { margin: 0; color: var(--muted); font-weight: 800; text-transform: none; }
.live-summary-list dd { margin: 0; text-align: right; font-weight: 900; }
.live-summary-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 10px; border-top: 1.5px solid var(--ink); font-weight: 1000; }
.live-summary-total strong { font-size: 20px; }
.progress { width: 220px; height: 10px; overflow: hidden; border-radius: 999px; background: #e8ebef; }
.progress span { display: block; width: 14%; height: 100%; background: var(--accent); }
.wizard-steps {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 0;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}
.wizard-steps button {
  position: relative;
  min-height: 64px;
  padding: 8px 6px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}
.wizard-steps button::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  margin: 0 auto 6px;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
}
.wizard-steps button.active { color: var(--ink); }
.wizard-steps button.active::before { border-color: var(--ink); background: var(--accent); box-shadow: inset 0 0 0 7px var(--accent); }
.wizard-step { display: none; padding: 28px; background: #fff; }
.wizard-step.active { display: block; }
.wizard-step h2 { font-size: clamp(22px,2.5vw,34px); text-transform: none; }
.wizard-actions { display: flex; justify-content: space-between; gap: 12px; padding: 22px 28px; border-top: 1px solid var(--line); background: #fff; }
.step-error { margin-bottom: 16px; padding: 12px 14px; border-left: 5px solid var(--accent); border-radius: 8px; background: var(--accent-soft); color: #5c4000; font-weight: 850; }

.choice, .service-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfcfe;
}
.choice input, .service-box input { width: auto; min-height: auto; margin-top: 5px; accent-color: var(--accent); }
.service-box { display: grid; grid-template-columns: auto 1fr; margin-top: 18px; }
.service-box span { grid-column: 2; color: var(--muted); font-weight: 500; }
.service-box strong { display: block; color: var(--ink); }
.choice.important { border-color: var(--accent-2); background: #fff8d9; }

.product-card-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 14px; margin: 18px 0 24px; }
.product-choice {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 230px;
  padding: 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  box-shadow: none;
}
.product-choice:hover, .product-choice.active { border-color: var(--accent-2); box-shadow: 0 12px 28px rgba(255,176,0,.14); }
.product-choice.active::after {
  content: "✓";
  position: absolute;
  right: 10px;
  top: 10px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-weight: 1000;
}
.product-thumb { display: grid; place-items: center; min-height: 150px; border-radius: 10px; background: #f4f5f7; overflow: hidden; }
.product-thumb img { max-width: 80%; max-height: 150px; object-fit: contain; }
.product-choice strong { text-transform: uppercase; font-size: 13px; }
.product-choice small { display: block; margin-top: 3px; color: var(--ink); font-weight: 900; }
.color-swatch-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 14px 0 20px; }
.color-swatch { display: inline-grid; place-items: center; gap: 5px; width: 48px; min-height: 48px; padding: 5px; border: 2px solid transparent; border-radius: 50%; background: #fff; color: var(--ink); cursor: pointer; }
.color-swatch span { width: 34px; height: 34px; border: 1px solid rgba(15, 23, 42, .18); border-radius: 999px; box-shadow: inset 0 0 0 2px rgba(255,255,255,.58); }
.color-swatch small { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.color-swatch:hover, .color-swatch.active { border-color: var(--ink); box-shadow: 0 0 0 4px var(--accent); }

.designer { grid-template-columns: minmax(280px,.85fr) minmax(280px,1fr); }
.dual-designer { grid-template-columns: repeat(2,minmax(280px,1fr)); }
.designer-preview, .preview-pair { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-top: 18px; }
.shirt-stage, .shirt-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: radial-gradient(circle at 50% 30%, #fff 0, #eef0f3 72%);
}
.compact-preview .shirt-stage { min-height: 300px; }
.shop-visual-dark .shirt-preview {
  min-height: 560px;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.product-image { position: relative; z-index: 1; max-width: 90%; max-height: 92%; object-fit: contain; }
.print-area { position: absolute; left: 50%; top: 48%; z-index: 2; width: 32%; height: 24%; transform: translate(-50%, -50%); border: 2px dashed rgba(255,196,0,.95); border-radius: 8px; background: rgba(255,196,0,.10); pointer-events: none; }
.print-area.large { width: 52%; height: 42%; }
.design-art { position: absolute; left: 50%; top: 48%; z-index: 3; max-width: 42%; max-height: 42%; object-fit: contain; filter: drop-shadow(0 8px 14px rgba(15,23,42,.15)); transform: translate(-50%, -50%); transform-origin: center center; }
.names-preview, .names-on-shirt { position: absolute; left: 28%; right: 28%; bottom: 18%; display: grid; gap: 2px 8px; text-align: center; font-weight: 900; line-height: 1.15; word-break: break-word; z-index: 4; transform-origin: center center; }
.columns-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
.names-preview strong, .names-on-shirt strong { grid-column: 1 / -1; margin-bottom: 5px; }
.proof-box { min-height: 220px; padding: 18px; box-shadow: none; }
.proof-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; margin-bottom: 18px; }
.small-proof { min-height: 260px; }
.proof-details { margin-top: 16px; }

.price-box, .summary-box, .order-summary { margin-top: 18px; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: #fbfcfe; }
.price-box h3, .summary-box h3, .order-summary h3 { margin: 0 0 12px; }
.price-list { display: grid; gap: 8px; margin: 0 0 12px; padding: 0; list-style: none; }
.price-list li { display: grid; grid-template-columns: minmax(0,1fr) auto auto; gap: 10px; align-items: baseline; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.price-list small { color: var(--muted); font-weight: 800; }
.current-price { margin: 10px 0 0; font-size: clamp(28px,4vw,44px); font-weight: 1000; color: var(--ink); }
.setup-price { margin: 6px 0 0; }
.summary-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin: 0; }
.summary-list div { padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }

.shop-page { display: grid; gap: 24px; }
.shop-product-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(340px,420px);
  gap: 26px;
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(135deg, #161b22, #080b0f);
  color: #fff;
}
.shop-product-layout h1, .shop-product-layout h2 { color: #fff; }
.shop-visual-dark { padding: clamp(22px,4vw,42px); }
.shop-visual-dark .preview-pair { margin: 0; }
.shop-visual-dark h3 { color: #fff; }
.shop-buy-card { align-self: center; margin: 28px; padding: 24px; color: var(--ink); }
.shop-buy-card .price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 12px; }
.shop-buy-card .price-row strong { font-size: 24px; }
.buy-bullets { display: grid; gap: 6px; margin: 14px 0 18px; padding: 0; list-style: none; color: #202833; font-size: 14px; }
.buy-bullets li::before { content: "✓"; margin-right: 8px; font-weight: 1000; }
.shop-trust { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; padding: 18px 22px; border-radius: 0 0 var(--radius) var(--radius); background: #fff; color: var(--ink); }
.shop-trust small { color: var(--muted); }
.shop-trust strong::before { color: var(--accent-2); }

.dashboard-head, .shop-header { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; padding: 24px; }
.dashboard-head h1, .shop-header h1 { margin: 0; font-size: clamp(30px,4vw,54px); text-transform: none; }
.share-box { display: grid; gap: 10px; min-width: 230px; }
.facts { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; margin: 16px 0 0; }
.facts.compact { grid-template-columns: repeat(3,1fr); }
.facts div, .metric-grid div { padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: #fbfcfe; }
dt { color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; }
dd { margin: 4px 0 0; font-weight: 1000; }
.metric-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.metric-grid span { display: block; font-size: clamp(22px,2.5vw,34px); font-weight: 1000; }
.card-grid, .import-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 16px; margin-top: 20px; }
.shop-card, .import-card { display: grid; gap: 16px; padding: 20px; }
.admin-shop-card {
  display: grid;
  grid-template-columns: 190px minmax(0,1fr) 190px;
  gap: 24px;
  align-items: center;
}
.admin-shop-media { display: grid; place-items: center; min-height: 190px; border-radius: 12px; background: #f2f3f5; }
.admin-shop-media img { max-height: 170px; object-fit: contain; }
.admin-shop-data { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px 22px; margin-top: 14px; }
.admin-shop-data div { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); padding-bottom: 6px; }
.status, .status-badge { display: inline-flex; align-items: center; justify-content: center; padding: 4px 9px; border-radius: 999px; background: var(--success); color: #fff; font-size: 12px; font-weight: 1000; text-transform: uppercase; }

.compact-list { padding-left: 18px; }
.compact-list li { margin: 6px 0; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #f7f8fa; color: #334155; font-size: 12px; text-transform: uppercase; }
.inline-admin-form { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.inline-admin-form input { width: 92px; min-height: 34px; }
.inline-admin-form label { display: inline-flex; align-items: center; width: auto; }
.inline-admin-form input[type=checkbox] { width: auto; }
.admin-thumb { width: 58px; height: 68px; object-fit: contain; border: 1px solid var(--line); border-radius: 8px; background: #f8fafc; }
.admin-color-preview { display: flex; align-items: center; gap: 10px; }
.admin-color-preview span { width: 30px; height: 30px; border: 1px solid rgba(15,23,42,.18); border-radius: 999px; }
.admin-color-preview img { width: 52px; height: 62px; object-fit: contain; border: 1px solid var(--line); border-radius: 8px; background: #f8fafc; }
.import-color { border-top: 1px solid var(--line); padding-top: 12px; }
.import-images { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 8px; }
.import-images img { max-width: 100%; height: 180px; object-fit: contain; border: 1px solid var(--line); border-radius: 8px; background: #f8fafc; }

.captcha-box { padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: #f8fafc; }
.captcha-box span { color: var(--muted); font-weight: 700; }
.flash, .notice { width: min(1180px, calc(100% - 32px)); margin: 16px auto 0; padding: 14px 16px; border-left: 5px solid var(--accent); color: #2b2500; background: #fff8d9; }
.notice { width: auto; box-shadow: none; }
.notice.warning, .flash-error { border-left-color: var(--danger); color: #7a271a; background: #fff4f2; }
.notice.success, .flash-success { border-left-color: var(--success); background: #f0fbea; color: #245500; }
.code-box { display: inline-flex; margin: 8px 0 18px; padding: 12px 16px; border: 1px dashed var(--accent-2); border-radius: 8px; background: #fff8d9; font-size: 24px; font-weight: 1000; }
code { padding: 2px 5px; border-radius: 5px; background: #eef0f3; }

.site-footer {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr .8fr;
  gap: 28px;
  align-items: start;
  width: min(1880px, calc(100% - 32px));
  margin: 0 auto 20px;
  padding: 34px clamp(18px,4vw,54px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: #fff;
  box-shadow: var(--shadow);
}
.site-footer a { color: #fff; }
.footer-brand p { color: #c8d0dc; margin: 10px 0 0; }
.footer-logo .brand-text { color: #fff; }
.footer-trust { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.footer-trust small { color: #c8d0dc; }
.footer-links { display: grid; gap: 10px; justify-items: start; }
.footer-cookie-button { padding: 0; border: 0; background: transparent; color: #fff; cursor: pointer; font: inherit; font-weight: 800; }
.footer-cookie-button:hover { text-decoration: underline; }

.cookie-consent { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 18px; background: rgba(15, 23, 42, .46); }
.cookie-consent[hidden] { display: none !important; }
.cookie-panel { width: min(760px, 100%); max-height: calc(100vh - 36px); overflow: auto; padding: clamp(18px,3vw,28px); border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
.cookie-options { display: grid; gap: 10px; margin: 18px 0; }
.cookie-option { display: grid; grid-template-columns: auto 1fr; gap: 10px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: #f8fafc; }
.cookie-option input { width: auto; min-height: auto; margin-top: 5px; }
.cookie-option small { display: block; color: var(--muted); font-weight: 500; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }

@media (max-width: 1180px) {
  .benefit-grid, .step-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .benefit-card, .step-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .wizard-shell, .shop-product-layout, .admin-shop-card, .site-footer { grid-template-columns: 1fr; }
  .wizard-summary-panel { border-left: 0; border-top: 1px solid var(--line); }
  .wizard-summary-card { position: static; }
  .shop-buy-card { margin: 0 22px 22px; }
}

@media (max-width: 980px) {
  .topbar { width: min(100% - 24px, 100%); margin-top: 12px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
    align-items: stretch;
    flex-direction: column;
  }
  body.nav-open .site-nav { display: flex; }
  .hero-landing, .split, .designer, .dual-designer, .preview-pair, .designer-preview, .proof-grid, .two-columns, .form-grid, .option-grid { grid-template-columns: 1fr; }
  .hero-landing { min-height: auto; }
  .hero-products { min-height: 420px; }
  .product-splash { min-height: 420px; }
  .three-col, .metric-grid, .facts, .shop-trust, .dark-trust { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .wizard-steps { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .dashboard-head, .shop-header { flex-direction: column; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 20px, 100%); padding-top: 18px; }
  .topbar { padding: 12px 14px; }
  .brand-text { font-size: 14px; }
  h1, .hero-title { font-size: clamp(38px,13vw,58px); }
  .hero-landing { padding: 24px 18px; }
  .hero-actions, .wizard-actions, .cookie-actions, .inline-form { flex-direction: column; align-items: stretch; }
  .hero-benefits { gap: 10px; flex-direction: column; }
  .product-splash { min-height: 340px; }
  .product-splash .hoodie { width: 64%; right: 0; }
  .product-splash .shirt { width: 52%; left: 0; }
  .ak-print { width: 86px; height: 86px; font-size: 26px; }
  .ak-print span { font-size: 42px; }
  .production-badge { width: 112px; height: 112px; font-size: 12px; }
  .production-badge strong { font-size: 22px; }
  .benefit-grid, .step-grid, .three-col, .metric-grid, .facts, .shop-trust, .dark-trust, .footer-trust, .summary-list, .admin-shop-data { grid-template-columns: 1fr; }
  .wizard-head { align-items: flex-start; flex-direction: column; padding: 20px; }
  .progress { width: 100%; }
  .wizard-steps { grid-template-columns: repeat(2,minmax(0,1fr)); padding: 16px; }
  .wizard-step, .wizard-actions, .wizard-summary-panel { padding: 18px; }
  .shirt-stage, .shirt-preview, .shop-visual-dark .shirt-preview { min-height: 330px; }
  .names-preview, .names-on-shirt { left: 20%; right: 20%; font-size: 12px !important; }
  .price-list li { grid-template-columns: 1fr; gap: 2px; }
  .shop-buy-card { margin: 0 14px 14px; }
  .site-footer { width: min(100% - 20px, 100%); }
}
