/* Wrapper sticky top */
#wc-popup-wrap {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  padding: 12px;
  background: #fff;
  border-radius:12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin:10px;
}
#wc-popup-wrap .wc-popup-slider button{
    height:30px !important;
    font-size: 14px !important;
  line-height: 3px !important;
  direction: ltr !important;
}
#wc-popup-wrap h6{
   text-align:center !important; 
}

/* Close button */
#wc-popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px !important;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

/* Slider container */
.wc-popup-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding:15px !important;
   direction: ltr !important;
}

/* Slider track */
.wc-slider-track {
  display: flex;
  transition: transform 0.55s ease;
}

/* Individual slides */
.wc-popup-slide {
  flex: 0 0 auto;
  pa2dding: 10px;
  background: #fafafa;
  border-radius: 10px;
  text-align: center;
  display: block;
  flex-direction: column;
  align-items: center;
  margin-right: 35px;
}

/* Product image */
.wc-popup-slide img {
  width: 100%;
  height: 100px !important ;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* Price */
.wc-popup-slide strong {
  font-size: 15px;
  margin-bottom: 10px;
}

/* Add to cart button */
.wc-popup-add-to-cart {
  width: 85%;
  padding: 15px;
  background: #ff5aa5;
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  margin-top: auto;
}

/* Slider navigation */
.wc-slider-prev,
.wc-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 35px;
  border: none;
  background: #333;
  color: #fff;
  border-radius: 20%;
  font-size: 25px;
  cursor: pointer;
  z-index: 10;
  padding-right: 30px;
  padding-left: 15px;
}

.wc-slider-prev {
  left: 5px;
}

.wc-slider-next {
  right: 5px;
}

/* Responsive */
/* ===== MOBILE SLIDER FIX ===== */
@media only screen and (max-width: 760px) {
.wc-popup-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding:35px !important;
   direction: ltr !important;
}
}