/* الخلفية العامة */ 
body {
  background: linear-gradient(to bottom, #e0f7fa, #ffffff);
  font-family: 'Tajawal', sans-serif;
  transition: background 0.3s ease;
}

/* الهيدر */
.header {
  background-color: #0077b6 !important;
}

.header .logo img {
  max-height: 60px;
}

.header .nav-link,
.header .nav-link:hover {
  color: #ffffff !important;
  font-weight: bold;
}

/* تأثير دخول المنتج */
.product-card {
  animation: fadeInUp 0.8s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* عناوين المنتجات */
.product-title {
  font-size: 18px;
  font-weight: bold;
  color: #023e8a;
}

/* أزرار المتجر */
.btn, .btn-primary, .add-to-cart {
  background-color: #0096c7 !important;
  border: none !important;
  color: white !important;
  font-weight: bold;
  border-radius: 6px;
  padding: 10px 20px;
}

.btn:hover {
  background-color: #023e8a !important;
}

/* الفوتر */
.footer {
  background-color: #0077b6;
  color: white;
}

.footer a {
  color: #ffffff !important;
}

/* زر واتساب عائم */
#whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
  animation: pulse 3s infinite;
}

#whatsapp-chat svg {
  width: 30px;
  height: 30px;
  fill: white;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ✅ قسم المميزات */
.features-section {
  background: #e3f2fd;
  padding: 40px 20px;
  text-align: center;
}

.features-section h2 {
  color: #0077b6;
  margin-bottom: 20px;
  font-size: 24px;
}

.features-section .feature {
  margin-bottom: 20px;
  font-size: 18px;
  color: #023e8a;
}