#simple-order-popup {
  position: fixed;
  bottom: 50px;
  left: 20px;
  background: #fff;
  color: #333;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 9999;
  font-size: 14px;
  display: none;
  cursor: pointer;
  max-width: 280px;
  align-items: center;
}

#simple-order-popup img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  margin-right: 10px;
  object-fit: cover;
}

#simple-order-popup .popup-content {
  display: flex;
  align-items: center;
}

#simple-order-popup .popup-text {
  flex: 1;
  line-height: 1.4;
}

#simple-order-popup:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
}
