/* 🌤 خلفية بسيطة وأنيقة */
body {
  background: linear-gradient(180deg, #F8FBFF 0%, #EAF6FF 100%);
  color: #222;
  font-family: 'Cairo', sans-serif;
}


/* 🩵 الأزرار */
.btn, button, .add-to-cart {
  background: linear-gradient(90deg, #26C0FF 0%, #1180B8 100%);
  color: #fff !important;
  border: none !important;
  border-radius: 8px;
  transition: 0.3s ease-in-out;
}

.btn:hover, button:hover, .add-to-cart:hover {
  opacity: 0.9;
  transform: scale(1.03);
}
/* 🎯 فوتر أنيق باللون الأزرق الرمادي */
footer, .footer {
  background-color: #1F3B4A !important;
  color: #f5f7fa !important; /* لون النصوص */
  padding: 25px 0;
}

/* 🔗 تنسيق الروابط داخل الفوتر */
footer a, .footer a {
  color: #cfe8f3 !important;
  transition: 0.3s ease-in-out;
}

footer a:hover, .footer a:focus {
  color: #26C0FF !important; /* لون تفاعلي عند المرور */
  text-decoration: none;
}

/* 🧱 تحسين المسافات والهيكل */
footer .container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}