/* Add custom CSS styles below */ 

.quantity-inputs-old-shape .s-quantity-input-button{
  border: 1px solid #a07d53 !important;
  fill: #a07d53 !important;
}
/* حاوية الزر */
.wa-widget {
  animation: wa-bounce 2.5s ease-in-out infinite;
}

/* الزر نفسه + الدائرة النابضة حواليه */
.wa-widget .wa-btn {
  position: relative;
  z-index: 1;
  background-color: #25D366;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.wa-widget .wa-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: #25D366;
  z-index: -1;
  animation: wa-pulse 2s infinite;
}

/* نبضة الدائرة */
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.9);
    opacity: 0;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* حركة الطفو الخفيفة */
@keyframes wa-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
/* تفعيل التموضع النسبي على الدائرة عشان الشيمر يتموضع فوقها */
.banner-outer .banner-entry.circle {
  position: relative;
  overflow: hidden;
  border-radius: 50% !important;
}

/* طبقة الشيمر الذهبي فوق الصورة */
.banner-outer .banner-entry.circle::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 223, 150, 0.15) 30%,
    rgba(255, 215, 130, 0.55) 50%,
    rgba(255, 223, 150, 0.15) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 2;
  animation: shimmer-sweep 6s ease-in-out infinite;
}

@keyframes shimmer-sweep {
  0% {
    left: -100%;
  }
  35% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}
.product-block__thumb {
  position: relative;
  overflow: visible !important;
}

.product-block__thumb::before {
  content: '5 ⭐';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0 0 10px 0;
  padding: 1px 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  font-family: Arial, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  direction: ltr;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background-color: rgba(255, 255, 255, 0.18);
  background-image: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 215, 0, 0.45) 50%,
    transparent 80%
  );
  background-size: 250% 100%;
  background-position: 150% 0;
  background-repeat: no-repeat;
  animation: glass-shine 4s ease-in-out infinite;
}

@keyframes glass-shine {
  0%, 40% {
    background-position: 150% 0;
  }
  60% {
    background-position: -50% 0;
  }
  100% {
    background-position: -50% 0;
  }
}