/* الخلفية كاملة */ 
body { 
  background: #C0AB95 !important; 
}

/* تحريك جميع عناصر الأقسام بدون تأثير على الصفحة */
.swiper-slide .slide--cat-entry, 
.category-item, 
.cat-entry,
.swiper-slide:nth-child(n) .slide--cat-entry {
  background: #C0AB95 !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  animation: fastSlideRight 4s infinite linear !important;
  position: relative !important;
}

@keyframes fastSlideRight {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* إيقاف الحركة عند التمرير */
.swiper-slide .slide--cat-entry:hover, 
.category-item:hover, 
.cat-entry:hover {
  animation-play-state: paused !important;
}