.care-text {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  text-align: center;
}

.changing-word {
  color: var(--color-primary);
  transition: opacity 0.3s ease;
    font-weight: 700!important;

}


/* Add custom CSS styles below */ 
button.s-button-element.s-button-btn.s-button-outline.s-button-wide.s-button-primary-outline.s-button-loader-center {
    background-color: var(--color-primary);
    color: #ffffff;
}
.s-product-card-content-sub.justify-center.gap-2:after {
    content: '';
    display: inline-block;
    width: 5rem;
    height: 1.5rem;
    background-image: url(https://i.postimg.cc/Qt00z341/tamara-tabby.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
div#wa-angel {
    background-color: var(--color-primary);
}
.s-product-card-discount.card-discount.font-primary {
  animation: discountPulse 1.6s ease-in-out infinite;
  will-change: transform;
}

@keyframes discountPulse {
  0%, 100% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.08);
  }
}
/*footer*/
li.pay-mahally_customer_wallet.w-12.h-7.bg-white.rounded.flex.items-center.p-1 {
    display: none;
}

/*single product*/
/*product details*/

div#product-tabs-details strong {
    color: var(--color-primary);
}
/*video section*/
.play-btn{
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.65);
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: 0.3s;
  backdrop-filter: blur(4px);
}

.play-btn::before{
  content: "";
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}

.play-btn:hover{
  transform: scale(1.1);
  background: rgba(0,0,0,0.8);
}

/* السلايدر */
.videos-gallery-container {
  display: flex;
  flex-direction: column;
}

/* النقاط */
.custom-pagination {
  margin-top: 15px;
  text-align: center;
}

.custom-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ccc;
  opacity: 1;
  margin: 0 4px;
  border-radius: 50%;
  transition: 0.3s;
}

.custom-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
  width: 20px;
  border-radius: 10px;
}

/* Popup */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-modal-content {
  width: 90%;
  max-width: 900px;
  position: relative;
}

.video-modal iframe {
  width: 100%;
  height: 500px;
  border-radius: 12px;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* موبايل */
@media (max-width: 768px) {
  .video-modal-content {
    width: 100%;
    height: 100%;
  }

  .video-modal iframe {
    height: 100%;
    border-radius: 0;
  }

  .close-modal {
    top: 15px;
    right: 20px;
  }
}

/* منع السكرول أثناء البوب اب */
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}