/* Кнопка отписки - левый нижний угол */
#wpp-unsub-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: auto;
    width: 48px;
    height: 48px;
    background: rgba(220, 50, 50, 0.15);
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(220, 50, 50, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99990;
    transition: all 0.3s ease;
    opacity: 0.7;
}

#wpp-unsub-btn:hover {
    opacity: 1;
    background: rgba(220, 50, 50, 0.25);
    transform: scale(1.1);
}

#wpp-unsub-btn svg {
    color: #dc3232;
    width: 22px;
    height: 22px;
}

@media (max-width: 480px) {
    #wpp-unsub-btn {
        bottom: 15px;
        left: 15px;
        width: 44px;
        height: 44px;
    }
    
    .wpp-prompt { left: 10px; right: 10px; bottom: 10px; max-width: none; }
}