/* تصميم الخلفية للموقع */
body {
  background-color: #1f1f1f; /* خلفية داكنة تضفي طابع فخم */
  color: #f4f4f4; /* النص باللون الفاتح ليكون سهل القراءة */
  font-family: 'Georgia', serif; /* خط فاخر يناسب الفخامة */
}

/* تصميم النصوص الرئيسية */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: bold;
  color: #f2c12e; /* لون ذهبي يبرز الفخامة */
  text-transform: uppercase;
}

/* أزرار الإضافة إلى السلة */
button {
  background-color: #f2c12e; /* ذهبي */
  color: #1f1f1f; /* نص داكن يتناسب مع الخلفية */
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
  background-color: #d8a300; /* لون ذهبي داكن عند المرور بالماوس */
  transform: scale(1.05); /* تأثير تكبير الأزرار عند التمرير */
}

/* تصميم الصور داخل الصفحات */
.product-image {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5); /* إضافة تأثير الظل عند التمرير */
}

/* تنسيق مربع المنتج */
.product-card {
  background-color: #2a2a2a; /* مربع داكن يناسب المنتجات الغالية */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7); /* تأثير تكبير وزيادة الظل عند التمرير */
}

/* تصميم النصوص داخل المنتج */
.product-card h2 {
  color: #f2c12e; /* ذهبي للنصوص */
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  margin-top: 15px;
}

/* تصميم الأسعار */
.price {
  font-size: 18px;
  color: #f2c12e; /* لون ذهبي */
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}

/* تنسيق شريط الإشعار */
.notification-bar {
  background-color: #1f1f1f; /* خلفية داكنة */
  color: #f2c12e; /* لون نص ذهبي */
  text-align: center;
  padding: 10px 0;
  font-size: 18px;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
}

.notification-bar a {
  color: #f2c12e; /* رابط باللون الذهبي */
  text-decoration: none;
}

.notification-bar a:hover {
  text-decoration: underline;
}