
.htransform {
  will-change: transform;
  transition: transform 200ms ease-out;
}


.star-rating .star-animate {
  animation: shinePulse 4s infinite ease-in-out;
  will-change: transform, filter;
  transform-origin: center center;
}

/* تأخیرهای مختلف برای هر ستاره */
.star-rating .star-animate:nth-child(1) {
  animation-delay: 0s;
}
.star-rating .star-animate:nth-child(2) {
  animation-delay: 0.3s;
}
.star-rating .star-animate:nth-child(3) {
  animation-delay: 0.6s;
}
.star-rating .star-animate:nth-child(4) {
  animation-delay: 0.9s;
}
.star-rating .star-animate:nth-child(5) {
  animation-delay: 1.2s;
}

/* افکت درخشش ملایم */
@keyframes shinePulse {
  0% {
    transform: scale(1);
    filter: brightness(1) drop-shadow(0 0 0px gold);
  }
  50% {
    transform: scale(1.1);
    filter: brightness(1.4) drop-shadow(0 0 6px gold);
  }
  100% {
    transform: scale(1);
    filter: brightness(1) drop-shadow(0 0 0px gold);
  }
}

.add_header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
  animation: slideInDown 1s;
  background-color: #121212;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 99999;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.swiper-button-prev,
.swiper-button-next {
  background-color: rgba(255, 255, 255, 0.5) !important;
  border-radius: 9999px;
  width: 2.5rem;
  height: 2.5rem;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
}

.swiper-thumbs .swiper-slide {
  height: 6rem;
  width: 6rem;
  overflow: hidden;
  
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  -webkit-transform: scale(0.7) !important;
  transform: scale(0.7) !important;
  -webkit-transition: transform 300ms ease;
  transition: transform 300ms ease;
}
.swiper-thumbs .swiper-slide-active {
  opacity: 1;
  -webkit-transform: scale(1) !important;
  transform: scale(1) !important;
}

.swiper-thumbs{
  width: 270px;

}

.swiper-comments .swiper-button-next:after,
.swiper-comments .swiper-button-prev:after {
  color: #121212;
  font-size: 3rem;
  font-family: public-icons!important;
  font-weight: 300;
}
.swiper-comments .swiper-button-prev:after {
  content: "\eca7";
}
.swiper-comments .swiper-button-next:after {
  content: "\eca2";
}

.video_play{
border: none;
  background-color: rgba(255,255,255, 0.48);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50%;


}


