@charset "UTF-8";
/* (imports unchanged) */
/* ... all your existing imports here ... */
/* ===== Title / BRAND NEW etc. (unchanged) ===== */
/* ===== Price row (unchanged) ===== */
/* ===== Stock + progress (unchanged) ===== */
/* ===== NEW: constrain the purchase stack ===== */
.purchaseStack {
  /* matches the visual width of your controls & button so bundles sit “inline” under them */
  max-width: 520px;
  /* tweak if your button is wider/narrower */ }

.purchaseStack > * {
  width: 100%; }

/* ===== Quantity control (kept from previous step) ===== */
.form-field--increments,
.form-field--quantity {
  display: none !important; }

.qtyRow {
  margin: .6rem 0 .9rem;
  display: flex;
  align-items: center;
  gap: .5rem; }

.qtyRow__label {
  font-weight: 700; }

.qtyControl {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  height: 40px;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent; }

.qtyBtn {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
  background: #fff;
  width: 44px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  outline: none;
  box-shadow: none; }

.qtyBtn:hover {
  background: #f5f6f7; }

.qtyBtn:focus, .qtyBtn:focus-visible, .qtyBtn:active {
  outline: none !important;
  box-shadow: none !important;
  background: #f5f6f7; }

.qtyInput {
  width: 56px;
  height: 100%;
  border: 0;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  background: #fff;
  padding: 0;
  outline: none;
  box-shadow: none;
  -moz-appearance: textfield;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  background-image: none !important; }

.qtyControl *::before, .qtyControl *::after {
  content: none !important;
  box-shadow: none !important; }

.qtyInput:hover, .qtyInput:focus, .qtyInput:focus-visible, .qtyInput:active {
  outline: none !important;
  box-shadow: none !important;
  background: #fff !important; }

.qtyInput::-moz-focus-inner {
  border: 0; }

.qtyInput::-webkit-outer-spin-button, .qtyInput::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
  display: none !important; }

.qtyBtn--minus {
  border-right: 1px solid #e5e7eb; }

.qtyBtn--plus {
  border-left: 1px solid #e5e7eb; }

/* ===== Bundle & Save (unchanged look; sits inside .purchaseStack now) ===== */
:root {
  --bundle-accent:#bf1e2e; }

.bundle-save {
  margin-top: .75rem;
  overflow: visible !important; }

.bundle-save__title {
  font-weight: 700;
  margin-bottom: .4rem; }

.bundle-save__list {
  display: grid;
  gap: .45rem;
  margin-left: 0;
  margin-right: 0;
  overflow: visible !important; }

.bundle-row {
  display: grid;
  gap: .35rem;
  overflow: visible !important; }

.productView-details,
.productView-product,
.productView-options {
  overflow: visible !important; }

.bundle-save__option {
  width: calc(100% - 12px);
  margin-inline: 6px;
  text-align: left;
  border: 1px solid #e6e8eb;
  border-radius: 8px;
  padding: .55rem .7rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s, background-color .15s, transform .15s; }

.bundle-save__option:hover {
  box-shadow: 0 0 0 2px var(--bundle-accent), 0 6px 18px rgba(191, 30, 46, 0.18); }

.bundle-save__option.is-selected {
  border-color: var(--bundle-accent);
  background: #fffafa;
  box-shadow: 0 0 0 2px var(--bundle-accent), 0 6px 18px rgba(191, 30, 46, 0.18); }

.bundle-save__qty {
  display: flex;
  gap: .45rem;
  align-items: center;
  flex-wrap: wrap; }

.bundle-save__qty-main {
  font-weight: 800;
  font-size: 1.15rem; }

.bundle-save__badge {
  font-size: .72rem;
  line-height: 1;
  padding: .22rem .4rem;
  border-radius: 5px;
  background: #f3f4f6;
  color: #111827; }

.bundle-save__badge--save {
  background: #e7fbe9;
  color: #0a7a2a;
  font-weight: 700;
  font-size: .95rem;
  padding: 4px 10px;
  border-radius: 999px; }

.bundle-save__badge--best {
  background: #e7f1ff;
  color: #0a52d1;
  font-weight: 700;
  font-size: .95rem;
  padding: 4px 10px;
  border-radius: 999px; }

.bundle-save__price {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: .08rem; }

.bundle-save__price-final {
  font-weight: 700;
  color: #108a00;
  font-size: 1.45rem;
  line-height: 1.15; }

.bundle-save__price-strike {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 1.05rem; }

.bundle-panel {
  border: 1px solid #e6e8eb;
  border-radius: 8px;
  background: #fff;
  padding: .55rem;
  margin-top: .25rem; }

.bundle-panel[hidden] {
  display: none; }

.bundle-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  margin-top: .5rem; }

.bundle-panel__add {
  width: 100%;
  padding: 12px 18px;
  background: #108a00;
  color: #fff;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.06rem;
  cursor: pointer; }

.bundle-panel__add[disabled] {
  opacity: .4;
  cursor: not-allowed; }

.bundle-panel__note {
  font-size: .83rem;
  color: #666; }

.bundle-panel__note.is-error {
  color: #b00000; }

.bundle-panel__chips {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
  margin-bottom: .4rem; }

.bundle-chip {
  display: flex;
  align-items: center;
  gap: .35rem;
  border: 1px solid #e6e8eb;
  background: #fafafa;
  color: #111827;
  border-radius: 999px;
  padding: .25rem .55rem;
  font-size: .78rem;
  cursor: pointer; }

.bundle-chip.is-active {
  border-color: #0a7a2a;
  background: #f3fff5; }

.bundle-chip.is-selected .bundle-chip__check {
  opacity: 1; }

.bundle-chip__idx {
  font-weight: 700; }

.bundle-chip__txt {
  color: #374151; }

.bundle-chip__check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff; }

.bundle-panel__slots {
  border-top: 1px dashed #ebeef2;
  padding-top: .45rem;
  margin-top: .25rem; }

.bundle-slot {
  display: block;
  padding: .5rem 0;
  border-top: 1px dashed #eee; }

.bundle-slot__options {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 6px;
  padding: .45rem; }

@media (max-width: 480px) {
  .purchaseStack {
    max-width: 100%; }
  .qtyBtn {
    width: 40px; }
  .qtyInput {
    width: 50px; }
  .bundle-save__option {
    padding: .5rem .6rem;
    width: calc(100% - 10px);
    margin-inline: 5px; }
  .bundle-panel__chips {
    gap: .25rem; } }
