body {
  background-color: #031018; /* خلفيتك */
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.9) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.8) 1.2px, transparent 1.2px),
    radial-gradient(circle, rgba(255,255,255,0.7) 0.8px, transparent 0.8px),
    radial-gradient(circle, rgba(255,255,255,0.6) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.5) 0.9px, transparent 0.9px),
    radial-gradient(circle, rgba(255,255,255,0.4) 0.7px, transparent 0.7px);
  
  background-size:
    280px 260px,
    420px 350px,
    310px 400px,
    500px 370px,
    450px 520px,
    380px 460px;

  background-position:
    12% 18%,
    73% 10%,
    40% 85%,
    15% 60%,
    80% 70%,
    55% 30%;

  background-repeat: repeat;
}/* حدد كل البنرات */
img {
    animation: bannerZoom 8s ease-in-out infinite;
    transition: 0.5s ease-in-out;
}



/* تأثير إضاءة لطيفة تمر على البنر */
img::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.15) 50%,
        rgba(255,255,255,0) 100%
    );
    animation: lightMove 6s infinite ease-in-out;
    pointer-events: none;
}

/* حركة الإضاءة من اليسار لليمين */
@keyframes lightMove {
    0% {
        left: -150%;
    }
    50% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}.banner img,
.section-banner img,
.hero-slider-item img {
    position: relative;
    display: block;
}
/* ===========================
   1) توهج جميل للنصوص الرئيسية
=========================== */
h1, h2, h3, .title, .section-title {
    color: #ffffff !important;
    text-shadow: 
        0 0 8px rgba(4, 166, 214, 0.55),
        0 0 18px rgba(4, 166, 214, 0.35);
    font-weight: 700 !important;
}

/* ===========================
   2) لمعة تتحرك خفيفة على النص
=========================== */
.glow-text {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.glow-text::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
    animation: shine 2.8s infinite;
}
@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* ===========================
  3) زر إضافة للسلة — شكل قوي مع توهج
=========================== */
button.add-to-cart,
.product-card button,
button.add_to_cart_button {
    background: linear-gradient(135deg, #044E70, #0A0F14) !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 12px 20px !important;
    font-weight: 700 !important;
    border: none !important;
    box-shadow: 0 0 12px rgba(4, 166, 214, 0.35);
    transition: 0.25s ease;
}
button.add-to-cart:hover,
button.add_to_cart_button:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 18px rgba(4, 166, 214, 0.65),
        0 0 28px rgba(4, 166, 214, 0.35);
}

/* ===========================
   4) هالة خفيفة حول بطاقات المنتجات
=========================== */
.product-card, 
.product-item,
.product {
    border-radius: 14px !important;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(4,166,214,0.12);
    transition: 0.25s;
}
.product-card:hover,
.product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(4,166,214,0.25);
}
.add-to-cart-btn {
  background: #01D4FF !important;
  color: #08060E !important;
  border-radius: 10px !important;
  box-shadow: 0 0 15px rgba(1,212,255,0.35);
  transition: .3s ease;
}

.add-to-cart-btn:hover {
  box-shadow: 0 0 25px rgba(1,212,255,0.55),
              0 0 40px rgba(1,212,255,0.25);
  transform: translateY(-2px);
}
.products .product-card:hover {
  box-shadow: 0 0 20px rgba(1,212,255,0.4),
              0 0 40px rgba(1,212,255,0.2);
  transform: translateY(-3px);
  transition: 0.3s ease;
}
.products .product-card {
  position: relative;
  overflow: visible;
}

.products .product-card::before {
  content: "";
  position: absolute;
  inset: -12px;
  background: radial-gradient(circle, rgba(1,212,255,0.45), transparent 70%);
  filter: blur(22px);
  border-radius: 18px;
  z-index: -1;
}
.add-to-cart {
  background: #01D4FF;
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  color: #08060E;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 12px rgba(1,212,255,0.35);
}

.add-to-cart:hover {
  box-shadow: 
    0 0 15px rgba(1,212,255,0.55),
    0 0 30px rgba(1,212,255,0.25);
  transform: translateY(-2px);
}