.vertical-lines {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, transparent, #eac707, transparent);
}
.vertical-lines::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, #3a006d, transparent);
  animation: laser 2s linear infinite;
}
@keyframes laser {
  0% { left: -50%; }
  100% { left: 100%; }
}

.divider-title h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #f1d101;
  animation: glow 2s ease-in-out infinite;
}

.divider-url {
  margin-top: 15px;
  padding: 12px 28px;
  border-radius: 10px;
  background-size: 300% 300%;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  animation: shineBg 3s linear infinite;
  transition: transform 0.3s;
}
.divider-url:hover {
  transform: scale(1.1);
}



.s-product-card-image-contain.lazy__bg.lazy_img.lazy.loaded {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.s-product-card-image-contain.lazy__bg.lazy_img.lazy.loaded:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px #3b009d;
  border-radius: 10px; 
}








.header-container.container {
  background: linear-gradient(90deg, #1c0542, #30175e);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff; /* يخلي النصوص واضحة */
}