.container.section-title-container.luanlt_title {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Chia trái - phải */
    flex-wrap: wrap; /* Cho phép xuống hàng nếu thiếu không gian */
    line-height: 18px;
    margin-bottom: 15px;
}

.luanlt_title .section-title {
    margin: 0;
    border: none;
    width: auto;
    flex-shrink: 0;
}

.title-show-cats {
    display: flex;
    gap: 10px;
    margin: 0 20px;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.title_cats {
    background-color: #f5f5f5;
    border: 1px solid #000;
    padding: 0 10px;
    border-radius: 7px;
    margin: 0;
    display: flex;
    align-items: center;
}

.title_cats h3 {
    font-weight: normal;
    text-transform: none;
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    line-height: 2
}

.title_cats a {
    color: #111;
    font-size: 14px;
    font-weight: 500;
}

.title_cats:hover {
    background: #000;
}

.title_cats:hover a {
    color: #fff;
}

.luanlt_link_all_product {
    margin-left: auto;
    font-weight: bold;
    white-space: nowrap;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #000;
    text-decoration: none;
}

.luanlt_title a {
    font-family: 'RubikVN', Arial, sans-serif;
}

.luanlt_title h2 a {
    font-size: 1em;
    padding-left: 0;
    color: #111;
    text-transform: uppercase;
    font-weight: 700;
}

/* Responsive */
@media only screen and (max-width: 48em) {
    .container.section-title-container.luanlt_title {
        flex-direction: column;
        align-items: flex-start;
    }

    .title-show-cats {
        overflow-x: auto;
        white-space: nowrap;
        margin: 5px 0;
    }

    .luanlt_link_all_product {
        align-self: flex-end;
        margin-top: 10px;
    }
}