/** Shopify CDN: Minification failed

Line 306:15 Expected identifier but found whitespace
Line 306:16 Unexpected "40px"
Line 319:4 "weight" is not a known CSS property

**/
build-your-bundle-button{
  cursor:pointer;
}

.hidden {
  display: none;
}

.pdp-bundle-main__wrapper {
   display: none;
   position: relative;
   width: 100%;
   background-color: white; 
   /* width: 700px; */
}

.bundle-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.bundle-main-heading {
    font-size: 22px;
    color: black;
    text-align: left;
    font-weight: bold;
    margin: 0;
    text-transform: capitalize;
    width: 100%;
    text-align: center;
}

.bundle-steps-container {
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  .bundle-steps-container {
      padding: .7rem;
  }
}

.wrapper-content-bundle-steps {
    background: white;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #0aaf2b;
    /* #DCDCDC; */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}
@media screen and (max-width: 767px) {
  .wrapper-content-bundle-steps {
    height:650px;
  }
}


.header-bundle-steps {
    display: flex;
    justify-content: space-between;
    align-items:center;
    padding: 20px;
}
@media screen and (max-width: 767px) {
  .header-bundle-steps {
     padding: 20px 20px 10px 20px;
  }
 
  .bundle-main-heading {
    font-size: 18px;
    
}
}

.step {
  position: relative;
  width: 20px; 
  height: 20px;
  border: 2px solid #CECECE; 
  border-radius: 50%; 
  background-color: white; 
  z-index: 2;
}

.step::after {
  content: '';
  position: absolute;
  width: 5px; 
  height: 5px;
  background-color: #e0e0e0; 
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} 

.step.completed::after {
    content: url('/cdn/shop/files/material-symbols_check_9f58ad2f-4eb2-48d3-93ae-e655d99fcf57.svg?v=1737674316');
    font-size: 18px;
    font-weight: 400;
    color: white;
    position: absolute;
    border:#06af2a;
    width: unset;
    height: unset;
    background-color: transparent;
    border-radius: 0;
    top: 0;
    left: unset;
    transform: none;
}

.step.active::after {
  content: '';
  position: absolute;
  width: 10px; 
  height: 10px;
  background-color: black; 
  border: 2px solid #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step.circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.step.circle.completed {
  background-color: #06af2a;
  border:#06af2a;
}

.step.circle.active {
    border-color: #06af2a;
    animation: pulse 1.5s infinite;
    /* background-color: #06af2a; */
}

/* Pulsing effect for active step */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(6, 175, 42, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(6, 175, 42, 0.2);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(6, 175, 42, 0);
    }
}

.line {
  flex-grow: 1;
  height: 2px;
  background-color: #e0e0e0;
}

.line.active {
   background: repeating-linear-gradient(
    90deg,
    #06af2a,
    #06af2a 4px,
    transparent 4px,
    transparent 8px
  );
}

.line.completed {
  background-color: #06af2a;
}

.bundle-progress-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  width:90%;
}
@media screen and (max-width: 767px) {
  .bundle-progress-bar {
    gap: 5px;
    margin:0px auto;
  }
}

.bundle-progress-bar__title{
    display: flex;
    justify-content: space-between;
    width:95%;
}
@media screen and (max-width: 767px) {
  .bundle-progress-bar__title{
      width:100%;
  }
}
.bundle-progress-bar__title .text:nth-child(2){
     padding-left:40px;
}
@media screen and (max-width: 767px) {
  .bundle-progress-bar__title .text:nth-child(2){
     padding-left:28px;
  }
}

.bundle-progress-bar__title .text{
    font-size:14px;
    color: #696969;
}
@media screen and (max-width: 767px) {
  .bundle-progress-bar__title .text{
    font-size:10px;
  }
}
.bundle-progress-bar__title .text.active,
.bundle-progress-bar__title .text.completed{
    color:#000;
}

.bundle-progress-bar__title .text span{
    font-weight: bold;
    font-size:16px;
}

.order-summary-title{
    display:flex;
    align-items:end;
    margin: 10px 5px 0;
    color:#3E3E3E;
}
@media screen and (max-width: 767px) {
  .order-summary-title{
      margin: 0 5px 0;
  }
}
@media screen and (min-width: 1400px) {
  .order-summary-title:nth-child(3){
      display:none;
  }
}


#step-2{
  position: relative;
  overflow: hidden
}

#step-2::after{
    content: ""; 
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 100%; 
    height: 50px;
    background: linear-gradient(to top, rgb(255 255 255 / 75%), rgba(255, 255, 255, 0));
    pointer-events: none; 
}

@media screen and (max-width: 767px) {
    #step-2 {
      height: 520px;
    }
    #step-2::after {
        height: 50px;
        max-height: 550px;
    }
    
}

.step-container__title{
  display: flex;
  justify-content:space-between;
  align-items: center;
  margin-top:15px;
}
.step-container__title h3{ 
  font-weight:bold;
  font-size:18px!important;
}

@media screen and (max-width: 480px) {
 .step-container__title{
     width:100%;
 }
}
  padding-left: 40px;
#step-4 .step-container__title{
  justify-content:flex-start;
}

.step-container__title h3 {
    margin: 0;
    font-size:calc(var(--font-heading-scale)* 1.5rem)
}

.step-container__title p {
    color: #3E3E3E;
    text-transform: capitalize;
    weight: 400;
    font-size:14px;
    margin-left: auto;
}

.step-container .options.diffusers{
    justify-content: center;
}

.step-container .options{
    display: flex;
    overflow: scroll;
    scrollbar-width: thin;
    scrollbar-color: #DCDCDC transparent; 
}
@media screen and (max-width: 1200px) {
  .step-container .options{
     flex-wrap:wrap;
     justify-content: center;
  }
   .step-container .options:not(.diffusers) .option{
      max-width: 50%;
      flex: 1 1 calc(50% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .step-container .options{
     flex-wrap:wrap;
     justify-content: center;
  }
  .step-container .options.diffusers {
    flex-direction:column;
    gap:15px;
  }
  .step-container__title h3{ 
  font-weight:bold;
  font-size:16px!important;
}
}

.step-container .options.oils {
    flex-wrap: wrap; 
    justify-content:flex-start;
    overflow-x: auto; 
    padding: 10px;
    gap: 10px;
    max-height: 400px;
}

@media screen and (max-width: 767px) {
  .step-container .options.oils {
    max-height: calc(100% - 135px);
    gap:10px;
    padding:0;
  }
}

.step-container .option {
    /* padding: 10px 20px; */
    border: 1px solid #ddd;
    transition: border 0.3s ease;
    border-radius: 16px;
    margin: 5px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
    max-width:300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #DCDCDC transparent; 
}

.step-container .option-diffuser {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
  .step-container .option {
    max-width:100%;
  }
}

.option__title {
    border: 1px solid black;
    border-radius:16px;
    padding: 5px 25px;
    
    margin:0;
    color:black;
    margin-top:10px;
}

.option__image{
  min-height:135px;
  padding-top: 10px;
}

.option__image img{
  /* transform: scale(1.5); */
}

.step-container img {
    width:100%;
    cursor:pointer;
    border-radius: 16px;
    max-height:275px;
}
@media screen and (max-width: 767px) {
  .step-container img{
    max-width: 150px;
  }
  #step-3 .option__image img {
       max-width: 120px !important;
  }
}
.step-container .options .option {
   text-align:center;
   border: 1px solid #DCDCDC;
   border-radius: 16px;
}
@media screen and (min-width: 1024px) {
  .step-container .options:not(.diffusers) .option {
    max-width: 25%;
  }
}
.step-container .options .option:hover {
   border: 1px solid black;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-top: 1px solid #ddd;
}

.navigation-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #27ae60;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.navigation-buttons button:hover {
    background: #1e874b;
}

.navigation-buttons button.hidden {
    display: none;
}

.tab-container {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content:space-between;
}
@media screen and (max-width: 767px) {
  .tab-container {
    margin-bottom: 15px;
  }
}

.tab-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
  background-color: #f5f5f5;
  padding: 6px;
  border-radius: 30px;
  /* overflow-x: auto; */
  overflow-x: hidden;
  white-space: nowrap;
  /* scrollbar-width: thin; 
  /* scrollbar-color: #ccc transparent;  */
}

.tab {
  padding: 8px;
  background-color: transparent;
  color: #666;
  font-size: 14px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tab.active {
  background-color: #fff;
  color: #000;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tab:hover {
  background-color: #e0e0e0;
}
/* 
.search-container input {
  padding: 10px;
  width: 100%;
  max-width: 250px;
  border: 1px solid #ddd;
  border-radius: 16px;
} */

.search-container {
  position: relative;
  max-width: 300px;
  padding:10px;
}
@media screen and (max-width: 767px) {
  .search-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    padding:0;
  }
}

.search-container .input-icon {
  position: absolute;
  top: 47%;
  left: 15px;
  transform: translateY(-47%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .search-container .input-icon {
    top: unset;
    left: unset;
    transform: unset;
  }
  .search-container .input-icon:focus {
    outline:none;
  }
}

.search-container input {
  padding: 10px 10px 10px 30px; 
  border: 1px solid #ddd;
  border-radius: 20px;
  outline: none;
}
@media screen and (max-width: 767px) {
  .search-container input {
    display: none;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 8px;
  }
}

.search-container.expanded {
  width: 100%;
  border-radius: 20px;
  /* padding: 0 16px; */
  margin-right: 5px;
}

.search-container.expanded .input-icon {
    display: none;
}

.search-container.expanded input {
  display: block;
}

.oil {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 16px;
  text-align: center;
  max-width: 250px;
  flex: 1 1 calc(25% - 10px);
  cursor:pointer;
  max-width:25%;
  justify-content: flex-start;
}

.oil:hover{
  border:1px solid black;
}

@media screen and (max-width: 1300px) {
  .oil {
     flex: 1 1 calc(33% - 10px);
     max-width: 33%;
  }
}

@media screen and (max-width: 1160px) {
  .oil {
     flex: 1 1 calc(50% - 10px);
     max-width: 50%;
  }
}

.diffusers .selected:not(img) {
  border:1.5px solid black;
}

.oil-image img {
  width: 100%;
  border-radius: 8px;
}

.oil-info{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.oil-info h4 {
  font-size: .8em;
  margin: 10px 0 5px;
  text-transform: capitalize;
}

.oil-info--inspo {
  color: #999;
  font-size: .7em;
  line-height: 14px;
  margin-bottom:0px;
  margin-top: 0px;
}

.oil-info--notes {
  color: #000;
  width: 100%;
  line-height: 14px;
  margin:5px 0;
  font-family: SF Pro Display;
font-weight: 400;
font-size: 9px;
line-height: 100%;
letter-spacing: 0%;

}

.oil-info-pricing {
  display: flex;
  justify-content:center;
  align-items: center;
}

.oil-info-pricing p{
  margin:0;
}

.oil-info--price {
  font-size: .8em;
  color:rgb(243 52 75);
  text-decoration: line-through;
}

.oil-info-pricing:not(:has(.oil-info--price-discount)) .oil-info--price,
.oil-info:not(:has(.oil-info--price-discount)) .oil-info--price {
  font-size: .8em;
  color: #000;
  margin-right: 5px;
  font-weight: bold;
  text-decoration: none;
}
.oil-info--price-discount {
  font-size: .8em;
  color:#000;
  margin-right:5px;
  font-weight: bold;
}

.back-button {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    font-size: 14px;
}

.back-button svg {
    margin-right: 8px;
    stroke: #333;
    width: 16px;
    height: 16px;
}
@media screen and (max-width: 767px) {
  .back-button svg {
    margin-right: 0;
  }
}

.back-button:hover {
    color: #27ae60;
    stroke: #27ae60;
}

/* Order Summary Layout */

.summary-item-wrapper {
    border: 1px solid #ddd;
    border-radius: 8px;
}
@media screen and (max-width: 1480px) {
  .summary-item-wrapper {
    width:100%;
  }
}
.summary-item {
    display: flex;
    align-items: center;
    padding: 5px;
    max-width: 350px;
    min-height:200px;
    padding: 10px 0px;
}
@media screen and (max-width: 767px) {
  .summary-item {
    min-height:100px;
    max-width: 100%;
    padding: 3px;
  }
}
.summary-item-title{
    text-transform:capitalize;
    font-size:14px;
}

.summary-item-title{
   font-size:10px;
   line-height:16px;
}

.summary-item-title--variant{
  color:#000;
}

.summary-item-title--variant span{
  border:2px solid #DCDCDC;
  border-radius:16px;

  padding:0 5px;
}

.summary-item-meta{
  line-height:15px;
}

.summary-image {
    width: 90px !important;
    height: 120px;
    margin-right: 16px;
    border-radius: 4px;
    object-fit: cover;
}

.edit-button{
   all: unset;
   cursor:pointer;
   float: right;
   padding-right: 10px;
   padding-top: 10px;
   align-self: flex-start; 
}

.edit-button:hover {
    background-color: #f0f0f0;
}

.summary-item h4 {
    font-size: .9em;
    margin: 0;
    font-weight: bold;
    color: #333;
}

.summary-item p {
    margin: 4px 0;
    font-size: 14px;
  
}
.summary-item .summary-price p {
    font-size: 15.052px;
    margin-left:5px;
     color: rgb(243 52 75);
}
.summary-item .price {
    font-weight: bold;
}

.order-summary {
    display: flex;
    justify-content: space-evenly;
    padding: 0px 10px 20px;
    gap: 10px;
    justify-content: center;
}

.order-summary .summary-item__final{
    width:50%;
}
@media screen and (max-width: 1200px) {
   .order-summary {
      flex-direction: column;
      flex-wrap: wrap;
      padding: 0;
      gap:5px;
   }
  .order-summary .summary-item__final{
    width:100%;
  }
}


.order-summary .summary-item + .summary-item {
    margin-top: 16px;
}

/* Footer container */
.summary-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 200px;
    border: 1px solid #CFCFCF;
    background-color: #fff;
    color: #696969;
    padding-left:24px;
    border-radius: 32px;
    font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .summary-footer {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction:column;
    border-radius: 200px;
    border: none;
    padding-left: 0;
    border-radius: 32px;
  }
}

/* Savings and Total Info */
.summary-footer__info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    line-height: normal;
}

@media screen and (max-width: 767px) {
  .summary-footer__info {
      align-items: start;
      gap: 5px;
      flex-direction: row;
      justify-content: space-between;
      border-radius: 8px;
      padding: 10px;
      width: 100%;
      border: 1px solid #d8d8d8;
  }
  .summary-item .summary-price p{
    font-size:12px;
  }
}

.savings-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin:0;
        margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .savings-info,
  .total-title {
    font-size:10px;
  }
}
.total-info{
    display: flex;
    flex-wrap:wrap;
    margin:0;
}
.total-info .price-discounted {
    font-size: 20px;
}
@media screen and (max-width: 1000px) {
  .total-info{
    align-items: flex-end;
    padding-left:0;
  }
}
.summary-footer .money{
  margin-top:5px;
}
@media screen and (max-width: 767px) {
   .summary-footer .money{
      font-size: 20px;
      font-weight: bold;
   }
}

.savings-info span.savings {
    color: #06af2a; 
    font-weight:bold;
    font-size: 20px;
}

.total-info span.total-title{
   flex-basis: 100%;
}

.total-info span.total-price{
  color:black;
  margin-right:5px;
}
.total-info span.total-price,
.total-info span.total-original-price{
   /* flex-grow: 1; */
   font-size:20px;
   font-weight:bold;
}

.summary-price {
  display:flex;
  align-items: center;
  margin-top: 20px;
}

.summary-price .price{
  font-weight:bold;
} 
.discount__badge{
 border: 1px solid transparent;
    border-radius: var(--badge-corner-radius);
    display: inline-block;
    font-size: 1.2rem;
    letter-spacing: .1rem;
    line-height: 1;
    padding: 5px;
    margin-left: 7px;
    /* margin-top: 7px; */
    text-align: center;
    background-color: rgb(243 52 75);
    border-color: rgba(var(--color-badge-border), var(--alpha-badge-border));
    color: rgb(var(--color-badge-foreground));
    word-break: break-word;
        font-size: 10px !important;
    font-weight: bold;
    color: white!important;
}
.product__info-container .price__container .price__sale .price-item.price-item--regular{
  color:rgb(243 52 75);
  font-size:16px;
}
@media screen and (max-width: 767px) {
  .summary-price {
      margin-top: 5px;
  }
}
.price-discounted{
   color:rgb(243 52 75);
   text-decoration: line-through;
   align-self: self-end;
}

/* Add to Cart Button */
.bundle-add-to-cart {
    display: flex;
    flex: 0 0 50%;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 200px;
    padding: 25px 16px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform:capitalize;
}

.loadermain.bundle-add-to-cart{
  pointer-events:none;
  background:#7b7b7b!important;
}

span.atcm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.loadermain.bundle-add-to-cart span.atcm {
    opacity: 0;
    
}

    .bundle-add-to-cart .loading__spinner{
      display:none;
    }

    .loadermain.bundle-add-to-cart .loading__spinner{
      display:inline-block;
    }

    .loadermain .path {
      stroke:white;
    }


@media screen and (max-width: 1000px) {
  .bundle-add-to-cart {
    width: 100%;
    padding: 20px 16px;
    margin-top: 10px;
  }
}


.bundle-add-to-cart:hover {
    background-color: #06af2a;
    color: #fff;
}

.bundle-add-to-cart svg {
    width: 16px;
    height: 16px;
}
