/** Shopify CDN: Minification failed

Line 328:0 Unexpected "{"
Line 328:1 Expected identifier but found "%"
Line 337:0 Unexpected "{"
Line 337:1 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
.bundle-collection-section {
  --bundle-card-padding: 10px;
  --bundle-card-gap: 12px;
  --bundle-image-fit: cover;
  --bundle-button-width: 100%;
}

.bundle-collection-container {
  display: flex;
  flex-wrap: wrap;
}

.bundle-section {
  width: 100%;
  order: -1;
}

.product-section {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .bundle-section {
    width: var(--bundle-section-width, 50%);
    order: 2;
  }

  .product-section {
    width: var(--product-section-width, 50%);
    order: 1;
  }
}

.bundle-container {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 20px;
}

.bundle-image {
  width: 100%;
  margin-bottom: 15px;
  aspect-ratio: 6 / 1;
  max-height: 200px;
  overflow: hidden;
  border-radius: 4px;
}

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

@media screen and (min-width: 768px) {
  .bundle-container {
    position: sticky;
    top: 20px;
  }
}

.bundle-explanation-banner {
  background-color: var(--banner-bg-color, #e8f4f8);
  color: var(--banner-text-color, #1a1a1a);
  text-align: center;
  padding: 40px 15px 25px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.bundle-explanation-banner h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--banner-text-color, #1a1a1a);
}

.bundle-explanation-banner p {
  font-size: 16px;
  margin: 0;
  color: var(--banner-text-color, #1a1a1a);
}

.bundle-items {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 15px 0;
}

.bundle-item {
  width: 30%;
  aspect-ratio: 1 / 1;
  border: 1px dashed #ddd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 10px;
}

.bundle-item-image-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--bundle-item-aspect, auto);
}

.bundle-item img {
  width: 100%;
  height: 100%;
  object-fit: var(--bundle-item-fit, contain);
  display: block;
}

.bundle-item-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bundle-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #f6f6f5;
  color: #6c757d;
  text-align: center;
  border-radius: 4px;
}

.bundle-item-number {
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: #999;
}

.remove-from-bundle {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  color: #000;
  opacity: 0.5;
  transition: opacity 0.2s ease;
  width: auto;
  height: auto;
  line-height: 1;
  font-size: 20px;
}

.remove-from-bundle:hover {
  opacity: 1;
}

.bundle-footer {
  border-top: 1px solid #ddd;
  padding: 10px 15px;
}

.bundle-total {
  margin: 10px 0;
}

.price-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.price-container > * {
  display: flex;
  align-items: center;
  line-height: 1.4;
}

#bundle-discounted-total {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  margin-right: 10px;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

#bundle-original-total {
  font-size: 16px;
  color: #888;
  text-decoration: line-through;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

.bundle-savings {
  color: #000;
  margin-left: auto;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

.bundle-discount-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--discount-bg-color, #ff6b6b);
  color: var(--discount-text-color, #ffffff);
  border: 1px solid var(--discount-bg-color, #ff6b6b);
  padding: 4px 15px;
  font-size: 14px;
  line-height: 1.4;
  margin-left: 8px;
  height: fit-content;
}

@media screen and (max-width: 767px) {
  .bundle-discount-tag {
    display: none;
  }
}

.add-bundle-to-cart-btn {
  background-color: var(--button-bg-color, #2c3e50);
  color: var(--button-text-color, #ffffff);
  border: 1px solid var(--button-border-color, #2c3e50);
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.3s ease;
  margin-top: 10px;
}

.add-bundle-to-cart-btn:hover:not(:disabled) {
  background-color: var(--button-hover-bg-color, #34495e);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  transform: scale(1.06);
  opacity: 0.9;
}

.add-bundle-to-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.product-column {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0 10px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .product-column {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.bundle-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--bundle-card-padding);
  gap: var(--bundle-card-gap);
}

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

.bundle-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.bundle-card__image {
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
  display: block;
}

.bundle-card__image--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

{% if section.settings.show_secondary_on_hover %}
/* Only hide first image on hover if a secondary image exists (not the only child) */
.bundle-card__media:hover .bundle-card__image:first-child:not(:only-child) {
  opacity: 0;
}

.bundle-card__media:hover .bundle-card__image--hover {
  opacity: 1;
}
{% endif %}

.bundle-card__placeholder {
  width: 100%;
  height: 100%;
}

.bundle-card__details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  align-items: stretch;
}

.bundle-card__title {
  min-height: 56px;
  line-height: normal;
  word-break: break-word;
  margin: -0.25em 0;
  width: 100%;
  text-align: center;
}

.bundle-card__title p {
  margin: 0;
  line-height: 1.5em;
}

.bundle-card__price {
  padding: 0;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}

.bundle-card__vendor {
  width: 100%;
  text-align: center;
}

.bundle-card__description {
  width: 100%;
  text-align: center;
}

.bundle-card__option-label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.bundle-card__option-select {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  min-height: 44px;
  font-size: 14px;
}

.bundle-card__options {
  display: none;
  margin-top: 10px;
  width: 100%;
  flex-direction: column;
}

.bundle-card__cta {
  width: var(--bundle-button-width, 100%);
  padding: 10px 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid var(--button-border-color, #2c3e50);
  background-color: transparent;
  color: var(--button-border-color, #2c3e50);
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.3s ease, color 0.3s ease;
  margin-top: 10px;
}

.bundle-card__cta:hover:not(:disabled) {
  background-color: var(--button-bg-color, #2c3e50);
  color: var(--button-text-color, #ffffff);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  transform: scale(1.06);
  opacity: 0.9;
}

.bundle-card__cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.mobile-review-bundle {
  display: none;
  position: fixed;
  bottom: 45px;
  left: 0;
  width: 100%;
  padding: 10px;
  background: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.review-bundle-btn {
  width: 100%;
  padding: 15px;
  background: #000;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .mobile-review-bundle {
    display: block;
  }

  .bundle-collection-container {
    padding-bottom: 70px;
  }

  .bundle-explanation-banner h2 {
    font-size: 20px;
  }

  .bundle-explanation-banner p {
    font-size: 14px;
  }
}