/* ========== WELCOME MESSAGE ========== */
.welcome-message {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(119, 65, 123, 0.15);
    border-left: 4px solid var(--floral-pink);
    z-index: 9999;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 90%;
    text-align: center;
    pointer-events: none;
}

.welcome-message.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.welcome-content i {
    font-size: 1.5rem;
    color: var(--floral-pink);
}

.welcome-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.gentle-pulse {
    animation: gentlePulse 2s ease-in-out 2;
}