.filter-search-form {
    width: 100%;
}

.filter-row {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: nowrap;
}

/* Select */
.filter-item {
    flex: 1;
}

.filter-item label {
    font-size: 13px;
    margin-bottom: 4px;
    display: block;
    font-weight: 600;
	color: var(--color-black);
}

.filter-item select {
    width: 100%;
    height: 42px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* Button */
.filter-btn button {
    height: 42px;
    padding: 0 22px;
    border-radius: 8px;
    border: none;
    background: var(--Rose-Red);
    color: var(--color-white);
    font-weight: 600;
    cursor: pointer;
}

.products-grid-custom {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.products-grid-custom .col {
	padding: 0 10px 30px !important;
}

.custom-pagination {
    text-align: center;
}

.custom-pagination .page-numbers {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 6px;
    border-radius: 50%;
    border: 2px solid #e5e5e5;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all .25s ease;
}

/* Hover */
.custom-pagination .page-numbers:hover {
    border-color: var(--Rose-Red);
    color: var(--Rose-Red);
}

/* Trang hiện tại */
.custom-pagination .page-numbers.current {
    background: var(--Rose-Red);
    border-color: var(--Rose-Red);
    color: var(--color-white);
    cursor: default;
}

/* Prev / Next */
.custom-pagination .prev,
.custom-pagination .next {
    width: 40px;
    height: 40px;
    font-size: 18px;
}

select[name="product_cat"] option[value="chua-phan-loai"] {
    display: none;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .filter-row {
        flex-wrap: wrap;
    }

    /* 3 select cùng 1 hàng */
    .filter-item {
        flex: 1 1 30%;
    }

    /* nút tìm kiếm xuống hàng riêng */
    .filter-btn {
        width: 100%;
    }

    .filter-btn button {
        width: 100%;
        margin-top: 10px;
    }
	
	.products-grid-custom {
        grid-template-columns: repeat(2,1fr);
    }
	
	.custom-pagination .page-numbers {
        width: 36px;
        height: 36px;
        margin: 0 4px;
        font-size: 13px;
    }
}
