/* 1. OVERLAY: Focus totale con sfocatura moderna */
#fancybox-overlay { 
    display: none; 
    position: fixed; 
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75) !important; 
    backdrop-filter: blur(6px) !important;
    z-index: 9998 !important; 
}

/* 2. IL RIQUADRO: Design Premium e rassicurante */
#fancybox-wrap { 
    display: none; 
    position: absolute; 
    width: 500px !important; 
    z-index: 9999 !important; 
    padding: 0 !important;
}

#fancybox-outer { 
    background: #ffffff !important; 
    border-radius: 24px !important; 
    padding: 45px !important; 
    box-shadow: 0 25px 80px rgba(0,0,0,0.6) !important;
}

#fancybox-content { 
    background: transparent !important; 
    color: #333 !important; 
    font-family: 'Inter', sans-serif !important;
    border: none !important; 
}

/* 3. MESSAGGIO DI SUCCESSO */
.vm-cart-added-status { 
    display: flex !important; 
    flex-direction: column !important; 
    align-items: center !important; 
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 30px !important;
    text-align: center !important;
}

/* Icona Checkmark */
.vm-cart-added-status::before {
    content: '✓';
    display: block;
    width: 50px; height: 50px;
    line-height: 50px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 15px;
}

/* 4. BOTTONI: Colori rassicuranti e riga vuota di separazione */
.continue_link, .showcart { 
    display: block !important; 
    width: 100% !important; 
    max-width: 360px !important;
    padding: 16px 0 !important; 
    border-radius: 14px !important; 
    font-weight: 700 !important; 
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-decoration: none !important; 
    font-size: 15px !important; 
    transition: all 0.3s ease !important;
    text-align: center !important;
    border: none !important;
}

/* MOSTRA IL PREVENTIVO: VERDE ACQUISTO (Sopra) */
.showcart { 
    background: linear-gradient(180deg, #28a745 0%, #218838 100%) !important; 
    color: #ffffff !important; 
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4) !important;
    order: 1 !important; 
    margin-bottom: 25px !important; /* RIGA VUOTA (Spazio extra tra i tasti) */
}
.showcart:hover { 
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(40, 167, 69, 0.5) !important;
}

/* CONTINUA IL PREVENTIVO: AZZURRO CHIARO (Sotto) */
.continue_link { 
    background: linear-gradient(180deg, #e3f2fd 0%, #bbdefb 100%) !important; 
    color: #1976d2 !important; 
    border: 1px solid #90caf9 !important;
    order: 2 !important; 
}
.continue_link:hover { 
    background: #bbdefb !important;
    transform: translateY(-1px);
}

/* 5. TASTO CHIUDI */
#fancybox-close { 
    top: 25px !important; right: 25px !important; 
    width: 24px; height: 24px; 
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23999" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>') no-repeat center !important;
}

#fancybox-loading { display: none !important; }