/** Shopify CDN: Minification failed

Line 398:2 Unexpected "100%"
Line 399:0 Unexpected "}"

**/
/* ================================
   Bundle Break - bundle-break.css
   ================================ */

.bb *, .bb *::before, .bb *::after { box-sizing: border-box; margin: 0; padding: 0; }

.bb {
  --bg: #f7f5f2;
  --surface: #ffffff;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --accent: #1d1d1f;
  --border: #e2ddd8;
  --radius: 18px;
  --shadow: 0 4px 32px rgba(0,0,0,0.08);
  --green-dark: #085041;
  --green-mid: #0F6E56;
  --green-light: #9FE1CB;
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  width: 100%;
  padding: 16px 20px 0;
  position: relative;
}

.bb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(to bottom, #ffffff, transparent);
  pointer-events: none;
  z-index: 1;
}

.bb-inner { max-width: 680px; margin: 0 auto; width: 100%; position: relative; z-index: 2; }

/* Header */
.bb-header { text-align: center; margin-bottom: 8px; position: relative; z-index: 2; }
.bb-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.67rem, 9.33vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 600;
  color: var(--ink);
}
.bb-header p {
  margin-top: 10px;
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
}

/* Product grid */
.bb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 10px 0 22px;
}

/* When there is an odd number of cards, centre the last lone card */
.bb-grid--odd .bb-card:last-child {
  grid-column: 1 / -1;
  max-width: calc(50% - 6px);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.bb-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.bb-card:hover { border-color: #b0aaa4; transform: translateY(-2px); box-shadow: var(--shadow); }
.bb-card:active { transform: scale(0.98); }
.bb-card.sel { border-color: var(--accent); border-width: 2.5px; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,29,31,0.13); }
.bb-card.locked { cursor: default; }

.bb-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #f5f0e8 0%, #ece5d8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.bb-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }


.bb-checkmark { display: none; }
.bb-card.sel .bb-checkmark { display: none; }

/* Card footer: price left, qty right */
.bb-card-foot {
  padding: 6px 12px 4px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
}
.bb-card-price {
  font-size: clamp(1.425rem, 3.75vw, 1.65rem);
  color: var(--ink);
  font-weight: 600;
  flex-shrink: 0;
  text-align: center;
  width: 100%;
}
.bb-card-price.is-free { color: var(--green-dark); }

.bb-qty { display: flex; align-items: center; gap: 3px; flex-shrink: 0; justify-content: center; }
.bb-qty-btn {
  width: 26px; height: 26px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
  padding: 0;
}
.bb-qty-btn:hover { background: var(--border); border-color: #b0aaa4; }
.bb-qty-btn:active { transform: scale(0.92); }
.bb-qty-num { font-size: 1.25rem; font-weight: 700; color: var(--ink); min-width: 16px; text-align: center; }

/* Progress tracker */
.bb-progress { margin-bottom: 20px; width: 100%; display: block; }

.bb-progress-steps {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  margin-bottom: 14px;
}

.bb-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.bb-step-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 600; color: var(--muted);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  flex-shrink: 0;
}
.bb-step.done .bb-step-dot { background: var(--accent); border-color: var(--accent); color: #fff; }
.bb-step.free .bb-step-dot { background: var(--green-mid); border-color: var(--green-mid); color: #fff; }

.bb-step-label {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: var(--muted); font-weight: 400;
  text-align: center; white-space: nowrap;
}
.bb-step.done .bb-step-label { color: var(--ink); font-weight: 500; }
.bb-step.free .bb-step-label { color: var(--green-dark); font-weight: 600; }

.bb-step-line {
  flex: 1;
  height: 2px;
  min-width: 10px;
  background: var(--border);
  transition: background 0.3s;
  margin-top: 22px;
  align-self: flex-start;
}
.bb-step-line.done { background: var(--accent); }
.bb-step-line.free { background: var(--green-mid); }

/* Progress bar - explicitly block so it always renders */
.bb-progress-bar-wrap {
  display: block !important;
  width: 100% !important;
  height: 8px !important;
  min-height: 8px !important;
  background: var(--border) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  margin-bottom: 14px !important;
  box-sizing: border-box !important;
}
.bb-progress-bar {
  display: block !important;
  height: 8px !important;
  min-height: 8px !important;
  border-radius: 10px !important;
  background: var(--accent) !important;
  width: 33.33% !important;
  transition: width 0.4s ease, background 0.3s ease !important;
  box-sizing: border-box !important;
}
.bb-progress-bar.green { background: var(--green-mid) !important; }

.bb-progress-label {
  display: block;
  width: 100%;
  text-align: center;
  font-size: clamp(1.2rem, 5vw, 1.4rem);
  font-weight: 500;
  color: var(--ink);
  min-height: 28px;
  line-height: 1.4;
}
.bb-free-word { font-weight: 700; color: var(--green-dark); }

/* Firework */
@keyframes bb-burst { 0% { transform: scale(0); opacity: 1; } 100% { transform: scale(2.5); opacity: 0; } }
.bb-firework { position: fixed; top: -999px; left: -999px; width: 32px; height: 32px; pointer-events: none; z-index: 9999; }
.bb-firework span { position: absolute; top: 50%; left: 50%; width: 4px; height: 4px; border-radius: 50%; background: var(--green-mid); transform-origin: 0 0; }
.bb-firework.go span:nth-child(1) { animation: bb-burst 0.6s ease-out forwards; transform: rotate(0deg) translate(14px); }
.bb-firework.go span:nth-child(2) { animation: bb-burst 0.6s 0.05s ease-out forwards; transform: rotate(45deg) translate(14px); }
.bb-firework.go span:nth-child(3) { animation: bb-burst 0.6s 0.1s ease-out forwards; transform: rotate(90deg) translate(14px); }
.bb-firework.go span:nth-child(4) { animation: bb-burst 0.6s 0.05s ease-out forwards; transform: rotate(135deg) translate(14px); }
.bb-firework.go span:nth-child(5) { animation: bb-burst 0.6s ease-out forwards; transform: rotate(180deg) translate(14px); }
.bb-firework.go span:nth-child(6) { animation: bb-burst 0.6s 0.05s ease-out forwards; transform: rotate(225deg) translate(14px); }
.bb-firework.go span:nth-child(7) { animation: bb-burst 0.6s 0.1s ease-out forwards; transform: rotate(270deg) translate(14px); }
.bb-firework.go span:nth-child(8) { animation: bb-burst 0.6s 0.05s ease-out forwards; transform: rotate(315deg) translate(14px); }

/* Total panel */
.bb-panel { background: var(--surface); border: 1.5px solid var(--border); border-radius: 12px; box-shadow: var(--shadow); overflow: hidden; margin-bottom: 14px; }
.bb-panel-inner { padding: 18px 20px; }
.bb-divider { height: 1px; background: var(--border); margin: 0 0 16px; }
.bb-totals { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.bb-totals-label { font-size: 22px !important; color: var(--ink); font-weight: 400; line-height: 1; }
.bb-totals-right { display: flex; align-items: center; gap: 9px; }
.bb-orig { font-size: 22px !important; color: var(--muted); text-decoration: line-through; display: none; line-height: 1; }
.bb-total { font-size: 22px !important; font-weight: 700; color: var(--ink); line-height: 1; }
.bb-disc-pill { display: none; font-size: .9rem; font-weight: 600; color: var(--green-dark); background: var(--green-light); border-radius: 20px; padding: 4px 13px; margin-left: 8px; vertical-align: middle; }

/* Shipping */
.bb-shipping { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; }

@keyframes bb-dot-blink-green {
  0%, 100% { background: #085041; }
  50%       { background: #9FE1CB; }
}
@keyframes bb-dot-blink-yellow {
  0%, 100% { background: #92640a; }
  50%       { background: #f5c842; }
}
@keyframes bb-dot-blink-red {
  0%, 100% { background: #7a1a1a; }
  50%       { background: #f87171; }
}
.bb-shipping-dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: bb-dot-blink-green 2s ease-in-out infinite;
}
.bb-shipping-dot[data-color="yellow"] { animation-name: bb-dot-blink-yellow; }
.bb-shipping-dot[data-color="red"]    { animation-name: bb-dot-blink-red; }
.bb-shipping-text {
  font-size: inherit;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.4;
}
.bb-shipping-text strong {
  font-weight: 700;
  color: var(--ink);
}
.bb-shipping-date {
  font-weight: 700;
  color: var(--ink);
}

/* Add to cart */
/* CTA button - canvas comet animation around border */
.bb-cta {
  position: relative;
  overflow: visible;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 20px 24px;
  background: var(--accent); color: #fff;
  border: none; border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.35rem, 5vw, 1.6rem);
  font-weight: 500; letter-spacing: 0.01em;
  cursor: pointer; margin-bottom: 14px;
  min-height: 64px;
  transition: opacity .18s, transform .12s;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}
.bb-cta:hover { opacity: .85; }
.bb-cta:active { transform: scale(0.98); }
.bb-cta:disabled { opacity: 0.6; cursor: default; }
.bb-cta svg { width: 22px; height: 22px; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; fill: none; flex-shrink: 0; }
.bb-cta svg[fill="currentColor"] { fill: #fff; stroke: none; }
.bb-cta-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; border-radius: 12px; }

/* Variant selector */
.bb-hw-wrap {
  padding: 8px 12px 8px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.bb-variant-select {
  width: 100%;
  padding: 7px 10px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  transition: border-color 0.15s;
}
.bb-variant-select:hover { border-color: #b0aaa4; }
.bb-variant-select:focus { outline: none; border-color: var(--accent); }

/* Card banner */
.bb-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 5px 16px;
  box-sizing: border-box;
  text-align: center;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.1rem;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  line-height: 1.2 !important;
}
.bb-banner span {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  text-align: center !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}

/* Shimmer - injected as a child div by JS, not a pseudo-element */

  100% { left: 130%; }
}


/* Footnote *//* Footnote */
.bb-note { text-align: center; font-size: clamp(.82rem, 2.5vw, .92rem); color: var(--muted); font-weight: 300; }


/* Banner handled via inline SVG */

/* Mobile */
.bb-view-more-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 8px 0 4px;
  grid-column: 1 / -1;
}
.bb-view-more-btn {
  background: #1d1d1f;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 11px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.18s ease, transform 0.12s ease;
}
.bb-view-more-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.bb-view-more-btn:hover { background: #333; }
.bb-view-more-btn:active { transform: scale(0.97); }

.bb-extra-cards {
  display: none;
  width: 100%;
  /* spans full width inside the parent bb-grid */
  grid-column: 1 / -1;
}
.bb-extra-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  width: 100%;
}
.bb-extra-inner.bb-grid--odd .bb-card:last-child {
  grid-column: 1 / -1;
  max-width: calc(50% - 6px);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Mobile landscape: stack price + qty vertically, both centered */
@media screen and (orientation: landscape) and (max-width: 1024px) and (hover: none) and (pointer: coarse) {
  .bb-card-foot {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 10px 4px;
    min-height: 0;
  }
  .bb-card-price {
    text-align: center;
    width: 100%;
  }
  .bb-qty {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .bb-step-dot { width: 40px; height: 40px; font-size: 1rem; }
  .bb-step-label { font-size: 0.88rem; }
  .bb-step-line { min-width: 8px; }
  .bb-card-foot { padding: 8px 10px 4px; flex-direction: column; align-items: center; justify-content: center; }
  .bb-card-foot--has-price { flex-direction: row; justify-content: space-between; }
  .bb-card-price { text-align: left; width: auto; }
  .bb-qty { justify-content: center; }
  .bb-card-foot--has-price .bb-qty { justify-content: flex-end; }
  .bb-qty-btn { width: 24px; height: 24px; font-size: 0.9rem; border-radius: 5px; }
}

@media (max-width: 370px) {
  .bb-card-foot { flex-direction: column; align-items: center; justify-content: center; }
  .bb-card-price { text-align: center; width: 100%; }
  .bb-qty { justify-content: center; }
}

@media screen and (min-width: 990px) {
  .bb-grid--section {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .bb-grid--section.bb-grid--odd .bb-card:last-child {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }
  .bb-extra-inner.bb-grid--section {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .bb-extra-inner.bb-grid--section.bb-grid--odd .bb-card:last-child {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }
}

/* US ships-from row */
.bb-shipping + .bb-ships-from { margin-top: -10px; }
.bb-ships-from { margin-bottom: 16px; gap: 5px; }
.bb-us-flag {
  width: 16px;
  height: 9px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 1px;
  margin: 0 2px;
  position: relative;
  top: -1px;
}
@keyframes bb-flag-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Hardware Color swatches in bundle cards */
.bb-card-hw {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 8px;
}
.bb-hw-sq {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  border: 2px solid #ccc;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: transform 0.12s;
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
}
.bb-hw-sq:hover { transform: scale(1.12); }
.bb-hw-sq--on { transform: scale(1.08); }
.bb-hw-ck {
  position: absolute;
  inset: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.bb-hw-ck svg { width: 14px; height: 14px; }

/* Keychain mode card */
.bb-card--keychain {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.bb-keychain-img-wrap {
  width: 100%;
  background: linear-gradient(160deg, #f5f0e8 0%, #ece5d8 100%);
  position: relative;
  overflow: hidden;
}
.bb-keychain-main-img {
  width: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}
.bb-keychain-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  padding: 3px;
  background: var(--border);
}
.bb-keychain-thumb {
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: border-color 0.15s;
  display: block;
  width: 100%;
}
.bb-keychain-thumb.active {
  border-color: var(--accent);
}
.bb-keychain-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 12px 4px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.bb-keychain-compare {
  font-size: 1.4rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 400;
}
.bb-keychain-sale {
  font-size: 1.6rem;
  color: var(--ink);
  font-weight: 600;
}
.bb-keychain-savings {
  font-size: 1.1rem;
  color: var(--green-mid);
  font-weight: 500;
}

/* Keychain card-foot with inline ATC */
.bb-card-foot--keychain {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 6px;
  gap: 8px;
}
.bb-card-foot--keychain .bb-qty {
  justify-content: flex-start;
  flex-shrink: 0;
}
.bb-kc-atc {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0 20px;
  height: 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
  text-align: center;
  transition: opacity 0.15s;
}
.bb-kc-atc:hover { opacity: 0.85; }

/* Keychain card qty — larger to match ATC button height */
.bb-card-foot--keychain .bb-qty-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 1.8rem;
  aspect-ratio: 1 / 1;
}
.bb-card-foot--keychain .bb-qty-num {
  font-size: 2.5rem;
  min-width: 32px;
}

/* Hardware color label on keychain cards */
.bb-hw-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  margin-right: 4px;
}

.bb-card-foot--keychain-centered {
  justify-content: center;
}

/* EP card size picker */
.bb-size-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 10px 4px;
}
.bb-size-btn {
  flex: 1;
  min-width: 0;
  height: 26px;
  padding: 0 8px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  background: #f5f5f5;
  color: #1d1d1f;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem !important;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 26px;
  box-sizing: border-box;
}
.bb-size-btn--on {
  background: #1d1d1f;
  color: #fff;
  border-color: #1d1d1f;
}

/* Larger hw swatches on ep cards — same size as base */
/* Phone Card */
.bb-card[data-phone-card="true"] { overflow: visible; }
.bb-card[data-phone-card="true"] .bb-banner { border-radius: 0; }
.bb-card[data-phone-card="true"] .bb-keychain-img-wrap { border-radius: var(--radius) var(--radius) 0 0; }
.bb-card[data-phone-card="true"] .bb-card-foot { border-radius: 0 0 var(--radius) var(--radius); overflow: hidden; }
.pc-select-wrap {
  padding: 6px 10px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 10;
}
.pc-select-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #1d1d1f;
  white-space: nowrap;
  flex-shrink: 0;
}
.pc-phone-select {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  color: #1d1d1f;
  border: 1.5px solid #d8d8d8;
  border-radius: 8px;
  padding: 6px 8px;
  background: #f5f5f5;
  flex: 0 1 55%;
  min-width: 0;
  width: 0;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-appearance: auto;
}

/* Recommended Products section grid */
.bb-grid--rp {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}
@media (min-width: 990px) {
  .bb-grid--rp {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .bb-grid--rp.bb-grid--odd .bb-card:last-child {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }
}
.bb-grid--rp .bb-card-foot--has-price {
  flex-direction: row;
  justify-content: space-between;
}
.bb-grid--rp .bb-card-foot--has-price .bb-qty {
  justify-content: flex-end;
}
.rp-section-heading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 10px;
}
.rp-view-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.rp-view-more-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1d1d1f;
  background: #f5f5f5;
  border: 1.5px solid #d8d8d8;
  border-radius: 99px;
  padding: 8px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.rp-hidden { display: none !important; }

.vb-mini-grid { margin: 8px 0; }

/* Mini card footer — always stacked, centered, larger */
.vb-mini-grid .bb-card-foot {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px 10px 6px;
}
.vb-mini-grid .bb-card-price {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0;
  width: auto;
}
.vb-mini-grid .vb-mini-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
}
.vb-mini-grid .vb-mini-compare {
  font-size: 1.8rem;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
}
.vb-mini-grid .bb-qty {
  justify-content: center;
  padding: 0;
}
.vb-mini-grid .bb-qty-btn {
  width: 32px;
  height: 32px;
  font-size: 1.6rem;
}
.vb-mini-grid .bb-qty-num {
  font-size: 1.6rem;
  min-width: 20px;
}

/* Hide compare-at price on mobile landscape for VB main card and phone cards */
@media (orientation: landscape) and (hover: none) and (pointer: coarse) {
  .bb-card--keychain .bb-keychain-compare,
  .bb-keychain-card .bb-keychain-compare {
    display: none !important;
  }
}

/* Hide compare-at in mini cards on mobile landscape */
@media (orientation: landscape) and (hover: none) and (pointer: coarse) {
  .vb-mini-compare { display: none !important; }
}
@media (max-width: 370px) {
  .vb-mini-grid .bb-card-price { width: auto; text-align: center; }
}
.vb-mini-grid .bb-banner { font-size: 1.4rem; }
@media (max-width: 399px) {
  .vb-mini-grid .bb-banner { font-size: 1.1rem; }
}

.vb-mini-grid .bb-variant-select { font-size: 1.3rem; }
@media (max-width: 429px) {
  .vb-mini-grid .bb-variant-select { font-size: 1.2rem; }
}