/* Add custom CSS styles below */.sales-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border: 2px solid #BE4431;
  border-radius: 15px;
  padding: 20px;
  max-width: 360px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateX(400px);
  transition: all 0.5s ease;
  font-family: 'Arial', sans-serif;
  z-index: 9999;
}

.sales-popup .icon {
  width: 50px;
  height: 50px;
  background: #BE4431;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

.sales-popup .status {
  background: #fff5f5;
  color: #BE4431;
  padding: 10px;
  border: 1px solid #fcd5ce;
  border-radius: 8px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  margin-top: 12px;
}
/* Add custom CSS styles below */ 
/* ✅ تحسين التقييمات */
.product-reviews .review-card {
  transition: box-shadow 0.3s ease;
}
.product-reviews .review-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}
.product-reviews .verified-badge {
  background: #059669;
  color: #fff;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: bold;
  display: inline-block;
}
.product-reviews .review-stars span {
  font-size: 20px;
  color: #fbbf24;
}

/* ✅ هيدر السكشن */
.faq-section h2,
.testimonials-section h2 {
  background: linear-gradient(to right, #10b981, #059669);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  animation: fadeInDown 0.8s ease forwards;
}

/* ✅ تحسين السؤال */
.faq-item {
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item:hover {
  background: #fefce8;
  border-color: #facc15;
}
.faq-item .icon {
  background: #1f2937;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
}

/* ✅ تحسين بطاقات التقييم */
.testimonial-card {
  background: #f3f4f6;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease forwards;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}
.testimonial-card .name {
  font-weight: bold;
  color: #1f2937;
  font-size: 16px;
}
.testimonial-card .stars {
  color: #f59e0b;
  margin: 5px 0;
}

/* ✅ أنيميشن عند ظهور العنصر */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.verified-badge {
  background: #BE4431;
  color: white;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  margin-right: 10px;
}

.review-stars span {
  font-size: 18px;
  color: #BE4431;
}