/* Conteneur fixé en bas à gauche */
.push-container {
    position: fixed;
    left: 10px;
    bottom: 150px;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bouton */
.notification-push-subscribe-button {
    padding: 1.5rem;
    background-color: var(--color-secondary);
    border: unset;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.notification-push-subscribe-button:hover {
    transform: scale(1.05);
}

/* SVG */
.notification-push-subscribe-button svg {
    width:  1.25rem;
    height:  1.25rem;
    fill: #fff;;
}

/* Label par défaut (caché) */
#push-label {
    position: absolute;
    bottom: 20%; /* pile au-dessus du bouton */
    left: 220%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 4px .5rem;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-bottom: .5rem; /* espace entre bouton et label */
}

/* Label visible au hover */
.notification-push-subscribe-button:hover + #push-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}