/**
 * ============================================================
 * 访问路径：/static/css/rtl.css
 * 功能说明：阿拉伯语RTL（从右向左）排版额外样式覆盖
 *   仅在ar语种时加载
 * ============================================================
 */

/* 全局文字方向 */
body {
    direction: rtl;
    text-align: right;
}

/* 导航栏调整 */
#mainNav .navbar-nav {
    margin-right: auto;
    margin-left: 0 !important;
}

#mainNav .me-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

.lang-switcher .dropdown-menu-end {
    right: auto;
    left: 0;
}

/* 页脚标题下划线位置 */
.site-footer .footer-heading::after {
    left: auto;
    right: 0;
}

/* 页脚链接箭头 */
.footer-links li a::before {
    content: '\f104'; /* 使用左箭头替代右箭头 */
    margin-right: 0;
    margin-left: 0.5rem;
}

.footer-links li a:hover {
    padding-left: 0;
    padding-right: 5px;
}

/* 输入框文字方向 */
.form-control {
    text-align: right;
}

/* 列表方向 */
ul, ol {
    padding-right: 0;
}

/* 面包屑 */
.breadcrumb-item + .breadcrumb-item::before {
    float: right;
    padding-right: 0;
    padding-left: 0.5rem;
}

/* 卡片 */
.product-card .product-img .hot-badge {
    left: auto;
    right: 12px;
}

/* 联系信息 */
.footer-contact li i {
    margin-left: 0.5rem;
    margin-right: 0;
}

/* 联系方式侧边栏 */
.contact-info-sidebar .info-item {
    flex-direction: row-reverse;
}

/* 产品详情页actions */
.product-info-section .product-actions {
    justify-content: flex-end;
}

/* 表单验证反馈 */
.invalid-feedback {
    text-align: right;
}

/* 响应式 */
@media (max-width: 768px) {
    .site-footer .footer-heading::after {
        right: 50%;
        left: auto;
        transform: translateX(50%);
    }
}
