/* ===== قسم Hot Picks ===== */
.highlight-products {
  padding: 60px 20px;
  background: #fde0e0;
  border-radius: 20px;
  margin: 40px 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.highlight-header {
  text-align: center;
  margin-bottom: 40px;
}

.highlight-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #333;
  margin-bottom: 10px;
}

.highlight-header p {
  font-size: 16px;
  color: #666;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.highlight-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.highlight-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.highlight-info {
  padding: 15px;
}

.highlight-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.highlight-info .price {
  font-weight: bold;
  color: #ff4d6d;
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.highlight-info .buy-now {
  padding: 10px 20px;
  background: #ff4d6d;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.highlight-info .buy-now:hover {
  background: #e04361;
  transform: scale(1.05);
}


/* ===== قسم Store Benefits ===== */
.store-benefits-advanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 60px;
}

.benefit-card {
  padding: 25px;
  border-radius: 15px;
  color: #fff;
  text-align: center;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.benefit-card i {
  font-size: 32px;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* ألوان */
.bg-pink { background: #ff4d6d; }
.bg-yellow { background: #ffc107; }
.bg-green { background: #28a745; }
.bg-blue { background: #007bff; }

.benefit-card:hover {
  transform: translateY(-8px);
}
