/* استایل تب‌های فیلتر */
.product-filter-tabs {
    margin-bottom: 30px;
    text-align: center;
}
.filter-tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; /* مخفی کردن اسکرول‌بار در فایرفاکس */
}
.filter-tabs::-webkit-scrollbar {
    display: none; /* مخفی کردن اسکرول‌بار در کروم و سافاری */
}
.filter-tab {
    margin: 0 5px;
}
.filter-tab a {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.filter-tab.active a {
    background: #E6F0FA;
    color: #1565C0;
}
.filter-tab a:hover {
    background: #f0f0f0;
    color: #333;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 767px) {
    .filter-tabs {
        display: flex;
        justify-content: flex-start;
        padding: 0 10px;
    }
    .filter-tab {
        margin: 0 3px;
    }
    .filter-tab a {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* استایل صفحه‌بندی (سازگار با وودمارت) */
.woocommerce-pagination {
    text-align: center;
    margin-top: 30px;
}
.woocommerce-pagination ul.page-numbers {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
    direction: rtl; /* برای هماهنگی با RTL */
}
.woocommerce-pagination ul.page-numbers li {
    margin: 0 5px;
}
.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span {
    display: inline-block;
    padding: 8px 12px;
    background: #e4e6ef; /* پس‌زمینه آبی روشن */
    color: #454546; /* متن آبی تیره */
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    min-width: 34px;
    text-align: center;
    transition: all 0.3s ease;
}
.woocommerce-pagination ul.page-numbers li span.current {
    background: #009ef7; /* پس‌زمینه آبی تیره برای صفحه فعال */
    color: #fff; /* متن سفید */
}
.woocommerce-pagination ul.page-numbers li a:hover {
    background: #e7e9f2; /* رنگ کمی تیره‌تر برای hover */
}