/** Shopify CDN: Minification failed

Line 309:0 All "@import" rules must come first

**/
/* Bundle List + Configurator Section */
.section-bundle-list { padding: 0; }

/* Override Concept theme heading transparency */
.section-bundle-list .heading,
.section-bundle-list h1, .section-bundle-list h2,
.section-bundle-list h3, .section-bundle-list h4,
.section-bundle-list p, .section-bundle-list span,
.section-bundle-list a, .section-bundle-list label {
  -webkit-text-fill-color: inherit !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
}

/* Wrapper */
/* Full-width shell: no horizontal cap so the configurator uses the
   entire viewport. The sticky cart panel ends up pinned to the far
   right edge of the screen as a side effect. Side padding is small
   to maximise content width but not flush. */
.bl-wrap { padding: 16px 24px 24px; max-width: none; margin: 0; width: 100%; }

/* ─── Immersive mode ───
   Hides the announcement bar + theme header while the configurator is
   active. JS peeks them back when the user scroll-up gestures, then
   tucks them away again. Configurator fills the whole viewport. */
body.bundle-immersive .shopify-section-group-header-group {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: translateY(-105%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  pointer-events: none;
}
body.bundle-immersive.bundle-show-header .shopify-section-group-header-group {
  transform: translateY(0);
  pointer-events: auto;
}
body.bundle-immersive .section-bundle-list { padding-top: 0; }
body.bundle-immersive { overflow: hidden; }
html.bundle-immersive { overflow: hidden; }

/* Full-viewport flex chain: wrap → grid → configurator → layout all
   take 100vh so the only scroll happens inside the step body (left)
   and the cart panel (right). */
body.bundle-immersive .bl-wrap {
  height: 100vh;
  padding: 12px 24px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
body.bundle-immersive #bl-grid {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
body.bundle-immersive .sg-configurator {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
body.bundle-immersive .sg-hero { flex-shrink: 0; }
body.bundle-immersive .sg-layout {
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
}

/* Tighten the bundle hero on immersive mode so the picker is the focus */
body.bundle-immersive .sg-hero {
  padding: 8px 0 14px;
  margin-bottom: 14px;
}
body.bundle-immersive .sg-hero__crumb { margin-bottom: 8px; }
body.bundle-immersive .sg-hero__title { font-size: clamp(22px, 2.8vw, 32px) !important; margin-bottom: 6px !important; }
body.bundle-immersive .sg-hero__sub { font-size: 14px !important; }

/* Back link */
.bl-back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: #555 !important; text-decoration: none !important;
  font-size: 0.9rem; transition: color 0.2s;
}
.bl-back-link:hover { color: #000 !important; }
.bl-back-link svg { flex-shrink: 0; }

/* Header */
.bl-header { text-align: center; margin-bottom: 32px; }
.bl-header h1 {
  font-size: 2.5rem !important; font-weight: 700 !important;
  color: #171717 !important; letter-spacing: 0;
  line-height: 1.1; margin-bottom: 8px;
}
.bl-header p {
  font-size: 1.1rem !important; color: #666 !important;
  max-width: 600px; margin: 0 auto;
}

/* ─── LIST MODE ─── */
.bl-group { margin-bottom: 2rem; }
.bl-group-title {
  font-size: 1.5rem !important; font-weight: 700 !important;
  color: #171717 !important; border-bottom: 1px solid #e5e5e5;
  padding-bottom: 0.5rem; margin-bottom: 1rem;
}
.bl-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.bl-card {
  display: flex; flex-direction: column;
  background: #fff !important; border: 1px solid #e5e5e5 !important;
  border-radius: 12px; overflow: hidden;
  text-decoration: none !important; color: #171717 !important;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.bl-card:hover {
  border-color: #171717 !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

/* Card image */
.bl-card-img {
  width: 100%; aspect-ratio: 1 / 1;
  overflow: hidden; background: #f5f5f5 !important;
}
.bl-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s;
}
.bl-card:hover .bl-card-img img { transform: scale(1.05); }
.bl-card-img--empty {
  display: flex; align-items: center;
  justify-content: center; color: #ccc;
}

/* Card body */
.bl-card-body { display: flex; flex-direction: column; gap: 4px; padding: 1rem; }
.bl-card-name {
  font-size: 1.1rem !important; font-weight: 700 !important;
  color: #171717 !important; line-height: 1.2; margin: 0;
}
.bl-card-desc {
  font-size: 0.8rem !important; color: #888 !important;
  line-height: 1.4; margin: 0;
}
.bl-card-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 8px; }
.bl-badge {
  font-size: 0.7rem !important; padding: 2px 8px;
  border-radius: 999px; background: #f0f0f0 !important;
  color: #555 !important; display: inline-block;
}
.bl-badge-outline { background: transparent !important; border: 1px solid #ddd; }
.bl-loading {
  min-height: 200px; display: flex;
  align-items: center; justify-content: center; color: #999 !important;
}

/* ─── CONFIGURATOR MODE ─── */
.bc-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 2rem;
  align-items: start;
}
.bc-categories { display: flex; flex-direction: column; gap: 1.5rem; }

/* Category */
.bc-category {
  background: #fff; border: 1px solid #e5e5e5;
  border-radius: 12px; padding: 1.25rem; overflow: hidden;
}
.bc-cat-header {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 1rem;
}
.bc-cat-name {
  font-size: 1.15rem !important; font-weight: 700 !important;
  color: #171717 !important; margin: 0;
}
.bc-req {
  font-size: 0.65rem; font-weight: 600;
  background: #dc2626; color: #fff !important;
  padding: 2px 8px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.05em;
  vertical-align: middle; margin-left: 8px;
}
.bc-cat-count { font-size: 0.8rem; color: #999; }
.bc-no-options { color: #999; font-size: 0.9rem; margin: 0; }

/* Options grid */
.bc-options { display: flex; flex-direction: column; gap: 0.5rem; }
.bc-option {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border: 1px solid #e5e5e5;
  border-radius: 8px; cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.bc-option:hover { border-color: #bbb; background: #fafafa; }
.bc-option--selected {
  border-color: #171717 !important; background: #f8f8f8 !important;
}
.bc-option--oos {
  opacity: 0.5; cursor: not-allowed;
}
.bc-option input[type="radio"],
.bc-option input[type="checkbox"] {
  flex-shrink: 0; width: 18px; height: 18px;
  accent-color: #171717; cursor: pointer;
}
.bc-opt-img {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 6px; overflow: hidden; background: #f5f5f5;
}
.bc-opt-img img { width: 100%; height: 100%; object-fit: cover; }
.bc-opt-info { flex: 1; min-width: 0; }
.bc-opt-title {
  font-size: 0.85rem !important; font-weight: 500 !important;
  color: #171717 !important; line-height: 1.3;
  overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.bc-opt-meta {
  display: flex; align-items: center; gap: 8px;
  margin-top: 4px; flex-wrap: wrap;
}
.bc-opt-price {
  font-size: 0.85rem; font-weight: 700;
  color: #171717 !important;
}
.bc-opt-compare {
  font-size: 0.75rem; color: #999 !important;
  text-decoration: line-through;
}
.bc-opt-stock { font-size: 0.7rem; font-weight: 500; }
.bc-stock-in { color: #16a34a !important; }
.bc-stock-out { color: #dc2626 !important; }

/* Summary panel */
.bc-summary { position: relative; }
.bc-summary-sticky {
  position: sticky; top: 100px;
  background: #fff; border: 1px solid #e5e5e5;
  border-radius: 12px; padding: 1.25rem;
}
.bc-summary-title {
  font-size: 1.1rem !important; font-weight: 700 !important;
  color: #171717 !important; margin: 0 0 1rem 0;
  padding-bottom: 0.75rem; border-bottom: 1px solid #eee;
}
.bc-empty-msg { color: #999; font-size: 0.85rem; margin: 0; padding: 1rem 0; text-align: center; }

/* Selected items */
.bc-selected-item {
  display: grid; grid-template-columns: 1fr auto;
  gap: 2px 8px; padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.bc-sel-cat {
  grid-column: 1 / -1;
  font-size: 0.65rem; font-weight: 600; color: #999 !important;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.bc-sel-title {
  font-size: 0.8rem; color: #333 !important;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.bc-sel-price {
  font-size: 0.8rem; font-weight: 600; color: #171717 !important;
  white-space: nowrap;
}

/* Totals */
.bc-summary-total { margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid #eee; }
.bc-total-row {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; padding: 4px 0; color: #555 !important;
}
.bc-total-final {
  font-size: 1rem !important; font-weight: 700;
  color: #171717 !important; padding-top: 8px;
  margin-top: 4px; border-top: 1px solid #ddd;
}
.bc-discount-row { color: #16a34a !important; }

/* Add to cart button */
.bc-add-cart {
  width: 100%; margin-top: 1rem; padding: 14px 20px;
  background: #171717 !important; color: #fff !important;
  border: none; border-radius: 8px; font-size: 0.95rem;
  font-weight: 600; cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.bc-add-cart:hover:not(:disabled) { background: #333 !important; }
.bc-add-cart:disabled {
  opacity: 0.4; cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════════
   GUIDED SRS MODE — Apple-style configurator, Skirmshop tokens
   Adapted from "skirmshop-es" Claude Design bundle.
   =============================================================== */
@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400;500;600&display=swap');

.sg-configurator {
  --sg-ink:        #171717;
  --sg-ink-2:      #2a2a2a;
  --sg-paper:      #ffffff;
  --sg-canvas:     #fafafa;
  --sg-hover:      #f3f1ec;
  --sg-text:       #171717;
  --sg-muted:      #6b6864;
  --sg-muted-2:    #9b988f;
  --sg-line:        rgba(23, 23, 23, 0.10);
  --sg-line-strong: rgba(23, 23, 23, 0.18);
  --sg-olive:    #5a6a3e;
  --sg-amber:    #b88521;
  --sg-crimson:  #b03a3a;
  --sg-info:     #2b6b8c;
  --sg-goma-50:  #d9b21f;
  --sg-goma-60:  #6b3fa0;
  --sg-goma-70:  #d9651f;
  --sg-goma-80:  #b03a3a;
  --sg-r-sm:  6px;
  --sg-r-md:  10px;
  --sg-r-lg:  16px;
  --sg-mono:  'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --sg-t:     0.22s cubic-bezier(0.32, 0.72, 0, 1);

  color: var(--sg-text);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ─── Hero ─── */
.sg-hero {
  padding: 16px 0 28px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--sg-line);
}
.sg-hero__crumb {
  font-family: var(--sg-mono);
  font-size: 11px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sg-muted) !important;
  margin-bottom: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.sg-hero__crumb-sep { opacity: 0.4; }
.sg-hero__crumb-active { color: var(--sg-text) !important; }
.sg-hero__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}
.sg-hero__title {
  font-size: clamp(28px, 4vw, 44px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.025em;
  line-height: 1.05 !important;
  margin: 0 0 12px !important;
  color: var(--sg-text) !important;
  text-align: left !important;
}
.sg-hero__sub {
  font-size: 15px !important;
  color: var(--sg-muted) !important;
  max-width: 560px;
  line-height: 1.55 !important;
  margin: 0 !important;
  text-align: left !important;
}
.sg-hero__meta {
  font-family: var(--sg-mono);
  font-size: 11px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sg-muted) !important;
  text-align: right;
  line-height: 1.7 !important;
  white-space: nowrap;
}
.sg-hero__meta strong { color: var(--sg-text) !important; font-weight: 500 !important; }

/* ─── Layout: 2/3 selector (FIXED viewport) + 1/3 cart (own scroll) ───
   Immersive mode locks the selector column to the viewport — it never
   moves with page scroll. The cart panel on the right is the only
   scrollable region. Wheel and touch are routed by JS so the cart
   moves regardless of where the cursor is. */
.sg-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: stretch;
}
/* Selector column: stepper (top, fixed) + step body (centered, scrolls
   if it overflows) + wizard nav (bottom, fixed). */
.sg-steps {
  height: 100%;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sg-stepper { flex: 0 0 auto; }
.sg-wizard-nav { flex: 0 0 auto; }
.sg-step {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  display: flex;
  flex-direction: column;
}
.sg-step > * { flex-shrink: 0; }
/* Flexible spacers center the step content vertically; they collapse
   to zero when the content is taller than the viewport, letting it
   scroll instead of being clipped. */
.sg-step::before, .sg-step::after {
  content: "";
  flex: 1 0 0;
  min-height: 0;
}

.sg-summary {
  height: 100%;
  position: relative;
}
.sg-summary-sticky {
  position: relative !important;
  top: 0 !important;
  height: 100%;
  max-height: 100% !important;
  overflow-y: auto;
  scrollbar-width: thin;
}
.sg-steps {
  display: flex;
  flex-direction: column;
  gap: 56px;
  min-width: 0;
}

/* ─── Step ─── */
.sg-step {
  scroll-margin-top: 80px;
  padding: 0;
  border: 0;
}

/* ─── Collapsed step (after the user picks an option) ─── */
.sg-step.is-collapsed {
  padding: 14px 18px;
  border: 1px solid var(--sg-line);
  border-radius: var(--sg-r-md);
  background: var(--sg-canvas);
  transition: background var(--sg-t), border-color var(--sg-t);
}
.sg-step.is-collapsed:hover { background: var(--sg-paper); border-color: var(--sg-line-strong); }
.sg-collapsed {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.sg-collapsed__left {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
}
.sg-collapsed__check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sg-olive);
  color: #fff !important;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.sg-collapsed__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.sg-collapsed__eyebrow {
  font-family: var(--sg-mono);
  font-size: 10px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sg-muted) !important;
}
.sg-collapsed__eyebrow strong { color: var(--sg-text); font-weight: 500; }
.sg-collapsed__pick {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--sg-text) !important;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sg-collapsed__pick em {
  font-style: italic;
  color: var(--sg-muted-2) !important;
  font-weight: 400 !important;
}
.sg-collapsed__price {
  font-family: var(--sg-mono);
  color: var(--sg-muted) !important;
  font-weight: 400;
}
.sg-collapsed__edit {
  font-family: inherit;
  font-size: 12px !important;
  font-weight: 500 !important;
  background: transparent;
  border: 1px solid var(--sg-line-strong);
  color: var(--sg-text) !important;
  padding: 7px 14px;
  border-radius: var(--sg-r-sm);
  cursor: pointer;
  letter-spacing: 0;
  transition: background var(--sg-t), border-color var(--sg-t);
  white-space: nowrap;
}
.sg-collapsed__edit:hover { background: var(--sg-ink); color: #fff !important; border-color: var(--sg-ink); }

@media (max-width: 540px) {
  .sg-collapsed { grid-template-columns: 1fr; gap: 10px; }
  .sg-collapsed__edit { justify-self: flex-start; }
}
.sg-step-head {
  display: block;
  margin-bottom: 24px;
}
.sg-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.sg-eyebrow {
  font-family: var(--sg-mono);
  font-size: 11px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sg-muted) !important;
  font-weight: 400 !important;
  margin: 0 !important;
}
.sg-eyebrow strong { color: var(--sg-text); font-weight: 500; }
.sg-eyebrow-tag {
  font-family: var(--sg-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sg-muted);
  padding: 2px 7px;
  border-radius: 20px;
  background: var(--sg-canvas);
  border: 1px solid var(--sg-line);
}
.sg-step__title {
  font-size: clamp(22px, 2.6vw, 28px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em;
  line-height: 1.15 !important;
  margin: 0 0 8px !important;
  color: var(--sg-text) !important;
  text-align: left !important;
}
.sg-step__help {
  font-size: 14px !important;
  color: var(--sg-muted) !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  max-width: 640px;
  text-align: left !important;
}
.sg-step__warn {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: var(--sg-r-sm);
  background: rgba(176, 58, 58, 0.06);
  border: 1px solid rgba(176, 58, 58, 0.25);
  color: var(--sg-crimson) !important;
  font-size: 13px;
  line-height: 1.5;
}
.sg-step__warn strong { font-weight: 600; }

/* ─── Pills ─── */
.sg-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 20px;
  font-family: var(--sg-mono);
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--sg-line-strong);
  color: var(--sg-muted) !important;
  background: var(--sg-paper) !important;
  white-space: nowrap;
  line-height: 1;
}
.sg-pill--rec { background: var(--sg-olive) !important; color: #fff !important; border-color: transparent !important; }
.sg-pill--popular { background: var(--sg-amber) !important; color: #2a1f0a !important; border-color: transparent !important; }
.sg-pill--required { color: var(--sg-crimson) !important; border-color: rgba(176, 58, 58, 0.4) !important; }
.sg-pill--optional { color: var(--sg-muted) !important; }
.sg-pill--preorder { color: var(--sg-info) !important; border-color: rgba(43, 107, 140, 0.4) !important; }
.sg-pill--stock-out { color: var(--sg-crimson) !important; border-color: rgba(176, 58, 58, 0.4) !important; }

/* ─── Option grids ─── */
.sg-options { display: grid; gap: 12px; }
.sg-options--cards    { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sg-options--platform { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.sg-options--goma     { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.sg-options--spring   { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.sg-options--quantity { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Extra columns on wide viewports so option cards don't bloat with the
   full-width shell. Triggers when the steps column has plenty of room. */
@media (min-width: 1500px) {
  .sg-options--cards    { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sg-options--goma     { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .sg-options--spring   { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .sg-options--quantity { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1900px) {
  .sg-options--cards    { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .sg-options--goma     { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .sg-options--quantity { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.sg-empty-options { padding: 24px; text-align: center; color: var(--sg-muted-2); background: var(--sg-canvas); border-radius: var(--sg-r-sm); }

/* ─── Option card (base) ─── */
.sg-option {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: var(--sg-paper) !important;
  border: 1px solid var(--sg-line-strong);
  border-radius: var(--sg-r-md);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--sg-t), box-shadow var(--sg-t), transform var(--sg-t);
  color: var(--sg-text) !important;
  font-family: inherit;
  min-height: 0;
  width: 100%;
  align-items: stretch;
}
.sg-option:hover:not(.is-disabled) { border-color: var(--sg-ink); }
.sg-option.is-selected { border-color: var(--sg-ink); box-shadow: 0 0 0 1px var(--sg-ink) inset; }
.sg-option.is-disabled { opacity: 0.5; cursor: not-allowed; }

.sg-option-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.sg-option-pills--abs { position: absolute; top: 10px; left: 10px; z-index: 1; }

.sg-option-img {
  aspect-ratio: 4 / 3;
  background: var(--sg-canvas);
  border: 1px solid var(--sg-line);
  border-radius: var(--sg-r-sm);
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 100%;
  height: auto;
  flex: 0 0 auto;
}
.sg-option-img--platform { aspect-ratio: 16 / 10; }
.sg-option-img img {
  max-width: 100%; max-height: 100%;
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.sg-option-img--empty {
  background: repeating-linear-gradient(135deg, transparent 0 12px, rgba(23,23,23,0.04) 12px 13px);
}
.sg-option-img--empty::before { content: none; }

.sg-option-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  flex: 1;
}
.sg-option-body--center { align-items: center; text-align: center; }
.sg-option-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  justify-content: space-between;
}
.sg-option-title {
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--sg-text) !important;
  word-wrap: break-word;
  flex: 1;
  min-width: 0;
}
.sg-option-subtitle {
  font-family: var(--sg-mono);
  font-size: 11px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sg-muted) !important;
  font-weight: 400 !important;
}
.sg-option-desc {
  font-size: 13px !important;
  color: var(--sg-muted) !important;
  line-height: 1.5 !important;
}
.sg-option-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}
.sg-option-price {
  font-family: var(--sg-mono);
  font-size: 13px !important;
  font-weight: 500;
  color: var(--sg-text) !important;
  white-space: nowrap;
}
.sg-option-price--free { color: var(--sg-muted) !important; font-weight: 400 !important; }
.sg-option-price-compare {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  color: var(--sg-muted-2) !important;
  text-decoration: line-through;
  font-weight: 400;
}
.sg-option-reason {
  font-family: var(--sg-mono);
  font-size: 10px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sg-crimson) !important;
  background: rgba(176, 58, 58, 0.08);
  border: 1px solid rgba(176, 58, 58, 0.25);
  padding: 4px 8px;
  border-radius: var(--sg-r-sm);
  align-self: flex-start;
  line-height: 1.3;
}

/* Radio indicator (small dot on the top-right of cards) */
.sg-radio {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--sg-line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.sg-radio--abs { position: absolute; top: 12px; right: 12px; margin: 0; }
.sg-option.is-selected .sg-radio { border-color: var(--sg-ink); }
.sg-option.is-selected .sg-radio::after {
  content: "";
  width: 9px; height: 9px;
  background: var(--sg-ink);
  border-radius: 50%;
}

/* ─── Specialised cards ─── */

/* Goma swatch */
.sg-option--goma {
  align-items: center;
  text-align: center;
  padding: 18px 12px;
  flex-direction: column;
  gap: 6px;
}
.sg-option--goma .sg-option-title { font-size: 13px !important; font-weight: 500 !important; }
.sg-chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sg-c, var(--sg-goma-60));
  box-shadow:
    inset -6px -6px 14px rgba(0,0,0,0.18),
    inset 6px 6px 14px rgba(255,255,255,0.16),
    0 2px 6px rgba(0,0,0,0.12);
  position: relative;
  margin-bottom: 4px;
}
.sg-chip::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: var(--sg-paper);
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.22);
}
.sg-hardness {
  font-family: var(--sg-mono);
  font-size: 22px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--sg-text) !important;
}
.sg-hardness sup {
  font-size: 12px;
  font-weight: 400;
  color: var(--sg-muted);
  margin-left: 1px;
}
.sg-option--goma .sg-option-price { margin-top: 4px; }

/* Spring (joule) card */
.sg-option--spring {
  align-items: center;
  text-align: center;
  padding: 20px 14px;
  flex-direction: column;
  gap: 6px;
}
.sg-j {
  font-family: var(--sg-mono);
  font-size: 32px !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--sg-text) !important;
}
.sg-j sup {
  font-size: 13px;
  color: var(--sg-muted);
  font-weight: 400;
  margin-left: 2px;
}
.sg-option--spring .sg-option-title { font-size: 13px !important; font-weight: 500 !important; }
.sg-option--spring .sg-option-subtitle {
  border-top: 1px solid var(--sg-line);
  padding-top: 8px;
  margin-top: 4px;
  width: 100%;
}

/* Platform card */
.sg-option--platform .sg-option-title { font-size: 16px !important; }

/* Quantity */
.sg-option--quantity {
  flex-direction: row;
  align-items: stretch;
  padding: 14px;
  gap: 14px;
  cursor: default;
}
.sg-option--quantity .sg-option-img { width: 88px; height: 88px; flex: 0 0 88px; aspect-ratio: auto; }
.sg-option--quantity .sg-option-body { gap: 4px; }
.sg-option--quantity .sg-option-foot { padding-top: 8px; }
.sg-option--quantity .sg-option-title { font-size: 14px !important; }

.sg-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--sg-line-strong);
  border-radius: var(--sg-r-sm);
  overflow: hidden;
  background: var(--sg-paper);
  align-self: center;
  flex-shrink: 0;
}
.sg-qty-btn {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--sg-text) !important;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-family: inherit;
  transition: background var(--sg-t);
}
.sg-qty-btn:hover:not(:disabled) { background: var(--sg-hover); }
.sg-qty-btn:disabled { color: var(--sg-muted-2) !important; cursor: not-allowed; }
.sg-qty-input {
  width: 38px;
  height: 32px;
  border: 0;
  border-left: 1px solid var(--sg-line);
  border-right: 1px solid var(--sg-line);
  background: transparent;
  color: var(--sg-text);
  text-align: center;
  font-family: var(--sg-mono);
  font-weight: 500;
  font-size: 13px;
  -moz-appearance: textfield;
}
.sg-qty-input::-webkit-outer-spin-button,
.sg-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.sg-qty-input:disabled { color: var(--sg-muted-2); }

/* ─── Summary ─── */
.sg-summary {
  position: sticky;
  top: 24px;
  align-self: flex-start;
}
.sg-summary-sticky {
  background: var(--sg-paper) !important;
  border: 1px solid var(--sg-line-strong);
  border-radius: var(--sg-r-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.sg-progress { display: flex; gap: 3px; }
.sg-progress__seg {
  flex: 1;
  height: 3px;
  background: var(--sg-line);
  border-radius: 2px;
  transition: background var(--sg-t);
}
.sg-progress__seg.is-done { background: var(--sg-ink); }
.sg-progress__seg.is-required-pending { background: rgba(176, 58, 58, 0.4); }

.sg-summary-product {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--sg-line);
}
.sg-summary-product img,
.sg-summary-placeholder {
  width: 96px;
  height: 72px;
  object-fit: contain;
  border-radius: var(--sg-r-sm);
  background: var(--sg-canvas);
  border: 1px solid var(--sg-line);
}
.sg-summary-product h3 {
  margin: 0 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  line-height: 1.25 !important;
  color: var(--sg-text) !important;
  text-align: left !important;
}
.sg-summary-product .sg-eyebrow { margin-bottom: 2px !important; }
.sg-summary-sub {
  font-family: var(--sg-mono);
  font-size: 11px !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sg-muted) !important;
  margin: 4px 0 0 !important;
}

.sg-empty {
  margin: 0 !important;
  color: var(--sg-muted-2) !important;
  font-size: 13px !important;
  font-style: italic;
  padding: 8px 0;
}

.sg-summary-lines {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 32vh;
  overflow-y: auto;
  margin: 0 -4px;
  padding: 0 4px;
}
.sg-summary-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--sg-line);
  font-size: 13px;
}
.sg-summary-line:last-child { border-bottom: none; }
.sg-summary-line span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  color: var(--sg-text) !important;
}
.sg-summary-line small {
  display: block;
  font-family: var(--sg-mono);
  font-size: 9px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sg-muted-2) !important;
  font-weight: 400;
}
.sg-summary-line strong {
  font-family: var(--sg-mono);
  font-size: 12px;
  white-space: nowrap;
  color: var(--sg-text) !important;
  font-weight: 500;
  align-self: center;
}
.sg-summary-line--addon { color: var(--sg-muted) !important; }
.sg-summary-line--addon small { color: var(--sg-muted-2) !important; }

.sg-notice {
  margin: 0;
  padding: 8px 12px;
  border-radius: var(--sg-r-sm);
  background: rgba(176, 58, 58, 0.06);
  border: 1px solid rgba(176, 58, 58, 0.25);
  color: var(--sg-crimson) !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
}
.sg-status {
  margin: 0 !important;
  padding: 8px 12px;
  border-radius: var(--sg-r-sm);
  background: rgba(176, 58, 58, 0.08);
  color: var(--sg-crimson) !important;
  font-size: 12px !important;
  text-align: center;
}

.sg-totals {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--sg-line-strong);
  margin: 0;
}
.sg-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--sg-mono);
  font-size: 12px !important;
  color: var(--sg-muted) !important;
  padding: 0;
}
.sg-total-row strong { color: var(--sg-text) !important; font-weight: 500 !important; }
.sg-total-row--addon { color: var(--sg-muted-2) !important; }
.sg-total-row--addon strong { color: var(--sg-muted) !important; }
.sg-total-discount, .sg-total-discount strong { color: var(--sg-olive) !important; }

.sg-total-final {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 10px;
  border-top: 1px solid var(--sg-line-strong);
  margin-top: 0;
}
.sg-total-final__k {
  font-family: var(--sg-mono);
  font-size: 11px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sg-muted) !important;
}
.sg-total-final__v {
  font-family: var(--sg-mono);
  font-size: 26px !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em;
  color: var(--sg-text) !important;
}

.sg-nextier {
  margin: 0 !important;
  font-family: var(--sg-mono);
  font-size: 11px !important;
  text-align: center;
  color: var(--sg-muted) !important;
  line-height: 1.4 !important;
  letter-spacing: 0.02em;
}
.sg-nextier strong { color: var(--sg-olive) !important; font-weight: 600 !important; }
.sg-nextier--warn { color: var(--sg-crimson) !important; }
.sg-nextier--warn strong { color: var(--sg-crimson) !important; }

.sg-tier-copy {
  margin: 0 !important;
  font-family: var(--sg-mono);
  font-size: 11px !important;
  color: var(--sg-muted) !important;
  line-height: 1.4 !important;
}

.sg-add-cart {
  background: var(--sg-ink) !important;
  color: #fff !important;
  padding: 13px 18px !important;
  border-radius: var(--sg-r-md);
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: -0.005em;
  border: 0;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  transition: background var(--sg-t), transform var(--sg-t);
  margin: 0;
  min-height: 0;
}
.sg-add-cart:hover:not(:disabled) { background: var(--sg-ink-2) !important; }
.sg-add-cart:active:not(:disabled) { transform: scale(0.99); }
.sg-add-cart:disabled { background: var(--sg-muted-2) !important; cursor: not-allowed; opacity: 0.7; }

.sg-trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--sg-mono);
  font-size: 10px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sg-muted) !important;
  padding-top: 8px;
  border-top: 1px solid var(--sg-line);
}
.sg-trust__row { display: flex; align-items: center; gap: 8px; }
.sg-trust__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sg-olive);
  flex-shrink: 0;
}

/* ─── Wizard stepper + nav ─── */
.sg-stepper {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sg-line);
  overflow-x: auto;
  scrollbar-width: thin;
}
.sg-stepper::-webkit-scrollbar { height: 4px; }
.sg-stepper::-webkit-scrollbar-thumb { background: var(--sg-line-strong); border-radius: 2px; }

.sg-stepper-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: transparent;
  border: 0;
  color: var(--sg-muted) !important;
  cursor: pointer;
  font: inherit;
  font-size: 12px !important;
  border-radius: var(--sg-r-sm);
  white-space: nowrap;
  transition: background var(--sg-t), color var(--sg-t);
  flex-shrink: 0;
}
.sg-stepper-dot:hover:not(:disabled):not(.is-active) { background: var(--sg-canvas); color: var(--sg-text) !important; }
.sg-stepper-dot:disabled { cursor: not-allowed; opacity: 0.5; }

.sg-stepper-num {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sg-canvas);
  border: 1px solid var(--sg-line);
  color: var(--sg-muted);
  font-family: var(--sg-mono);
  font-size: 11px;
  font-weight: 500;
  flex-shrink: 0;
}
.sg-stepper-label {
  font-weight: 500;
  letter-spacing: -0.005em;
}

.sg-stepper-dot.is-active {
  background: var(--sg-ink) !important;
  color: #fff !important;
}
.sg-stepper-dot.is-active .sg-stepper-num {
  background: #fff;
  border-color: #fff;
  color: var(--sg-ink);
}
.sg-stepper-dot.is-done .sg-stepper-num {
  background: var(--sg-olive);
  border-color: var(--sg-olive);
  color: #fff;
}
.sg-stepper-dot.is-done {
  color: var(--sg-text) !important;
}
.sg-stepper-dot.is-done .sg-stepper-num::before {
  content: "✓";
  font-family: inherit;
  font-size: 12px;
}
.sg-stepper-dot.is-done .sg-stepper-num { font-size: 0; }
.sg-stepper-dot.is-pending { color: var(--sg-muted-2) !important; }

/* Wizard navigation: Back / Continue at the bottom of every step. */
.sg-wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--sg-line);
}
.sg-wizard-btn {
  padding: 12px 22px;
  background: transparent;
  border: 1px solid var(--sg-line-strong);
  border-radius: var(--sg-r-md);
  color: var(--sg-text) !important;
  font: inherit;
  font-size: 14px !important;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--sg-t), border-color var(--sg-t), color var(--sg-t);
}
.sg-wizard-btn:hover:not(:disabled) { border-color: var(--sg-ink); background: var(--sg-canvas); }
.sg-wizard-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.sg-wizard-btn--back { color: var(--sg-muted) !important; }
.sg-wizard-btn--next.is-ready,
.sg-wizard-btn--finish {
  background: var(--sg-ink) !important;
  color: #fff !important;
  border-color: var(--sg-ink);
}
.sg-wizard-btn--next.is-ready:hover,
.sg-wizard-btn--finish:hover { background: var(--sg-ink-2) !important; }
.sg-wizard-btn-arrow {
  display: inline-block;
  font-family: var(--sg-mono);
  font-size: 16px;
  line-height: 1;
}

/* ─── Rifle base picker — single sub-step at a time ───
   Show ONE of: Modelo · Longitud · Color, centered. Selecting auto-
   advances. Breadcrumb A→B→C at top lets the user jump back to a
   completed sub-step. */
.sg-rifle--single {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}

.sg-rifle-subnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto 4px;
}
.sg-rifle-subtab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: transparent;
  border: 0;
  color: var(--sg-muted) !important;
  cursor: pointer;
  font: inherit;
  font-size: 13px !important;
  font-weight: 500;
  border-radius: var(--sg-r-sm);
  transition: background var(--sg-t), color var(--sg-t);
}
.sg-rifle-subtab:hover:not(:disabled):not(.is-active) { background: var(--sg-canvas); color: var(--sg-text) !important; }
.sg-rifle-subtab:disabled { cursor: not-allowed; opacity: 0.5; }
.sg-rifle-subtab.is-active {
  background: var(--sg-ink) !important;
  color: #fff !important;
}
.sg-rifle-subtab.is-done { color: var(--sg-text) !important; }
.sg-rifle-subtab-letter {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sg-canvas);
  border: 1px solid var(--sg-line);
  color: var(--sg-muted);
  font-family: var(--sg-mono);
  font-size: 11px;
  font-weight: 600;
}
.sg-rifle-subtab.is-active .sg-rifle-subtab-letter {
  background: #fff;
  border-color: #fff;
  color: var(--sg-ink);
}
.sg-rifle-subtab.is-done .sg-rifle-subtab-letter {
  background: var(--sg-olive);
  border-color: var(--sg-olive);
  color: #fff;
  font-size: 0;
}
.sg-rifle-subtab.is-done .sg-rifle-subtab-letter::before {
  content: "✓";
  font-family: inherit;
  font-size: 13px;
}
.sg-rifle-subtab-sep {
  color: var(--sg-muted-2);
  font-family: var(--sg-mono);
}

/* Active sub-step body */
.sg-rifle-sub {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}
.sg-rifle-sub-head {
  text-align: center;
}
.sg-rifle-sub-head h3 {
  margin: 0 0 6px !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em;
  color: var(--sg-text) !important;
}
.sg-rifle-sub-head p {
  margin: 0 !important;
  font-size: 14px !important;
  color: var(--sg-muted) !important;
  line-height: 1.5 !important;
}
.sg-rifle-sub-grid { display: grid; gap: 14px; }
.sg-rifle-sub-grid--variant { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sg-rifle-sub-grid--length  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sg-rifle-sub-grid--color   { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sg-rifle-sub-grid.is-dimmed { opacity: 0.45; pointer-events: none; }
.sg-rifle-section-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.sg-rifle-letter {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sg-ink);
  color: #fff !important;
  font-family: var(--sg-mono);
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1;
}
.sg-rifle-section h3 {
  margin: 0 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  color: var(--sg-text) !important;
}
.sg-rifle-note {
  margin-left: auto;
  font-family: var(--sg-mono);
  font-size: 11px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sg-muted) !important;
  padding: 3px 8px;
  border-radius: 20px;
  background: var(--sg-canvas);
  border: 1px solid var(--sg-line);
}

.sg-rifle-grid {
  display: grid;
  gap: 10px;
}
/* Inside a 3-column sub-picker layout, stack the variant/length cards
   vertically (1 column) so each tier is a tall list of options. */
.sg-rifle-grid--variant { grid-template-columns: 1fr; }
.sg-rifle-grid--length  { grid-template-columns: 1fr; }
.sg-rifle-grid--color   { grid-template-columns: 1fr; }
.sg-rifle-grid.is-dimmed { opacity: 0.45; pointer-events: none; }

.sg-rifle-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px;
  background: transparent !important;
  border: 0;
  border-radius: var(--sg-r-md);
  text-align: left;
  cursor: pointer;
  transition: background var(--sg-t);
  font-family: inherit;
  color: var(--sg-text) !important;
  width: 100%;
}
.sg-rifle-card:hover { background: var(--sg-canvas) !important; }
.sg-rifle-card.is-selected { background: transparent !important; }

.sg-rifle-card-img {
  aspect-ratio: 16 / 10;
  background: var(--sg-canvas);
  border: 1px solid transparent;
  border-radius: var(--sg-r-md);
  overflow: hidden;
  display: grid;
  place-items: center;
  transition: border-color var(--sg-t), box-shadow var(--sg-t);
}
.sg-rifle-card:hover .sg-rifle-card-img { border-color: var(--sg-line); }
.sg-rifle-card.is-selected .sg-rifle-card-img {
  border-color: var(--sg-ink);
  box-shadow: 0 0 0 1px var(--sg-ink);
}
.sg-rifle-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.sg-rifle-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sg-rifle-card-title {
  font-size: 17px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--sg-text) !important;
}
.sg-rifle-card-title small {
  font-family: var(--sg-mono);
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sg-muted) !important;
  margin-left: 6px;
}
.sg-rifle-card-desc {
  font-size: 13px !important;
  color: var(--sg-muted) !important;
  line-height: 1.5 !important;
}
.sg-rifle-card-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 20px;
  background: var(--sg-olive);
  color: #fff !important;
  font-family: var(--sg-mono);
  font-size: 10px !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}

/* Variant cards (Sport vs Covert) — wide photo above stacked text */
.sg-rifle-card--variant .sg-rifle-card-img { aspect-ratio: 16 / 9; }
.sg-rifle-card--variant .sg-rifle-card-desc {
  font-size: 12px !important;
  line-height: 1.45 !important;
}

/* Length cards — even slimmer thumbnail since they sit in their own column */
.sg-rifle-card--length .sg-rifle-card-img { aspect-ratio: 16 / 7; }
.sg-rifle-card--length .sg-rifle-card-desc {
  font-size: 12px !important;
  line-height: 1.45 !important;
}

/* Color cards — flat row, swatch is the focal point */
.sg-rifle-card--color {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--sg-r-md);
}
.sg-rifle-color-chip {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid transparent;
  box-shadow: inset 0 -3px 6px rgba(0,0,0,0.18), inset 0 3px 6px rgba(255,255,255,0.18);
  transition: border-color var(--sg-t), box-shadow var(--sg-t);
}
.sg-rifle-card--color:hover .sg-rifle-color-chip { border-color: var(--sg-line-strong); }
.sg-rifle-card--color.is-selected .sg-rifle-color-chip {
  border-color: var(--sg-ink);
  box-shadow: 0 0 0 2px var(--sg-paper), 0 0 0 3px var(--sg-ink),
    inset 0 -3px 6px rgba(0,0,0,0.18), inset 0 3px 6px rgba(255,255,255,0.18);
}
.sg-rifle-card--color .sg-rifle-card-title { font-size: 14px !important; font-weight: 500 !important; }

/* Resolved summary at the bottom of the picker */
.sg-rifle-resolved {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: var(--sg-canvas);
  border: 1px solid var(--sg-line);
  border-radius: var(--sg-r-md);
  margin-top: 8px;
}
.sg-rifle-resolved-eyebrow {
  display: block;
  font-family: var(--sg-mono);
  font-size: 10px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sg-muted) !important;
  margin-bottom: 2px;
}
.sg-rifle-resolved-name {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--sg-text) !important;
}
.sg-rifle-resolved-price {
  font-family: var(--sg-mono);
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--sg-text) !important;
}
.sg-rifle-resolved--incomplete {
  color: var(--sg-muted) !important;
  font-size: 13px !important;
  font-family: var(--sg-mono);
  letter-spacing: 0.02em;
  justify-content: center;
}

/* Tablet + mobile: stack sub-grids to one column so cards are full
   width and easier to tap. */
@media (max-width: 900px) {
  .sg-rifle-sub-grid--variant,
  .sg-rifle-sub-grid--length { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .sg-rifle-sub-grid--color { grid-template-columns: 1fr; }
  /* Compact stepper on mobile: hide labels, just show numbered chips */
  .sg-stepper-label { display: none; }
  .sg-stepper-dot { padding: 6px 10px; gap: 0; }
  .sg-wizard-btn { padding: 10px 16px; font-size: 13px !important; }
  /* Selector can't stay sticky inside a tiny phone — fall back to
     normal flow with a sticky cart bar at the bottom. */
  .sg-steps { position: static; max-height: none; }
}

/* ─── Mobile sticky bottom bar ─── */
.sg-mobile-summary { display: none; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  /* Drop immersive mode on tablets/mobile — let the page scroll and the
     header behave normally; the layout stacks. */
  body.bundle-immersive, html.bundle-immersive { overflow: auto !important; }
  body.bundle-immersive .shopify-section-group-header-group {
    position: static; transform: none !important; pointer-events: auto;
  }
  .sg-layout { grid-template-columns: 1fr; gap: 32px; height: auto; }
  .sg-steps { height: auto; overflow: visible; }
  .sg-summary { position: static; height: auto; }
  .sg-summary-sticky { max-height: none; height: auto; overflow: visible; position: static !important; }
  .sg-options--cards, .sg-options--platform { grid-template-columns: repeat(2, 1fr); }
  .sg-options--spring, .sg-options--goma { grid-template-columns: repeat(4, 1fr); }
  .sg-hero__head { grid-template-columns: 1fr; gap: 12px; }
  .sg-hero__meta { text-align: left; white-space: normal; }
}

@media (max-width: 720px) {
  .sg-options--cards, .sg-options--platform, .sg-options--goma, .sg-options--spring {
    grid-template-columns: repeat(2, 1fr);
  }
  .sg-options--quantity { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .sg-options--cards, .sg-options--platform { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  /* Mobile summary bar */
  .sg-mobile-summary {
    display: flex;
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 60;
    padding: 10px 14px;
    background: var(--sg-paper);
    border: 1px solid var(--sg-line-strong);
    border-radius: var(--sg-r-md);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    backdrop-filter: blur(6px);
  }
  .sg-mobile-info { display: flex; flex-direction: column; min-width: 0; }
  .sg-mobile-parts {
    font-family: var(--sg-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sg-muted);
  }
  .sg-mobile-total {
    font-family: var(--sg-mono);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.01em;
    color: var(--sg-text);
  }
  .sg-mobile-summary .sg-add-cart {
    width: auto;
    padding: 10px 16px !important;
    font-size: 13px !important;
    min-height: 0;
  }
  .sg-steps { padding-bottom: 90px; }
}
