/** Shopify CDN: Minification failed

Line 578:0 Unexpected "}"

**/
/* Bundle widget v9 - Centered Row Fixes */

.bundle-widget {
  --bundle-color-primary: #3d55cc;
  --bundle-color-primary-bg: #eef1fb;
  --bundle-color-success: #16a34a;
  --bundle-color-danger-bg: #fee2e2;
  --bundle-color-danger-text: #991b1b;
  --bundle-color-border: #e5e7eb;
  --bundle-color-divider: #e1e3e4;
  --bundle-color-frame-bg: #f4f4f4;
  --bundle-color-text: #111827;
  --bundle-color-text-muted: #6b7280;
  --bundle-color-price-muted: #9ca3af;
  --bundle-color-star: #fbbf24;
  --bundle-color-star-empty: #e5e7eb;
  --bundle-motion-duration: 0.3s;
  --bundle-motion-easing: cubic-bezier(0.2, 0.6, 0.4, 1);

  display: block;
  margin: 16px 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  contain: inline-size;
  /* contain: content; */
}

.bundle-widget,
.bundle-widget *,
.bundle-widget *::before,
.bundle-widget *::after {
  box-sizing: border-box;
}

.bundle-widget__frame {
  border: 1px solid var(--bundle-color-border);
  border-radius: 14px;
  background-color: var(--bundle-color-frame-bg);
  box-shadow: 0 2px 10px rgba(17, 24, 39, 0.08);
  padding: 14px;
  min-width: 0;
  max-width: 100%;
}

.bundle-widget__header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--bundle-color-primary);
  margin-bottom: 12px;
}

.bundle-widget__header--no-discount {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 20px;
}

.bundle-widget__header svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.bundle-widget__select-all-row {
  display: flex;
  align-items: center;
  gap: 12px; 
  margin-bottom: 12px;
  margin-left: 0; /* Removed the manual offset */
  border: 1px solid var(--bundle-color-border);
  border-radius: 12px;
  padding: 12px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(17, 24, 39, 0.06);
  transition: border-color var(--bundle-motion-duration) var(--bundle-motion-easing), box-shadow var(--bundle-motion-duration) var(--bundle-motion-easing);
}

/* Highlights the Select All card in blue when checked */
.bundle-widget__select-all-row:has(.bundle-widget__checkbox--select-all:checked) {
  border: 2px solid var(--bundle-color-primary);
  padding: 11px;
  box-shadow: 0 6px 20px rgba(61, 85, 204, 0.28), 0 2px 6px rgba(61, 85, 204, 0.14);
  position: relative; /* Allows z-index to work */
  z-index: 10; /* Pulls the card and its shadow to the front */
}

.bundle-widget__checkbox.bundle-widget__checkbox--select-all {
  margin: 0 !important; 
  flex-shrink: 0;
  z-index: 1;
}

.bundle-widget__select-all-label {
  font-size: 14px; /* Bumped up to match the accessory titles */
  font-weight: 700;
  color: var(--bundle-color-text);
  cursor: pointer;
  user-select: none;
}

.bundle-widget__checkbox.bundle-widget__checkbox--select-all {
  margin: 0 !important; 
  flex-shrink: 0;
  z-index: 1;
}


.bundle-widget__cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
}

.bundle-widget__card {
  flex: 1 1 auto;
  border: 1px solid var(--bundle-color-border);
  border-radius: 12px;
  padding: 12px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(17, 24, 39, 0.06);
  transition: border-color var(--bundle-motion-duration) var(--bundle-motion-easing), box-shadow var(--bundle-motion-duration) var(--bundle-motion-easing);
  min-width: 0;
  max-width: 100%;
}

.bundle-widget__card:has([data-accessory-checkbox]:checked) {
  border: 2px solid var(--bundle-color-primary);
  padding: 11px;
  box-shadow: 0 6px 20px rgba(61, 85, 204, 0.28), 0 2px 6px rgba(61, 85, 204, 0.14);
  position: relative; /* Allows z-index to work */
  z-index: 10;
}

.bundle-widget__row {
  display: flex;
  align-items: center; /* Beautifully centers checkbox, image, info, and price */
  gap: 12px; /* Provides equal spacing between items */
  min-width: 0;
  max-width: 100%;
}

.bundle-widget__checkbox,
.bundle-widget__checkbox-slash {
  appearance: none;
  -webkit-appearance: none;
  width: 20px; 
  height: 20px;
  min-width: 20px;
  border-radius: 6px;
  border: 1.5px solid #d1d5db;
  background: #ffffff;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: background-color var(--bundle-motion-duration) var(--bundle-motion-easing), border-color var(--bundle-motion-duration) var(--bundle-motion-easing);
}

.bundle-widget__checkbox:checked {
  background-color: var(--bundle-color-primary);
  border-color: var(--bundle-color-primary);
}

.bundle-widget__checkbox:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -58%) rotate(45deg);
}

/* Ensure the checkmark positions correctly when the checkbox is set to relative */
.bundle-widget__checkbox {
  position: relative;
}

.bundle-widget__checkbox-slash {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #9ca3af;
}

.bundle-widget__checkbox-slash svg {
  width: 12px;
  height: 12px;
}

.bundle-widget__thumb {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 8px;
  background: #f3f4f6;
  overflow: hidden;
  display: block;
}

.bundle-widget__card--soldout .bundle-widget__thumb {
  filter: grayscale(1);
}

.bundle-widget__thumb img,
.bundle-widget__thumb picture,
.bundle-widget__thumb-img,
.bundle-widget__thumb svg,
.bundle-widget__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bundle-widget__info {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  gap: 2px;
}

.bundle-widget__title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--bundle-color-text);
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.bundle-widget__title:hover {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  text-decoration: underline !important;
}

.bundle-widget__card--soldout .bundle-widget__title {
  color: var(--bundle-color-text-muted);
  font-weight: 500;
}

.bundle-widget__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  font-size: 11px;
  color: var(--bundle-color-text-muted);
}

.bundle-widget__rating-stars {
  display: inline-flex;
  gap: 1px;
  color: var(--bundle-color-star);
}

.bundle-widget__rating-stars svg {
  width: 11px;
  height: 11px;
}

.bundle-widget__rating--expanded {
  margin-top: 0;
  font-size: 11px;
}

.bundle-widget__divider {
  height: 1px;
  background-color: var(--bundle-color-divider);
  border: none;
  margin: 10px 0;
  width: 100%;
}

.bundle-widget__select-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
}

/* ====================================================
   ABSOLUTE GHOST WRAPPER (TRUE SHRINK-WRAP FIX) 
   ==================================================== */
.bundle-widget__select-wrapper {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important; 
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  vertical-align: middle !important;
}

.bundle-widget__select-wrapper::after {
  content: attr(data-value) !important;
  visibility: hidden !important;
  white-space: pre !important;
  font-size: 11px !important;
  font-family: inherit !important;
  font-weight: 500 !important;
  padding: 6px 32px 6px 10px !important;
  border: 1px solid transparent !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  line-height: normal !important;
  display: block !important;
}

.bundle-widget__select {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  font-size: 11px !important;
  font-family: inherit !important;
  font-weight: 500 !important;
  padding: 6px 32px 6px 10px !important;
  border-radius: 6px !important;
  border: 1px solid #d1d5db !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  background-color: #ffffff !important;
  color: #374151 !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23374151' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

@media (max-width: 480px) {
  .bundle-widget__select-wrapper::after,
  .bundle-widget__select {
    font-size: 10px !important;
    padding: 4px 28px 4px 8px !important;
  }
}
/* ==================================================== */
/* ==================================================== */

.bundle-widget__select:focus {
  outline: none !important;
  border-color: var(--bundle-color-primary) !important;
}

.bundle-widget__select--static {
  display: inline-block !important; /* Changed from inline-flex so ellipsis can render */
  vertical-align: middle !important; /* Maintains perfect vertical alignment */
  background-image: none !important;
  cursor: default !important;
  padding: 4px 8px !important;
  flex: 0 1 auto !important;
  white-space: nowrap !important; /* Strictly prevents text from jumping to the next line */
  border: 1px solid #d1d5db !important;
  background-color: #ffffff !important;
  border-radius: 6px !important;
  font-size: 11px !important;
  color: #374151 !important;
  max-width: 100% !important; /* Prevents the pill from breaking the card layout */
  overflow: hidden !important;
  text-overflow: ellipsis !important; /* Standard 3 dots when the text runs out of room */
}

.bundle-widget__price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.bundle-widget__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: right;
  min-width: 0;
}

.bundle-widget__price-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 14px;
  font-weight: 700;
  color: var(--bundle-color-text);
  line-height: 1.3;
}

.bundle-widget__price-inner .price__default {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.bundle-widget__price .price__discount {
  display: none !important;
}

.bundle-widget__price--has-discount {
  display: flex;
  flex-direction: column;
}

.bundle-widget__price--has-discount .bundle-widget__price-discounted {
  order: -1;
  font-size: 12px;
  font-weight: 700;
  color: var(--bundle-color-primary);
  line-height: 1.2;
}

.bundle-widget__price--has-discount .bundle-widget__price-inner {
  order: 1;
}

.bundle-widget__price--has-discount .price__was {
  display: none !important;
}

.bundle-widget__price--has-discount .bundle-widget__price-inner .price__current .js-value {
  text-decoration: line-through !important;
  color: var(--bundle-color-price-muted) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
}

.bundle-widget__price:not(.bundle-widget__price--has-discount) .bundle-widget__price-inner .price__default {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 6px;
}

.bundle-widget__price:not(.bundle-widget__price--has-discount) .bundle-widget__price-inner .price__was .js-value {
  text-decoration: line-through;
  color: var(--bundle-color-price-muted);
  font-weight: 400;
}

.bundle-widget__price:not(.bundle-widget__price--has-discount) .bundle-widget__price-inner .price__current .js-value {
  font-size: 12px;
  font-weight: 700;
  color: var(--bundle-color-text);
}

.bundle-widget__price .price__current,
.bundle-widget__price .price__was,
.bundle-widget__price .js-value {
  padding-inline-end: 0 !important;
  padding-inline-start: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  margin: 0 !important;
  text-align: right !important;
  width: auto !important;
  max-width: 100%;
}

.bundle-widget__price-inner,
.bundle-widget__price-inner .price__default,
.bundle-widget__price-discounted {
  width: 100%;
  text-align: right;
}

.bundle-widget__price:not(.bundle-widget__price--has-discount) .bundle-widget__price-inner .price__default {
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 0 !important;
}

.bundle-widget__price:not(.bundle-widget__price--has-discount) .bundle-widget__price-inner .price__current {
  order: -1 !important;
}

.bundle-widget__price:not(.bundle-widget__price--has-discount) .bundle-widget__price-inner .price__was .js-value {
  font-size: 12px !important;
  text-decoration: line-through !important;
  color: #8c8c8c !important;
  font-weight: 400 !important;
}

.bundle-widget__price:not(.bundle-widget__price--has-discount) .bundle-widget__price-inner .price__current {
  padding-inline-end: 0 !important;
  padding-right: 0 !important;
  margin-right: 0 !important;
}

.bundle-widget__price:not(.bundle-widget__price--has-discount) .bundle-widget__price-inner .price__current,
.bundle-widget__price:not(.bundle-widget__price--has-discount) .bundle-widget__price-inner .price__current .js-value {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: var(--bundle-color-primary) !important;
  line-height: 1.2 !important;
}

.bundle-widget__right {
  display: flex;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
  max-width: 45%;
  margin-left: auto;
  padding-top: 0;
}

.bundle-widget__soldout-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin-right: 10px;
}

.bundle-widget__soldout-badge {
  display: inline-block;
  background: var(--bundle-color-danger-bg);
  color: var(--bundle-color-danger-text);
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  padding: 2px 8px;
  white-space: nowrap;
}

.bundle-widget__notify-btn {
  font-size: 10px;
  font-weight: 600;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--bundle-color-primary);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
/* .product-3grid .bundle-widget__select-all-row {
  margin-bottom: 20px; /* increase this value to taste */
} */

.bundle-widget__notify-btn:hover {
  text-decoration: underline;
}

.bundle-widget__notify-btn[disabled] {
  cursor: default;
  opacity: 0.8;
  text-decoration: none;
}

.bundle-widget__expand-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--bundle-color-text-muted);
  cursor: pointer;
  flex-shrink: 0;
}

.bundle-widget__expand-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--bundle-motion-duration) var(--bundle-motion-easing);
}

.bundle-widget__expand-toggle[aria-expanded='true'] svg {
  transform: rotate(180deg);
}

.bundle-widget__panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height var(--bundle-motion-duration) var(--bundle-motion-easing), opacity var(--bundle-motion-duration) var(--bundle-motion-easing);
}

.bundle-widget__panel[hidden] {
  display: block;
}

.bundle-widget__panel.is-open {
  max-height: 1400px;
  opacity: 1;
  margin-top: 12px;
}

.bundle-widget__carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f4f6;
}

.bundle-widget__carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform var(--bundle-motion-duration) var(--bundle-motion-easing);
  will-change: transform;
}

.bundle-widget__carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-width: 100%;
}

.bundle-widget__carousel-slide picture,
.bundle-widget__carousel-slide img,
.bundle-widget__carousel-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.bundle-widget__carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--bundle-color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.bundle-widget__carousel-arrow svg {
  width: 14px;
  height: 14px;
}

.bundle-widget__carousel-arrow--prev {
  left: 8px;
}

.bundle-widget__carousel-arrow--next {
  right: 8px;
}

.bundle-widget__carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}

.bundle-widget__carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.bundle-widget__carousel-dot.is-active {
  background: #ffffff;
}

.bundle-widget__panel-full-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--bundle-color-text);
  margin-top: 12px;
  margin-bottom: 0px;
  line-height: 1.3;
}

.bundle-widget__variant-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
}

.bundle-widget__variant-chip {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--bundle-color-primary);
  background-color: #DBEAFE;
  border-radius: 6px;
  padding: 4px 10px;
  white-space: normal;
  word-break: break-word;
  line-height: 1.35;
  width: fit-content;
  max-width: 100%;
}

.bundle-widget__meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
  flex-wrap: wrap;
}

.bundle-widget__items-sold {
  color: var(--bundle-color-primary);
  font-weight: 600;
}

.bundle-widget__description {
  position: relative;
  margin-top: 8px;
}

.bundle-widget__description-scroll {
  position: relative;
  max-height: 180px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.bundle-widget__description-scroll::after {
  content: '';
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  height: 28px;
  margin-top: -28px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff 90%);
  pointer-events: none;
}

.bundle-widget__description .description-content {
  font-size: 12px;
  color: var(--bundle-color-text-muted);
  line-height: 1.5;
}

.bundle-widget__show-more {
  display: block;
  width: 100%;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--bundle-color-primary);
  text-decoration: none;
  text-align: center;
}

.bundle-widget__show-more:hover {
  text-decoration: underline;
}

.bundle-widget__summary {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--bundle-color-border);
}

.bundle-widget__summary-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}

.bundle-widget__summary-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--bundle-color-text);
}

.bundle-widget__summary-total {
  font-size: 20px;
  font-weight: 700;
  color: var(--bundle-color-primary);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.2;
}

.bundle-widget__summary-save {
  font-size: 13px;
  color: var(--bundle-color-success);
  font-weight: 600;
}

.bundle-widget__summary-microcopy {
  font-size: 11px;
  color: var(--bundle-color-text-muted);
}

.bundle-widget__error {
  width: 100%;
  font-size: 13px;
  color: var(--bundle-color-danger-text);
  margin-top: 8px;
}

.bundle-widget__card--soldout .bundle-widget__select-group,
.bundle-widget__card--soldout .bundle-widget__select {
  opacity: 1 !important;
  pointer-events: auto !important;
  filter: grayscale(0) !important;
}

.bundle-widget__card--soldout {
  opacity: 1 !important;
  pointer-events: auto !important;
  filter: none !important;
}

.bundle-widget__card--soldout .bundle-widget__thumb,
.bundle-widget__card--soldout .bundle-widget__title,
.bundle-widget__card--soldout .bundle-widget__rating {
  opacity: 0.4 !important;
  pointer-events: none !important;
}

.bundle-widget__card--soldout .bundle-widget__checkbox-slash {
  opacity: 0.4 !important;
  pointer-events: none !important;
}

.bundle-widget__card--soldout .bundle-widget__select-group,
.bundle-widget__card--soldout .bundle-widget__select {
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

.bundle-widget__card--soldout .bundle-widget__soldout-right {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.bundle-widget__checkbox:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

@media (max-width: 480px) {
  .bundle-widget {
    max-width: 100%;
  }

  .bundle-widget__header {
    font-size: 11.5px;
    display: flex;
    align-items: center;
    white-space: normal;
  }

  .bundle-widget__header svg {
    flex-shrink: 0;
    margin-right: 6px;
    margin-top: 2px;
  }

  .bundle-widget__header span {
    display: block;
  }

.bundle-widget__select-all-row {
    margin-bottom: 10px;
    margin-left: 0;
    padding: 8px; /* Matches the mobile accessory card padding */
    gap: 6px;
  }

  /* Highlights the Select All card in blue when checked on mobile */
  .bundle-widget__select-all-row:has(.bundle-widget__checkbox--select-all:checked) {
    padding: 7px;
  }


  .bundle-widget__select-all-label {
    font-size: 12px;
  }

  .bundle-widget__frame {
    padding: 10px;
    border-radius: 12px;
  }

  .bundle-widget__card {
    padding: 8px;
  }
     .product-3grid .bundle-widget__header {
    font-size: 14px;   /* Mobile "BUY IT WITH" size */
  }
    .product-3grid .bundle-widget__header svg {
    width: 16px;
    height: 16px;
  }
  .bundle-widget__card:has([data-accessory-checkbox]:checked) {
    padding: 7px;
  }

  .bundle-widget__row {
    gap: 6px; 
    align-items: center; 
  }

  .bundle-widget__divider {
    margin: 8px 0;
  }

  .bundle-widget__title {
    font-size: 11px;
  }

  .bundle-widget__checkbox,
  .bundle-widget__checkbox-slash {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 4px;
  }

  .bundle-widget__price-inner,
  .bundle-widget__price-discounted {
    font-size: 11.5px;
  }

  .bundle-widget__select,
  .bundle-widget__select--static {
    font-size: 10px !important;
    padding: 4px 28px 4px 8px !important;
  }

  .bundle-widget__select--static {
    padding: 4px 8px !important;
  }

  .bundle-widget__description-heading {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .bundle-widget__variant-chips {
    gap: 6px;
    margin-top: 8px;
  }

  .bundle-widget__variant-chip {
    font-size: 10px !important;
    padding: 3px 8px;
  }

  .bundle-widget__description .description-content {
    font-size: 10.5px;
  }
  .bundle-widget__right {
    padding-top: 0;
    gap: 10px;
    align-items: center;
  }
  .bundle-widget__soldout-right {
    align-items: flex-end;
    max-width: 100px;
  }

  .bundle-widget__expand-toggle {
    width: 24px;
    height: 24px;
  }

  .bundle-widget__carousel {
    border-radius: 6px;
  }

  .bundle-widget__description-scroll {
    max-height: 140px;
  }
  /* .product-3grid .bundle-widget__select-all-row {
  margin-bottom: 14px; } */
}

@media (prefers-reduced-motion: reduce) {
  .bundle-widget__panel,
  .bundle-widget__carousel-track,
  .bundle-widget__expand-toggle svg,
  .bundle-widget__card,
  .bundle-widget__checkbox {
    transition: none !important;
  }
}
/* Hide variants between 55 and 60 chars on desktop */
@media (min-width: 481px) {
  .bundle-widget__variant-chip--mobile-only {
    display: none !important;
  }
}
/* ====================================================
   3-GRID LAYOUT ONLY: Invisible Vertical Scroll
   ==================================================== */
/* ====================================================
   3-GRID LAYOUT ONLY — Desktop (default)
   ==================================================== */
.product-3grid .bundle-widget__cards {
  max-height: 380px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-3grid .bundle-widget__cards::-webkit-scrollbar {
  display: none;
}

.product-3grid .bundle-widget__select-all-row {
  margin-bottom: 20px;   /* <-- ADJUST DESKTOP SPACING HERE */
}

.product-3grid .bundle-widget__card:has([data-accessory-checkbox]:checked),
.product-3grid .bundle-widget__select-all-row:has(.bundle-widget__checkbox--select-all:checked) {
  box-shadow: 0 1px 4px rgba(61, 85, 204, 0.28), 0 0 3px rgba(61, 85, 204, 0.18); /* <-- ADJUST DESKTOP GLOW HERE */
}

/* ====================================================
   3-GRID LAYOUT ONLY — Mobile (≤480px)
   ==================================================== */
@media (max-width: 480px) {
  .product-3grid .bundle-widget__select-all-row {
    margin-bottom: 14px;   /* <-- ADJUST MOBILE SPACING HERE */
  }

  .product-3grid .bundle-widget__card:has([data-accessory-checkbox]:checked),
  .product-3grid .bundle-widget__select-all-row:has(.bundle-widget__checkbox--select-all:checked) {
    box-shadow: 0 1px 3px rgba(61, 85, 204, 0.28), 0 0 2px rgba(61, 85, 204, 0.18); /* <-- ADJUST MOBILE GLOW HERE (slightly tighter since cards are narrower/tighter on mobile) */
  }
}
/* ====================================================
   3-GRID LAYOUT ONLY — Header font size
   ==================================================== */

.product-3grid .bundle-widget__header svg {
  width: 20px;
  height: 20px;
}
/* .product-3grid [data-block-type="bundle-widget"] .product-info__block,
.product-3grid .product-info-bottom > .product-info__block:has(bundle-widget) {
  margin-top: 2px; } */
.product-3grid .product-info-bottom bundle-widget {
  margin-top: -20px !important; /* Pulls the widget up, bypassing the default gaps */
}