/* RTL (Right-to-Left) Support for Arabic */
html[dir="rtl"] {
  direction: rtl;
}

html[dir="rtl"] body {
  text-align: right;
}

/* Navigation for RTL */
html[dir="rtl"] .nav {
  /* Keep default flex direction but items will align from right */
}

html[dir="rtl"] .logo-container {
  /* Logo on the right side for RTL */
  order: 3;
}

html[dir="rtl"] .nav-links {
  /* Navigation links in the center */
  order: 2;
}

html[dir="rtl"] .nav-actions {
  /* Cart and language switcher on the left */
  order: 1;
}

/* Cart icon for RTL */
html[dir="rtl"] .cart-count {
  left: -5px;
  right: auto;
}

html[dir="rtl"] .cart-icon {
  margin-right: 0;
  margin-left: 0;
}

/* Product grid and cards */
html[dir="rtl"] .product-info {
  text-align: right;
}

html[dir="rtl"] .product-badge {
  left: var(--space-md);
  right: auto;
}

html[dir="rtl"] .product-price {
  flex-direction: row-reverse;
}

/* Footer for RTL */
html[dir="rtl"] .footer-content {
  direction: rtl;
}

html[dir="rtl"] .footer-links {
  padding-right: 0;
  padding-left: 0;
  list-style-position: inside;
}

html[dir="rtl"] .footer-links a:hover {
  padding-left: 0;
  padding-right: var(--space-xs);
}
