/** Shopify CDN: Minification failed

Line 228:0 Unexpected "{"
Line 228:1 Expected identifier but found "%"
Line 230:2 Unexpected "{"
Line 230:3 Expected identifier but found "%"

**/
.bundle-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.bundle-popup.show {
  display: flex;
}

.bundle-popup-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 380px;
  text-align: center;
}

.popup-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.popup-product {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f7f7f7;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.popup-product-image img {
  width: 60px;
  border-radius: 6px;
}

.popup-product-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.popup-product-name {
  font-weight: 600;
}

.popup-product-offer {
  color: #59AC77;
  font-size: 14px;
}

.popup-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.btn-primary {
  background: #59AC77;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}

.btn-secondary {
  background: #ddd;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}



.plug-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.plug-option {
  border: 1px solid #ccc;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  font-size: 14px;
  transition: 0.2s;
}

.plug-option input {
  display: none;
}

.plug-option.active {
  border: 1px solid #59AC77;
  background: #59AC7726;
  box-shadow: 0 2px 0 rgba(89,172,119);
}


.bundle-section {
  padding: 50px 0;
  background: #59AC7726;
}

.bundle-wrapper {
  display: flex;
  gap: 60px;
}

.bundle-gallery {
  width: 50%;
  height: 100%;
}

.bundle-main-img img {
  width: 100%;
  border-radius: 10px;
  border:1px solid rgb(89,172,119);
  box-shadow:0 3px 0 rgba(89,172,119);
}

.bundle-content {
  width: 50%;
  overflow: visible;
}

.bundle-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  width: fit-content;
  margin-bottom: 12px;
}

.rating-stars {
  line-height: 0;
  display: flex;
}

.rating-stars img {
  width: 25px;
  height: 25px;
}

.pack-rating-text {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  gap: 6px;
  align-items: center;
  color: #59AC77;
}

.bundle-title {
  font-size: 54px;
  font-weight: 700;
  margin: 0;
}

.bundle-description,
.bundle-description h2 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #000;
}

.bundle-features {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-bottom: 25px;
  padding: 5px 15px;
  background: #fff;
  border-radius: 15px;
  border:1px solid rgb(89,172,119);
  box-shadow:0 3px 0 rgba(89,172,119);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  font-size: 20px;
  color: #000;
  line-height: 1.3;
}

.bundle-packs {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.bundle-pack {
  border: 1px solid #0000004D;
  border-radius: 15px;
  padding: 15px;
  cursor: pointer;
  position: relative;
  background: #fff;
  display: flex;
  gap: 10px;
}

{% comment %} .bundle-pack input {
  display: one;
} {% endcomment %}

.bundle-pack:has(input:checked) {
  border:1px solid rgb(89,172,119);
  box-shadow:0 3px 0 rgba(89,172,119);
}

.pack-inner {
  display: flex;
  align-items: center;
  gap: 15px;
}

.pack-info-outer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pack-inner img {
  width: 100px;
  border-radius: 10px;
}

.pack-info {
  flex: 1;
}

.pack-info h3 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.pack-info p {
  font-size: 16px;
  color: #000;
  line-height: 1.3;
}

.pack-price strong {
  font-size: 18px;
}

.pack-price del {
  font-size: 14px;
  color: #999;
  margin-left: 6px;
}

.pack-badge {
  position: absolute;
  top: -15px;
  right: 10px;
  background: #5aa67a;
  color: white;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
}

.bundle-buy-btn {
  width: 100%;
  margin-top: 20px;
}

.bundle-thumb-wrapper {
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:15px;
}

.bundle-thumbs {
  display:flex;
  gap:10px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
}

.bundle-thumbs::-webkit-scrollbar {
  display: none;
}

.bundle-thumbs img {
  width: 100px;
  min-width: 100px;
  cursor: pointer;
  border-radius: 10px;
  border:2px solid transparent;
  transition:0.25s;
}

.bundle-thumbs img:hover {
  opacity: 0.5;
}

.bundle-thumbs img.active-thumb{
  border:2px solid #59AC77;
}

.thumb-arrow {
  width: 35px;
  height: stretch;
  border: none;
  background: #59AC77;
  color: #fff;
  font-size: 22px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bundle-payments{
  overflow:hidden;
  margin-top: 30px;
  width:100%;
}

.payments-track{
  display:flex;
  align-items:center;
  gap:20px;
  white-space:nowrap;
  max-width: 400px;
  margin-left: 12px;
}

.payment-icon{
  flex:0 0 auto;
}

.payment-icon img{
  height:28px;
  width:auto;
  display:block;
}

.payments-track.animate{
  animation: paymentSlide 10s linear infinite;
}

@keyframes paymentSlide{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

@media (max-width: 990px) {
  .bundle-section .bundle-sticky {
    position: static;
  }
}
@media (max-width: 1024px) {
  .bundle-wrapper {
    gap:40px;
  }

  .bundle-title {
    font-size:40px;
  }

  .feature-item {
    font-size:18px;
  }

  .pack-rating-text {
    font-size: 17px;
  }

  .bundle-features {
    grid-template-columns: repeat(2,1fr);
  }

  .pack-inner {
    align-items: flex-start;
  }

  .pack-info-outer {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

@media (max-width: 990px) {
  .bundle-wrapper {
    flex-direction: column;
    gap:30px;
  }

  .bundle-gallery,
  .bundle-content {
    width: 100%;
  }

  .bundle-title {
    font-size:32px;
    line-height:1.2;
  }

  .bundle-description,
  .bundle-description h2 {
    font-size:16px;
  }

  .bundle-rating {
    padding:6px 12px;
  }

  .bundle-features {
    grid-template-columns: repeat(2,1fr);
    padding:10px;
  }

  .feature-item {
    font-size:16px;
    padding:8px;
  }

  .bundle-pack {
    padding:12px;
  }

  .pack-inner img {
    width:80px;
  }

  .pack-info h3 {
    font-size:18px;
  }

  .pack-info p {
    font-size:14px;
    margin: 5px 0;
  }

  .bundle-thumbs img{
    width:80px;
    min-width:80px;
  }

  .pack-inner {
    align-items: center;
  }

  .pack-info-outer {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 750px) {
  .bundle-title {
    font-size:26px;
  }

  .bundle-description,
  .bundle-description h2 {
    font-size:14px;
  }

  .rating-stars img {
    width: 15px;
    height: 15px;
  }

  .bundle-rating {
    width: 100%;
    gap: 5px;
  }

  .bundle-features {
    grid-template-columns: 1fr 1fr;
  }

  .feature-item {
    font-size: 14px;
  }

  .feature-item img {
    width: 25px;
  }

  .pack-rating-text {
    font-size:14px;
  }

  .bundle-packs {
    gap:20px;
  }

  .pack-inner img {
    width: 50px;
  }

  .pack-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .pack-info-outer {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}