/* No Results Found Styles */

/* Overlay scuro di sfondo */
.no-results-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
    z-index: 99998 !important;
    display: block !important;
}

/* Modal centrato */
.no-results-modal {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 99999 !important;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Contenuto del modal */
.no-results-modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
}

/* Pulsante chiusura (X) */
.no-results-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #b88a44 !important;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    cursor: pointer;
    line-height: 1;
    padding: 0 !important;
    width: 30px;
    height: 30px;
    transition: color 0.2s;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.no-results-close:hover {
    color: #8a6633 !important;
    background: none !important;
    background-color: transparent !important;
}

.no-results-icon {
    margin-bottom: 20px;
}

.no-results-icon svg {
    display: inline-block;
}

.no-results-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.no-results-message {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.no-results-suggestions {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: left;
}

.no-results-suggestions h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.no-results-suggestions ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.no-results-suggestions li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.no-results-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-reset-search,
.btn-contact {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-reset-search {
    background-color: #b88a44;
    color: white;
}

.btn-reset-search:hover {
    background-color: #a07938;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(184, 138, 68, 0.3);
}

.btn-contact {
    background-color: #fff;
    color: #b88a44;
    border: 2px solid #b88a44;
}

.btn-contact:hover {
    background-color: #b88a44;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(184, 138, 68, 0.3);
}

/* Responsive */
