/* Storefront product configurator — demo styles inspired by Rockstar Passes PDP */
:root {
  --rsp-navy: #1a2b4a;
  --rsp-blue: #1e3a6e;
  --rsp-purple: #7c3aed;
  --rsp-purple-light: #ede9fe;
  --rsp-orange: #e07a3a;
  --rsp-tan: #f5e6d3;
  --rsp-green: #16a34a;
  --rsp-border: #e5e7eb;
  --rsp-muted: #6b7280;
  --rsp-bg: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--rsp-navy);
  background: #f9fafb;
  line-height: 1.45;
}

a { color: var(--rsp-purple); }

.store-header {
  background: var(--rsp-navy);
  color: #fff;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.store-header a { color: #fff; text-decoration: none; font-weight: 600; }
.store-header .links { display: flex; gap: 16px; font-size: 13px; }
.store-header .links a { opacity: 0.85; font-weight: 400; }
.store-header .links a:hover { opacity: 1; }

.demo-bar {
  background: #fff7ed;
  border-bottom: 1px solid #fed7aa;
  padding: 8px 24px;
  font-size: 13px;
  color: #9a3412;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.container { max-width: 1200px; margin: 0 auto; padding: 24px; }

/* Product list */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--rsp-border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.product-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.product-card .thumb {
  height: 180px;
  background: linear-gradient(135deg, #1e3a6e 0%, #4c1d95 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.product-card .thumb.styrene {
  background: linear-gradient(135deg, #0f766e 0%, #1e3a6e 100%);
}
.product-card .thumb.edge {
  background: linear-gradient(135deg, #7c3aed 0%, #e07a3a 100%);
}
.product-card .thumb.satin {
  background: linear-gradient(135deg, #0f172a 0%, #7c3aed 55%, #e07a3a 100%);
}
.product-card .thumb.posters {
  background: linear-gradient(135deg, #1e3a6e 0%, #7c3aed 55%, #111827 100%);
}
.product-card .thumb.pouch {
  background: linear-gradient(135deg, #64748b 0%, #1e3a6e 55%, #0f172a 100%);
}
.product-card .thumb.bagtag {
  background: linear-gradient(135deg, #0f766e 0%, #1e3a6e 50%, #7c3aed 100%);
}
.product-card .thumb.lanyard {
  background: linear-gradient(180deg, #fb923c 0%, #ec4899 50%, #7c3aed 100%);
}
.product-card .thumb.stockly {
  background: linear-gradient(180deg, #1a1a1a 0%, #334155 60%, #94a3b8 100%);
}
.product-card .body { padding: 16px; }
.product-card h3 { font-size: 18px; margin-bottom: 6px; }
.product-card .price { color: var(--rsp-purple); font-weight: 700; }
.product-card .sku { font-size: 12px; color: var(--rsp-muted); margin-bottom: 12px; }
.btn-shop {
  display: inline-block;
  background: linear-gradient(90deg, #7c3aed, #e07a3a);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  border: none;
  cursor: pointer;
}

/* PDP layout */
.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  background: #fff;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--rsp-border);
}
.pdp-lanyard .pdp-header-full {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.pdp-left .gallery {
  display: flex;
  gap: 12px;
}
.thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.thumbs .t {
  width: 56px; height: 56px;
  background: #e5e7eb;
  border-radius: 4px;
  border: 2px solid transparent;
}
.thumbs .t.active { border-color: var(--rsp-purple); }
.thumbs .t-combo {
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.combo-stage {
  background: #e8edf2;
  min-height: 420px;
  padding: 20px 48px 40px;
}
.combo-main-img {
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  display: block;
}
.main-img {
  flex: 1;
  min-height: 320px;
  background: linear-gradient(145deg, #dbeafe, #f3e8ff);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
}
.badge-preview {
  width: 140px;
  height: 200px;
  background: #1e3a6e;
  border-radius: 6px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.badge-preview .lanyard {
  position: absolute;
  top: 40px;
  width: 8px;
  height: 60px;
  background: #dc2626;
  border-radius: 2px;
}

.poster-stage {
  background: #e5e7eb;
  min-height: 380px;
  flex-direction: row;
  padding: 28px 48px;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.gallery-nav.prev { left: 8px; }
.gallery-nav.next { right: 8px; }
.poster-frame {
  background: #111;
  padding: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}
.poster-art {
  width: 168px;
  height: 230px;
  background: linear-gradient(180deg, #6b7280 0%, #9ca3af 40%, #d1d5db 100%);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.poster-word {
  position: absolute;
  inset: 18% 6% auto;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.92);
  text-align: center;
  line-height: 0.85;
}
.poster-figure {
  width: 70px;
  height: 140px;
  margin-top: 48px;
  background: #111;
  clip-path: polygon(50% 0, 72% 28%, 62% 48%, 88% 70%, 70% 100%, 50% 78%, 30% 100%, 12% 70%, 38% 48%, 28% 28%);
  opacity: 0.85;
}
.poster-size-chip {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: #fff;
  border: 1px solid var(--rsp-border);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--rsp-navy);
}

.pouch-stage {
  background: #e8edf2;
  min-height: 380px;
  flex-direction: row;
  padding: 28px 48px;
}
.pouch-sleeve {
  width: 148px;
  height: 250px;
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.18));
  border: 2px solid rgba(100, 116, 139, 0.55);
  border-radius: 10px;
  position: relative;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
  padding: 8px;
}
.pouch-hole {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 12px;
  border: 2px solid #64748b;
  border-radius: 8px;
  background: #e8edf2;
  z-index: 2;
}
.pouch-card {
  margin-top: 22px;
  height: calc(100% - 22px);
  background: #1e3a6e;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
}
.pouch-name {
  margin-top: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  opacity: 0.85;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  min-width: 72px;
}

.bagtag-stage {
  background: linear-gradient(180deg, #e8edf2 0%, #dbe4ee 100%);
  min-height: 420px;
  flex-direction: column;
  padding: 28px 36px 48px;
  position: relative;
}
.bagtag-strap {
  width: 10px;
  height: 72px;
  background: linear-gradient(90deg, #334155, #64748b, #334155);
  border-radius: 4px;
  margin-bottom: -6px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
}
.bagtag-tag {
  width: 168px;
  height: 268px;
  background: #fff;
  border-radius: 12px 12px 18px 18px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 12px 16px;
}
.bagtag-slot {
  width: 42px;
  height: 12px;
  border: 2px solid #64748b;
  border-radius: 8px;
  background: #e8edf2;
  margin-bottom: 12px;
}
.bagtag-art {
  flex: 1;
  width: 100%;
  background: linear-gradient(160deg, #1e3a6e 0%, #0f766e 100%);
  color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.bagtag-mat {
  margin-top: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

.thumbs .t-attachments {
  width: 68px;
  height: 68px;
  background: #fff;
  border: 1px solid #d1d5db;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #334155;
  text-align: center;
  padding: 4px 3px;
  line-height: 1.1;
}
.hook-mini-row {
  display: flex;
  gap: 2px;
}
.hook-mini {
  width: 9px;
  height: 12px;
  border: 1.5px solid #64748b;
  border-top: 0;
  border-radius: 0 0 6px 6px;
  display: block;
}
.hook-mini.bulldog {
  border-radius: 1px;
  height: 10px;
  margin-top: 2px;
}
.hook-mini.trigger {
  border-radius: 0 0 8px 2px;
}
.hook-mini.lobster {
  border-radius: 0 0 3px 8px;
}

.lanyard-stage {
  background: #e8edf2;
  min-height: 420px;
  flex-direction: column;
  padding: 20px 48px 40px;
}
.ly-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.ly-loop {
  width: 22px;
  height: 18px;
  border: 4px solid #7c3aed;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  margin-bottom: -2px;
}
.ly-strap {
  width: 28px;
  height: 248px;
  background: linear-gradient(180deg, #fb923c 0%, #ec4899 48%, #7c3aed 100%);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.22);
}
.ly-visual.w-58 .ly-strap { width: 20px; }
.ly-visual.w-58 .ly-loop { width: 16px; }
.ly-visual.w-1 .ly-strap { width: 38px; }
.ly-visual.w-1 .ly-loop { width: 28px; }
.ly-visual.w-rope .ly-strap { width: 14px; border-radius: 8px; }
.ly-visual.w-rope .ly-loop { width: 12px; }
.stock-lanyard-stage .ly-strap {
  background: var(--ly-color, #1a1a1a);
}
.stock-lanyard-stage .ly-loop {
  border-color: var(--ly-color, #1a1a1a);
}
.ly-visual.braid .ly-strap {
  background-image: repeating-linear-gradient(
    135deg,
    color-mix(in srgb, var(--ly-color, #1a1a1a) 88%, #fff) 0 4px,
    var(--ly-color, #1a1a1a) 4px 8px
  );
  background-color: var(--ly-color, #1a1a1a);
}
.ly-hook-top {
  margin-top: 0;
  margin-bottom: 6px;
  transform: rotate(180deg);
}
.ly-visual.light .ly-strap {
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12), inset 0 0 0 1px #d1d5db;
}
.t-stock-color {
  background-size: cover;
  cursor: pointer;
}
.swatch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.swatch-opt {
  display: inline-flex;
  padding: 0;
  min-width: 0;
  cursor: pointer;
}
.swatch-opt input { display: none; }
.swatch-opt .swatch {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: 2px solid #d1d5db;
  display: block;
  box-sizing: border-box;
}
.swatch-opt.light .swatch {
  border-color: #cbd5e1;
}
.swatch-opt input:checked + .swatch,
.swatch-opt.selected .swatch {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #2563eb;
}
.ly-brand {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 11px;
  white-space: nowrap;
}
.ly-breakaway {
  width: 36px;
  height: 10px;
  background: #111;
  border-radius: 2px;
  margin-top: -2px;
  box-shadow: inset 0 0 0 1px #444;
}
.ly-buckle {
  width: 44px;
  height: 16px;
  background: #111;
  border-radius: 3px;
  margin-top: 2px;
  position: relative;
}
.ly-buckle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 4px;
  width: 8px;
  height: 8px;
  border: 2px solid #64748b;
  border-radius: 50%;
  transform: translateX(-50%);
}
.ly-buckle-off { opacity: 0.2; }
.ly-hook {
  width: 22px;
  height: 32px;
  border: 3px solid #94a3b8;
  border-top: 0;
  border-radius: 0 0 14px 14px;
  margin-top: 6px;
  background: transparent;
}
.ly-visual.swivel .ly-hook { transform: rotate(-8deg); }
.ly-visual.fixed .ly-hook { transform: none; }
.ly-hook.bulldog,
.ly-hook.BULLDOG {
  width: 28px;
  height: 22px;
  border-radius: 3px;
  border: 3px solid #94a3b8;
  position: relative;
}
.ly-hook.trigger,
.ly-hook.TRIGGER {
  width: 20px;
  height: 30px;
  border-radius: 0 0 16px 4px;
}
.ly-hook.lobster,
.ly-hook.LOBSTER {
  width: 26px;
  height: 28px;
  border-radius: 0 0 4px 16px;
  transform: rotate(12deg);
}
.ly-clip {
  width: 18px;
  height: 10px;
  border: 2px solid #64748b;
  border-radius: 2px;
  margin-top: 4px;
}
.gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.gallery-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd5e1;
  display: block;
}
.gallery-dots i.on { background: #64748b; }

.option-step-preview {
  display: block;
}
.option-step-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.option-step-preview .option-step-main { flex: 1; min-width: 0; }
.canvas-preview-side {
  margin: 4px 0 0;
  flex-shrink: 0;
}
.canvas-preview-side img,
.canvas-preview-side .canvas-preview-ph {
  width: 56px;
  height: 56px;
}

.min-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin: 8px 0;
}
.min-meta .min-qty { margin: 0; text-align: center; }
.prod-time {
  font-size: 13px;
  color: var(--rsp-navy);
  font-weight: 700;
}

.delivery-note {
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--rsp-muted);
  margin: -12px 0 16px;
}
.del-box.tone-std { border-color: #16a34a; }
.del-box.tone-navy { border-color: #1e3a6e; }
.del-box.tone-gold { border-color: #ca8a04; }
.del-box.tone-orange { border-color: #ea580c; }
.del-box.tone-rush { border-color: #dc2626; }
.del-box.tone-navy.selected {
  border-color: #1e3a6e;
  background: #1e3a6e;
  color: #fff;
}
.del-box.tone-navy.selected .up { color: #cbd5e1; }
.del-box.tone-rush.selected {
  border-color: #dc2626;
  background: #fef2f2;
}

.canvas-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 16px;
}
.canvas-preview img,
.canvas-preview-ph {
  width: 48px;
  height: 48px;
  background: #e5e7eb;
  border: 1px solid var(--rsp-border);
  object-fit: cover;
  flex-shrink: 0;
}
.canvas-preview-meta {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  color: var(--rsp-muted);
  line-height: 1.35;
}
.canvas-preview-meta strong {
  color: var(--rsp-navy);
  font-size: 12px;
}

.accordions { margin-top: 24px; }
.acc-item { border-bottom: 1px solid var(--rsp-border); }
.acc-head {
  padding: 14px 4px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  color: var(--rsp-navy);
}
.acc-body { display: none; padding: 0 4px 16px; font-size: 14px; color: var(--rsp-muted); }
.acc-item.open .acc-body { display: block; }
.price-breaks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
  font-size: 13px;
}
.price-breaks span { display: flex; justify-content: space-between; padding: 2px 0; }
.template-icons { display: flex; gap: 10px; }
.template-icons .ti {
  width: 40px; height: 40px;
  border-radius: 6px;
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 11px;
}
.ti.ai { background: #f59e0b; }
.ti.id { background: #ec4899; }
.ti.ps { background: #3b82f6; }
.ti.pdf { background: #ef4444; }

/* Right column options */
.pdp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 16px;
}
.pdp-header h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--rsp-blue);
  letter-spacing: 0.02em;
}
.as-low {
  text-align: right;
  font-size: 14px;
}
.as-low strong { color: var(--rsp-purple); font-size: 20px; }
.stars { color: #f59e0b; font-size: 13px; }

#options-area { counter-reset: optstep; }
.option-step {
  margin-bottom: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--rsp-border);
}
.option-step h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--rsp-navy);
  margin-bottom: 10px;
}
.option-step h3::before {
  counter-increment: optstep;
  content: counter(optstep) ".) ";
}
.option-note {
  font-size: 12px;
  color: var(--rsp-muted);
  margin: 6px 0 10px;
  line-height: 1.4;
}
.group-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rsp-muted);
  margin: 12px 0 8px;
  letter-spacing: 0.05em;
}

.radio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.radio-opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  padding: 4px 0;
  min-width: 140px;
}
.radio-opt input { display: none; }
.radio-opt .dot {
  width: 20px; height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.radio-opt .dot::after {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: transparent;
}
.radio-opt input:checked + .dot {
  border-color: var(--rsp-purple);
  background: var(--rsp-purple);
}
.radio-opt input:checked + .dot::after {
  content: '✓';
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: auto; height: auto;
  background: none;
}
.radio-opt .box {
  width: 20px; height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 4px;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: #fff;
  transition: all 0.15s;
}
.radio-opt .box::after {
  content: '';
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.radio-opt input:checked + .box {
  border-color: var(--rsp-purple);
  background: var(--rsp-purple);
}
.radio-opt input:checked + .box::after {
  content: '✓';
}
.radio-opt .popular {
  font-size: 10px;
  background: var(--rsp-purple);
  color: #fff;
  padding: 1px 6px;
  border-radius: 2px;
  font-weight: 700;
  margin-left: 4px;
}
.surcharge {
  font-size: 11px;
  background: var(--rsp-tan);
  color: #92400e;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 700;
  margin-left: 4px;
}

.child-options {
  margin-left: 28px;
  padding: 8px 0 4px;
  border-left: 2px solid var(--rsp-purple-light);
  padding-left: 16px;
  display: none;
}
.child-options.show { display: block; }

.dims-panel {
  display: none;
  margin-top: 12px;
  padding: 14px;
  background: #f8fafc;
  border: 1px solid var(--rsp-border);
  border-radius: 6px;
  gap: 16px;
}
.dims-panel.show { display: flex; flex-wrap: wrap; align-items: flex-end; }
.dims-panel label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.dims-panel .surcharge {
  margin-left: auto;
  align-self: flex-end;
}
.dims-amount {
  margin-left: auto;
  min-width: 72px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}
.dims-panel input[type="number"],
.dims-panel input[type="range"],
.dims-panel select {
  width: 120px;
}
.dims-panel input[type="number"],
.dims-panel select {
  padding: 6px 8px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background: #fff;
}

.stepper {
  display: inline-flex;
  align-items: center;
  background: var(--rsp-navy);
  border-radius: 6px;
  overflow: hidden;
}
.stepper button {
  width: 36px; height: 36px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.stepper button:hover { background: rgba(255,255,255,0.1); }
.stepper input {
  width: 48px;
  text-align: center;
  border: none;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.artwork-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.upload-placeholder {
  width: 72px;
  height: 72px;
  background: #e5e7eb;
  border-radius: 6px;
  display: grid;
  place-items: end center;
  padding-bottom: 6px;
  font-size: 8px;
  color: #6b7280;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
}

.min-qty { font-size: 13px; color: #c2410c; font-weight: 700; margin: 8px 0; text-align: center; }

.qty-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0;
  padding-top: 16px;
  border-top: 1px solid var(--rsp-border);
}
.qty-row label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.qty-row input {
  padding: 8px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  width: 140px;
  font-size: 15px;
}

.delivery-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 20px;
}
.del-box {
  border: 2px solid var(--rsp-border);
  border-radius: 6px;
  padding: 10px 12px;
  text-align: center;
  cursor: pointer;
  min-width: 90px;
  font-size: 12px;
  background: #fff;
}
.del-box.selected {
  border-color: var(--rsp-green);
  background: #f0fdf4;
}
.del-box .up { color: var(--rsp-muted); font-size: 11px; margin-top: 2px; }

.totals {
  margin-top: 8px;
}
.totals .total {
  font-size: 36px;
  font-weight: 800;
  color: var(--rsp-navy);
}
.totals .each { color: var(--rsp-muted); font-size: 14px; margin-bottom: 16px; }
.breakdown {
  font-size: 12px;
  color: var(--rsp-muted);
  margin-bottom: 16px;
  max-height: 120px;
  overflow-y: auto;
}
.breakdown div { display: flex; justify-content: space-between; padding: 2px 0; }

.cta {
  display: block;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c3aed, #ea580c);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-transform: uppercase;
}
.cta:hover { filter: brightness(1.05); }

.hidden { display: none !important; }

@media (max-width: 900px) {
  .pdp { grid-template-columns: 1fr; gap: 24px; padding: 16px; }
}
