/* CONTENITORE PRINCIPALE */
.archive-immobili-filtro {
    max-width: 1200px;
    margin: 30px auto 20px;
    padding: 22px 26px;
    background: #ffffff;
    border-radius: 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* FORM */
.archive-immobili-filtro__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* RIGHE */
.filtro-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.filtro-field {
    flex: 1 1 0;
}

/* INPUT & SELECT */
.filtro-field input,
.filtro-field select {
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: 1px solid #e3e3e3;
    padding: 0 16px;
    font-size: 14px;
    line-height: 1;
    color: #222;
    background-color: #fff;
    box-shadow: none;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.filtro-field input::placeholder {
    color: #8c8c8c;
}

.filtro-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px 8px;
    padding-right: 32px;
}

.filtro-field input:focus,
.filtro-field select:focus {
    border-color: #ffb300;
    box-shadow: 0 0 0 1px rgba(255, 179, 0, 0.25);
}

/* AZIONI */
.filtro-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 4px;
}

/* BOTTONI */
.filtro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 48px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease,
                box-shadow 0.15s ease, transform 0.05s ease;
}

/* Primario (giallo) */
.filtro-btn--primary {
    background-color: var(--accent);
    border: 1px solid #000;
    color: #000000;
    transition: .15s ease;
    font-family: "Segoe UI", sans-serif;
}

.filtro-btn--primary:hover {
    background-color: #ffbe2e;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.filtro-btn--primary:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Secondario (reset) */
.filtro-btn--secondary {
    background-color: #ffffff;
    border-color: #d3d3d3;
    color: #222222;
}

.filtro-btn--secondary:hover {
    background-color: #f6f6f6;
    border-color: #bfbfbf;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .archive-immobili-filtro {
        margin: 20px 16px;
        padding: 18px 18px;
    }
}

@media (max-width: 768px) {
    .filtro-row {
        flex-direction: column;
    }

    .filtro-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .filtro-btn {
        width: 100%;
    }
}
