﻿.top-style-section {
    padding: 40px 15px;
}

.top-style-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 35px;
}

.style-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 15px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    justify-content: center;
}

    .style-tabs button {
        flex: 0 0 auto;
    }

    .style-tabs::-webkit-scrollbar {
        height: 5px;
    }

    .style-tabs::-webkit-scrollbar-thumb {
        background: #bbb;
        border-radius: 20px;
    }

.style-tab-btn {
    padding: 14px 0px;
    border: 1px solid #111;
    background: #fff;
    color: #111;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
    white-space: nowrap;
    min-width: 10%;
    max-width: 10%;
}

    .style-tab-btn:hover {
        background: #000;
        color: #fff;
    }

    .style-tab-btn.active {
        background: #000;
        color: #fff;
    }

@media(max-width:768px) {

    .top-style-section {
        padding: 25px 10px;
    }

    .top-style-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .style-tab-btn {
        font-size: 14px;
    }
}

@media (min-width: 320px) and (max-width: 768px) {
    .style-tab-btn {
        padding: 14px 0px;
        border: 1px solid #111;
        background: #fff;
        color: #111;
        font-size: 13px;
        text-transform: uppercase;
        cursor: pointer;
        transition: 0.3s ease;
        white-space: nowrap;
        min-width: 21%;
        max-width: 35%;
    }

    

}