.topcar-quick-filters {
    background-color: #f7c600;
    padding: 22px 0;
    overflow: hidden;
}

.topcar-quick-filters-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topcar-quick-filters-title {
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 5px;
    color: #2b2300;
    white-space: nowrap;
}

.topcar-quick-filters-list {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.topcar-quick-filters-list::-webkit-scrollbar {
    display: none;
}

.topcar-quick-filter-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 22px;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s ease, background-color .2s ease;
}

.topcar-quick-filter-btn:hover {
    color: #fff;
    background-color: #222;
    transform: translateY(-1px);
}

/* Tablet / Mobile */
@media (max-width: 991px) {
    .topcar-quick-filters {
        padding: 28px 0;
    }

    .topcar-quick-filters-inner {
        display: block;
    }

    .topcar-quick-filters-title {
        margin-bottom: 20px;
        font-size: 18px;
        letter-spacing: 6px;
    }

    .topcar-quick-filters-list {
        gap: 18px;
        padding-bottom: 4px;
    }

    .topcar-quick-filter-btn {
        min-height: 56px;
        padding: 0 26px;
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .topcar-quick-filter-btn {
        font-size: 18px;
        min-height: 56px;
    }
}