
.popup-filter-trigger, .popup-filter-viewall-btn {
	padding: 10px 20px;
    border: 1px solid #000;
    border-radius: 50px;
    width: 100%;
    background: transparent;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
}
button.popup-filter-trigger:after {
    content: "+";
    position: absolute;
    top: 48%;
    right: 5%;
    font-size: 20px;
    font-weight: 200;
    color: #000;
    transform: translateY(-50%);
}
button.popup-filter-trigger.active:after { color: #fff;}

.popup-filter-viewall-btn.active {
	border: 1px solid #D92525;
    background: #D92525;
    color: #fff;
}
.popup-filter-trigger.active {
	border: 1px solid #285AA1;	
	background: #285AA1;
    color: #fff;
}

.popup-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999999;
    justify-content: center;
    align-items: center;
}

.popup-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    max-width: 500px;
    max-height: 500px;
    margin: 100px auto;
    position: relative;
    text-align: left;
    overflow-y: auto;
}

.popup-hr {
	width: 100%;
    height: 1px;
    background-color: #000;
    margin: 5px 0;
}

.popup-modal-close {
    position: absolute;
    top: 30px; right: 30px;
    font-size: 40px;
    font-weight: 100;
    cursor: pointer;
}

.popup-options {
    margin-top: 20px;
}

.popup-option {
    display: block;
    padding: 8px 0;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
}

.popup-option.selected {
    font-weight: bold;
    color: #1e40af;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.product-item {
    width: calc(25% - 20px);
    text-align: center;
}