/* خلفية متدرجة للبنر */
.hero-section {
  background: linear-gradient(to right, #cbb4e3, #a88ad8);
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* عنوان البانر */
.hero-section h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* وصف البانر */
.hero-section p {
  font-size: 16px;
  color: #f5f5f5;
}

/* الأيقونات الدائرية */
.category-icons {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 20px 0;
}

.category-icons .icon {
  background-color: #f3f0fa;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #6b4dbf;
  font-size: 13px;
  text-align: center;
  margin: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* زر واتساب */
.whatsapp-button {
  position: fixed;
  bottom: 80px;
  left: 15px;
  background-color: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 999;
}

.whatsapp-button::before {
  content: '📞 ';
}

/* زر الهدايا */
.gift-button {
  position: fixed;
  bottom: 20px;
  right: 15px;
  background-color: #7b52b9;
  color: white;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 999;
}

/* تكبير صورة المنتج وإضافة ظل بسيط */
.product-card img {
    max-height: 320px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}
.product-card img:hover {
    transform: scale(1.05);
}

/* تعديل اسم المنتج */
.product-card .product-title {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    text-align: center;
    margin-top: 10px;
}

/* تعديل السعر */
.product-card .product-price {
    font-size: 16px;
    color: #d43f3f; /* أحمر جذاب */
    font-weight: bold;
    text-align: center;
}

/* زر إضافة للسلة */
.product-card .add-to-cart-btn {
    background-color: #222; 
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    display: block;
    margin: 12px auto 0;
    transition: background-color 0.3s ease;
}
.product-card .add-to-cart-btn:hover {
    background-color: #d43f3f;
}