/** Shopify CDN: Minification failed

Line 467:5 Expected "}" to go with "{"

**/
.bb-wrapper {
  --bb-accent: #29b6d8;
  --bb-dark: #1a1a1a;
  --bb-border: #e5e5e5;
  --bb-bg-soft: #f7f7f7;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 64px;
  font-family: inherit;
  color: var(--bb-dark);
}
#shopify-section-template--24036510072991__bundle_custom_hjXdDV {
 background: #F6F6F6;
}

.bb-banner { margin-bottom: 24px; border-radius: 8px; overflow: hidden; }
.bb-banner img { width: 100%; display: block; }

.bb-header { text-align: center; margin-bottom: 32px; }
.bb-title {   font-family: "Inter", sans-serif;font-size: 28px; font-weight: 700; margin: 0 0 8px; }
.bb-subtitle {   font-family: "Inter", sans-serif;font-size: 15px; color: #666; margin: 0; }

/* Step nav */
.bb-step-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
  position: relative;
}
.bb-step-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 48px;
  position: relative;
  z-index: 1;
  font: inherit;
}



.bb-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  transition: all 0.2s ease;
}
.bb-step-nav-item.active .bb-step-icon {
  border-color: var(--bb-accent);
  color: var(--bb-accent);
}
.bb-step-nav-item.completed .bb-step-icon {
  border-color: #1e8e3e;
  background: #1e8e3e;
  color: #fff;
}

.bb-step-nav {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

/* Connecting line */
.bb-step-nav::before {
    content: "";
    position: absolute;
    top: 25px; /* icon ke center ke according adjust */
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e5e5e5;
    z-index: 0;
}

.bb-step-nav-item {
    position: relative;
    z-index: 1;
    background: transparent;
    border: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon ke around white background, taaki line icon ke andar na dikhe */
.bb-step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border: 2px solid #e5e5e5;
}

@media (max-width: 991px) {
    .bb-step-nav::before {
        left: 16.66%;
        right: 16.66%;
        top: 25px;
    }
}

@media (max-width: 600px) {

    .bb-step-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 10px 0px;
        box-sizing: border-box;
    }

    .bb-step-nav::before {
        display: none !important;
    }

    .bb-step-nav-item {
        width: 100%;
        flex: none;

        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;

        position: relative;

        margin: 0 0 20px 0;
        padding: 0;

        box-sizing: border-box;
    }

    .bb-step-nav-item:last-child {
        margin-bottom: 0;
    }

    /* ICON */
    .bb-step-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;

        position: relative;
        z-index: 2;

        background: #fff;
    }

    /* VERTICAL LINE */
    .bb-step-nav-item:not(:last-child)::after {
        content: "";

        position: absolute;

        left: 25px;
        top: 50px;

        width: 2px;
        height: 20px;

        background: #e5e5e5;

        transform: translateX(-50%);

        display: block !important;

        z-index: 1;
    }

    /* LABEL */
    .bb-step-label {
        width: auto;

        margin: 0 0 0 18px;

        font-size: 16px;
        line-height: 1.3;
        font-weight: 600;

        text-align: left;

        white-space: nowrap;

        position: relative;
        z-index: 2;
    }
}


/* Active icon */
.bb-step-nav-item.active .bb-step-icon {
    border-color: #12b5e5;
    color: #12b5e5;
}
.bb-icon-check { display: none; }
.bb-step-nav-item.completed .bb-icon-default { display: none; }
.bb-step-nav-item.completed .bb-icon-check { display: block; }

.bb-step-label { font-family: "Inter", sans-serif;font-size: 14px; font-weight: 600; color: #000; }
.bb-step-nav-item.active .bb-step-label { color: var(--bb-dark); }
.bb-step-nav-item.completed .bb-step-label { color: #1e8e3e; }

.bb-step-error {
  text-align: center;
  color: #d3524a;
  font-size: 13px;
  font-weight: 600;
  min-height: 18px;
  margin: 0 0 24px;
}

/* Body layout */
.bb-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 860px) {
  .bb-body { grid-template-columns: 1fr; }
}

.bb-panel { display: none; }
.bb-panel.active { display: block; }

.bb-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}
.bb-panel-title { font-family: "Inter", sans-serif;font-size: 20px; font-weight: 700; margin: 0 0 4px; }
.bb-panel-subtitle { font-family: "Inter", sans-serif;font-size: 14px; color: #666; margin: 0; }
.bb-offer-badge {
  background: var(--bb-accent);
  font-family: "Inter", sans-serif;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.bb-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 700px) {
  .bb-product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
    .bb-product-grid {
        grid-template-columns: 1fr;
    }
}

.bb-product-card {
padding: 15px;
    background: #fff;
  display: flex;
  flex-direction: column;
}


.bb-product-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.bb-product-link:hover .bb-product-image { opacity: 0.9; }

.bb-product-image {
  aspect-ratio: 1 / 1;
  background: var(--bb-bg-soft);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
  transition: opacity 0.15s ease;
}
.bb-product-image img { width: 100%; height: 100%; object-fit: contain; }

.bb-product-title {
  font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
 line-height: 23px;
    color: #000;
    margin-bottom: 10px;
}

.bb-product-title:hover, .bb-product-link:hover {
  text-decoration:underline;
}

.bb-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.bb-product-price { font-family: "Inter", sans-serif;font-size: 16px; font-weight: 700;color: #000; }

.bb-qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bb-qty-control[data-qty="0"] .bb-qty-minus,
.bb-qty-control[data-qty="0"] .bb-qty-value { display: none; }

.bb-qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: none;
  background: var(--bb-dark);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bb-qty-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.bb-qty-value { font-size: 14px; font-weight: 600; min-width: 14px; text-align: center; }

/* Sidebar */
.bb-sidebar { position: sticky; top: 20px;margin-top: 48px; }
@media(max-width:991px) {
  .bb-sidebar {
  margin-top:0;
}}
.bb-sidebar-inner {
  border: 1px solid var(--bb-border);
  border-radius: 0px;
  padding: 24px;
  background:#fff;
}
.bb-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.bb-sidebar-head h3 { font-family: "Inter", sans-serif;font-size: 18px; margin: 0;color:#000; }
.bb-clear-btn {
  background: #fdeeee;
  color: #d3524a;
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

@media(max-width:600px) {
  .bb-step-nav-item:not(:last-child)::after {
    display:none;
  }

  .bb-step-nav{
    flex-wrap:wrap;
  }

  .bb-product-footer{
    flex-wrap:wrap;
    
    justify-content:center!important;
    gap:20px;
  }
.bb-product-title{
  text-align:center;
}
  
}
.bb-sidebar-caption { font-family: "Inter", sans-serif;font-size: 13px; color: #888; margin: 0 0 8px; }
.bb-item-count { font-family: "Inter", sans-serif;font-size: 13px; color: #444; margin: 0 0 16px; }

.bb-selected-list { margin-bottom: 12px; max-height: 260px; overflow-y: auto; }
.bb-selected-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--bb-border);
  font-size: 13px;
}
.bb-selected-row-name { flex: 1; }
.bb-selected-row-meta { font-family: "Inter", sans-serif;color: #888; white-space: nowrap; }

.bb-total-row {
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  padding-top: 12px;
  border-top: 1px solid var(--bb-border);
  margin-bottom: 16px;
}

.bb-add-to-cart {
  width: 100%;
  background: var(--bb-accent);
  color: #fff;
  border: none;
  font-family: "Inter", sans-serif;
  border-radius: 9px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.bb-add-to-cart:disabled { opacity: 0.45; cursor: not-allowed; }

.bb-status-msg { font-size: 13px; margin: 10px 0 0; text-align: center; min-height: 16px; }
.bb-status-msg.success { color: #1e8e3e; }
.bb-status-msg.error { color: #d3524a; }

@media screen and (min-width: 750px) {
    .banner--small:not(.banner--adapt) {
        min-height: 44rem;
    }
}

@media screen and (max-width: 450px) {
   #Banner-template--24036510072991__image_banner_ejVLD7.banner--small:not(.banner--mobile-bottom):not(.banner--adapt) .banner__content {
        min-height: 200px;
    }