/* شريط ترويجي علوي */
#promo-banner {
  background-color: #EFE8DC;
  color: #3A2C1B;
  font-weight: bold;
  font-family: 'Tajawal', sans-serif;
  font-size: 14px;
  text-align: center;
  padding: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 999;
  position: relative;
}

/* بطاقة المنتج */
.product-card {
  background-color: #F9F6F1;
  border: 1px solid #CFA15F;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* صورة المنتج */
.product-card .product-image {
  aspect-ratio: 11 / 16;
  object-fit: cover;
  width: 100%;
}

/* عنوان ترويجي داخل البطاقة */
.product-card .promo-title {
  background-color: #EFE8DC;
  color: #3A2C1B;
  font-weight: bold;
  padding: 6px 10px;
  font-family: 'Tajawal', sans-serif;
  text-align: center;
}

/* زر أضف للسلة */
.add-to-cart {
  background-color: #CFA15F !important;
  color: white !important;
  font-weight: 600;
  border-radius: 5px;
  font-family: 'Tajawal', sans-serif;
  font-size: 14px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.12);
}

.add-to-cart::before {
  content: "+";
  font-size: 16px;
}

.add-to-cart:hover {
  background-color: #A6764E !important;
  transform: scale(1.03);
}

/* إشعار عائم */
#cart-toast {
  position: fixed;
  top: 80px;
  right: 20px;
  background-color: #CFA15F;
  color: white;
  font-family: 'Tajawal', sans-serif;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  opacity: 0;
  z-index: 1000;
  transition: opacity 0.4s ease;
}