/* Add custom CSS styles below */ 
custom-products-slider {
  min-height: 300px;
}
.section-heading-subtitle {
  margin-bottom: 0px;
}
/*.enhanced-products-slider {
  min-height: 80vh;
}*/










/* ========================================= */
/* SMART CLICK - FINAL REALISTIC GOLD SPACE */
/* ========================================= */

html, body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  background: #07101d !important;
}

/* الخلفية */
body {
  position: relative;
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 215, 120, 0.07), transparent 18%),
    radial-gradient(circle at 80% 15%, rgba(255, 215, 120, 0.05), transparent 20%),
    radial-gradient(circle at 55% 75%, rgba(255, 215, 120, 0.04), transparent 22%),
    linear-gradient(180deg, #05070d 0%, #02040a 60%, #000000 100%) !important;
}

/* نخلي الثيم شفاف */
main, section, footer, header,
.s-block, .s-block-container,
.section, .container,
.main-content, .app-inner, .content-wrapper {
  background: transparent !important;
  position: relative;
  z-index: 2;
}

/* ========================================= */
/* ⭐ النجوم */
/* ========================================= */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background-image:
    radial-gradient(2px 2px at 10% 20%, #ffd87a, transparent),
    radial-gradient(1.5px 1.5px at 30% 70%, #ffe7a3, transparent),
    radial-gradient(2px 2px at 50% 40%, #ffd87a, transparent),
    radial-gradient(1px 1px at 70% 80%, #ffe7a3, transparent),
    radial-gradient(2px 2px at 90% 30%, #ffd87a, transparent),
    radial-gradient(1.2px 1.2px at 20% 50%, #ffe7a3, transparent),
    radial-gradient(1.5px 1.5px at 60% 10%, #ffd87a, transparent),
    radial-gradient(1px 1px at 80% 60%, #ffe7a3, transparent);

  background-size: 180px 180px;
  animation: starsMove 30s linear infinite,
             starsTwinkle 3s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;

  background-image:
    radial-gradient(1px 1px at 15% 30%, #ffd87a, transparent),
    radial-gradient(1px 1px at 40% 60%, #ffe7a3, transparent),
    radial-gradient(1px 1px at 65% 20%, #ffd87a, transparent),
    radial-gradient(1px 1px at 85% 75%, #ffe7a3, transparent),
    radial-gradient(1px 1px at 25% 80%, #ffd87a, transparent),
    radial-gradient(1px 1px at 75% 45%, #ffe7a3, transparent);

  background-size: 120px 120px;
  animation: starsMove 50s linear infinite reverse,
             starsTwinkle 5s ease-in-out infinite alternate;
}

@keyframes starsMove {
  from { transform: translateY(0); }
  to   { transform: translateY(-200px); }
}

@keyframes starsTwinkle {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

/* ========================================= */
/* ☄️ شهب واقعية (بدون خطوط مزعجة) */
/* ========================================= */

/* الشهاب 1 */
html::before {
  content: "";
  position: fixed;
  top: -10%;
  left: 110%;
  width: 220px;
  height: 3px;
  pointer-events: none;
  z-index: 1;
  transform: rotate(145deg);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,215,120,0.2),
    rgba(255,230,170,0.7),
    #ffffff
  );

  border-radius: 100px;
  box-shadow:
    0 0 10px rgba(255,215,120,0.3),
    120px 0 8px 2px rgba(255,255,255,0.8);

  animation: meteor1 5s linear infinite;
}

/* الشهاب 2 */
html::after {
  content: "";
  position: fixed;
  top: -20%;
  left: 120%;
  width: 180px;
  height: 2px;
  pointer-events: none;
  z-index: 1;
  transform: rotate(145deg);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,215,120,0.2),
    rgba(255,230,170,0.6),
    #ffffff
  );

  border-radius: 100px;
  box-shadow:
    0 0 8px rgba(255,215,120,0.3),
    100px 0 6px 2px rgba(255,255,255,0.7);

  animation: meteor2 7s linear infinite;
}

/* حركة الشهب */
@keyframes meteor1 {
  0% { top: -10%; left: 110%; opacity: 0; }
  10% { opacity: 1; }
  50% { top: 40%; left: 40%; }
  100% { top: 100%; left: -20%; opacity: 0; }
}

@keyframes meteor2 {
  0%, 40% { top: -20%; left: 120%; opacity: 0; }
  50% { opacity: 1; }
  80% { top: 50%; left: 30%; }
  100% { top: 100%; left: -10%; opacity: 0; }
}