/*
RTL CSS Overrides for SmartEyada Theme
Auto-loaded by WordPress when site language is set to Arabic.
*/

/* Flip directional properties for RTL */

/* Why-us cards: border should be on the left in RTL */
.why-card {
  border-right: none;
  border-left: 4px solid #10b981;
}

/* Comparison table: sticky column on left in RTL */
@media(max-width:768px) {
  .comparison td:first-child,
  .comparison th:first-child {
    position: sticky;
    left: 0;
    right: auto;
  }
}

/* Plan featured badge positioning for RTL */
.plan.featured::before {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

/* Navigation alignment for RTL */
.main-navigation {
  direction: rtl;
}