html[lang="ar"] body {
  direction: rtl;
  text-align: right;
}

/* النصوص */
html[lang="ar"] .elementor-heading-title,
html[lang="ar"] .elementor-widget-text-editor,
html[lang="ar"] p, 
html[lang="ar"] li {
  text-align: right !important;
}

/* الأزرار */
html[lang="ar"] .elementor-button {
  justify-content: center;
  direction: rtl;
}

/* أيقونات الأزرار */
html[lang="ar"] .elementor-button-icon {
  transform: scaleX(-1);
  margin-left: 8px;
  margin-right: 0;
}

/* الأعمدة */
html[lang="ar"] .elementor-row {
  flex-direction: row-reverse;
}


/* تصميم زر اللغة */
.lang-switcher-mobile {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap; /* منع الكسر */
}

.lang-switcher-mobile .lang-btn {
  font-size: 15px;
  font-weight: 600;
  color: #000;

  padding: 6px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap; /* يخلي الكلام كله في سطر واحد */
}

.lang-switcher-mobile .lang-btn:hover {
  background-color: #fff;
}

/* إظهار الزر المناسب حسب اللغة الحالية */
html[lang="en-US"] .lang-switcher-mobile .ar-version {
  display: none;
}

html[lang="ar"] .lang-switcher-mobile .en-version {
  display: none;
}

/* ضبط المسافات للموبايل */
@media (max-width: 768px) {
  .lang-switcher-mobile {
    margin-top: 5px;
  }
}


/* container بتاع tabs */
.elementor-tabs-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
}

/* شبكة التابات */
.e-n-tabs > .e-n-tabs-header {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
}

/* زرار التاب نفسه */
.e-n-tab-title {
    min-height: 64px !important;
    height: 72px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* النص جوه التاب */
.e-n-tab-title-text {
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.3 !important;
}

/* اخفاء كل محتوى التابات */
.e-n-tabs-content > .e-con {
    display: none;
}

/* اظهار محتوى التاب النشطة فقط */
.e-n-tab-title[aria-selected="true"]
~ .e-n-tabs-content
> .e-con {
    display: block;
}


/* تثبيت حجم التابات */
.e-n-tabs-heading,
.elementor-tabs-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 تابات في الصف */
  gap: 12px;
}

/* كل تاب نفس الارتفاع والعرض */
.e-n-tab-title,
.elementor-tab-title {
  height: 56px;               /* ✨ الطول الموحد */
  display: flex;
  align-items: center;        /* توسيط عمودي */
  justify-content: center;    /* توسيط أفقي */
  text-align: center;
  white-space: nowrap;        /* يمنع نزول السطر */
  padding: 0 10px;
}
.e-n-tab-title,
.elementor-tab-title {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}


