/* ═══════════════════════════════════════════════════════════
   مشاعل للاتصالات — التنسيق الكامل (خلفية سوداء)
   ═══════════════════════════════════════════════════════════ */

/* ── ١) توحيد ألوان المتجر على لون الشعار ── */
:root, html {
  --color-primary:       #9745CE !important;
  --color-primary-dark:  #631E96 !important;
  --color-primary-light: #C073F4 !important;
  --color-primary-rgb:   151, 69, 206 !important;

  --ms-violet: #9745CE;
  --ms-deep:   #631E96;
  --ms-gold:   #FFB020;
  --ms-black:  #000000;
  --ms-card:   #0B0710;
  --ms-line:   rgba(151, 69, 206, .22);
}

/* ── ٢) الخلفية السوداء ── */
html,
html body,
html body.theme-raed {
  background-color: #000 !important;
}

/* توهّج بنفسجي خفيف أعلى الصفحة فقط — احذف هذا البلوك لو تبي أسود صافي */
html body.theme-raed {
  background-image: radial-gradient(
      130% 640px at 50% 0%,
      rgba(151, 69, 206, .30) 0%,
      rgba(99, 30, 150, .10) 45%,
      rgba(0, 0, 0, 0) 78%) !important;
  background-repeat: no-repeat !important;
  background-size: 100% 640px !important;
  background-position: 50% 0 !important;
  background-attachment: scroll !important;
}

/* إزالة أي خلفية متكررة على الأقسام (هي سبب الخطوط الفاصلة بين الأقسام) */
html body main,
html body #app,
html body .app-inner,
html body .store-body,
html body section.s-block,
html body .s-block,
html body .s-block--best-offers,
html body .s-products-slider-card {
  background-color: transparent !important;
  background-image: none !important;
}
html body::before, html body::after,
html body main::before, html body main::after,
html body .s-block::before {
  background-image: none !important;
}

/* ── ٣) الهيدر والفوتر ── */
html body .store-header {
  background-color: rgba(0, 0, 0, .78) !important;
  background-image: none !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ms-line) !important;
}
html body .store-footer {
  background-color: #000 !important;
  background-image: none !important;
  border-top: 1px solid var(--ms-line) !important;
}

/* ── ٤) بطاقات المنتجات ── */
html body .s-product-card-entry {
  background-color: var(--ms-card) !important;
  background-image: none !important;
  border: 1px solid var(--ms-line) !important;
  border-radius: 22px !important;
  height: auto !important;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
html body .s-product-card-entry:hover {
  border-color: rgba(151, 69, 206, .55) !important;
  box-shadow: 0 18px 44px rgba(151, 69, 206, .20) !important;
  transform: translateY(-3px);
}

/* أهم إصلاح: الصور كانت مقصوصة من فوق وتحت
   (صندوق ٢٤٠px والصورة ٢٧٧px داخل overflow:hidden) */
.s-product-card-image {
  height: auto !important;
  aspect-ratio: 1 / 1;
  padding: 12px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}
.s-product-card-image a,
.s-product-card-image .s-product-card-image-contain,
.s-product-card-image img {
  width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
}

.s-product-card-content { padding-top: 14px !important; }
.s-product-card-content-title,
.s-product-card-content-title a { color: #F4ECFB !important; }
.s-product-card-price      { color: #FFFFFF !important; }
.s-product-card-sale-price { color: #FF7A85 !important; }

/* ── ٥) السلايدر الرئيسي: البنر المجاور كان يطلّ مقصوص من الجنب ── */
.s-block--photos-slider .swiper-slide      { width: 100% !important; }
.s-block--photos-slider .s-slider-container { overflow: hidden !important; }
.s-block--photos-slider .swiper-slide img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover;
  border-radius: 20px;
}

/* الأسهم البيضاء الطايرة على أطراف الصفحة */
.s-block--photos-slider .s-slider-nav-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px; height: 44px;
  background: rgba(0, 0, 0, .55) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(8px);
  box-shadow: none