/* خلفية 80s نيون */
body {
  background: radial-gradient(circle at top, #1a0005 0%, #000 70%);
  color: #fff;
  font-family: 'Cairo', sans-serif;
  overflow-x: hidden;
}

/* تأثير دخان سفلي */
body::after {
  content: "";
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 250px;
  background: radial-gradient(ellipse at bottom, rgba(255,0,80,0.25), transparent);
  pointer-events: none;
}

/* عنوان القسم */
.section-title, h2 {
  color: #ff003c;
  text-shadow:
    0 0 5px #ff003c,
    0 0 15px #ff003c,
    0 0 30px #8a00ff;
  letter-spacing: 2px;
}

/* كرت المنتج */
.product-card {
  background: #140007;
  border: 1px solid #330010;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px #ff003c;
}

/* زر إضافة للسلة */
.btn-primary {
  background: linear-gradient(45deg,#ff003c,#8a00ff);
  border: none;
  border-radius: 12px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  box-shadow: 0 0 15px #ff003c;
}

/* السعر */
.price {
  color: #00ffcc;
  font-weight: bold;
}

/* لمبة متوفر */
.product-card[data-available="true"]::after {
  content: "🟢 متوفر";
  position: absolute;
  top: 10px;
  left: 10px;
  background: #000;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  color: #00ff88;
  box-shadow: 0 0 8px #00ff88;
}.neon-girl {
  position: fixed;
  right: 15px;
  bottom: 60px;
  width: 120px;
  height: 200px;
  background: linear-gradient(to bottom, #330000, #000);
  border-radius: 60px 60px 20px 20px;
  box-shadow: 0 0 40px #ff003c;
  opacity: 0.75;
}.price,
.product-price,
.s-product-card-price,
.s-product-card-price * {
  color: #ff2e63 !important;
  font-size: 19px !important;
  font-weight: bold !important;
  text-shadow: 0 0 6px rgba(255,0,60,0.4);
}/* شخصية ظل خفيفة بالخلفية */
body::before {
  content: "";
  position: fixed;
  right: -30px;
  bottom: -20px;
  width: 180px;
  height: 260px;
  background: radial-gradient(circle at center, rgba(255,0,60,0.25), transparent 70%);
  border-radius: 100px 100px 40px 40px;
  filter: blur(30px);
  opacity: 0.6;
  z-index: -1; /* مهم جداً */
}