.order-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    width: 320px;
    border-left: 4px solid #2563eb;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.order-notification.show {
    transform: translateX(0);
}

.order-notification .icon {
    width: 40px;
    height: 40px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.order-notification .content {
    flex-grow: 1;
}

.order-notification .content p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #1f2937;
}

.order-notification .content .time {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 2px;
}

.order-notification .close-btn {
    color: #9ca3af;
    cursor: pointer;
    font-size: 0.75rem;
    align-self: flex-start;
}

.order-notification .close-btn:hover {
    color: #ef4444;
}

@media (max-width: 480px) {
    .order-notification {
        left: 20px;
        right: 20px;
        width: auto;
    }
}