/** Shopify CDN: Minification failed

Line 54:34 Unexpected "{"
Line 529:0 Expected "}" to go with "{"

**/
/* ================= STEP INDICATOR ================= */
.bundle-steps {
  display: flex;
  justify-content: center;
  /* gap: 60px; */
  margin: 20px 0;
}

.bundle-step-indicator {
  text-align: center;
  color: #bbb;
  /* position: relative; */
  width:160px;
  display:flex;
  flex-direction:column;
  align-items:center;
 
}
.bundle-step-indicator .label-main {
  padding-bottom:20px;
  border-bottom:2px solid #bbb;
  width:100%;
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.bundle-step-indicator .circle {
  position:absolute;
  bottom:-12px;
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ddd;
  color: #fff;
  line-height: 28px;
  transition: background 0.3s;
  z-index:2;
}
.bundle-step-indicator .step-title {
  font-size:18px;
  color:#ddd;
}

.bundle-step-indicator.active,
.bundle-step-indicator.completed, {
  color: #000;
}

.bundle-step-indicator.active .label-main{
   border-bottom:2px solid #000000;
}
.bundle-step-indicator.active .step-title,
.bundle-step-indicator.active .label{
   color: #000000;
}
.bundle-step-indicator.active .circle {
  background: #000;
}

/* ================= STEP CONTENT ================= */
.bundle-step {
  display: block;         /* Show all steps */
  opacity: 0.5;           /* Dim inactive steps */
  transition: opacity 0.3s, transform 0.3s;
  margin-bottom: 30px;
  padding: 20px;
  /* border: 1px solid #eee; */
  /* border-radius: 8px; */
  max-width:1440px;
  margin:50px auto;
}

.bundle-step.active {
  opacity: 1;             /* Highlight active step */
  border-color: #000;
  transform: scale(1.02);
}

.bundle-step.completed {
  opacity: 0.8;           /* Dim completed step */
  border-color: #ccc;
  position: relative;
}

.bundle-step.completed::before {
  /* content: "✓"; */
  position: absolute;
  top: 10px;
  left: 10px;
  font-weight: bold;
  color: #000;
  font-size: 18px;
}

/* Bundle products grid */

.bundle-products {
  display: grid;
  margin: 0 auto;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
}
.bundle-product{
  /* width:calc(25% - 20px * 3 / 4); */
  border:1px solid #000000;
  padding-bottom:10px;
  border-radius:6px;
  align-content: end;
  overflow:hidden;
}
.bundle-product .bundle-offer{
  text-align:center;
  width:100%;
  color:#fff;
  background:linear-gradient(to right, #740000 0%, #C9335E 100%) !important;
  height:40px;
  border-radius:6px 6px 0px 0px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.bundle-product img {
  height: 250px;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.bundle-product p {
  text-align: center;
  margin-block: 6px 0px;
}
.bundle-product.selected {
  border: 2px solid #000;
  border-radius: 6px;
}

/* ================= STICKY BAR ================= */
.bundle-sticky {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #ddd;
  z-index: 999;
  width:100%;
  margin-top:20px;
}
.bundle-sticky .bundle-sticky-main{
   display: flex;
  justify-content: space-between;
  align-items: center;
  max-width:1480px;
  padding:20px;
  margin:0 auto;
  width:100%;
}
.sticky-products {
  display: flex;
  align-items:center;
  gap: 10px;
}
.sticky-products h2{
  margin:0px;
  font-size:20px;
}

.sticky-products > img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.bundle-add-to-cart:disabled {
  display:none;
  pointer-events: none;
}



/* ================= QUANTITY / ADD TO BOX ================= */
.bundle-qty {
  margin-top: 6px;
  text-align: center;
}

/* ADD TO BOX BUTTON */
.add-box {
  width: 92%;
  padding: 12px;
  border: 1px solid #ccc;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.2s;
  border-radius:8px;
}

.add-box:hover:not(.disabled) {
  background: #EC1752;
  color: #fff;
  border-radius:8px;
  border:none;
}

.add-box.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* QTY BOX */
.qty-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #000;
    padding: 8px 14px;
    margin-top: 5px;
    border-radius: 6px;
    width: 92%;
    text-align: center;
    margin: 0 auto;
}

.qty-box button {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.qty-box.hidden {
  display: none;
}

.qty-value {
  font-size: 16px;
  min-width: 20px;
  text-align: center;
}
.bundle-step {
  display: none;
}

.bundle-step.active {
  display: block;
}

.bundle-step.completed:not(.last-step) {
  display: none;
}

.bundle-step.completed::before {
  /* content: "✓"; */
  margin-right: 8px;
  color: #000;
  font-weight: bold;
  font-size: 18px;
}
.sticky-right{display:flex;align-items:center;gap:16px}
.sticky-products {
  display: flex;
  gap: 10px;
}

.sticky-item {
  position: relative;
  aspect-ratio: 1/1;
  border: 2px solid #0000004f;
  border-radius: 6px;
  max-width: 60px;
  /* overflow: hidden; */
  padding: 4px;
  flex: 0 0 auto;
}
.sticky-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sticky-item .sticky-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  border: none;
  width: 18px;
  height: 18px;
  font-size: 12px;
  cursor: pointer;
}
.sticky-item .bundle-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  border: none;
  width: 18px;
  height: 18px;
  font-size: 10px;
  cursor: pointer;
  z-index: 1;
  padding: 0px 3px 1px 4px;
  text-align: center;
}
.sticky-item.giftwrap-item {
  aspect-ratio: unset;
  border: none;
  border-radius: 0px;
  max-width: unset;
  padding: 0;
  display: flex;
  flex-direction: row-reverse;
  gap: 8px;
  margin-left: 0px;
  align-items: center;
  flex: 0 0 auto;
}
.sticky-item.giftwrap-item .gift-content {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 2px solid #0000004f;
  border-radius: 6px;
  max-width: 60px;
  /* overflow: hidden; */
  padding: 4px;
}
.sticky-item.giftwrap-item .gift-content span {
  position: absolute;
  top: -8px;
  right: -7px;
  background: #000;
  border-radius: 99px;
  padding: 3px 6px 3px 7px;
  color: #fff;
  text-transform: uppercase;
  font-size: 9px;
  line-height: normal;
}
.sticky-item.giftwrap-item .gift-plus {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
}

.bundle-sticky.disabled {
  display: none;
}

@media (max-width: 1120px){
  .bundle-products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px){
  /* .bundle-sticky .bundle-sticky-main {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }
  .sticky-products,
  .sticky-right {
    width: 100%;
    justify-content: space-between;
  }
  .sticky-products h2 {
    flex: 1;
  } */
  .sticky-products > img,
  .sticky-products h2{
    display: none;
  }
  .sticky-right {
    gap: 6px;
  }
  .sticky-right span.price{
    font-size: 14px;
  }

@media (max-width: 767px){
  .bundle-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .bundle-product img {
    height: 160px;
  }
  .bundle-sticky .bundle-sticky-main {
    padding: 14px;
  }
  .sticky-item,
  .sticky-item.giftwrap-item .gift-content {
    max-width: 50px;
  }
  .sticky-right .quick-add__submit {
    letter-spacing: normal;
    padding: 8px;
    min-height: 40px;
  }
  .sticky-products > img {
    width: 30px;
    height: 30px;
  }
  .sticky-products h2 {
    font-size: 14px;
  }
}
 



.offer-banner {
    background: #ffffff;
    text-align: center;
    padding: 24px 16px;
    border-bottom: 1px solid #e5e5e5;
  }

  .offer-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6b5cff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .offer-title {
    font-size: 34px;
    font-weight: 800;
    color: #111;
    margin: 0 0 8px;
  }

  .offer-subtitle {
    font-size: 16px;
    color: #555;
  }

  .offer-subtitle span {
    margin: 0 6px;
  }

  @media (max-width: 600px) {
    .offer-title {
      font-size: 26px;
    }
    .offer-subtitle {
      font-size: 14px;
    }
  }


.bundle-products .bf-top-badge {
    border-radius: 5px 5px 0px 0px;
    font-size: 10px !important;
}
.bundle-products .price__sale_bundle {
    text-align: center;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.bundle-products s.price-item_bundle.price-item--regular_bundle {
    margin: 0;
    color: red;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: normal;
    height: 100%;
    display: flex;
    align-items: center;
}

.bundle-products span.price-item_bundle.price-item--sale_bundle {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: normal;
}
.metafield-rich_text_field ul {
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
}

.metafield-rich_text_field ul li:not(:first-child):before {
    content: '•';
    font-size: 16px;
    color: #555;
    margin: 0 6px;
}

.bundle-sticky,
.bundle-buyx {
    background: #fff3e8;
}



