.elementor-2552 .elementor-element.elementor-element-4744eac{--display:flex;}.elementor-2552 .elementor-element.elementor-element-051a37d{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e279150 *//* --- VARIABLES --- */
:root {
    --primary: #007bff;
    --wa-color: #25D366;
    --text-main: #1a1a1a;
    --text-muted: #666;
    --bg-glass: rgba(255, 255, 255, 0.95); /* Leggermente più opaco per leggibilità */
    --shadow-float: 0 10px 30px rgba(0,0,0,0.15);
}

/* --- MOBILE STICKY BAR (Shared Styles) --- */
.mobile-sticky-bar {
    position: fixed;
    bottom: 20px;
    left: 15px;  /* Margini leggermente ridotti per schermi piccoli */
    right: 15px;
    background: var(--bg-glass);
    backdrop-filter: blur(12px); /* Blur aumentato per effetto premium */
    -webkit-backdrop-filter: blur(12px); /* Supporto Safari */
    border: 1px solid rgba(255,255,255,0.5); /* Bordo sottile luce */
    padding: 10px 15px; /* Padding ottimizzato */
    border-radius: 60px;
    box-shadow: var(--shadow-float);
    z-index: 9999;
    transform: translateZ(0); /* Ottimizzazione GPU */
    transition: transform 0.3s ease, bottom 0.3s ease;
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

/* --- LATO SINISTRO: Prezzo (Veicolo) o Info (Home) --- */
.sticky-price, 
.sticky-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.sticky-price {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-main);
}

.sticky-info .info-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

.small-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

/* --- LATO DESTRO: Bottoni --- */
.sticky-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Bottone WhatsApp (Icona Tonda) */
.icon-btn.whatsapp {
    background: var(--wa-color);
    width: 44px; /* Dimensione touch friendly */
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s active;
}

.icon-btn.whatsapp:active { transform: scale(0.95); }

/* Bottone Chiama (Pillola) */
.full-btn.call {
    background: var(--text-main); /* Nero/Scuro elegante */
    color: white;
    padding: 0 24px;
    height: 44px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background 0.2s;
}

.full-btn.call:hover {
    background: #333;
}

/* --- ANIMAZIONI & DETTAGLI --- */
/* Animazione Pulse su WhatsApp per attirare attenzione (opzionale) */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.icon-btn.whatsapp {
    animation: pulse-green 2s infinite;
}

/* --- DESKTOP: Nascondi tutto --- */
@media (min-width: 992px) {
    .mobile-sticky-bar {
        display: none !important;
    }
}

/* --- FIX PER IPHONE (Safe Area) --- */
/* Se l'utente ha iPhone X+, alziamo la barra per non toccare la riga home */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mobile-sticky-bar {
        bottom: calc(20px + env(safe-area-inset-bottom));
    }
}/* End custom CSS */