<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(33, 66, 115, 0.97);
    color: var(--white);
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
    padding: 8px 0;
    z-index: 98; 
    transition: transform 0.3s ease;
}

.sticky-footer.hidden {
    transform: translateY(100%);
}

.sticky-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-footer-info {
    display: flex;
    flex-grow: 1;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 15px;
}

.finance-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.financing-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    align-items: center;
}

.finance-type, .finance-detail {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    white-space: nowrap;
    color: #ffffff;
}

.sticky-footer-info i {
    color: var(--primary);
    margin-right: 6px;
    width: 14px;
    text-align: center;
}

.close-button {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.2s ease;
    margin-left: 10px;
}

.close-button:hover {
    background: rgba(255, 255, 255, 0.4);
}

.close-button i {
    color: #ffffff;
    font-size: 0.9rem;
}

/* Ottimizzazioni per dispositivi mobili */
@media (max-width: 767px) {
    .sticky-footer {
        padding: 7px 0;
    }
    
    .sticky-footer-content {
        position: relative;
        padding-right: 30px; /* Spazio per il pulsante di chiusura */
    }
    
    .sticky-footer-info {
        justify-content: center;
        text-align: center;
    }
    
    .financing-info {
        justify-content: center;
    }
    
    .close-button {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }
    
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 479px) {
    .finance-label {
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }
    
    .finance-type, .finance-detail {
        font-size: 0.75rem;
    }
    
    body {
        padding-bottom: 85px;
    }
}</pre></body></html>