/* خلفية الموقع – هادئة ومريحة (أبيض مزرق فاتح جداً) */
body {
  background-color: #e9f0ff;
  font-family: 'Cairo', sans-serif;
  color: #2c2c2c;
  margin: 0;
  padding: 0;
}

/* الهيدر – أزرق غامق أكثر مع ظل خفيف */
.header, .site-header {
  background-color: #0056b8;
  color: white;
  padding: 25px 0;
  text-align: center;
  border-bottom: 4px solid #003d7a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 1.3rem;
  letter-spacing: 1.1px;
}

/* روابط الموقع – أزرق مشرق مع تحريك ناعم */
a {
  color: #004494;
  text-decoration: none;
  transition: color 0.4s ease;
}

a:hover {
  color: #002d6b;
  text-decoration: underline;
}

/* أزرار الشراء – برتقالي دافئ مع ظل وخفة */
.button, .btn, button {
  background-color: #ff8500;
  color: white;
  border: none;
  border-radius: 14px;
  padding: 14px 26px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 12px rgba(255, 133, 0, 0.45);
  font-size: 1rem;
}

.button:hover, .btn:hover, button:hover {
  background-color: #cc6a00;
  box-shadow: 0 6px 20px rgba(204, 106, 0, 0.6);
}

/* بطاقات المنتجات – ظل أكبر مع حواف مستديرة */
.product-card, .product {
  background-color: #ffffff;
  border: 1px solid #d9e2ff;
  border-radius: 20px;
  padding: 20px;
  transition: box-shadow 0.4s ease, transform 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 86, 184, 0.1);
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 86, 184, 0.2);
  transform: translateY(-8px);
}

/* السعر المخفّض – أحمر ناري مع حجم أكبر */
.product-price-discount {
  color: #d80000;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.6px;
}

/* السعر الأصلي – رمادي غامق مع خط مشطوب أنيق */
.product-price-original {
  color: #777;
  text-decoration: line-through;
  font-size: 15px;
  margin-left: 10px;
}

/* الفوتر – أزرق غامق مع تباين أعلى */
.footer {
  background-color: #003d7a;
  color: white;
  padding: 30px 0;
  text-align: center;
  border-top: 5px solid #00265c;
  font-size: 0.9rem;
  letter-spacing: 0.9px;
}