/* Add custom CSS styles below */ 
/* تحسين شكل المتجر العام */
body {
  font-family: inherit;
}

/* توحيد حواف الصور والبطاقات */
.product-card,
.s-product-card-entry,
.s-block,
.banner-entry {
  border-radius: 16px !important;
}

/* تحسين صور المنتجات */
.product-card img,
.s-product-card-image img {
  border-radius: 14px !important;
}

/* إبراز زر الشراء */
.s-button-primary,
button[type="submit"] {
  border-radius: 12px !important;
  font-weight: 700 !important;
}

/* تحسين عنوان المنتج */
.s-product-card-content-title,
.product-title {
  font-weight: 700 !important;
  line-height: 1.6 !important;
}

/* تحسين السعر */
.s-product-card-price,
.price-wrapper {
  font-weight: 800 !important;
}

/* تقليل الفراغات الزائدة في الجوال */
@media (max-width: 768px) {
  .container,
  .s-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .s-product-card-content-title {
    font-size: 14px !important;
  }
}

/* تحسين حدود البطاقات */
.s-product-card-entry {
  border: 1px solid #e6eefc !important;
  box-shadow: 0 4px 14px rgba(0, 64, 180, 0.06) !important;
}

/* عند تمرير الماوس */
.s-product-card-entry:hover {
  transform: translateY(-2px);
  transition: 0.25s ease;
  box-shadow: 0 8px 22px rgba(0, 64, 180, 0.12) !important;
}