.cate-banner {
    padding-top: 80px;
}
.cate-banner img,
.cate-banner-2 img {
    display: block;
    width: 100%;
}
.cate_list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 98%;
    margin-bottom: 40px;
    margin-left: 8px;
}

@media (min-width: 768px) {
    .cate_list {
        flex-direction: row;
        justify-content: space-between;
    }
}

.cate_card {
    width: 17.4%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    padding: 41px 20px;
    color: #fff;
    position: relative;
}
.cate_card.active {
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px,
        rgba(0, 0, 0, 0.07) 0px 32px 64px;
}
.cate_card:hover {
    transform: translateY(-5px);
}

.cate_card:nth-child(1) {
    color: #ad892e;
    border: 2px solid #ad892e;
    background: var(--Gradient-text, linear-gradient(270deg, #b58128 35.68%, #e6c250 67.84%, #b58128 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cate_card:nth-child(1)::before {
    border-color: #ad892e;
}
.cate_card:nth-child(2) {
    background-color: #7e953d;
}
.cate_card:nth-child(2)::before {
    border-color: #7e953d;
}
.cate_card:nth-child(3) {
    background-color: #ed9620;
}
.cate_card:nth-child(3)::before {
    border-color: #ed9620;
}
.cate_card:nth-child(4) {
    background-color: #d32525;
}
.cate_card:nth-child(4)::before {
    border-color: #d32525;
}
.cate_card:nth-child(5) {
    background-color: #000000;
}
.cate_card:nth-child(5)::before {
    border-color: #000000;
}
.cate_card h2 {
    font-size: 26px;
    text-transform: uppercase;
    margin: 0;
    font-family: "Gratelos Display";
}

.product {
    margin: 40px 0;
}
/* Style chung select */
.c-select {
    position: relative;
    width: 20%;
    border-radius: 12px;
    border-color: #b3b3b3;
    padding: 4px;
    margin-left: auto;
}
.c-select.c-form > .c-icons {
    width: 12px;
}
.c-select.c-form > .c_input {
    padding: 0;
}
.c-select > .c_input {
    height: 36px;
    line-height: 36px;
    padding: 0 30px 0 12px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.c-select > .c-icons {
    height: 100%;
    width: 30px;
    cursor: pointer;
    font-size: 15px;
    position: absolute;
    top: 0;
    right: 0;
}
.c-select > .c-icons > i {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.c-select .c_list {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    max-height: 217px;
    line-height: 20px;
    padding: 5px;
    background-color: #fff;
    overflow: auto;
    border-radius: 4px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    z-index: 10000;
    position: absolute;
    top: 35px;
    -webkit-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}
.c-select.is-focused .c_list {
    opacity: 1;
    visibility: visible;
    top: 52px;
}
.c-select.is-focused > .c-icons i {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-transform: rotate(180deg) translate(50%, 50%);
    transform: rotate(180deg) translate(50%, 50%);
}

/* BEGIN c-select-single */
.c-select .c-radio {
    font-size: 14px;
    padding: 0 10px;
    margin-top: 0;
    margin-bottom: 5px;
    border-radius: 3px;
    -webkit-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}
.c-select .c-radio:hover,
.c-select .c-radio.is-selected {
    color: #fff;
    background-color: var(--color-secondary);
    box-shadow: 0 14px 26px -12px rgba(0, 85, 170, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 85, 170, 0.2);
}
.c-select .c-radio label {
    display: block;
    color: inherit;
    padding: 10px 0;
    font-weight: 400;
}
.c-select .c-radio label:hover {
    color: #fff;
}

/* END c-select-single */
.product_sort {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.product_sort h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-secondary);
    font-family: var(--font-secondary);
}
.product-row {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 20px;
}
.product-col-1 {
    width: 18%;
}
.product-col-2 {
    width: 82%;
}
@media (min-width: 992px) {
    .product-filter_button {
        display: none;
    }
}
@media (max-width: 991px) {
    .cate_list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
    }
    .cate_card {
        width: calc(100% / 5 - 10px);
        padding: 30px 20px;
    }
    .product-filter_button {
        background-color: var(--color-primary);
        padding: 17px;
        color: var(--color-secondary);
        font-weight: 700;
        font-family: var(--font-secondary);
        border-radius: 12px;
        margin-bottom: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .product_sort {
        display: none;
    }
    .cate_card h2 {
        font-size: 16px;
    }
    .product-row {
        flex-wrap: wrap;
    }
    .product-col-1 {
        width: 100%;
    }
    .product-col-2 {
        width: 100%;
    }
}
@media (max-width: 575px) {
    .cate_card {
        padding: 20px 10px;
    }
    .cate_card h2 {
        font-size: 14px;
    }
}
.product-2 {
    margin: 40px 0;
}
.product-2 .b-search-2 {
    background-color: #fcf8df;
    max-width: 55%;
    margin: 0 auto;
    border-radius: 50px;
    padding: 8px;
    border: 2px solid rgb(204 204 204);
    margin-bottom: 50px;
}
