/* Add custom CSS styles below */ 
.header-inner{
 background-color: #E6FAF8 !important;
}
*{
color:#145B65 !important;
}
/* بطاقة المنتج */
custom-salla-product-card {
  background-color: #E6FAF8 !important;
  border: 1px solid #A0DDD8 !important;
  color: #145B65 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

/* حركة عند مرور المؤشر */
custom-salla-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(32, 186, 168, 0.2);
}

/* محتوى البطاقة */
custom-salla-product-card .s-product-card-content {
  color: #145B65 !important;
}

/* الروابط */
custom-salla-product-card a {
  color: #20BAA8 !important;
  text-decoration: none;
}

/* العناوين */
custom-salla-product-card h3,
custom-salla-product-card .s-product-card-content-main {
  color: #145B65 !important;
}

/* زر داخل البطاقة (مثلاً: أضف للسلة أو التفاصيل) */
custom-salla-product-card .s-product-card-content-footer .btn {
  background-color: #20BAA8 !important;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

custom-salla-product-card .s-product-card-content-footer .btn:hover {
  background-color: #145B65 !important;
  transform: scale(1.05);
  cursor: pointer;
}

/* زر السلة (الزر الرئيسي من الكود اللي أرسلته) */
button.s-button-element.s-button-btn {
  background: linear-gradient(135deg, #20BAA8, #A0DDD8);
  color: #ffffff !important;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  box-shadow: 0 4px 12px rgba(32, 186, 168, 0.2);
  transition: all 0.3s ease;
}

/* حركة عند الهوفر */
button.s-button-element.s-button-btn:hover {
  background: linear-gradient(135deg, #145B65, #20BAA8);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(20, 91, 101, 0.3);
  cursor: pointer;
}

footer.store-footer > div:first-child {
  background-color: unset !important; /* نحذف الخلفية القديمة أولاً */
  background-color: #E6FAF8 !important; /* نعيّن لون جديد يدويًا */
  border-radius: 20px !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px !important;
  max-width: 95% !important;
  margin: 40px auto !important;
  transition: all 0.3s ease-in-out;
}

footer.store-footer {
  background-color: transparent !important;
}


/* الهوفر */
footer.store-footer > div:first-child:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}