/** Shopify CDN: Minification failed

Line 254:0 Expected identifier but found "<"
Line 256:0 Expected identifier but found "="
Line 258:0 Expected identifier but found ">"
Line 264:0 Expected identifier but found "<"
Line 267:0 Expected identifier but found "="
Line 270:0 Expected identifier but found ">"
Line 939:0 Unexpected "<"
Line 942:0 Unexpected "="
Line 945:1 Unexpected ">"
Line 977:0 Unexpected "<"
... and 2 more hidden warnings

**/
/* ═══════════════════ NiuYu Bundle Builder v2 ═══════════════════ */

.bb {
  background: var(--niu-bg, #fdf6fc);
  color: var(--niu-fg, #4a3245);
  padding-bottom: 0;
}

/* ─────── HERO ─────── */
.bb__hero {
  text-align: center;
  padding: 60px 0 40px;
}
.bb__eyebrow {
  font-size: var(--niu-size-eyebrow, 13px);
  font-weight: 800;
  letter-spacing: var(--niu-track-eyebrow, 0.18em);
  text-transform: uppercase;
  color: var(--niu-muted, #895d80);
  margin: 0 0 14px;
}
.bb__heading {
  font-family: var(--niu-font-display) !important;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: var(--niu-track-display-tight, -0.04em);
  color: var(--niu-fg);
  text-transform: none !important;
  margin: 0 0 16px;
}
.bb__sub {
  font-size: 16px;
  color: var(--niu-text, #333);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.5;
}
.bb__tier-badges {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
.bb__tier-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.bb__tier-label {
  font-family: var(--niu-font-display, inherit);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--niu-fg, #4a3245);
  text-transform: none;
}
.bb__tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--niu-fg, #4a3245);
  border: 1.5px solid var(--niu-fg, #4a3245);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: var(--niu-pop, #f5c842);
  letter-spacing: 0.02em;
  box-shadow: 0 6px 14px rgba(74, 50, 69, 0.18);
}
.bb__tier-badge strong { font-weight: 800; color: var(--niu-pop, #f5c842); }

/* ─────── GOALS ─────── */
.bb__goals-wrap {
  padding: 16px 40px 24px;
}
.bb__goals-head {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
  text-align: center;
  position: relative;
}
.bb__goals-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--niu-muted);
  margin: 0;
  text-align: center;
}
.bb__goals-head .bb__goals-clear {
  position: absolute;
  right: 0;
  top: 0;
}
.bb__goals-row {
  justify-content: center;
}
.bb__goals-clear {
  all: unset;
  cursor: pointer;
  font-size: 13px;
  color: var(--niu-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bb__goals-clear:hover { color: var(--niu-fg); }

.bb__goals-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.bb__goal-btn {
  all: unset;
  cursor: pointer;
  flex: 1 1 0;
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  background: #fff;
  border: 2px solid var(--niu-fg);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--niu-fg);
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.bb__goal-btn:hover {
  background: var(--niu-pink, #f0e2ef);
  transform: translateY(-1px);
}
.bb__goal-btn.is-active {
  background: var(--niu-fg);
  color: #fff;
  border-color: var(--niu-fg);
}
.bb__goal-emoji { font-size: 18px; }

/* ─────── MAIN GRID ─────── */
.bb-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  padding: 20px 40px 0;
  align-items: stretch;
}
.bb-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 16px;
}

/* ─────── PRODUCT CARD ─────── */
.bb__card {
  position: relative;
  background: #fff;
  border: 2px solid var(--niu-fg);
  border-radius: 24px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.bb__card.is-suggested {
  border: 3px solid var(--niu-pop, #f5c842);
  background: rgba(245, 200, 66, 0.10);
  box-shadow: 0 6px 24px rgba(245, 200, 66, 0.25);
}
.bb__card-suggested {
  position: absolute;
  top: -12px;
  left: 16px;
  background: var(--niu-pop);
  color: var(--niu-fg);
  padding: 6px 14px;
  border-radius: 999px;
  border: 2px solid var(--niu-fg);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(74, 50, 69, 0.18);
  white-space: nowrap;
}
.bb__card-qty {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--niu-fg);
  color: var(--niu-pop);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  z-index: 2;
}
.bb__card-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  flex: 1;
}
.bb__card-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.bb__card-body .bb__card-foot { margin-top: auto; }
.bb__card-media {
  background: var(--niu-pink);
  border-radius: 14px;
  border: 1.5px solid var(--niu-fg);
  /* Box stretches with the card height (grid default).
     The IMAGE inside is capped so it stays the same visual size
     regardless of how tall the box grows. */
  min-height: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
<<<<<<< Updated upstream
  padding: 5px;
=======
  padding: 0;
>>>>>>> Stashed changes
  box-sizing: border-box;
}
.bb__card-img {
  width: 100%;
  height: auto;
<<<<<<< Updated upstream
  max-width: 145px;
  max-height: 145px;
=======
  max-width: 100%;
  max-height: 180px;
>>>>>>> Stashed changes
  object-fit: contain;
}
.bb__card-ph {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--niu-muted);
  text-align: center;
  padding: 0 8px;
}
.bb__card-name {
  margin: 0 0 6px;
  font-family: var(--niu-font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--niu-fg);
  text-transform: none;
  line-height: 1.15;
  padding-right: 44px; /* leave room for absolute qty badge top-right */
}
.bb__card-desc {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--niu-muted);
}
.bb__card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.bb__card-price {
  font-family: var(--niu-font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--niu-fg);
  white-space: nowrap;
  flex-shrink: 0;
}
.bb__card-controls {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1.5px solid var(--niu-fg);
  border-radius: 999px;
  padding: 2px;
}
.bb__qbtn {
  all: unset;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--niu-fg);
  transition: background .15s ease;
}
.bb__qbtn:hover {
  background: var(--niu-pink);
}
.bb__qbtn:disabled,
.bb__qbtn[disabled] {
  cursor: not-allowed;
  opacity: 0.35;
  background: transparent !important;
}
.bb__card.is-at-max { opacity: 0.6; }
.bb__card.is-at-max .bb__card-controls { opacity: 0.5; }
.bb__qval {
  min-width: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--niu-fg);
}

/* ─────── ASIDE / Bundle summary ─────── */
.bb-aside {
  position: sticky;
  top: 80px;
  background: var(--niu-fg);
  color: #fff;
  border-radius: 28px;
  padding: 26px 24px;
  box-sizing: border-box;
  width: 100%;
}

/* ── Top: count left + savings right ── */
.bb__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}
.bb__top-eyebrow {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.bb__top-eyebrow--right { color: var(--niu-pop, #f5c842); text-align: right; }
.bb__top-count {
  margin: 0;
  font-family: var(--niu-font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.bb__top-count-word { font-weight: 800; opacity: .92; }
.bb__top-right { text-align: right; }
.bb__top-savings {
  margin: 0;
  font-family: var(--niu-font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--niu-pop, #f5c842);
  line-height: 1;
}
.bb__top-pct {
  margin: 4px 0 0;
  font-size: 11px;
  color: rgba(245, 200, 66, 0.75);
  font-weight: 600;
}

/* ── Milestones progress ── */
.bb__milestones {
  position: relative;
  margin: 8px 4px 22px;
}
.bb__milestones-track {
  position: absolute;
  top: 6px;
  left: 12px;
  right: 12px;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}
.bb__milestones-fill {
  height: 100%;
  background: var(--niu-pop, #f5c842);
  border-radius: 999px;
  transition: width .55s cubic-bezier(.34, 1.56, .64, 1);
  width: 0%;
}
.bb__milestones-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}
.bb__milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
  transition: color .3s ease;
}
.bb__milestone-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--niu-fg);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.bb__milestone.is-reached .bb__milestone-dot {
  background: var(--niu-pop, #f5c842);
  border-color: var(--niu-pop, #f5c842);
  transform: scale(1.1);
}
.bb__milestone.is-reached { color: var(--niu-pop, #f5c842); }

/* ── Items list pills ── */
.bb__items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
.bb__items-empty {
  border: 1.5px dashed rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.4;
}
.bb__items-empty strong { color: var(--niu-pop, #f5c842); }
.bb__item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: #fff;
}
.bb__item-name {
  flex: 1 1 auto;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bb__item-price {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}
.bb__item-remove {
  all: unset;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.45);
  font-size: 16px;
  padding: 0 2px;
  line-height: 1;
}
.bb__item-remove:hover { color: #fff; }

.bb__sel-head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
}
.bb__sel-clear {
  all: unset;
  cursor: pointer;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bb__sel-clear:hover { color: #fff; }

/* ── Nudge ── */
.bb__nudge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--niu-pop, #f5c842);
  font-weight: 600;
  margin-bottom: 22px;
  padding: 0 4px;
}
.bb__nudge strong { font-weight: 800; }
.bb__nudge-icon { flex-shrink: 0; font-size: 14px; }

/* ── Total ── */
.bb__total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 0;
  border-top: 1.5px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 16px;
}
.bb__total-label {
  font-family: var(--niu-font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.bb__total-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}
.bb__total-strike {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  line-height: 1;
}
.bb__total-amt {
  font-family: var(--niu-font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}

/* ── CTA yellow ── */
.bb__cta {
  all: unset;
  cursor: pointer;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 18px 22px;
  background: var(--niu-pop, #f5c842);
  color: var(--niu-fg, #4a3245);
  border-radius: 999px;
  text-align: center;
  font-family: var(--niu-font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  transition: opacity .2s ease, transform .15s ease;
}
.bb__cta:hover { transform: translateY(-1px); }
.bb__cta[disabled] {
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  transform: none;
}

/* ── Trust ── */
.bb__trust {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
.bb__trust span { line-height: 1.3; }
.bb__aside-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.bb__aside-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--niu-pop);
}
.bb__aside-collapse {
  all: unset;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
}
.bb__aside-body { display: block; }

/* Mobile-only: compact bar (always visible, no expand) */
.bb__aside-mini {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}
.bb__mini-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.bb__mini-count {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  padding: 5px 10px;
  border-radius: 999px;
}
.bb__mini-saving {
  font-size: 11px;
  font-weight: 700;
  color: var(--niu-pop, #f5c842);
  white-space: nowrap;
}
.bb__mini-pct {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--niu-fg, #4a3245);
  background: var(--niu-pop, #f5c842);
  padding: 5px 10px;
  border-radius: 999px;
}
.bb__mini-total {
  font-family: var(--niu-font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-left: auto;
}
.bb__mini-cta {
  all: unset;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--niu-pop, #f5c842);
  color: var(--niu-fg, #4a3245);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity .2s ease, transform .15s ease;
  position: relative;
  z-index: 2;
}
.bb__mini-cta svg,
.bb__mini-cta * { pointer-events: none; }
.bb__mini-cta:hover { transform: translateY(-1px); }
.bb__mini-cta[disabled] {
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  transform: none;
}

/* Progress bar */
.bb__progress-wrap { margin-bottom: 22px; }
.bb__progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.bb__progress-fill {
  height: 100%;
  background: var(--niu-pop);
  transition: width .35s cubic-bezier(.34,1.56,.64,1);
  border-radius: 999px;
}
.bb__progress-tiers {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.bb__progress-tiers .is-reached { color: var(--niu-pop); }

/* Selection header */
.bb__sel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.bb__sel-clear {
  all: unset;
  cursor: pointer;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: none;
  letter-spacing: 0.04em;
}
.bb__sel-clear:hover { color: #fff; }

/* Items */
.bb__items {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.bb__items-empty {
  border: 1.5px dashed rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.4;
}
.bb__items-empty strong { color: var(--niu-pop); }
.bb__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 10px 14px;
}
.bb__item-name {
  flex: 1 1 auto;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bb__item-price {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.bb__item-remove {
  all: unset;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  padding: 0 4px;
  line-height: 1;
}
.bb__item-remove:hover { color: #fff; }

/* Nudge */
.bb__nudge {
  background: rgba(245, 200, 66, 0.15);
  border: 1.5px solid var(--niu-pop);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 12px;
  color: var(--niu-pop);
  font-weight: 600;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
}
.bb__nudge.is-max {
  background: rgba(245, 200, 66, 0.95);
  color: var(--niu-fg);
  border-color: var(--niu-pop);
}
.bb__nudge-icon { flex-shrink: 0; }

/* Pricing */
.bb__pricing {
  padding-top: 18px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 18px;
}
.bb__price-row {
  display: flex;
  justify-content: space-between;
  opacity: 0.85;
}
.bb__price-row--save {
  color: var(--niu-pop);
  font-weight: 700;
  opacity: 1;
}
.bb__price-row--total {
  font-family: var(--niu-font-display);
  font-size: 28px;
  font-weight: 800;
  margin-top: 6px;
  opacity: 1;
  color: #fff;
}

/* CTA */
.bb__cta {
  all: unset;
  cursor: pointer;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 18px 20px;
  background: var(--niu-pop);
  color: var(--niu-fg);
  border-radius: 999px;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: opacity .2s ease, transform .15s ease;
}
.bb__cta:hover { transform: translateY(-1px); }
.bb__cta[disabled] {
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  transform: none;
}

/* Trust */
.bb__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════ MOBILE (≤900px) ═══════════════════ */
@media (max-width: 900px) {
  .bb__hero { padding: 40px 20px 28px; }
  .bb__heading { font-size: clamp(36px, 11vw, 56px); }
  .bb__goals-wrap { padding: 16px 20px 24px; }

  /* Goals: 2 columns grid */
  .bb__goals-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .bb__goal-btn {
    flex: none;
    min-width: 0;
    padding: 14px 10px;
    font-size: 13px;
  }

  .bb-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 20px 0;
  }
  .bb-products {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bb__card-row { grid-template-columns: 110px 1fr; gap: 12px; }
<<<<<<< Updated upstream
  .bb__card-media { min-height: 110px; padding: 4px; }
  .bb__card-img { max-width: 106px; max-height: 106px; }
=======
  .bb__card-media { min-height: 110px; padding: 0; }
  .bb__card-img { max-width: 100%; max-height: 140px; }
>>>>>>> Stashed changes
  .bb__card-name { font-size: 16px; }
  .bb__card-desc { font-size: 12px; margin-bottom: 10px; }
  .bb__card-price { font-size: 17px; }

  /* Aside: fixed slim bottom bar (always compact, no expand state) */
  .bb-aside {
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    border-radius: 20px 20px 0 0;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -10px 30px rgba(74, 50, 69, 0.22);
    max-height: none;
    overflow: visible;
    z-index: 50;
    background: var(--niu-fg);
  }
  .bb__aside-mini { display: flex; }
  .bb__aside-head,
  .bb__aside-body { display: none !important; }
}

/* Tablet ~ 901-1080 */
@media (min-width: 901px) and (max-width: 1080px) {
  .bb-grid { grid-template-columns: 1fr 320px; }
  .bb-products { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bb__card-row { grid-template-columns: 120px 1fr; }
<<<<<<< Updated upstream
  .bb__card-media { min-height: 120px; padding: 4px; }
  .bb__card-img { max-width: 116px; max-height: 116px; }
=======
  .bb__card-media { min-height: 120px; padding: 0; }
  .bb__card-img { max-width: 100%; max-height: 150px; }
>>>>>>> Stashed changes
}

/* Per-product image background tones (match home "Conoce tus nuevos favs") */
.bb__card-media--pink   { background: #f0e2ef !important; }
.bb__card-media--gray   { background: #e4e3e7 !important; }
.bb__card-media--blue   { background: #d6e6ee !important; }
.bb__card-media--yellow { background: #fff7e5 !important; }
