/* زر إضافة للسلة (جميع الاحتمالات) */

/* الكرت كامل */
.s-product-card {
  border-radius: 16px !important;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  padding-bottom: 10px;
}

/* تأثير عند المرور */
.s-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* صورة المنتج */
.s-product-card-image img {
  border-radius: 16px 16px 0 0;
  height: 220px;
  object-fit: cover;
}

/* عنوان المنتج */
.s-product-card-name {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  padding: 8px 12px;
  min-height: 45px; /* توحيد الارتفاع */
}

/* السعر */
.s-product-card-price {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  padding: 0 12px;
}

/* السعر قبل الخصم */
.s-product-card-regular-price {
  font-size: 13px;
  color: #888 !important;
  text-decoration: line-through;
}

/* نسبة الخصم */
.s-product-card-discount {
  color: #c9a227;
  font-weight: bold;
  padding: 0 12px;
}

/* زر إضافة للسلة */
.s-product-card .s-button-primary {
  background: #000 !important;
  color: #fff !important;
  border-radius: 10px;
  margin: 10px 12px 0;
  width: calc(100% - 24px);
  font-weight: 600;
}

/* عند المرور على الزر */
.s-product-card .s-button-primary:hover {
  background: #333 !important;
}

/* ترتيب العناصر */
.s-product-card-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

















 /* استيراد الخط */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

/* تطبيق الخط على الموقع كامل */
html, body, 
body *, 
h1, h2, h3, h4, h5, h6,
p, span, a, button, input, textarea, select {
  font-family: 'Cairo', sans-serif !important;
}

/* تحسين سماكة العناوين */
h1, h2, h3, h4 {
  font-weight: 700 !important;
}

/* تحسين النصوص */
p, span, a {
  font-weight: 400;
}

/* الأزرار */
button, .btn {
  font-family: 'Cairo', sans-serif !important;
  font-weight: 600;
}



button,
.btn,
.s-button,
button[type="submit"],
button.add-to-cart,
.btn-add-to-cart {
  border-radius: 10px !important;
}

/* زر إضافة للسلة أسود */
button.add-to-cart,
.s-button-primary,
.btn-primary,
button[type="submit"] {
  background: #000 !important;
  color: #fff !important;
  border: none !important;
}

/* عند المرور */
button.add-to-cart:hover,
.s-button-primary:hover,
.btn-primary:hover {
  background: #333 !important;
}

/* تحسين بطاقة المنتج */
.s-product-card,
.product,
.product-card {
  border-radius: 16px !important;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid #eee;
}

.s-product-card:hover,
.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* السعر */
.s-product-card-price,
.price {
  font-weight: bold;
  color: #000;
}

/* الخصم */
.price_is_discount,
.s-product-card-sale-price {
  color: #c9a227 !important;
  font-weight: bold;
}