/* ===== قسم Electronics متناسق مع Product Grid ===== */
.electronics-section {
  padding: 60px 20px;
  border-radius: 20px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  background: #fde0e0;
  color: #333; /* نص رئيسي رمادي */
}

@keyframes electronicsGradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Banner */
.electronics-banner {
  text-align: center;
  margin-bottom: 50px;
}

.electronics-banner h2 {
  font-size: 38px;
  color: #333; /* نفس عنوان Product Grid */
  font-weight: 800;
  margin-bottom: 15px;
}

.electronics-banner p {
  font-size: 16px;
  color: #666; /* نفس النص الثانوي */
  margin-bottom: 30px;
}

.electronics-banner .shop-now {
  background: #ff4d6d; /* نفس لون Add-to-Cart */
  color: #fff;
  border: none;
  padding: 14px 35px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.electronics-banner .shop-now:hover {
  background: #e04361;
  transform: scale(1.05);
}

/* شبكة المنتجات */
.electronics-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* بطاقة المنتج */
.electronics-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
}

.electronics-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* صورة المنتج */
.electronics-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #dee2e6; /* رمادي فاتح */
  transition: transform 0.3s ease;
}

.electronics-card:hover img {
  transform: scale(1.05);
}

/* شارات المنتج */
.electronics-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

.electronics-card .badge.sale { background: #ff4d6d; } /* أحمر */
.electronics-card .badge.new { background: #28a745; } /* أخضر */

/* معلومات المنتج */
.electronics-card .product-info {
  padding: 15px;
}

.electronics-card .product-info h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
}

.electronics-card .product-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  min-height: 38px;
}

/* السعر */
.electronics-card .product-price {
  font-size: 16px;
  font-weight: bold;
  color: #ff4d6d; /* نفس لون Add-to-Cart */
  margin-bottom: 10px;
}

.electronics-card .product-price .old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 6px;
}

.electronics-card .product-price .new-price {
  color: #ff4d6d;
  font-weight: 700;
}

/* زر الإضافة إلى السلة */
.electronics-card .add-to-cart {
  margin-top: 8px;
  padding: 12px 20px;
  background: #ff4d6d; /* نفس لون Add-to-Cart */
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
}

.electronics-card .add-to-cart:hover {
  background: #e04361;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .electronics-banner h2 { font-size: 30px; }
  .electronics-banner p { font-size: 14px; }
  .electronics-products { grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 480px) {
  .electronics-products { grid-template-columns: 1fr; gap: 15px; }
  .electronics-card img { height: 180px; }
}
