/* ========================================
   شريط دخون وليد المتحرك
======================================== */

body .dw-moving-bar {
  width: 100%;
  height: 38px;
  position: relative;
  z-index: 999;
  overflow: hidden;

  background-color: #442e1a !important;
  background-image: linear-gradient(
    90deg,
    #382313 0%,
    #51351f 50%,
    #382313 100%
  ) !important;

  color: #ffffff !important;

  border-top: 1px solid rgba(201, 168, 106, 0.3);
  border-bottom: 1px solid rgba(201, 168, 106, 0.55);

  direction: ltr;
}

/* مسار الحركة */
body .dw-moving-bar__track {
  display: flex !important;
  align-items: center;
  width: max-content;
  min-width: 100%;
  height: 100%;
  gap: 0 !important;

  direction: ltr;
  will-change: transform;

  animation-name: dw-continuous-moving-text;
  animation-duration: var(--dw-moving-duration, 25s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* كل نسخة من العبارات */
body .dw-moving-bar__segment {
  display: flex !important;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
  gap: 0 !important;

  white-space: nowrap;
  direction: rtl;
}

/* النص */
body .dw-moving-bar__text {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;

  height: 100%;
  padding-inline: 24px;

  color: #ffffff !important;

  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none !important;
}

/* الفاصل الذهبي بين العبارات */
body .dw-moving-bar__separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  height: 100%;
  margin-inline: 2px;

  color: #d2ae68 !important;

  font-size: 10px;
  font-weight: 400;
  line-height: 1;
}

/* الحركة المستمرة */
@keyframes dw-continuous-moving-text {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(
      var(--dw-moving-distance),
      0,
      0
    );
  }
}

/* إيقاف الحركة عند تمرير مؤشر الكمبيوتر فوق الشريط */
@media (hover: hover) {
  body .dw-moving-bar:hover .dw-moving-bar__track {
    animation-play-state: paused;
  }
}

/* إعدادات الجوال */
@media (max-width: 480px) {
  body .dw-moving-bar {
    height: 34px;
  }

  body .dw-moving-bar__text {
    padding-inline: 18px;
    font-size: 12px;
  }

  body .dw-moving-bar__separator {
    font-size: 9px;
  }
}

/* احترام إعداد تقليل الحركة في جهاز العميل */
@media (prefers-reduced-motion: reduce) {
  body .dw-moving-bar__track {
    animation: none !important;
    transform: none !important;
  }
}