/** Shopify CDN: Minification failed

Line 72:1 Expected identifier but found whitespace
Line 246:19 Expected identifier but found whitespace
Line 246:21 Unexpected "{"
Line 246:30 Expected ":"
Line 247:8 Expected identifier but found whitespace
Line 247:10 Unexpected "{"
Line 247:19 Expected ":"
Line 260:19 Expected identifier but found whitespace
Line 260:21 Unexpected "{"
Line 260:30 Expected ":"
... and 3 more hidden warnings

**/

  /* CSS remains the same as previous version */
  .bundle-builder {
    margin: 0 auto;
    padding: 20px;
  }
  .bundle-sold-out-text {
    color: #ff0000;
    font-weight: bold;
    margin-bottom: 10px;
  }
.section-header__description p
{
  text-align: left;
  margin-bottom:0PX;
}
  .bundle-products-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: space-between;
  }
  
  .bundle-product-item {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
  }
  
  .bundle-product-image {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
  }
  
  .bundle-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .bundle-product-details {
    flex: 1;
  }
  
  .bundle-product-title {
    margin: 0 0 10px;
    font-size: 1.1em;
    line-height: normal;
    font-weight: 400;
  }
.
  
  .bundle-product-price {
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .bundle-variant-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  
  .bundle-default-text {
    color: #008000;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .bundle-summary {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .bundle-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
    align-items: center;
  }
  .discounted-total
{
  color:#B71234;
}
  .bundle-add-to-cart {
    width: 100%;
    padding: 15px;
    background: #B71234;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    cursor: pointer;
    transition: opacity 0.3s;
  }
  
  .bundle-add-to-cart:hover {
    opacity: 0.9;
  }
  
  @media (max-width: 768px) {
    .bundle-products-row {
      flex-direction: column;
    }
    
    .bundle-product-item {
      min-width: auto;
    }
  }

  /* imagewithbundle css */
/* Layout Styles */
.bundle-layout {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.bundle-layout--reverse {
  flex-direction: row-reverse;
}

.bundle-banner-column {
  flex: 0 0 30%;
  position: sticky;
  top: 80px;
  max-width: 30%;
  box-sizing: border-box;
  /* padding-left:20px; */
}

.bundle-products-column {
  flex: 0 0 70%;
  max-width: 70%;
  box-sizing: border-box;
}

/* Banner Styles */
.bundle-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.bundle-banner__image {
  width: 100%;
  height: auto;
}

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

.bundle-banner__placeholder {
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  border-radius: 12px;
  width: 100%;
}

.bundle-banner__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 25px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  box-sizing: border-box;
}

.bundle-banner__content--left {
  text-align: left;
}

.bundle-banner__content--center {
  text-align: center;
}

.bundle-banner__content--right {
  text-align: right;
}

.bundle-banner__subtitle {
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 8px;
  opacity: 0.9;
}

.bundle-banner__title {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
  color: white;
}

.bundle-banner__description {
  font-size: 1em;
  margin-bottom: 20px;
  opacity: 0.9;
  line-height: 1.4;
}

.bundle-banner__button {
  background-color: {{ section.settings.button_background | default: '#000000' }};
  color: {{ section.settings.button_text_color | default: '#ffffff' }};
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 0.9em;
}

.bundle-banner__button:hover {
  background-color: {{ section.settings.button_background | default: '#000000' | color_darken: 10 }};
  transform: translateY(-2px);
  color: {{ section.settings.button_text_color | default: '#ffffff' }};
}

/* Products Grid Styles */
.bundle-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
  width: 100%;
  box-sizing: border-box;
}


/* Responsive Styles */
@media (max-width: 768px) {
  .bundle-layout {
    flex-direction: column;
    gap: 30px;
    width:100%;
  }
  
  .bundle-layout--reverse {
    flex-direction: column;
  }
  
.bundle-banner-column,
  .bundle-products-column {
    flex: 1;
    width: 100%;
    max-width: 100%;
  }
  
  .bundle-banner-column {
    position: static;
    /* padding: 0 20px; */
  }
  
  
  .bundle-banner__content {
    padding: 25px 20px;
  }
  
  .bundle-banner__title {
    font-size: 1.5em;
  }
  
}