/* Notification Popup */
.notification-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 15px;
    z-index: 1001;
    max-width: 300px;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.5s ease;
}

.notification-popup.show {
    transform: translateY(0);
    opacity: 1;
}

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

.notification-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.notification-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notification-text {
    flex: 1;
}

.notification-text p {
    margin: 0;
    font-size: 0.9em;
    line-height: 1.4;
}

.notification-product {
    font-weight: 700;
    color: var(--primary-color);
}

.notification-time {
    font-size: 0.8em;
    color: #777;
}

.notification-close {
    background: none;
    border: none;
    color: #777;
    font-size: 1.2em;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
    align-self: flex-start;
}