/* ================================================================
   CORE — Inventario y Ventas
   Layout estructural → Utilidades Style (.layout-pagina, .panel-inferior, .panel-subida)
   Aquí solo van estilos específicos de esta página
   ================================================================ */
 
/* ── PANEL PAGO MIXTO ── */
#panel-pago-mixto {
  background: #1a1a2e !important;
  border: 1px solid #2a2a4a !important;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
}
 
#panel-pago-mixto select {
  background: #0d0d0d !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid #2a2a4a !important;
}
 
#panel-pago-mixto select option {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.7);
}
 
#panel-pago-mixto input[type="text"] {
  background: #0d0d0d !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid #2a2a4a !important;
}
 
#mixto-resumen {
  color: rgba(255, 255, 255, 0.7) !important;
}
 
/* ══ TRANSICIÓN "VUELTA DE PÁGINA" al ir a Datos del Cliente / Equipo ══ */
 
/* El contenedor que envuelve estas secciones necesita perspectiva 3D */
#formulario-scroll {
  perspective: 1400px;
}
 
@keyframes flipPageIn {
  0% {
    transform: rotateY(-100deg);
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  100% {
    transform: rotateY(0deg);
    opacity: 1;
  }
}
 
.pagina-flip {
  transform-origin: left center;
  animation: flipPageIn 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 0 2px rgba(206, 147, 216, 0.45), 0 14px 34px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 5;
}