/* Add custom CSS styles below *//* === Alfaisal For Honey — Raed Theme Premium CSS === */

/* 1) استدعاء الخط */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap');

/* 2) القيم العامة */
body {
  font-family: 'Tajawal', sans-serif !important;
  background-color: #ffffff !important;
  color: #111 !important;
}

/* 3) الهيدر */
header, .site-header, .header {
  background-color: #fff !important;
  border-bottom: 2px solid #ecb81e !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}
header .navbar a, .header .navbar a {
  color: #111 !important;
  font-weight: 700 !important;
  transition: color 0.3s ease;
}
header .navbar a:hover {
  color: #ecb81e !important;
}

/* 4) الأزرار */
button, .btn, .s-button, .add-to-cart {
  background-color: #ecb81e !important;
  color: #000 !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  padding: 12px 18px !important;
  transition: all 0.3s ease;
  border: none !important;
}
button:hover, .btn:hover, .s-button:hover, .add-to-cart:hover {
  background-color: #ecb81e!important;
  transform: scale(1.04);
}

/* 5) عناوين الصفحات والأقسام */
h1, h2, h3, .page-title, .section-title {
  font-family: 'Tajawal', sans-serif !important;
  font-weight: 800 !important;
  color: #111 !important;
  position: relative;
}
h1:after, h2:after, .section-title:after {
  content: "";
  display: block;
  width: 60px;
  height: 5px;
  margin-top: 8px;
  background: linear-gradient(90deg,#ecb81e,#d89a00);
  border-radius: 3px;
}

/* 6) بطاقات المنتجات */
.product-card, .card {
  background: #fff !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
  transition: all 0.3s ease;
  border: 1px solid #eee !important;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.product-card .product-title {
  font-weight: 700 !important;
  font-size: 16px !important;
  color: #111 !important;
}
.product-card .product-price {
  color: #ecb81e !important;
  font-weight: 800 !important;
  font-size: 18px !important;
}

/* 7) الفوتر */
.footer, .site-footer {
  background-color: #111 !important;
  padding: 30px 0;
  color: #fff !important;
}
.footer a {
  color: #fff !important;
  transition: color 0.3s ease;
}
.footer a:hover {
  color: #ecb81e !important;
}

/* 8) شارة الخصم */
.badge, .discount-badge {
  background:#ecb81e !important;
  color: #000 !important;
  font-weight: 700 !important;
  border-radius: 30px !important;
  padding: 4px 10px !important;
  font-size: 13px !important;
}

/* 9) تنسيق الحقول */
input, select, textarea {
  border-radius: 10px !important;
  border: 1px solid #ddd !important;
  padding: 10px 14px !important;
}
input:focus, select:focus, textarea:focus {
  border-color: #ecb81e !important;
  box-shadow: 0 0 5px rgba(247,181,0,0.3) !important;
}