/**
 * Stili card sostitutiva contatti - utenti non loggati
 *
 * @package Vendingo
 */

.vendingo-contact-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.vendingo-contact-placeholder__blur {
    margin-bottom: 1rem;
}

.vendingo-contact-placeholder__img {
    max-width: 100%;
    height: auto;
}

.vendingo-contact-placeholder__text {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
}

.vendingo-contact-placeholder__button {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #ef3340;
    color: #fff;
    text-decoration: none;
    border-radius: var(--e-global-lborder-radius, 5px);
    font-weight: 600;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.vendingo-contact-placeholder__button:hover {
    background: #e02a37;
    color: #fff;
    box-shadow: 0 4px 12px rgba(239, 51, 64, 0.35);
}
