/* تنسيق التاب المتحرك */
.category-tabs {
    position: relative;
    margin-bottom: 20px;
}

.tabs-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.tabs-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* لإخفاء شريط التمرير في Firefox */
    -ms-overflow-style: none; /* لإخفاء شريط التمرير في Edge */
    padding: 5px 0;
    width: 100%;
}

    .tabs-container::-webkit-scrollbar {
        display: none; /* لإخفاء شريط التمرير في Chrome و Safari */
    }

.tab-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 20px;
    background-color: #f8f9fa;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

    .tab-item i {
        margin-left: 8px;
        font-size: 14px;
    }

    .tab-item.active {
        background-color: #0dbbc3;
        color: white;
        border-color: #0dbbc3;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

.tab-btn {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    cursor: pointer;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .tab-btn:hover {
        background-color: #f7fafc;
    }

    .tab-btn.disabled {
        opacity: 0.5;
        pointer-events: none;
    }

.prev-btn {
    margin-left: 10px;
}

.next-btn {
    margin-right: 10px;
}

/* تعديلات متوافقة مع الهواتف المحمولة */
@media (max-width: 576px) {
    .tab-item {
        padding: 8px 12px;
        font-size: 14px;
    }

    .tab-btn {
        width: 28px;
        height: 28px;
    }
}
