/* Add custom CSS styles below */ 
/* خلفية الدوائر تغطي كامل المتجر */
body, .page {
  min-height: 100vh; /* يغطي كامل ارتفاع الصفحة */
  background: white;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(211, 160, 255, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(211, 160, 255, 0.3) 0%, transparent 35%),
    radial-gradient(circle at 30% 70%, rgba(211, 160, 255, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(211, 160, 255, 0.15) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(211, 160, 255, 0.1) 0%, transparent 60%);
  background-repeat: no-repeat;
  background-size: 100% 100%; /* تغطية كاملة */
  background-attachment: fixed; /* تثبيت الخلفية عند التمرير */
}
@font-face {
  font-family: "Qatar";
  src: url("/Qatar-Regular.woff2") format("woff2"); /* عدّل المسار إذا رفعت الخط */
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --counter-font: "Qatar", "Tajawal", "Noto Kufi Arabic", "Arial", sans-serif;
}

.s-features-counter {
  direction: rtl;
  font-family: var(--counter-font);
  padding: 28px 12px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.s-features-counter .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.s-features-counter__item {
  text-align: center;
  padding: 18px;
}

.s-features-counter__num {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 6px;
}

.s-features-counter__label {
  font-size: 14px;
  opacity: .9;
}

.s-features-counter__desc {
  font-size: 12px;
  opacity: .7;
}

@media (max-width: 768px) {
  .s-features-counter .grid { grid-template-columns: repeat(2, 1fr); }
  .s-features-counter__num { font-size: 28px; }
}
@media (max-width: 480px) {
  .s-features-counter .grid { grid-template-columns: 1fr; }
}

.about-store {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  font-family: 'Qatar', sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s ease;
}
.about-store.show {
  transform: translateY(0);
  opacity: 1;
}
.about-store h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #6b21a8;
  margin-bottom: 15px;
}
.about-store p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
}
#after-355943251 {
  background: 
    radial-gradient(circle at 20% 30%, rgba(211, 160, 255, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(211, 160, 255, 0.3) 0%, transparent 35%),
    radial-gradient(circle at 30% 70%, rgba(211, 160, 255, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(211, 160, 255, 0.15) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(211, 160, 255, 0.1) 0%, transparent 60%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed; /* يجعل الخلفية ثابتة مع المتجر */
  color: inherit; /* يحافظ على لون الكتابة */
}
/* توهج بنفسجي على كل صور البطاقات */
.s-products-slider-card .s-product-card-image img {
  position: relative;
  z-index: 1;
  border-radius: 10px; /* حواف مستديرة إذا تحب */
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(138,43,226,0.6); /* توهج ابتدائي */
  animation: purpleGlow 2s infinite alternate;
}

@keyframes purpleGlow {
  0% {
    box-shadow: 0 0 5px rgba(138,43,226,0.4), 0 0 15px rgba(138,43,226,0.2);
  }
  50% {
    box-shadow: 0 0 15px rgba(138,43,226,0.7), 0 0 25px rgba(138,43,226,0.5);
  }
  100% {
    box-shadow: 0 0 5px rgba(138,43,226,0.4), 0 0 15px rgba(138,43,226,0.2);
  }
}