/* لون أساسي */
:root {
  --main-color: #44b0b3;
}
.product-entry{
border-radius: 18px;
}
/* الحاوية الكاملة */
.product-entry__inner {
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(68, 176, 179, 0.15);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInCard 0.8s ease forwards;
}
.product-entry__inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(68, 176, 179, 0.3);
}

/* صورة المنتج */
.product-entry__image-main img {
  transition: transform 0.4s ease;
  border-radius: 12px;
}
.product-entry__image:hover img {
  transform: scale(1.04);
}

/* اسم المنتج */
.product-entry__title a {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
  line-height: 1.6;
}
.product-entry__title a:hover {
  color: var(--main-color);
}

/* وصف المنتج */
.product-entry__subtitle {
  font-size: 13px;
  color: #777;
}

/* السعر */
.sale-price {
  color: var(--main-color);
  font-size: 17px;
  font-weight: bold;
}
.regular-price {
  color: #aaa;
  text-decoration: line-through;
  font-size: 13px;
}

/* زر "اطلب" */
.s-button-btn.s-button-primary {
  background-color: var(--main-color) !important;
  border-radius: 12px;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.s-button-btn.s-button-primary:hover {
  background-color: #3a9ea1 !important;
  transform: scale(1.04);
}

/* زر المفضلة */
.heart-next-add-button {
  transition: transform 0.3s ease, color 0.3s ease;
}
.heart-next-add-button:hover {
  transform: scale(1.1);
  color: var(--main-color);
}

/* حركة الظهور */
@keyframes fadeInCard {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* تحسين الهوامش والتباعد */
.product-entry__content {
  padding: 16px;
}
.flex.flex-col.gap-1 {
  gap: 6px;
}
.flex.flex-col.gap-3 {
  gap: 12px;
}
/*----------------*/
:root {
  --main-color: #44b0b3;
}
.s-block--categories.is-grid .swiper-wrapper .swiper-slide{
max-width:100% !important;
}
/* العنصر الكامل */
.swiper-slide.anime-item {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInSlide 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}
.swiper-slide.anime-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* الصورة */
.slide--cat-entry .item-img {
  display: block;
  aspect-ratio: 1 / 1;
  position: relative;
  background-color: #f9f9f9;
}
.slide--cat-entry .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.slide--cat-entry:hover .item-img img {
  transform: scale(1.05);
}
.is-horizontal .slide--cat-entry.has-image{

border-radius: 16px !important;
}

.is-horizontal .slide--cat-entry.has-image {
     background: none !important; 
}

/* المحتوى */
.item-content {
  padding: 12px 24px !important;
  text-align: center;
}

/* العنوان */
.item-content h2 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: #333;
  transition: color 0.3s ease;
}
.slide--cat-entry:hover h2 {
  color: var(--main-color);
}

/* النص الصغير */
.item-content small {
  display: block;
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

/* حركة دخول */
@keyframes fadeInSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (min-width: 1024px) {
    @media (min-width: 1280px) {
        .s-block--categories.is-horizontal [slot=items], .s-block--categories.is-horizontal .swiper-wrapper {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }
}



@media (min-width: 1024px) {
    @media (min-width: 1024px) {
        .s-block--categories.is-horizontal [slot=items], .s-block--categories.is-horizontal .swiper-wrapper {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }
}








/*----------*/
/* تحسين كامل للبطاقة */
.bg-gray-50\/50 {
  background-color: #ffffff !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 25px rgba(68, 176, 179, 0.25) !important;
  border: 2px solid #44b0b3 !important;
  transition: all 0.3s ease !important;
}

.bg-gray-50\/50:hover {
  box-shadow: 0 15px 35px rgba(68, 176, 179, 0.5) !important;
}

/* تحسين التقييم */
.bg-white.rounded-2xl {
  background-color: #f9fafb !important;
  border-radius: 9999px !important;
  padding: 4px 12px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
  color: #111827 !important;
}

/* نجمة التقييم */
.sicon-star2 {
  color: #facc15 !important;
  font-size: 16px !important;
}

/* تحسين نص التعليق */
blockquote p {
  color: #374151 !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  font-weight: 500 !important;
  text-align: center !important;
}

/* تحسين الفوتر */
figcaption {
  border-top: 1px solid #e5e7eb !important;
  padding: 16px 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

/* صورة المستخدم */
figcaption img {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
}

/* اسم وموقع المستخدم */
figcaption .text-sm,
figcaption .text-base,
figcaption .font-semibold {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
}

figcaption .text-xs {
  font-size: 13px !important;
  color: #6b7280 !important;
  opacity: 0.8 !important;
}

.store-footer__inner h3
,.store-footer__inner ul *
,.floating-contacts__icon
,.progress-wrap .active-progress *
{
color:#fff !important;
}