#vegup-popup-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 9999;
    pointer-events: none;
}

/* BANDEAU */
#vegup-popup {
    pointer-events: auto;
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;

    background: #33a38a;
    color: #ffffff;
    border-radius: 0;
    padding-top: 12px;
    Padding-bottom: 10px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    gap: 16px;

    box-shadow: 0 -8px 30px rgba(0,0,0,0.25);
}

/* CROIX */
#vegup-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
}

/* TITRE */
#vegup-popup h2 {
    margin: 0;
    font-size: 2.6rem;
    line-height: 1;
    color: #ffffff;
    text-align : center;
}

/* TEXTE */
#vegup-popup p {
    margin: 0;
    font-size: 2rem;
    line-height: 1;
    text-align : center;
}

/* BOUTONS STORES */
.vegup-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap; /* 👈 clé : empêche le retour à la ligne */
}

.vegup-buttons a {
    display: block;
    flex: 0 0 auto;
}

.vegup-buttons img {
    height: 44px; /* un peu plus petit pour mobile */
    width: auto;
}

@media (max-width: 360px) {
    .vegup-buttons img {
        height: 38px;
    }
}

/* MOBILE */
@media (max-width: 600px) {
    #vegup-popup {
        Padding-top: 10px;
        
    }

    #vegup-popup h2 {
        font-size: 2rem;
    }

    #vegup-popup p {
        font-size: 1.4rem;
    }

    .vegup-buttons {
        justify-content: center;
    }
}