/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: 16px;
}
.lang-switcher a {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.lang-switcher a:hover,
.lang-switcher a.active {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
}

/* RTL support for Arabic */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .navbar .container {
  flex-direction: row-reverse;
}
[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}
[dir="rtl"] .hero-cta {
  flex-direction: row-reverse;
}
[dir="rtl"] .product-card ul li {
  padding-left: 0;
  padding-right: 16px;
}
[dir="rtl"] .product-card ul li::before {
  left: auto;
  right: 0;
}
[dir="rtl"] .content-grid {
  direction: rtl;
}
[dir="rtl"] .footer-grid {
  direction: rtl;
}
[dir="rtl"] .breadcrumb {
  direction: rtl;
}
