/* Add custom CSS styles below */ 
/* ============================================
   خلفية متوهجة بتدرجات بنفسجي/بينك - جاهزة للاستخدام في سلة
   ضيفي هذا الكود في: لوحة التحكم > المتجر الإلكتروني > تخصيص المتجر > CSS مخصص
   ============================================ */

:root {
  --purple-glow: #9B1657;
  --purple-glow-light: #C21E6B;
  --pink: #F4A6C6;
  --bg-dark: #0a0308;
}

.hero-glow-bg {
  position: relative;
  background-color: var(--bg-dark);
  overflow: hidden;
  min-height: 500px;
}

/* الوهج الرئيسي في الأعلى - بنفسجي/ماجنتا غامق */
.hero-glow-bg::before {
  content: "";
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 450px;
  background: radial-gradient(
    ellipse at center,
    var(--purple-glow-light) 0%,
    var(--purple-glow) 35%,
    rgba(155, 22, 87, 0.15) 60%,
    transparent 75%
  );
  filter: blur(65px);
  opacity: 0.85;
  pointer-events: none;
}

/* توهج بينك خفيف يدي عمق للتدرج */
.hero-glow-bg::after {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(
    ellipse at center,
    var(--pink) 0%,
    rgba(244, 166, 198, 0.25) 40%,
    transparent 70%
  );
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}

/* نقطتين الإضاءة الصغيرة أعلى الشكل */
.glow-dot {
  position: absolute;
  top: 25px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  z-index: 3;
}

.glow-dot.pink {
  left: 38%;
  background: var(--pink);
  box-shadow: 0 0 18px 5px var(--pink);
}

.glow-dot.purple {
  left: 62%;
  background: var(--purple-glow-light);
  box-shadow: 0 0 18px 5px var(--purple-glow-light);
}

/* خط منحني بسيط أسفل النقط (اختياري) */
.hero-glow-bg .curve-line {
  position: absolute;
  top: 33px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 4px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    var(--purple-glow) 0%,
    var(--pink) 100%
  );
  opacity: 0.6;
  z-index: 2;
}

.hero-glow-bg > .content {
  position: relative;
  z-index: 4;
}