/* Botón */
.riparo-filter {
    position: relative;
    display: inline-block;
}

.riparo-filter__btn {
    background-color: #6b6b6b;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 14px;
    cursor: pointer;
    letter-spacing: 0.1em;
}

.riparo-filter__btn:hover {
    background-color: #555;
}

/* Popup */
.riparo-filter__popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 1000;
    min-width: 500px;
    padding: 20px;
}

.riparo-filter__popup.active {
    display: block;
}

/* Tabs */
.riparo-filter__tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.riparo-filter__tab {
    flex: 1;
    padding: 12px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.riparo-filter__tab.active {
    background: #6b6b6b;
    color: #fff;
}

/* Contenido tabs */
.riparo-filter__content {
    display: none;
    flex-wrap: wrap;
    gap: 15px;
}

.riparo-filter__content.active {
    display: flex;
}

.riparo-filter__content a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 0;
}

.riparo-filter__content a:hover {
    text-decoration: underline;
}