.product-list_header_tilte {
    color: var(--text-heading-primary, #0e1525);

    /* Subheadline/Semibold */
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 140% */
}
.product-list_header {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 20px;
}
.product-list_header_filter {
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.product-list_header_filter_search {
    position: relative;
}
.product-list_header_filter_search input {
    display: flex;
    width: 415px;
    color: var(--text-placeholder, #626771);

    color: var(--text-placeholder, #626771);

    /* CaptionLarge/Regular */
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    padding: 12px 24px;
    padding-left: 60px;
    border-radius: 36px;
    border: 1px solid var(--border-border-secondary, #dbdcde);
    background: var(--background-bg-primary, #fff);
    backdrop-filter: blur(20px);
}
.product-list_header_filter_search input::placeholder {
    color: var(--text-placeholder, #626771);

    /* CaptionLarge/Regular */
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}
.product-list_header_filter_search img {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}
/*.product-list_header_filter_mobile {*/
/*    display: flex;*/
/*    padding: 12px 24px;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    gap: 6px;*/
/*    align-self: stretch;*/
/*    color: var(--text-placeholder, #626771);*/
/*    text-align: center;*/

/*    !* CaptionLarge/Regular *!*/
/*    font-family: Manrope;*/
/*    font-size: 14px;*/
/*    font-style: normal;*/
/*    font-weight: 400;*/
/*    line-height: 20px; !* 142.857% *!*/
/*    border-radius: 32px;*/
/*    border: 1px solid var(--border-border-secondary, #dbdcde);*/
/*    background: var(--background-bg-primary, #fff);*/
/*}*/
/* Container của dropdown */

/* Icon mũi tên */
.arrow-icon {
    transition: transform 0.3s ease;
}

/* Dropdown menu */
.select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    margin-top: 5px;
    display: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

/* Các mục trong menu */
.select-dropdown li {
    padding: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.select-dropdown li:hover {
    background: #f0f0f0;
}

/* Khi mở dropdown */
.custom-select.active .select-dropdown {
    display: block;
}

.custom-select.active .arrow-icon {
    transform: rotate(180deg);
}
.filter-product{
    display: none;
}
.sort-product{
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid #e4e4e4;
    height: 40px;
    border-radius: 20px;
    justify-content: space-between;
    padding: 0px 20px;
    background-color: #ffffff;
    cursor: pointer;
    font-size: 14px;
}
.sort-popup {
    position: absolute;
    top: 46px; 
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 0 80px 0 rgba(17, 17, 17, 0.08);
    z-index: 9; 
    padding: 8px 6px;
    min-width: 200px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sort-popup button {
    background: none;
    border: none;
    padding: 10px 12px;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    border-radius: 10px;
    color: #333;
    width: 100%;
    transition: background-color 0.2s ease;
}

.sort-popup button:hover {
    background-color: #f0f0f0;
}

.sort-popup button.active {
    background-color: #e0e0e0;
    font-weight: bold;
}

.page-item-product .page-link{
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: var(--text-placeholder, #93969D);
    font-weight: 600;
    font-family: Manrope;
}
.page-item-product.active .page-link{
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: var(--text-heading-primary, #0E1525);
    font-weight: 600;
    font-family: Manrope;
}
.page-item-btn .page-link{
    width: 100%;
    border: none;
    background-color: transparent;
    outline: none;
}
.page-item-btn .page-link:focus{
    box-shadow: initial;
}

@media (max-width: 1024px) {
    .product-list_header {
        flex-direction: column;
        align-items: self-start;
        gap: 10px;
    }
    .search_widget,
    .product-list_header_filter,
    .search_widget input{
        width: 100%;
    }
    .search_widget input{
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .filter-product{
        display: flex;
        align-items: center;
        width: 120px;
        border: 1px solid #e4e4e4;
        height: 40px;
        border-radius: 20px;
        justify-content: space-between;
        padding: 0px 20px;
        background-color: #ffffff;
        cursor: pointer;
        font-size: 14px;
    }
}
@media (max-width: 520px) {
    .product-list_header_filter{
        flex-direction: column;
        align-items: start;
    }

}