/** Shopify CDN: Minification failed

Line 349:1 Expected "}" to go with "{"

**/
/* =========================================
   BODY LOCK
========================================= */
html.popup-open,
body.popup-open{
  overflow: hidden !important;
  height: 100% !important;
  touch-action: none;
  -webkit-overflow-scrolling: auto;
}

/* =========================================
   FLOATING BUTTON
========================================= */
.pdp-image{
  position: relative;
}

.floating-btn{
  position: absolute;
  right: 6px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  border-radius: 50%;
  overflow: hidden;
   border: 2px solid var(--popup-color);
  background: #fff;
  cursor: pointer;
}

.floating-btn img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  border-radius: 50%;
}

/* =========================================
   MODAL (HIGHEST PRIORITY FIX)
========================================= */
.modal{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2147483647 !important; /* 🔥 ALWAYS TOP */
  background: rgba(0,0,0,0.25);
  overflow-y: auto;

  padding: 90px 12px 40px;

  -webkit-overflow-scrolling: touch;

  /* safe area */
  padding-top: calc(90px + env(safe-area-inset-top));
}

/* =========================================
   POPUP BOX
========================================= */
.skincare-popup{
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: auto;
  padding: 16px;
  border-radius: 18px;
  background: rgb(0 0 0 / 29%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--popup-color);
  box-shadow:
    0 4px 18px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.35);
  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* =========================================
   TITLE + CLOSE
========================================= */
.popup-title{
  text-align: center;
  font-size: 13px;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  gap: 8px;
 justify-content: center;
 font-family: poppins-SemiBold !important;
 font-weight: 500 !important;
}
.popup-title-img {
  width: 20px;
  height: 20px;
  object-fit: cover;
  border-radius: 50%;
}

.close-btn{
  position: absolute;
  right: 16px;
  top: 11px;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
}

/* =========================================
   PRODUCT LIST
========================================= */
.product-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding-right: 2px;
}

.product-list::-webkit-scrollbar{
  width: 4px;
}

.product-list::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.4);
  border-radius: 10px;
}

/* =========================================
   CARD
========================================= */
.popup-product-card{
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.92);
  padding: 6px 32px 6px 8px;
  border-radius: 10px;
  min-height: 64px;
}

/* image */
.img-box{
  width: 60px;
  height: 60px;
  /* background: linear-gradient(135deg,#c8b6ff,#e7c6ff); */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  flex-shrink: 0;
}

.img-box img{
  width: 100%;
}

/* step */
.step{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 10px;
   background: linear-gradient(
    180deg,
    var(--popup-color) 0%,
    var(--popup-light-color) 100%
  );
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  border-radius: 999px;
  margin-bottom: 3px;
  font-family: poppins-Regular !important;
}

/* text */
.info p{
  font-size: 10px;
  margin: 0;
  line-height: 1.25;
  font-family: poppins-Regular !important;
  font-weight: 400;
}

.info strong{
  font-size: 11px;
  color: #02A9D0;
  font-family: poppins-SemiBold !important;
  font-weight: 900!important;
}

/* toggle */
.toggle-btn{
  position: absolute;
  top: 7px;
  right: 7px;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;


}

.toggle-picture{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.check{
  background: var(--popup-color);
  
}

.add{
  background: rgb(255, 255, 255) !important;;
 
}
/* iPhone Safari fix */

.toggle-icon{
  width: 14px;
object-fit: contain;
}
.toggle-icon.add{
  width: 20px;
}

/* =========================================
   BUTTON
========================================= */
.add-cart-btn{
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  border-radius: 10px;
  border: none;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.add-cart-btn span{
  margin: 0 5px;
  font-family: poppins-Regular !important;
}

/* =========================================
   TABS FIX (YOUR ISSUE SOLVED)
========================================= */
.tabs_pdp{
  position: relative;
  z-index: 1;
}

/* if wrapper exists */
.tabs-wrapper{
  overflow: visible !important;
  position: relative;
  z-index: 1;
}

/* =========================================
   MOBILE FIX
========================================= */
@media (max-width: 767px){

  .floating-btn{
    bottom: 8px;
    right: 7px;
  }

  .skincare-popup{
    max-width: 300px;
    max-height: calc(100vh - 160px);
    top: 27%;
  }

  .tabs_pdp{
    -webkit-overflow-scrolling: touch;
  }
 .check{
    background: var(--popup-color) !important;
    
}

/* =========================================
   BREAKPOINTS
========================================= */

/* small laptop */
@media (max-width: 1279px){
  .modal{
    padding-top: 100px;
  }

  .skincare-popup{
    max-width: 340px;
  }
}

/* standard desktop */
@media (min-width: 1280px) and (max-width: 1439px){
  .modal{
    padding-top: 110px;
  }
}

/* large desktop */
@media (min-width: 1440px){
  .modal{
    padding-top: 120px;
  }

  .skincare-popup{
    max-width: 360px;
  }
}


 .toggle-btn, .add-cart-btn, .step , .info {
  cursor: context-menu !important;
}
.popup-compare-price{
  opacity: .7;
  margin-right: 6px;
  font-size: 13px;
}