/* ========== Floating Order Cart ========== */
.menu-order {
  position: fixed;
  bottom: 30px;
  left: 20px;
  width: 280px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 40px rgba(255, 56, 179, 0.15),
              0 4px 15px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  overflow: hidden;
  transition: all 0.35s ease;
  font-family: 'Google Sans', sans-serif;
}

.menu-order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255, 56, 179, 0.08);
  border-bottom: 1px solid rgba(255, 56, 179, 0.12);
  cursor: pointer;
}

.menu-order-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: #ff38b3;
  letter-spacing: 0.3px;
}

.menu-order-toggle {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #ff38b3;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}

.menu-order-body {
  max-height: 340px;
  overflow-y: auto;
  transition: max-height 0.35s ease;
}

.menu-order.collapsed .menu-order-body {
  max-height: 0;
}

.order-items {
  padding: 14px 18px 8px;
}

.empty-order {
  text-align: center;
  color: #a38b9e;
  font-size: 0.95rem;
  margin: 12px 0;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.92rem;
  color: #4a2c3a;
}

.order-item:last-child {
  border-bottom: none;
}

.order-item-name {
  flex: 1;
  padding-right: 10px;
}

.order-item-remove {
  background: none;
  border: none;
  color: #ff38b3;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.order-item-remove:hover {
  opacity: 1;
}

.menu-order-footer {
  padding: 12px 18px 16px;
  display: flex;
  gap: 10px;
}

.place-order-btn {
  flex: 1;
  background: #ff38b3;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(255, 56, 179, 0.3);
}

.place-order-btn:hover {
  background: #e0309f;
  transform: translateY(-1px);
}

.clear-order-btn {
  background: transparent;
  color: #a38b9e;
  border: 1px solid #f0c9d7;
  border-radius: 50px;
  padding: 12px 16px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.clear-order-btn:hover {
  background: #fff0f5;
  color: #ff38b3;
}