/* Dubayan Dynamic Menu — v1.3 (Arabic)
   - أفقية دائمًا حتى بالجوال
   - إزالة النقاط
   - احترام المحاذاة
   - تمرير أفقي ظاهر
   - التعامل مع وجود div وسيط داخل nav
*/
.ddm-wrapper {
  width: 100%;
  overflow-x: auto;              /* يظهر شريط التمرير عند الحاجة */
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  background: transparent;
  direction: rtl;
  scrollbar-width: thin;
}

/* محاذاة */
.ddm-align-right { text-align: right; }
.ddm-align-center { text-align: center; }
.ddm-align-left { text-align: left; }

/* استهداف جميع السيناريوهات: ul المباشر، أو داخل div، أو أي حاوية يضيفها القالب */
.ddm-wrapper .ddm-ul,
.ddm-wrapper > div > ul,
.ddm-wrapper ul {
  display: inline-flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: clamp(10px, 4vw, 40px) !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* عناصر القائمة */
.ddm-wrapper li {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* الروابط — منع الالتفاف */
.ddm-wrapper li > a {
  display: inline-block !important;
  white-space: nowrap !important;
  text-decoration: none;
}

/* تمييز الصفحة الحالية */
.ddm-wrapper .current-menu-item > a,
.ddm-wrapper .current_page_item > a,
.ddm-wrapper .current_page_ancestor > a {
  border-bottom: 2px solid currentColor !important;
}

/* رسالة */
.ddm-message {
  padding: 12px 14px;
  background: #fff8e1;
  border: 1px solid #ffe0a3;
  border-radius: 8px;
}
