/* Add custom CSS styles below */ 
/* حاوية الأيقونات */
.product-single-top-description .salla-icons-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 12px;
}

/* كل أيقونة */
.product-single-top-description .salla-icons-item{
  flex: 1 1 0;
  max-width: 200px;      /* صغّر/كبّر حسب اللي يناسب التصميم */
}

/* الصورة نفسها */
.product-single-top-description .salla-icons-item img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* موبايل: لو المساحة ضيقة خلّيهم ينزلوا سطر تاني */
@media (max-width: 420px){
  .product-single-top-description .salla-icons-row{
    justify-content: center;
    flex-wrap: wrap;
  }
  .product-single-top-description .salla-icons-item{
    max-width: 72px;
  }
}


/* إلغاء الشفافية من الخلفية الرئيسية */
.special-cats-with-bg .absolute.inset-0.bg-gray-900 {
    display: none !important;
}

/* إلغاء الشفافية من صور الأقسام (Gradient) */
.special-cats-with-bg .bg-gradient-to-b {
    opacity: 0.3 !important;
}

/* موبايل - تقليل الارتفاع السالب */
.special-cats-with-bg section[aria-labelledby="collection-heading"] {
    margin-top: -10rem !important;
}

/* تابلت وما فوق */
@media (min-width: 640px) {
    .special-cats-with-bg section[aria-labelledby="collection-heading"] {
        margin-top: 3rem !important;
    }
}

/* لاب توب */
@media (min-width: 1024px) {
    .special-cats-with-bg section[aria-labelledby="collection-heading"] {
        margin-top: 4rem !important;
    }
}

/* شاشات كبيرة */
@media (min-width: 1440px) {
    .special-cats-with-bg section[aria-labelledby="collection-heading"] {
        margin-top: 5rem !important;
    }
}

/* تقليل المساحة الفارغة تحت الصورة - موبايل */
.special-cats-with-bg .h-48 {
    height: 10rem !important;
}

/* تقليل المساحة الفارغة - تابلت */
@media (min-width: 768px) {
    .special-cats-with-bg .md\:h-40 {
        height: 10rem !important;
    }
}

/* تقليل المساحة الفارغة - ديسكتوب */
@media (min-width: 1024px) {
    .special-cats-with-bg .lg\:h-48 {
        height: 12rem !important;
    }
}