/* ===========================
  MODALES + CARRITO
=========================== */
.modalLogin {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 18px;
}

.modalBox {
  width: 100%;
  max-width: 380px;
  background: #0b1535;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px;
  color: white;
}

.modalBox h3 {
  margin: 0 0 6px 0;
  font-size: 18px;
  color: #ffb500;
}

.modalBox input {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: none;
  margin-top: 10px;
  outline: none;
  font-size: 16px;
}

.modalBox button {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border-radius: 14px;
  border: none;
  font-weight: bold;
  background: #ffb500;
  cursor: pointer;
  font-size: 15px;
}

.modalBox .btnGhost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: white;
}

.modalBox .btnDanger {
  background: transparent;
  border: 1px solid rgba(255,80,80,.35);
  color: #ff6b6b;
}

.small {
  font-size: 12px;
  opacity: .85;
  margin-top: 8px;
}

.carritoLista {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.carritoItem {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 8px 10px;
  border-radius: 14px;
  font-weight: bold;
  user-select: none;
}

.carritoItem span {
  margin-left: 6px;
  opacity: .7;
  cursor: pointer;
}

#btnCarritoFloat {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 99999;
  border: none;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: bold;
  background: #ffb500;
  color: black;
  cursor: pointer;
  display: none;
  font-size: 16px;
}

/* Selección */
.numero.seleccionado {
  outline: 3px solid #00ffcc;
  transform: scale(1.03);
}
