/** Shopify CDN: Minification failed

Line 330:0 Unexpected "}"

**/
/* Safety: prevent accidental horizontal scroll on bundle page (does not affect internal carousels) */
.shilav-bundle-page {
  overflow-x: clip;
}

.type-banner {
  flex: 1 0 100%;
}

.footer__title {
  font-weight: bold;
  font-size: var(--typeBaseSize);
}
.shilav-bundle-page .bundle-main-items-section,
.shilav-bundle-page .bundle-addons-section {
  background-color: #fff;
  border-radius: 24px;
  padding: 24px 16px 2px;
  margin-bottom: 32px;
}

.shilav-bundle-page .bundle-main-items {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

@media (min-width: 1024px) {
  .shilav-bundle-page .bundle-main-items .bundle-item--main {
    flex: 0 0 48%;
    max-width: 50%;
  }
}



/* SUMMARY CARD (static price block after mattresses) */
.shilav-bundle-page .bundle-summary-card {
  padding: 24px 0 40px;
}

.shilav-bundle-page .bundle-summary-inner {
  max-width: 640px;
  margin: 0 auto;
  background-color: #FAF5F2;
  border-radius: 15px;
  padding: 24px 20px 28px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.shilav-bundle-page .bundle-summary-prices-wrap {
  margin-bottom: 16px;
}

.shilav-bundle-page .bundle-price--summary {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.shilav-bundle-page .bundle-summary-club {
  font-size: 15px;
}

.shilav-bundle-page .bundle-summary-club-label {
  font-weight: bold;
  font-size: 1.5rem;
  color: #a7243c;
}

.shilav-bundle-page .bundle-summary-club-value {
  font-weight: bold;
  font-size: 1.5rem;
  color: #a7243c;
}

/* Summary button style - relies on theme .btn, just ensure full width on mobile */
.shilav-bundle-page .bundle-summary-add {
  margin-top: 12px;
  margin-top: 12px;
  width: 60%;
  border-radius: 50px !important;
}

/* STICKY BAR */
.shilav-bundle-sticky {
  position: sticky;
  bottom: 0;
  background-color: #ffffff;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  padding: 10px 16px;
  z-index: 30;
}

.shilav-bundle-sticky .bundle-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.shilav-bundle-sticky .bundle-prices-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shilav-bundle-sticky .bundle-price--footer {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .shilav-bundle-sticky .bundle-footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .shilav-bundle-sticky #bundle-button-container .btn,
  .shilav-bundle-sticky #bundle-button-container button {
    width: 100%;
  }
}
/* -------------------------------------------
   MAIN BUNDLE CARDS
   ------------------------------------------- */
.bundle-card--main {
  background-color: #fff;
  border: 1px solid #f1e6df;
  padding: 18px 10px 2px 2px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.04);
  width: 100%;
}

@media (min-width: 1024px) {
  .bundle-main-items {
    display: flex;
    gap: 32px;
  }

  .bundle-card--main {
    flex: 0 0 calc(50% - 16px);
  }
}

.bundle-card--main .grid-product__title {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-top: 16px;
}

.bundle-card--main .grid-item {
  width: 100% !important;
  max-width: 100% !important;
}

.bundle-card--main .product-grid-item {
  width: 100%;
}

.bundle-card--main .grid-product__image-wrap {
  border-radius: 16px;
  background-color: #ffffff;
  text-align: center;
  overflow: hidden;
  padding-bottom: 5px;
}

.bundle-card--main .grid-product__title {
  margin-top: 16px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

#grid-bundle-form .quantity-selector-bundle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

.grid-bundle-products .grid-product__image-wrap {
  max-width: 260px;
  margin: 0 auto 12px;
}

.bundle-addon-actions {
  margin-top: 16px;
  text-align: center;
}

.bundle-addon-toggle {
  width: 90%;
  max-width: 260px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid #f1e6df;
  background-color: #FAF5F2;
  color: #4d4d4d;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bundle-addon-toggle.is-selected {
  background-color: #a7243c;
  border-color: #a7243c;
  color: #ffffff;
}

.grid-bundle-products .grid-item.bundle-addon-selected {
  border: 2px solid #a7243c;
}

#grid-bundle-form .quantity-selector-bundle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

.shilav-bundle-page .bundle-addons-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 24px;
}

@media (min-width: 768px) {
  .shilav-bundle-page .bundle-addons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .shilav-bundle-page .bundle-addons-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.grid-bundle-products .grid-item {
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  padding: 24px 24px 28px;
  background-color: #fff;
}

.grid-bundle-products .grid__image-ratio,
.grid-bundle-products .grid-product__image-wrap {
  max-width: 260px;
  margin: 0 auto 16px;
}

.grid-bundle-products img {
  width: 100%;
  display: block;
}

.grid-bundle-products .grid-product__title,
.grid-bundle-products .grid-product__price {
  text-align: center;
}

.grid-bundle-products .bundle-addon-actions {
  margin-top: 16px;
  text-align: center;
}

.grid-bundle-products .bundle-addon-toggle {
  width: 100%;
  max-width: 260px;
}

/* -------------------------------------------
   BUNDLE HERO - FIXED
   ------------------------------------------- */
.bundle-hero {
  position: relative;
  overflow: hidden;
  margin: 18px 0 22px;
  width: 100%;
}

.bundle-hero__media {
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 0;
  overflow: hidden;
}

/* Mobile */
@media (max-width: 767px) {
  .bundle-hero {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .bundle-hero__media,
  .bundle-hero__media img,
  .bundle-hero__img {
    width: 100%;
    height: 100%;
  }

  .bundle-hero__img {
    object-fit: contain;
  }
}

  .bundle-hero__img {
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: calc(100% + 12px);
    display: block;
    object-fit: cover;
    object-position: center center;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .bundle-hero {
    height: 430px;
  }

  .bundle-hero__img {
    position: absolute;
    top: -18px;
    left: 0;
    width: 100%;
    height: calc(100% + 18px);
    display: block;
    object-fit: cover;
    object-position: center center;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .bundle-hero {
    height: 640px;
  }

  .bundle-hero__img {
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: calc(100% + 30px);
    display: block;
    object-fit: cover;
    object-position: center center;
  }
}

.bundle-hero__title {
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 2;
  background: #f5ede6;
  color: #4d4d4d;
  padding: 15px 15px;
  font-weight: 700;
  font-size: 28px;
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

@media (max-width: 767px) {
  .bundle-hero__title {
    top: 40px;
    font-size: 16px;
    padding: 10px 10px;
  }
}

.bundle-stories {
  margin: 10px 0 -12px;
  overflow: visible;
  position: relative;
}

.bundle-stories__track {
  margin-right: 5px !important;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 5px 20px 5px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding: 8px;
  scrollbar-gutter: auto !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.bundle-stories__track::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

.bundle-story {
  flex: 0 0 auto;
  width: 92px;
  text-align: center;
  scroll-snap-align: start;
  color: inherit;
  text-decoration: none;
}

.bundle-story__img {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #f4f1ef;
  border: 3px solid transparent;
}

.bundle-story__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bundle-story__label {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.2;
  white-space: normal;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bundle-story.is-active .bundle-story__img {
  border-color: #4d4d4d;
}

.shilav-bundle-page .bundle-stories__track {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 6px 16px 20px;
  scroll-padding: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.shilav-bundle-page .bundle-stories__track::-webkit-scrollbar {
  display: none;
}

@media (max-width: 767px) {
  .shilav-bundle-page .bundle-story {
    width: 72px;
  }

  .shilav-bundle-page .bundle-story__img {
    width: 72px;
    height: 72px;
  }

  .shilav-bundle-page .bundle-story__label {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .bundle-stories__track {
    cursor: grab;
  }

  .bundle-stories__track:active {
    cursor: grabbing;
  }
}

h2.bundle-section-title {
  font-size: 2em;
  text-align: center;
}

button.btn.btn--primary.bundle-summary-add {
  border-radius: 10px;
}

.grid-product__tags {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  display: flex;
  justify-content: flex-start;
}

.grid-product__tag {
  border-radius: 0;
}

html[dir="rtl"] .grid-product__tags {
  left: 12px;
  right: auto;
}

html[dir="rtl"] .grid-product__image-wrap {
  position: relative;
}

html[dir="rtl"] .grid-product__tags {
  position: absolute !important;
  top: 12px !important;
}

.grid-bundle-products .grid__image-ratio {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  height: 0;
}

.grid-bundle-products .grid__image-ratio img,
.grid-bundle-products .grid_image-ratio .grid_image-contain img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

p.bundle-section-subtitle {
  text-align: center;
  font-size: 1.4em;
}

.shilav-bundle-page .grid-product__image-wrap img,
.shilav-bundle-page .grid__image-ratio img,
.shilav-bundle-page .grid__image-contain img {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.grid-bundle-products .grid__image-ratio {
  padding-bottom: 100% !important;
}

.grid-bundle-products .grid__image-ratio {
  position: relative;
  padding-bottom: 100%;
  height: 0;
}

.shilav-bundle-page .grid__image-ratio {
  position: relative;
  padding-bottom: 100%;
  height: 0;
}

.shilav-bundle-page .grid-bundle-products .grid_image-ratio {
  position: relative !important;
  width: 100% !important;
  height: 0 !important;
  padding-bottom: 100% !important;
  overflow: hidden;
}

.shilav-bundle-page .grid-bundle-products .grid_image-contain {
  position: absolute !important;
  inset: 0 !important;
}

.shilav-bundle-page .grid-bundle-products .grid_image-ratio img,
.shilav-bundle-page .grid-bundle-products .grid_image-contain img,
.shilav-bundle-page .grid-bundle-products img.grid-product__image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.shilav-bundle-page .grid-bundle-products .grid_image-ratio img {
  height: 100% !important;
}

.shilav-bundle-page .grid-bundle-products .grid-product__image-wrap {
  width: 100% !important;
  min-width: 1px !important;
}

.shilav-bundle-page .grid-bundle-products .grid_image-ratio {
  width: 100% !important;
  max-width: 260px;
  margin: 0 auto 16px;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  padding-bottom: 0 !important;
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
}

.shilav-bundle-page .grid-bundle-products .grid_image-contain {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
}

.shilav-bundle-page .grid-bundle-products .grid_image-contain img,
.shilav-bundle-page .grid-bundle-products img.grid-product__image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* =========================
   Mattress add-ons as horizontal slider
   ========================= */

@media (min-width: 1024px) {
  .shilav-bundle-page .bundle-addons-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 24px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    padding: 6px 6px 18px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
  }

  .shilav-bundle-page .bundle-addons-grid > .grid-item,
  .shilav-bundle-page .bundle-addons-grid > .bundle-card,
  .shilav-bundle-page .bundle-addons-grid > .grid-product {
    flex: 0 0 auto !important;
    width: 220px;
    scroll-snap-align: start;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .shilav-bundle-page .bundle-addons-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 18px !important;
    overflow-x: auto !important;
    padding: 6px 6px 18px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
  }

  .shilav-bundle-page .bundle-addons-grid > .grid-item,
  .shilav-bundle-page .bundle-addons-grid > .bundle-card,
  .shilav-bundle-page .bundle-addons-grid > .grid-product {
    flex: 0 0 auto !important;
    width: 240px;
    scroll-snap-align: start;
  }
}

.shilav-bundle-page .bundle-addons-grid::-webkit-scrollbar {
  height: 10px;
}

.shilav-bundle-page .bundle-addons-grid::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
}

.shilav-bundle-page .bundle-addons-grid::-webkit-scrollbar-thumb {
  background: #a7243c;
  border-radius: 999px;
}

.shilav-bundle-page .bundle-addons-grid {
  scrollbar-width: thin;
  scrollbar-color: #a7243c rgba(0, 0, 0, 0.06);
}

.shilav-bundle-page .bundle-main-items-section .grid-product__price,
.shilav-bundle-page .bundle-main-items-section .boa-club-price-wrap,
.shilav-bundle-page .bundle-main-items-section .boa-discount-text,
.shilav-bundle-page .bundle-main-items-section .grid-product__price--original,
.shilav-bundle-page .bundle-main-items-section .grid-product__price--savings,
.shilav-bundle-page .bundle-main-items-section .product__unit-price {
  display: none !important;
}

.shilav-bundle-page .bundle-addons-section .grid-product__price,
.shilav-bundle-page .bundle-addons-section .boa-club-price-wrap,
.shilav-bundle-page .bundle-addons-section .boa-discount-text,
.shilav-bundle-page .bundle-addons-section .grid-product__price--original,
.shilav-bundle-page .bundle-addons-section .grid-product__price--savings,
.shilav-bundle-page .bundle-addons-section .product__unit-price {
  display: block !important;
  visibility: visible !important;
}

button.btn.btn--primary.bundle-sticky-add {
  border-radius: 50px;
  margin-right: 1em;
  padding: 10px 35px 10px 35px;
}

@media (min-width: 1024px) {
  .shilav-bundle-page .bundle-addons-section
  .bundle-wrapper.bundle-addons-grid.grid-bundle-products {
    justify-content: center !important;
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.shilav-bundle-page .bundle-tile-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  padding: 2px 2px 8px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.shilav-bundle-page .bundle-tile-thumb {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.shilav-bundle-page .bundle-tile-thumb.is-active {
  border-color: #a7243c;
}

.shilav-bundle-page .bundle-tile-thumbs {
  max-width: 100%;
}

.shilav-bundle-page .bundle-tile-thumb {
  width: 44px;
  height: 44px;
}

.shilav-bundle-page .bundle-tile-thumb {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shilav-bundle-page details.bundle-product-desc {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  align-self: stretch !important;
  justify-self: stretch !important;
}

.shilav-bundle-page details.bundle-product-desc > summary.bundle-product-desc__summary {
  list-style: none;
  cursor: pointer;
  display: flex !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgb(244, 244, 244);
  border-radius: 14px;
  font-weight: 600;
}

.shilav-bundle-page details.bundle-product-desc > summary.bundle-product-desc__summary::-webkit-details-marker {
  display: none;
}

.shilav-bundle-page details.bundle-product-desc > summary.bundle-product-desc__summary::marker {
  content: "";
}

.shilav-bundle-page .bundle-product-desc__chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(0, 0, 0, 0.6);
  border-bottom: 2px solid rgba(0, 0, 0, 0.6);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}

.shilav-bundle-page details.bundle-product-desc[open] .bundle-product-desc__chev {
  transform: rotate(-135deg);
}

.shilav-bundle-page .bundle-product-desc__content {
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  background: #fff;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.shilav-bundle-page .bundle-addons-section .bundle-product-desc {
  display: none !important;
}

.shilav-bundle-page .bundle-main-items-section .bundle-product-desc {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

.shilav-bundle-page .bundle-main-items-section .bundle-product-desc__summary,
.shilav-bundle-page .bundle-main-items-section .bundle-product-desc__content {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.shilav-bundle-page {
  width: 100%;
  overflow-x: hidden;
}

.shilav-bundle-page * {
  min-width: 0;
}

.shilav-bundle-page .bundle-main-items-section,
.shilav-bundle-page .bundle-addons-section,
.shilav-bundle-page .bundle-wrapper,
.shilav-bundle-page .grid-bundle-products,
.shilav-bundle-page .grid-item,
.shilav-bundle-page .product-grid-item,
.shilav-bundle-page .grid-item__content,
.shilav-bundle-page .grid-item__meta {
  max-width: 100%;
  box-sizing: border-box;
}

.shilav-bundle-page .bundle-tile-thumbs {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.shilav-bundle-page .bundle-tile-thumb {
  flex: 0 0 auto;
  max-width: 56px;
}

.shilav-bundle-page .bundle-stories,
.shilav-bundle-page .bundle-stories__track {
  max-width: 100%;
  box-sizing: border-box;
}

.shilav-bundle-page img,
.shilav-bundle-page video,
.shilav-bundle-page svg {
  max-width: 100%;
}

.shilav-bundle-page .bundle-addons-grid > * {
  min-width: 0;
}

.bundle-stories__arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.bundle-stories__arrow--left {
  left: 4px;
}

.bundle-stories__arrow--right {
  right: 4px;
}

@media (max-width: 767px) {
  .bundle-stories__arrow {
    display: none;
  }
}

.bundle-stories {
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .bundle-stories__arrow--left {
    left: 8px;
  }

  .bundle-stories__arrow--right {
    right: 8px;
  }
}

@media (min-width: 1024px) {
  .bundle-stories__track {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (min-width: 1024px) {
  .collection-grid__wrapper.container.bundles-container.shilav-bundle-page,
  .bundle-stories {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }
}

.shilav-bundle-page .bundle-tile-thumbs {
  padding-bottom: 20px;
}
.bundle-hero__media {
  position: relative;
}

.bundle-hero__discount-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: #A7243C;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .bundle-hero__discount-label {
    top: 8px;
    left: 8px;
    padding: 8px 12px;
    font-size: 12px;
  }
}
.bundle-trust-card__list li::marker {
  color: #8b8b8b;
}
/* Make all cards equal height */
.bundle-addons-section .grid-item,
.bundle-addons-section .product-grid-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bundle-addons-section .grid-item__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bundle-addons-section .bundle-tile-thumbs {
  min-height: 75px;
  padding-bottom: 8px;
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: hidden;
}

.bundle-addons-section .grid-item__meta {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bundle-addons-section .bundle-addon-toggle,
.bundle-addons-section button {
  margin-top: auto;
}
.bundle-addons-section .bundle-tile-thumbs::-webkit-scrollbar {
  height: 4px;
}

.bundle-addons-section .bundle-tile-thumbs::-webkit-scrollbar-track {
  background: transparent;
}

.bundle-addons-section .bundle-tile-thumbs::-webkit-scrollbar-thumb {
  background: #b0004b;
  border-radius: 10px;
}
.bundle-addons-section .bundle-tile-thumbs {
  scrollbar-width: thin;
  scrollbar-color: #b0004b transparent;
}
@media (min-width: 1024px) {
  .shilav-bundle-page .bundle-main-items {
    align-items: stretch;
  }

  .shilav-bundle-page .bundle-main-items .bundle-card.bundle-card--main.bundle-item--main {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .shilav-bundle-page .bundle-main-items .bundle-card.bundle-card--main.bundle-item--main .product-grid-item,
  .shilav-bundle-page .bundle-main-items .bundle-card.bundle-card--main.bundle-item--main .grid-item__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1 1 auto;
  }

  .shilav-bundle-page .bundle-main-items .bundle-card.bundle-card--main.bundle-item--main .grid-item__meta {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
  }

  .shilav-bundle-page .bundle-main-items .bundle-card.bundle-card--main.bundle-item--main .grid-item__meta-main {
    flex: 1 1 auto;
  }

  .shilav-bundle-page .bundle-main-items .bundle-card.bundle-card--main.bundle-item--main .grid-product__title {
    min-height: 64px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
  }

  .shilav-bundle-page .bundle-main-items .bundle-card.bundle-card--main.bundle-item--main details,
  .shilav-bundle-page .bundle-main-items .bundle-card.bundle-card--main.bundle-item--main .bundle-product-actions,
  .shilav-bundle-page .bundle-main-items .bundle-card.bundle-card--main.bundle-item--main .grid-item__meta-secondary {
    margin-top: auto;
  }
}
.shilav-bundle-page .bundle-tile-thumb {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.shilav-bundle-page .bundle-tile-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 8px;
  display: block;
}

.bundle-hero__title--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bundle-hero__title-icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.bundle-variant-swatches {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.bundle-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #ccc;
  cursor: pointer;
  position: relative;
}

.bundle-swatch.is-active {
  border: 2px solid #000;
}

.bundle-swatch.is-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.bundle-swatch.is-disabled::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 1px;
  background: red;
  transform: translate(-50%, -50%) rotate(45deg);
}
.shilav-bundle-page [data-bundle-add-to-cart].is-out-of-stock,
.shilav-bundle-page [data-bundle-add-to-cart]:disabled {
  background: #bdbdbd !important;
  border-color: #bdbdbd !important;
  color: #ffffff !important;
  cursor: not-allowed;
  opacity: 1;
}

/* =========================
   Bundle image swatches
   ========================= */
.shilav-bundle-page .custom-color-swatch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  /* margin-top: 12px; */
}

.shilav-bundle-page .swatch-colors-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}

.shilav-bundle-page p.current-color-name {
  display: none;
}

.shilav-bundle-page .bundle-color-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 58px;
  text-align: center;
}

.shilav-bundle-page .bundle-color-option__label {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.2;
  color: #666;
  word-break: break-word;
  text-align: center;
}

.shilav-bundle-page .bundle-color-option.is-sold-out .bundle-color-option__label {
  opacity: 0.6;
}

.shilav-bundle-page .bundle-color-stock-status {
  order: 3;
  display: block;
  width: 100%;
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.3;
  color: #c21f3c;
  text-align: right;
}

.shilav-bundle-page .swatch-color-boa {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #d9d9d9 !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  outline: none !important;
  background-position: center !important;
  background-size: cover !important;
  appearance: none;
  -webkit-appearance: none;
}

.shilav-bundle-page .swatch-color-boa:hover,
.shilav-bundle-page .swatch-color-boa:focus,
.shilav-bundle-page .swatch-color-boa:focus-visible,
.shilav-bundle-page .swatch-color-boa.is-active,
.shilav-bundle-page .swatch-color-boa[aria-pressed="true"] {
  outline: none !important;
  box-shadow: none !important;
}

.shilav-bundle-page .swatch-color-boa.current-product-color {
  border: 2px solid #222 !important;
  box-shadow: none !important;
  outline: none !important;
}

.shilav-bundle-page .swatch-color-boa:not(.current-product-color) {
  border: 1px solid #d9d9d9 !important;
  box-shadow: none !important;
  outline: none !important;
}

@media (max-width: 767px) {
  .shilav-bundle-page .bundle-color-option {
    width: 74px;
  }

  .shilav-bundle-page .swatch-color-boa {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    border-radius: 10px !important;
  }

  .shilav-bundle-page .bundle-color-option__label {
    font-size: 12px;
    margin-top: 6px;
  }
}
/* Hide color label only on collection + search pages */
.template-collection .bundle-color-option__label,
.template-search .bundle-color-option__label {
  display: none !important;
}
.swatch-colors-wrapper {
    margin-top: -5px;
}
/* Desktop shows banner */
.bundle-hero__img--mobile {
  display: none;
}

/* Mobile shows product image */
@media (max-width: 767px) {
  .bundle-hero__img--desktop {
    display: none;
  }

  .bundle-hero__img--mobile {
    display: block;
  }
}