/** Shopify CDN: Minification failed

Line 32:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:chill-bundle (INDEX:11) */
.bundle-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: stretch; }
.bundle-card { background: #fff; border: 1px solid #eee; border-radius: 1rem; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); text-align: center; display: flex; justify-content: space-between; flex-direction: column; height: 100%; transition: transform 0.2s ease; }
.bundle-card:hover { transform: translateY(-3px); }
.bundle-card img { width: 100%; height: auto; display: block; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 0.3s ease; }
.bundle-thumbs img:hover { transform: scale(1.05); }
.bundle-info { padding: 1.25rem; flex: 1 1 auto; }
.bundle-info h3 { margin: 0 0 0.5rem; font-size: 1.25rem; }
.bundle-info p { font-size: 0.95rem; color: #555; min-height: 36.09px; }
.bundle-prices { margin-top: 1rem; font-size: 1.2rem; }
.bundle-prices .compare { text-decoration: line-through; color: #999; margin-right: 0.5rem; }
.bundle-button { margin-top:1rem; padding: 0.75rem 1.25rem; background: #35c0a4; color: #fff; border: none; border-radius: 0.5rem; cursor: pointer; transition: background 0.3s ease; }
.bundle-button:hover { background: #1c4f44; }
.bundle-thumbs { display: grid; grid-template-columns: repeat(auto-fit, minmax(60px, 1fr)); gap: 0.5rem; padding: 1rem; background: #fafafa; }
.bundle-thumbs img { width: 100%; border-radius: 0.5rem; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 0.3s ease; }
.bundle-thumbs,
.bundle-prices {
  flex-shrink: 0;
}
/* END_SECTION:chill-bundle */

/* START_SECTION:product-tabs (INDEX:66) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
/* your existing CSS unchanged */
.tabs-wrapper {
  font-family: 'Poppins', sans-serif;
  margin-top: 2rem;
  border-top: 1px solid #ddd;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}
.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.tab-button {
  position: relative;
  padding: 10px 20px;
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 16px;
  color: #222;
  font-family: 'Poppins', sans-serif;
}
.tab-button.active {
  color: #000;
}
.tab-button.active {
  color: #fff;
  font-weight: 700; /* bolder text */
  background-color: #35c0a4; /* subtle background so it pops */
  border-radius: 4px 4px 0 0; /* make it look like a tab */
}

@media screen and (max-width: 749px) {
  .tab-button.active {
    color: #000;
    background-color: transparent; /* keep mobile clean */
    border-radius: 0;
  }
}

.tab-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: rgba(0, 0, 0, 0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  pointer-events: none;
  z-index: 0;
}
.tab-button:hover::after {
  transform: scaleX(1);
}
.tab-indicator {
  position: absolute;
  height: 3px;
  background: #000;
  bottom: 0;
  left: 0;
  transform: translateX(0);
  width: 0;
  z-index: 2;
  transition: transform 0.3s ease, width 0.3s ease;
}
.tab-content {
  display: none;
  padding-top: 10px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}
.tab-content.active {
  display: block;
}
.faq-accordion {
  display: block;
}
.accordion-answer {
  display: none;
  padding: 10px 0 5px;
  font-size: 15px;
  color: #444;
}
.accordion-question.active + .accordion-answer {
  display: block;
}
@media screen and (max-width: 749px) {
  .tab-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .tab-button {
    border: none;
    border-left: 4px solid transparent;
    text-align: left;
  }
  .tab-button.active {
    border-left-color: #000;
  }
  .tab-indicator {
    display: none;
  }
}
/* END_SECTION:product-tabs */

/* START_SECTION:slideshow-custom (INDEX:74) */
.slideshow-custom {
  position: relative;
  overflow: hidden;
}

.slideshow-custom .slide {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slideshow-custom .slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 1;
}

.slideshow-custom .slide-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
}

.slideshow-custom .slide-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -2px;
}

.slideshow-custom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile override */
@media screen and (max-width: 749px) {
  .slideshow-custom .desktop-img {
    display: none;
  }

  .slideshow-custom .mobile-img {
    display: block;
  }
}

.desktop-img {
  width: 1200px;
  height: 300px;
}

/* Desktop override */
@media screen and (min-width: 750px) {
  .slideshow-custom .desktop-img {
    display: block;
  }

  .slideshow-custom .mobile-img {
    display: none;
  }
}
/* END_SECTION:slideshow-custom */