.index .s-block--animate div.container div.home-block-title h2 {
  /* تأكد أن النص لا يزال مرئياً بعد أنيميشن الثيم */
  opacity: 1 !important;
  transform: translateY(0px) !important;
  
  /* تطبيق أنيميشن السائل */
  animation: liquid-text 3s infinite alternate;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2); /* ظل خفيف */
}

@keyframes liquid-text {
  0% {
    color: #333; /* لون البداية */
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transform: translateY(0px) scale(1);
  }
  50% {
    color: #666; /* لون وسيط */
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px) scale(1.02); /* حركة خفيفة للأعلى وتكبير بسيط */
  }
  100% {
    color: #333; /* العودة للون البداية */
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transform: translateY(0px) scale(1);
  }
}
.index .s-block--enhanced-features__item div.feature-icon:nth-of-type(5) {
  border: none !important; /* إزالة أي حدود على حاوية الأيقونة */
  border-radius: 0 !important; /* إزالة أي نصف قطر للحدود */
}

.index .s-block--enhanced-features__item div.feature-icon:nth-of-type(5) img {
  filter: grayscale(100%); /* تطبيق فلتر اللون الرمادي لجعل الصورة بالأسود */
}.product-card .total-price {
  animation: pulse-price 1.5s infinite;
}

@keyframes pulse-price {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}