/** Shopify CDN: Minification failed

Line 323:11 Expected identifier but found whitespace
Line 323:13 Unexpected "{"
Line 323:22 Expected ":"
Line 323:61 Expected ":"

**/


/* CSS from section stylesheet tags */
.new-featured-before-footer-wrapper {
  transition: all 0.3s ease;
  text-align: center;
}

.new-featured-before-footer-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.new-featured-before-footer-item {
  flex: 1 1 220px;
  max-width: 260px;
  padding: 20px;
}

.new-featured-before-footer-icon img {
  display: inline-block;
  margin-bottom: 15px;
}

.new-featured-before-footer-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.new-featured-before-footer-desc {
  line-height: 1.6;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .new-featured-before-footer-section {
    flex-direction: column;
    gap: 30px;
  }
  .new-featured-before-footer-item {
    max-width: 100%;
  }
}
.custom-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.custom-footer-logo img {
  display: block;
  margin: 0 auto 25px;
}

.custom-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.footer-column {
  min-width: 150px;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list a {
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-list a:hover {
  opacity: 0.7;
}
.bundles-main-two{
    padding: 3% 0 3% 0;
}

.bundle-section-heading {
  text-align: center;
  color: var(--heading-color);
  font-size: var(--heading-size);
  font-weight: 700;
  margin-bottom: 10px;
}
.bundle-divider {
  width: 60px;
  height: 2px;
  background: #ccc;
  margin: 10px auto 30px;
  border-radius: 2px;
}

/* NEW CONTAINER for 1300px max-width */
.bundle-comparison-container {
    max-width: 1200px;
    margin: 0 auto;
}

.bundle-comparison {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 3% 3%;
}
.bundle-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 25px;
  /* This is the default 3-column width for screens > 767px (Laptops & Desktops) */
  width: calc(33.333% - 14px); 
  max-width: 420px; 
  box-shadow: 0 2px 8px rgba(97,97,97,0.8);
  text-align: center;
  color: var(--font-color);
  transition: transform 0.3s ease;
}

.bundle-card:hover {
  transform: translateY(-5px);
}

/* Image Container and Links */
.image-link {
  display: block;
  text-decoration: none;
}

.image-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
}

.image-container img.main {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: all 0.5s ease;
}

.image-container .main-image {
  opacity: 1;
  transform: scale(1) rotateY(0deg);
}

.image-container .hover-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8) rotateY(90deg);
  opacity: 0;
}

.bundle-card:hover .image-container .main-image {
  opacity: 0;
  transform: scale(0.8) rotateY(-90deg);
}

.bundle-card:hover .image-container .hover-image {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotateY(0deg);
}

.bundle-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 3%;
}
.bundle-content {
  text-align: left;
  width: 65%;
}

/* Title Link */
.title-link {
  text-decoration: none;
  color: inherit;
}

.title-link:hover h3 {
  color: #ff8056;
}

.bundle-header h3 {
  font-size: calc(var(--font-size) + 2px);
  color: #004c75;
  font-weight: 700;
  margin: 0 0 8px 0;
  min-height: 50px;
  transition: color 0.3s ease;
}

/* Price Wrapper */
.price-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.sale-price {
  color: var(--sale-price-color);
  font-size: calc(var(--font-size) + 4px);
  font-weight: 700;
  margin: 0;
}

.original-price {
  color: var(--original-price-color);
  font-size: calc(var(--font-size) + 2px);
  font-weight: 500;
  margin: 0;
  text-decoration: line-through;
  opacity: 0.7;
}

/* Discount Badge */
.discount-badge {
  display: none;
}

.option-images {
  display: flex;
  gap: 6px;
}

.option-images img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #004c75;
  transition: all 0.3s ease;
}

.option-images a:hover img {
    transform: scale(1.15);
    border-color: #404040;
    box-shadow: 0 0 10px #59a1b1;
}
.bundle-header h3:hover{
color: black;
}
.includes-list {
  text-align: left;
  font-size: var(--font-size);
  margin: 10px 20px;
}
.bundle-card button {
  width: 100%;
  background: var(--btn-bg);
  color: var(--btn-text);
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}
.bundle-card button:hover {
  background: var(--btn-hover);
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* The previous media query for (min-width: 768px) and (max-width: 1299px) has been removed.
   The 3-up layout above will now apply from 768px all the way up. */

/* Mobile (below 767px) - Displays 1 card per row */
@media (max-width: 767px) {
  .bundle-comparison {
    /* Ensure a single column layout on mobile */
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;
    padding: 2% 2%;
  }
  .bundle-card {
    max-width: 100%;
    width: 100%; /* Full width on mobile */
  }
  .image-container {
    /* Use the setting for the left card for mobile height across all three */
    height: {{ section.settings.left_image_mobile_height }}px !important; 
  }
  .bundle-section-heading {
    text-align: center;
  }
  .bundles-main-two {
    padding: 8% 4% 8% 4%;
  }
  .bundle-content {
    width: 60%;
  }
  .image-container img.main {
    width: 100% !important; 
  }
}