/* 阿拉伯语从右到左布局 */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .header-container {
    flex-direction: row-reverse;
}

body.rtl nav ul {
    flex-direction: row-reverse;
}

body.rtl nav ul li {
    margin-left: 0;
    margin-right: 25px;
}

body.rtl .language-selector {
    flex-direction: row-reverse;
}

body.rtl .product-detail-container {
    flex-direction: row-reverse;
}

body.rtl .footer-container {
    direction: rtl;
}

body.rtl .contact-info {
    flex-direction: row-reverse;
}

body.rtl .review-header {
    flex-direction: row-reverse;
}

body.rtl .tracking-form {
    flex-direction: row-reverse;
}

body.rtl .whatsapp-btn {
    flex-direction: row-reverse;
}

body.rtl .new-badge {
    right: auto;
    left: 10px;
}

/* 确保阿拉伯语字体正确显示 */
body.rtl {
    font-family: 'Arial Arabic', 'Arabic Typesetting', sans-serif;
}

.footer-column .contact-item a {
  color: white; /* 设置为白色 */
  text-decoration: none; /* 可选：去除下划线 */
}