/** Shopify CDN: Minification failed

Line 22:14 Expected ":"

**/
/* =============================================================
   360cookwares – Bundle Builder Stylesheet
   File: assets/bundle-builder.css
   ============================================================= */

/* ----------------------------------------------------------
   CSS CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
  --bb-cream:       #FCFBF7;
  --bb-white:       #FFFFFF;
  --bb-dark:        #1A1A1A;
  --bb-dark-mid:    #2C2C2C;
  --bb-mid:         #6B6B6B;
  --bb-light:       #E8E4DC;
  --bb-border:      #DEDAD2;
  --bb-primary     #606d22;
  --bb-primary-dk:  #c3d957;
  --bb-primary-lt:  #FCFBF7;
  --bb-gold:        #B8975A;
  --bb-green:       #4A7C59;

  --bb-radius-sm:   4px;
  --bb-radius-md:   8px;
  --bb-radius-lg:   14px;
  --bb-radius-xl:   20px;

  --bb-shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --bb-shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --bb-shadow-lg:   0 12px 40px rgba(0,0,0,.14);

  --bb-font-display: 'Georgia', 'Times New Roman', serif;
  --bb-font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --bb-transition:  all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --bb-sidebar-width: 320px;
  --bb-progress-height: 70px;
}

/* ----------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------- */
.bundle-builder *,
.bundle-builder *::before,
.bundle-builder *::after {
  box-sizing: border-box;
}

.bundle-builder {
  font-family: var(--bb-font-body);
  color: var(--bb-dark);
  background: var(--bb-cream);
  min-height: 100vh;
}

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

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
.bb-hero {
  background: var(--bb-dark);
  color: var(--bb-white);
  padding: 64px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(195, 217, 87, 0.45) 0%, transparent 115%);
  pointer-events: none;
}

.bb-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.bb-hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bb-gold);
  margin: 0 0 16px;
}

.bb-hero__title {
  font-family: var(--bb-font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.bb-hero__title span {
  font-style: italic;
  color: var(--bb-primary-dk);
}

.bb-hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin: 0 0 40px;
  line-height: 1.6;
}

/* Tier badges */
.bb-tiers {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bb-tier {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--bb-radius-lg);
  padding: 14px 20px;
  text-align: center;
  min-width: 100px;
  position: relative;
  transition: var(--bb-transition);
}

.bb-tier--best {
  background: var(--bb-primary-dk);
  border-color: var(--bb-primary-dk);
}

.bb-tier__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bb-gold);
  color: var(--bb-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.bb-tier__items {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.bb-tier__discount {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--bb-white);
}

.bb-tier.is-active {
  background: var(--bb-primary-dk);
  border-color: var(--bb-primary-dk);
  transform: scale(1.04);
  box-shadow: 0 0 0 1px rgba(200, 98, 42, 0.35);
}

/* ----------------------------------------------------------
   STICKY PROGRESS BAR
   ---------------------------------------------------------- */
.bb-progress-bar {
  position: sticky;
  top: 0;
  z-index: 3;
  background: var(--bb-white);
  border-bottom: 1px solid var(--bb-border);
  box-shadow: var(--bb-shadow-md);
  min-height: var(--bb-progress-height);
}

.bb-progress-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.bb-progress-bar__steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.bb-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  min-width: 52px;
}

.bb-step-dot__circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bb-primary-dk-lt);
  border: 1px solid var(--bb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--bb-transition);
  position: relative;
}

.bb-step-dot__num {
  font-size: 11px;
  font-weight: 700;
  color: var(--bb-mid);
  line-height: 1;
  transition: var(--bb-transition);
}

.bb-step-dot__check {
  width: 12px;
  height: 10px;
  color: var(--bb-white);
  display: none;
  position: absolute;
}

.bb-step-dot__label {
  font-size: 10px;
  font-weight: 500;
  color: var(--bb-mid);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: var(--bb-transition);
}

.bb-step-dot__line {
  flex: 1;
  height: 2px;
  background: var(--bb-border);
  min-width: 24px;
  margin-bottom: 14px;
  transition: background 0.4s ease;
}

.bb-step-dot.is-active .bb-step-dot__circle {
  background: var(--bb-primary-dk);
  border-color: var(--bb-primary-dk);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.2);
}

.bb-step-dot.is-active .bb-step-dot__num   { color: var(--bb-white); }
.bb-step-dot.is-active .bb-step-dot__label { color: var(--bb-primary-dk); font-weight: 700; }

.bb-step-dot.is-complete .bb-step-dot__circle { background: var(--bb-primary-dk); border-color: var(--bb-primary-dk); }
.bb-step-dot.is-complete .bb-step-dot__num    { display: none; }
.bb-step-dot.is-complete .bb-step-dot__check  { display: block; }
.bb-step-dot.is-complete .bb-step-dot__label  { color: var(--bb-primary-dk); }
.bb-step-dot.is-complete + .bb-step-dot__line { background: var(--bb-primary-dk); }

.bb-progress-bar__summary {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.bb-count-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bb-primary-dk-lt);
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: var(--bb-radius-md);
  padding: 6px 12px;
  min-width: 52px;
}

.bb-count-badge span:first-child {
  font-size: 20px;
  font-weight: 800;
  color: var(--bb-primary-dk);
  line-height: 1;
}

.bb-count-badge span:last-child {
  font-size: 10px;
  color: var(--bb-mid);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bb-discount-display { display: flex; flex-direction: column; gap: 2px; }

.bb-discount-display__label {
  font-size: 10px;
  color: var(--bb-mid);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bb-discount-display__value {
  font-size: 18px;
  font-weight: 800;
  color: var(--bb-primary-dk);
  line-height: 1;
}

.bb-add-to-cart-sticky {
  background: var(--bb-primary-dk);
  color: var(--bb-white);
  border: none;
  padding: 10px 20px;
  border-radius: var(--bb-radius-md);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--bb-transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.bb-add-to-cart-sticky:hover:not(:disabled) {
  background: var(--bb-primary-dk);
}

.bb-add-to-cart-sticky:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

/* ----------------------------------------------------------
   LAYOUT
   ---------------------------------------------------------- */
.bb-layout {
  display: flex;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 80px;
  align-items: start;
  justify-content: center;
}

.bb-steps-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-width: 0;
  max-width: 100%
}

/* ----------------------------------------------------------
   STEPS
   ---------------------------------------------------------- */
.bb-step {
  background: var(--bb-white);
  border-radius: var(--bb-radius-lg);
  border: 1px solid var(--bb-border);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.bb-step:not(.bb-step--locked) { box-shadow: var(--bb-shadow-sm); }

.bb-step--locked {
  opacity: 0.5;
  pointer-events: none;
}

.bb-step--active {
  border-color: var(--bb-primary-dk);
  box-shadow: 0 0 0 2px rgba(200,98,42,0.15), var(--bb-shadow-md);
}

.bb-step__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--bb-border);
}

.bb-step__number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bb-dark);
  color: var(--bb-white);
  /*display: flex;*/
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.bb-step--active .bb-step__number   { background: var(--bb-primary-dk); }
.bb-step--complete .bb-step__number { background: var(--bb-primary-dk); }

.bb-step__title-wrap { flex: 1; }

.bb-step__title {
  font-family: var(--bb-font-display);
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 2px;
  line-height: 1.2;
}

.bb-step__subtitle { font-size: 12px; color: var(--bb-mid); margin: 0; }

.bb-step__status-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.bb-step__status-badge--pending  { background: var(--bb-light); color: var(--bb-mid); }
.bb-step__status-badge--selected { color: #fff; background: var(--bb-primary-dk); }

/* ----------------------------------------------------------
   PRODUCT GRID — 4 columns desktop, 2 mobile
   ---------------------------------------------------------- */
.bb-products-grid {
  gap: 1px;
  isolation: isolate;  /* contains z-index of children */
}

/* ----------------------------------------------------------
   PRODUCT CARD
   ---------------------------------------------------------- */
.bb-product-card {
  background: var(--bb-white);
  padding: 14px;
  cursor: pointer;
  transition: background var(--bb-transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* Fixed dimensions — never grow on selection */
  min-width: 0;
  overflow: hidden;
  max-height: 328px;
}


.bb-product-card:hover::after { 
  content: '';
  position: absolute;
  inset: 0;
  outline: 1px solid var(--bb-primary-dk);
  outline-offset: -1px;
  pointer-events: none;
  z-index: 1;
}


.bb-product-card:hover .bb-product-card__name {
  color: var(--bb-primary-dk);
}

.bb-product-card.is-selected {
  background: var(--bb-primary-dk-lt);
  /* No z-index or transform — prevents escape from grid */
}

/* Selected border via outline — stays inside, causes no layout shift */
.bb-product-card.is-selected::after {
  content: '';
  position: absolute;
  inset: 0;
  outline: 1px solid var(--bb-primary-dk);
  outline-offset: -1px;
  pointer-events: none;
  z-index: 1;
}

/* Bestseller badge */
.bb-product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--bb-primary-dk);
  color: var(--bb-white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 3px;
  z-index: 2;
}

/* Product image */
.bb-product-card__img-wrap {
  aspect-ratio: 1;
  background: var(--bb-cream);
  border-radius: var(--bb-radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
}

.bb-product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.bb-product-card:hover .bb-product-card__img-wrap img { transform: scale(1.04); }

.bb-product-card__img-placeholder { width: 60%; height: 60%; opacity: 0.15; }

.bb-product-card__name {
  font-size: 12px;
  font-weight: 600;
  color: var(--bb-dark);
  line-height: 1.3;
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  height: 31px;
}

.bb-product-card__price {
  font-size: 14px;
  font-weight: 700;
  color: var(--bb-dark);
  margin: 0;
}

.bb-product-card__price-original {
  font-size: 11px;
  color: var(--bb-mid);
  text-decoration: line-through;
  margin: 0 0 0 5px;
}

/* ----------------------------------------------------------
   QTY STEPPER — appears on card when item is added
   ---------------------------------------------------------- */
.bb-product-card__stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bb-white);
  border: 1.5px solid var(--bb-primary-dk);
  border-radius: var(--bb-radius-md);
  padding: 3px 6px;
  gap: 6px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  margin-top: 2px;
}

.bb-product-card__stepper.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.bb-stepper__btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: var(--bb-primary-dk-lt);
  color: var(--bb-primary-dk);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--bb-transition);
}

.bb-stepper__btn:hover {
  background: var(--bb-primary-dk);
  color: var(--bb-white);
}

.bb-stepper__qty {
  font-size: 13px;
  font-weight: 700;
  color: var(--bb-primary-dk);
  min-width: 14px;
  text-align: center;
}

/* ----------------------------------------------------------
   Skeleton shimmer
   ---------------------------------------------------------- */
.bb-skeleton {
  background: linear-gradient(90deg, var(--bb-light) 25%, var(--bb-border) 50%, var(--bb-light) 75%);
  background-size: 200% 100%;
  animation: bb-shimmer 1.5s infinite;
  border-radius: var(--bb-radius-sm);
}

@keyframes bb-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ----------------------------------------------------------
   SIDEBAR
   ---------------------------------------------------------- */
.bb-sidebar {
  position: sticky;
  top: calc(var(--bb-progress-height) + 16px);
  min-width: 300px;
  max-width: 300px;
  width: 100%;
}

.bb-sidebar__inner {
  background: var(--bb-white);
  border-radius: var(--bb-radius-lg);
  border: 1px solid var(--bb-border);
  overflow: hidden;
  box-shadow: var(--bb-shadow-md);
}

.bb-sidebar__header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--bb-border);
}

.bb-sidebar__title {
  font-family: var(--bb-font-display);
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 10px;
}

.bb-sidebar__discount-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bb-primary-dk-lt);
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: var(--bb-radius-md);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--bb-primary-dk);
}

.bb-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 16px 24px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bb-sidebar__empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 0;
  color: var(--bb-mid);
  font-size: 13px;
  gap: 12px;
  width: 100%;
}

.bb-sidebar__empty-icon { opacity: 0.3; }

.bb-sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: var(--bb-cream);
  border-radius: var(--bb-radius-md);
  border: 1px solid var(--bb-border);
  animation: bb-slide-in 0.25s ease;
}

@keyframes bb-slide-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bb-sidebar-item__img {
  width: 40px;
  height: 40px;
  border-radius: var(--bb-radius-sm);
  object-fit: cover;
  background: var(--bb-border);
  flex-shrink: 0;
}

.bb-sidebar-item__info { flex: 1; min-width: 0; }

.bb-sidebar-item__name {
  font-size: 11px;
  font-weight: 600;
  color: var(--bb-dark);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.bb-sidebar-item__step { font-size: 10px; color: var(--bb-mid); margin: 2px 0 0; }

/* Qty controls in sidebar */
.bb-sidebar-item__qty-ctrl {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.bb-sidebar-qty__btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--bb-border);
  background: var(--bb-white);
  color: var(--bb-dark);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--bb-transition);
}

.bb-sidebar-qty__btn:hover {
  border-color: var(--bb-primary-dk);
  color: var(--bb-primary-dk);
}

.bb-sidebar-qty__num {
  font-size: 12px;
  font-weight: 700;
  min-width: 14px;
  text-align: center;
  color: var(--bb-dark);
}

.bb-sidebar-item__price {
  font-size: 12px;
  font-weight: 700;
  color: var(--bb-dark);
  flex-shrink: 0;
}

.bb-sidebar-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--bb-mid);
  padding: 4px;
  border-radius: 50%;
  transition: var(--bb-transition);
  flex-shrink: 0;
  line-height: 1;
  display: flex;
  align-items: center;
}

.bb-sidebar-item__remove:hover {
  background: rgba(200,98,42,0.1);
  color: var(--bb-primary-dk);
}

.bb-sidebar__totals {
  padding: 16px 24px;
  border-top: 1px solid var(--bb-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bb-sidebar__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--bb-mid);
}

.bb-sidebar__total-row--discount { color: var(--bb-primary-dk); font-weight: 600; }

.bb-sidebar__total-row--final {
  font-size: 16px;
  font-weight: 800;
  color: var(--bb-dark);
  border-top: 1px solid var(--bb-border);
  padding-top: 10px;
  margin-top: 4px;
}

.bb-savings { color: var(--bb-primary-dk); }

.bb-sidebar__inner .bb-btn {
  margin: 0 24px 16px;
  width: calc(100% - 48px);
}

.bb-sidebar__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--bb-mid);
  padding: 0 24px 18px;
  margin: 0;
}

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */
.bb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--bb-radius-md);
  font-family: var(--bb-font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 13px 24px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--bb-transition);
  text-decoration: none;
  line-height: 1;
}

.bb-btn--primary {
  background: var(--bb-primary-dk);
  color: var(--bb-white);
  border-color: var(--bb-primary-dk);
}

.bb-btn--primary:hover:not(:disabled) {
  background: var(--bb-primary-dk);
  border-color: var(--bb-primary-dk);
}

.bb-btn--outline {
  background: transparent;
  color: var(--bb-dark);
  border-color: var(--bb-border);
}

.bb-btn--outline:hover:not(:disabled) {
  border-color: var(--bb-dark);
  background: var(--bb-cream);
}

.bb-btn--lg   { padding: 16px 32px; font-size: 16px; }
.bb-btn--full { width: 100%; }

.bb-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.bb-btn__text  { flex: 1; }
.bb-btn__total { font-size: 12px; opacity: 0.8; }

/* ----------------------------------------------------------
   BOTTOM CTA
   ---------------------------------------------------------- */
.bb-bottom-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 0 16px;
}

.bb-bottom-cta__note { font-size: 12px; color: var(--bb-mid); margin: 0; }

/* ----------------------------------------------------------
   MODALS
   ---------------------------------------------------------- */
.bb-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.bb-modal[hidden] { display: none; }

.bb-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
}

.bb-modal__box {
  position: relative;
  z-index: 1;
  background: var(--bb-white);
  border-radius: var(--bb-radius-xl);
  padding: 40px 36px;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--bb-shadow-lg);
  animation: bb-modal-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}

@keyframes bb-modal-in {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.bb-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bb-light);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--bb-mid);
  transition: var(--bb-transition);
}

.bb-modal__close:hover { background: var(--bb-border); color: var(--bb-dark); }

.bb-modal__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bb-cream);
  border: 2px solid var(--bb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--bb-primary-dk);
}

.bb-modal__icon--highlight {
  background: var(--bb-primary-dk-lt);
  border-color: rgba(200,98,42,0.25);
}

.bb-modal__title {
  font-family: var(--bb-font-display);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 12px;
  line-height: 1.2;
}

.bb-modal__body {
  font-size: 15px;
  color: var(--bb-mid);
  line-height: 1.6;
  margin: 0 0 28px;
}

.bb-modal__actions { display: flex; gap: 12px; }
.bb-modal__actions .bb-btn { flex: 1; }

.swiper-wrapper {
  display: flex;
}

.swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-bottom: 45px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--bb-primary-dk) !important;
  background: #fff;
  height: 32px;
  width: 32px;
  border-radius: 100px;
  box-shadow: 0 0 8px #ccc;
}

.swiper-button-next svg, .swiper-button-prev svg {
  height: 15px !important;
  width: 20px !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  display: none;
}

.mySwiper .swiper-button-prev {
  left: 45%;
}

.mySwiper .swiper-button-next {
  left: 55%;
}

.swiper-button-next, .swiper-button-prev {
  top: auto !important;
  bottom: 10px !important;
  transform: translateX(-50%);
}

/* ----------------------------------------------------------
   RESPONSIVE — Mobile
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  
  .mySwiper .swiper-button-prev {
    left: 43%;
  }

  .mySwiper .swiper-button-next {
    left: 57%;
  }

  .bb-layout {
    flex-direction: column;
  }

  .bb-sidebar {
    position: static;
    order: -1;
    max-width: initial;
  }

  .bb-progress-bar__steps { display: none; }
  .bb-progress-bar__inner { 
    justify-content: center;
    flex-direction: column;
  }

  .bb-hero { padding: 48px 20px 40px; }
  .bb-step__header { padding: 18px 20px; }

  .bb-tiers { gap: 20px; }
  .bb-tier  { padding: 10px 14px; min-width: 80px; }

  .bb-modal__box { padding: 32px 24px; }
  .bb-modal__actions { flex-direction: column; }

  .bb-step__status { display: none; }
}

/* ----------------------------------------------------------
   PROGRESS BAR — Discount tier pills (replaces step dots)
   ---------------------------------------------------------- */
.bb-progress-bar__steps {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0;
}

.bb-tier-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.bb-tier-dot__pill {
  background: var(--bb-light);
  color: var(--bb-mid);
  border: 1px solid var(--bb-border);
  border-radius: 20px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--bb-transition);
  white-space: nowrap;
}

.bb-tier-dot__label {
  font-size: 10px;
  color: var(--bb-mid);
  font-weight: 500;
}

.bb-tier-dot__line {
  flex: 1;
  height: 2px;
  background: var(--bb-border);
  min-width: 24px;
  margin-bottom: 14px;
  transition: background 0.4s ease;
}

/* Active tier — currently unlocked discount */
.bb-tier-dot.is-active .bb-tier-dot__pill {
  background: var(--bb-primary-dk);
  color: var(--bb-white);
  border-color: var(--bb-primary-dk);
}

.bb-tier-dot.is-active .bb-tier-dot__label {
  color: var(--bb-primary-dk);
  font-weight: 700;
}

/* Passed tier — already exceeded */
.bb-tier-dot.is-passed .bb-tier-dot__pill {
  background: var(--bb-primary-dk);
  color: var(--bb-white);
  border-color: var(--bb-primary-dk);
}

.bb-tier-dot.is-passed + .bb-tier-dot__line {
  background: var(--bb-primary-dk);
}