/* Add custom CSS styles below */ 
/* شاشة البداية */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-image: url(https://basic-settings.apps.salla.sa/_next/image?url=https%3A%2F%2Fcdn.salla.sa%2FPjnOn%2Fk0jokFpELMLqzXAe7rVZYszoJG8R1y6XFznslqnO.png&w=128&q=75););
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 200px;
  z-index: 9999;
  animation: fadeOut 0.5s ease-in-out 1s forwards;
}

@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}
.s-product-card-overlay {
  display: none !important;
}
.s-product-card .s-product-card-image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.s-product-card:hover .s-product-card-image img:nth-child(2) {
  opacity: 1;
}

.s-product-card .s-product-card-image {
  position: relative;
}