body {
    background: #ededed;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.filter-box {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px #0001;
}

.filter-header {
    background: var(--secondary-color);
    color: #fff;
    padding: 16px 20px;
    border-radius: 10px 10px 0 0;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    user-select: none;
}

.filter-header .toggle-icon {
    font-size: 22px;
    font-weight: bold;
    margin-left: 8px;
    transition: transform 0.2s;
}

.filter-content {
    padding: 16px 20px;
    transition: var(--transition-duration);
    max-height: 1000px;
    overflow: hidden;
}

.filter-box.collapsed .filter-content {
    display: block;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transition: var(--transition-duration);
}

.filter-content label {
    font-weight: 500;
    margin-left: 8px;
}

.single-product.custom-product {
    border-radius: 10px;
    box-shadow: 0 2px 8px #0001;
    background: #fff;
    transition: box-shadow 0.2s;
    margin-bottom: 24px;
    margin-top: 0;
    padding: 16px;
    text-align: center;
}

.single-product.custom-product:hover {
    box-shadow: 0 4px 16px #0002;
}

.single-product.custom-product .product-image img {
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 12px;
    height: 180px;
}

.single-product.custom-product .product-info {
    text-align: center;
}

.single-product.custom-product .category {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
}

.single-product.custom-product .title a {
    color: #222;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
}

.single-product.custom-product .price span {
    color: #ef7023;
    font-weight: bold;
    font-size: 16px;
}

.single-product.custom-product .btn {
    background: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    padding: 8px 16px;
    border: none;
    font-size: 14px;
    transition: background 0.2s;
}

.single-product.custom-product .btn:hover {
    background: var(--secondary-color);
    color: #fff;
}

.single-product.custom-product .review {
    margin: 8px 0 8px 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2px;
}

.single-product.custom-product .review li {
    display: inline-block;
    color: #ef7023;
    font-size: 15px;
}

.single-product.custom-product .review li span {
    color: #555;
    font-size: 13px;
    margin-left: 4px;
}

@media (max-width: 991px) {
    .filter-col {
        margin-bottom: 32px;
    }
}

.rowProductList {
    min-height: 1000px;
}

.pagination {
    gap: 4px;
}

.pagination li a {
    color: #007bff;
    border-radius: 6px;
}

.pagination li.active a {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination li.disabled a {
    color: #ccc;
    pointer-events: none;
}