/* شاشة ترحيب بشعار adabpic */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000 url("https://www2.0zz0.com/2025/09/16/22/924679467.png") no-repeat center center;
  background-size: 300px auto; /* حجم الشعار */
  opacity: 1;
  pointer-events: auto;
  animation: adabSplash 3s ease forwards; /* المدة الكاملة 3 ثواني */
  animation-delay: 0s;
}

@keyframes adabSplash {
  0%   { opacity: 1; }
  83%  { opacity: 1; }  /* يبقى واضح 2.5 ثانية */
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* استبدال علامة التحميل بشعار adabpic */
.loader,
.loading-spinner,
.spinner,
.salla-loader {
  border: none !important;
  background: url("https://www2.0zz0.com/2025/09/16/22/924679467.png") no-repeat center center !important;
  background-size: 100px auto !important; /* حجم الشعار */
  width: 100px !important;
  height: 100px !important;
  animation: spin 1.5s linear infinite !important; /* حركة دوران الشعار */
}

/* حركة الدوران */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

a[href*="sa
footer::after {
  content: "مجموعة أدبك العالمية | Adabpic Global Collection";
  display: block;
  text-align: center;
  color: #555;
  font-size: 14px;
  margin-top: 10px;
}
a[href*="salla.sa"], 
.footer__made-by {
  display: none !important;
}

/* ========== جعل صور المنتج كبيرة وتحت بعضها (ثيم رائد) ========== */

/* فعّل مساحة الصورة الرئيسية بحجم كامل */
.product-gallery__main,
.product-media {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-bottom: 16px !important;
}

/* ألغِ قيود السلايدر والنِّسب التي تصغّر الصور */
.product-gallery__main .swiper,
.product-gallery__main .swiper-wrapper,
.product-gallery__main .swiper-slide,
.product-media .swiper,
.product-media .swiper-wrapper,
.product-media .swiper-slide,
.product-gallery__main .ratio-box,
.product-media .ratio-box {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  padding: 0 !important;
}

/* الصور نفسها بالحجم الكامل */
.product-gallery__main img,
.product-media img,
.product-gallery__thumbnail img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  border-radius: 10px;
}

/* خلّي شريط المصغّرات عمودي ومسافات مريحة (بدون سلايدر) */
.product-gallery__thumbnails {
  display: block !important;
  gap: 16px !important;
  margin-top: 8px !important;
}
.product-gallery__thumbnail { margin-bottom: 12px !important; }

/* أخفِ أسهم السلايدر (لو ظهرت) */
.swiper-button-next,
.swiper-button-prev { display: none !important; }


/* 🔸 إخفاء كل عناصر التخفيضات في ثيم رائد بدون حذفها */
.product-badge--discount,
.product-price--discount,
.product__discount,
.discount-badge,
.price-before,
.price--compare,
.product-price__old,
.product-card__discount,
.product__badge--sale,
span[data-sale],
span.price__compare {
  display: none !important;
  visibility: hidden !important;
}

/* 🌿 Adabpic Journal | النسخة الخفيفة */
:root {
  --aj-bg: #f7f3ec;
  --aj-ink: #222;
  --aj-gold: #c5a25a;
}
body.blog, body.blog article, body.blog main {
  background: var(--aj-bg) !important;
  color: var(--aj-ink) !important;
  font-family: "Noto Kufi Arabic", sans-serif;
}
.blog h1, .blog h2, .blog h3 {
  color: var(--aj-gold);
  font-weight: 700;
}
.blog blockquote {
  border-inline-start: 4px solid var(--aj-gold);
  padding: 10px 14px;
  margin: 14px 0;
  background: #fff;
  border-radius: 10px;
  font-style: italic;
}
.blog a {
  color: var(--aj-gold);
}