/* إعداد عام */
body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  background: #f2f6fa;
  color: #111;
  direction: rtl;
}
a { text-decoration: none; color: inherit; }

/* ====== Header ====== */
.main-header {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo {
  font-size: 26px;
  font-weight: 700;
}
.nav-links a {
  margin: 0 12px;
  color: #333;
  font-weight: 500;
  transition: color .3s;
}
.nav-links a:hover { color: #0056b3; }
.cart-icon {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ====== Hero ====== */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #dce3ed;
  padding: 60px 80px;
  flex-wrap: wrap;
}
.hero-text {
  max-width: 480px;
}
.hero-text h1 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 30px;
}
.btn-primary {
  background: #0d2c54;
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: background .3s;
}
.btn-primary:hover { background: #113b70; }
.hero-img img {
  width: 400px;
  border-radius: 10px;
}

/* ====== Products ====== */
.products-section {
  padding: 60px 80px;
  background: #fff;
}
.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.product-card {
  position: relative;
  text-align: center;
  background: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.product-card h3 {
  font-size: 18px;
  margin: 10px 0;
}
.price-box {
  margin-bottom: 20px;
}
.new-price {
  color: #0d2c54;
  font-weight: bold;
  font-size: 18px;
}
.old-price {
  color: #777;
  text-decoration: line-through;
  margin-left: 10px;
  font-size: 15px;
}
.badge-sale {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #0d2c54;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 4px;
}

/* ====== Footer ====== */
.main-footer {
  background: #152238;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 40px;
  padding: 60px 80px;
}
.main-footer h3 {
  margin-bottom: 15px;
  font-size: 18px;
}
.main-footer a {
  display: block;
  color: #cbd5e1;
  margin-bottom: 6px;
  font-size: 14px;
}
.main-footer a:hover { color: #fff; }
.footer-about p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.7;
}

/* ====== Responsive ====== */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-img img { width: 300px; margin-top: 20px; }
  .main-header { padding: 15px 25px; }
  .products-section { padding: 40px 25px; }
  .main-footer { padding: 40px 25px; }
}
