/* فونت پایه و پس‌زمینه نرم */
body {
  font-family: 'Vazirmatn', sans-serif;
  background: linear-gradient(to bottom, #fff8f0, #ffffff);
}

/* انیمیشن بالا آمدن متن */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-text {
  animation: fadeInUp 1s ease-out forwards;
}

/* دکمه Glow */
.btn-glow {
  position: relative;
  overflow: hidden; 
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.btn-glow::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: all 0.6s ease-out;
}

.btn-glow:hover::after {
  left: 100%;
}

.btn-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.55);
}

/* حذف اسکرول‌بار */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ---------------------------- */
/* 🎯 استایل جدید بخش شگفت‌انگیز */
/* ---------------------------- */

.amazing-section {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.25);
  position: relative;
  overflow: hidden;
}

/* خطوط نئونی پس‌زمینه */
.amazing-section::before {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  top: -40%;
  left: -40%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  transform: rotate(25deg);
}

/* دکمه‌های اسلایدر */
.slider-btn {
  width: 42px;
  height: 42px;
  background: white;
  color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.slider-btn:hover {
  transform: scale(1.15);
  background: #ffecec;
}

/* کارت محصول */
.product-card {
  display: inline-block;
  width: 230px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  cursor: pointer;
  transform: translateY(0);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* عکس محصول */
.product-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.07);
}

/* متن عنوان */
.product-title {
  font-size: 14px;
  font-weight: 600;
  height: 48px;
  overflow: hidden;
  line-height: 1.6;
  color: #333;
}

/* درصد تخفیف */
.discount-badge {
  background: #ef4444;
  color: white;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 12px;
}

/* قیمت */
.price {
  font-size: 18px;
  font-weight: bold;
  color: #222;
}
.price small {
  font-size: 12px;
  opacity: 0.7;
}
