:root {
  --primary: #3862F3;
  --primary-light: #818cf8;
  --success: #10b981;
  --dark: #1f2937;
  --gray: #9ca3af;
  --light-gray: #f3f4f6;
  --white: #ffffff;
}

/* Reset y tipografía base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
.form2 * {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form2 {
  background-color: #f9fafb;
  color: var(--dark);
  line-height: 1.6;
}

/* Contenedor confirmación */
.containerConfirmation {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}

/* ====== CONFIRMACIÓN DE PEDIDO ====== */
.order-confirmation {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.headerConfirmation {
  background-color: var(--primary);
  color: var(--white);
  padding: 30px;
  text-align: center;
}

.headerConfirmation h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.headerConfirmation p {
  font-size: 16px;
  opacity: 0.9;
}

.success-iconConfirmation {
  width: 60px;
  height: 60px;
  background-color: var(--success);
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-iconConfirmation::before {
  content: "✓";
  color: white;
  font-size: 30px;
  font-weight: bold;
}

.order-detailsConfirmation { padding: 30px; }

.order-infoConfirmation {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
}

.info-blockConfirmation {
  flex: 1;
  min-width: 200px;
}

.info-blockConfirmation h3 {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.info-blockConfirmation p {
  font-size: 15px;
  margin-bottom: 5px;
}

.order-summaryConfirmation h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

.product-listConfirmation { margin-bottom: 30px; }

.product-itemConfirmation {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid var(--light-gray);
}

.product-imageConfirmation {
  width: 70px;
  height: 70px;
  background-color: var(--light-gray);
  border-radius: 8px;
  margin-right: 15px;
  overflow: hidden;
}

.product-imageConfirmation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detailsConfirmation { flex: 1; }

.product-nameConfirmation { font-weight: 600; margin-bottom: 5px; }

.product-priceConfirmation { color: var(--dark); font-weight: 600; }

.product-quantityConfirmation { color: var(--gray); font-size: 14px; }

.order-totalsConfirmation {
  background-color: var(--light-gray);
  padding: 20px;
  border-radius: 8px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.total-row.final {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--gray);
  font-weight: bold;
  font-size: 18px;
}

.next-steps { margin-top: 30px; text-align: center; }

.tracking-button {
  display: inline-block;
  text-decoration: none !important;
  background-color: var(--primary);
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 15px;
  transition: background-color 0.3s;
}

.tracking-button:hover { background-color: var(--primary-light); color: var(--white); }

/* ====== LAYOUT PRINCIPAL CHECKOUT ====== */
.main-content {
  padding-top: 0 !important;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-transition { opacity: 1; transition: opacity 0.3s ease; }
.fade-transition.hidden { opacity: 0; }

.oculto { display: none !important; }

/* Títulos */
h4.section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

/* Tarjetas y contenidos */
.card {
  border: none !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
  margin-bottom: 1.5rem !important;
  background: #ffffff !important;
}

.card-body { padding: 1.5rem !important; }

.card-title {
  font-weight: 700 !important;
  color: #1f2937 !important;
  margin-bottom: 1.25rem !important;
  font-size: 1.25rem !important;
}

.card-text {
  color: #4b5563 !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

/* Botones principales */
#separar { padding: 1%; display: inline-block; }

.boton3 {
  color: #2260ff !important;
  font-size: 16px;
  font-weight: 600;
  padding: 0.75em 1.5em;
  background: transparent;
  border: 2px solid #2260ff;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(34, 96, 255, 0.15);
}

.boton3:hover {
  background: linear-gradient(135deg, #2260ff 0%, #0069d9 100%);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 96, 255, 0.3);
}

.btnurl3 { text-decoration: none !important; }

.btn-primary {
  background: linear-gradient(135deg, #2260ff 0%, #0069d9 100%) !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 0.75rem 1.5rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(34, 96, 255, 0.25) !important;
  transition: all 0.3s ease !important;
}

.btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(34, 96, 255, 0.35) !important;
}

.btn-danger {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 0.75rem 1.5rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.25) !important;
  transition: all 0.3s ease !important;
}

.btn-danger:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(220, 53, 69, 0.35) !important;
}

/* Inputs y formularios */
.form-control {
  border: 2px solid #e5e7eb !important;
  border-radius: 10px !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.95rem !important;
  transition: all 0.3s ease !important;
  background: #ffffff !important;
}

.form-control:focus {
  border-color: #2260ff !important;
  box-shadow: 0 0 0 3px rgba(34, 96, 255, 0.1) !important;
  transform: translateY(-1px) !important;
}

.form-control.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

/* Labels */
label.form-label {
  font-weight: 600 !important;
  color: #374151 !important;
  margin-bottom: 0.5rem !important;
  font-size: 0.9rem !important;
}

/* Campos de dirección */
.datos-direccion {
  margin-top: 15px;
  margin-bottom: 10px;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 15px 20px;
}

.datos-direccion .form-check-label { cursor: pointer; }

@media (min-width: 768px) {
  .datos-direccion .form-check {
    display: flex;
    align-items: center;
    height: 100%;
  }
}

/* Tarjetas de productos */
.item.card {
  border: none !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
  transition: all 0.3s ease !important;
  margin-bottom: 1.25rem !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

.item.card:hover {
  box-shadow: 0 8px 24px rgba(34, 96, 255, 0.15) !important;
  transform: translateY(-4px) !important;
}

.item.card .card-body { padding: 1.25rem !important; }

.oferta-img {
  width: 150px;
  height: 150px;
  display: block;
  margin: auto;
  background: #f8f9fa;
  object-fit: contain !important;
  border-radius: 12px;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.item.card:hover .oferta-img { transform: scale(1.05); }

/* Eliminar botón individual (usa tus IDs dinámicos) */
button[id^="EliminarItem"] {
  transition: all 0.3s ease !important;
  padding: 0.5rem !important;
  border-radius: 8px !important;
}

button[id^="EliminarItem"]:hover {
  background: rgba(220, 53, 69, 0.1) !important;
  transform: scale(1.1) !important;
}

/* Divisor */
hr.my-4 {
  border-top: 2px solid #e5e7eb !important;
  margin: 1.5rem 0 !important;
}

/* Select */
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232260ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem !important;
}

/* SweetAlert */
.swal-modal {
  vertical-align: unset !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15) !important;
}

.swal-button {
  background-color:#2260ff !important;
  border-radius: 8px !important;
  padding: 0.75rem 1.5rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.swal-button:hover {
  background-color:#0069d9 !important;
  transform: translateY(-2px) !important;
}

/* ====== MÉTODOS DE PAGO ====== */
.radio-inputs {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 20px;
  user-select: none;
  padding: 1rem 0;
}

.radio-inputs > * { margin: 10px; }

.radio-input {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.radio-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  min-height: 110px;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .radio-tile {
    width: 90px;
    min-height: 90px;
    border-radius: 14px;
  }
}

.radio-tile:before {
  content: "";
  position: absolute;
  display: block;
  width: 1rem;
  height: 1rem;
  border: 2px solid #e5e7eb;
  background-color: #fff;
  border-radius: 50%;
  top: 0.5rem;
  left: 0.5rem;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.radio-tile:hover {
  border-color: #2260ff;
  box-shadow: 0 6px 16px rgba(34, 96, 255, 0.15);
  transform: translateY(-2px);
}

.radio-tile:hover:before {
  transform: scale(1);
  opacity: 1;
}

.radio-icon svg {
  width: 2.25rem;
  height: 2.25rem;
  fill: #6b7280;
  transition: all 0.3s ease;
}

.radio-icon i {
  font-size: 2.25rem;
  color: #6b7280;
  transition: all 0.3s ease;
}

.radio-label {
  color: #6b7280;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 0.85rem;
  max-width: 99%;
  margin-top: 0.5rem;
  font-weight: 500;
}

.radio-input:checked + .radio-tile {
  border-color: #2260ff;
  box-shadow: 0 8px 20px rgba(34, 96, 255, 0.25);
  color: #2260ff;
  transform: translateY(-4px);
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
}

.radio-input:checked + .radio-tile:before {
  transform: scale(1);
  opacity: 1;
  background-color: #2260ff;
  border-color: #2260ff;
}

.radio-input:checked + .radio-tile .radio-icon svg { fill: #2260ff; }
.radio-input:checked + .radio-tile .radio-icon i { color: #2260ff; }
.radio-input:checked + .radio-tile .radio-label { color: #2260ff; font-weight: 600; }

/* Icono SVG Vana */
.radio-iconvana {
  margin-top: 10px;
  width: 50px;
  height: 18px;
  background-image: url('./img/vanapay-gray.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.radio-input:checked + .radio-tile .radio-iconvana { background-image: url('./img/vanapay-blue.svg'); }

.recargo::after {
  content: "*Sin Recargo";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 1rem;
  background: linear-gradient(135deg, #2260ff 0%, #0069d9 100%);
  color: white;
  font-size: 7px;
  font-weight: 600;
  top: -0.6rem;
  right: -0.7rem;
  padding: 0.25rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(34, 96, 255, 0.3);
}

/* ====== STEPPER ====== */
.stepper {
  margin: 0 1rem 18px 1rem;
  padding-right: 1rem;
  padding-left: 1rem;
}

.stepper-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0;
  align-items: center;
  padding: 20px 0 8px 0;
}

.stepper-track::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  height: 4px;
  background: #e9ecef;
  border-radius: 4px;
}

.stepper-progress {
  position: absolute;
  top: 32px;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #0d6efd, #00bcd4);
  border-radius: 4px;
  transition: width 300ms ease;
}

.stepper .step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
  outline: none;
}

.stepper .step .step-index {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e9ecef;
  color: #495057;
  display: grid;
  place-items: center;
  font-weight: 600;
  border: 2px solid #e9ecef;
  transition: all 200ms ease;
  position: relative;
}

.stepper .step .step-index i {
  display: none;
  color: #198754;
  font-size: 16px;
}

.stepper .step .step-index span { display: inline-block; }

.stepper .step .step-label {
  font-size: 13px;
  color: #6c757d;
  text-align: center;
  white-space: nowrap;
}

.stepper .step.active .step-index {
  background: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(13,110,253,.15);
}

.stepper .step.active .step-label { color: #0d6efd; font-weight: 600; }

.stepper .step.done .step-index {
  background: #d1e7dd;
  border-color: #198754;
  color: #198754;
}

.stepper .step.done .step-index span { display: none; }
.stepper .step.done .step-index i { display: inline-block; }
.stepper .step.done .step-label { color: #198754; font-weight: 600; }

.stepper .step:hover .step-index { transform: translateY(-1px); }
.stepper .step:focus { outline: none; }
.stepper .step:focus .step-index { box-shadow: 0 0 0 4px rgba(13,110,253,.25); }

@media (max-width: 420px) {
  .stepper .step .step-label {
    font-size: 12px;
    white-space: normal;
  }
}

/* ====== ACCESIBILIDAD ====== */
*:focus {
  outline: 2px solid #2260ff !important;
  outline-offset: 2px !important;
}

button:focus, a:focus, input:focus, select:focus {
  outline: 2px solid #2260ff !important;
  outline-offset: 2px !important;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .item.card { flex-direction: column !important; }

  .oferta-img {
    width: 100%;
    max-width: 150px;
    height: 150px;
    max-height: 150px;
    font-size: 0.95rem;
    padding: 1px !important;
    background: #f8f9fa;
  }
}

/* ====== UTILIDADES PARA REDISEÑO ====== */
/* Si decides eliminar los headers acordeón, oculta cualquier resto */
.detalle-btn,
.estilosPrecio {
  display: none !important;
}

/* Si mantienes acordeón para secundarios, estos estilos quedan disponibles:
.detalle-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  color: #1f2937;
  width: 100%;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.detalle-btn i { margin-right: 0.75rem; color: #2260ff; font-size: 1.1rem; transition: transform 0.3s ease; }
.detalle-btn:hover { transform: translateY(-2px); }
.detalle-btn:hover i { transform: rotate(180deg); }
*/

/* Transiciones de secciones */
.fade-transition {
  opacity: 1;
  transition: opacity 200ms ease, transform 200ms ease;
  transform: translateY(0);
}
.fade-transition.oculto {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

/* Utilidad oculto (fallback por si no usas .fade-transition) */
.oculto {
  display: none !important;
}

/* Selector de direcciones guardadas */
.saved-addresses {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px 14px;
}
.saved-addresses .form-label {
  margin-bottom: .25rem;
}

/* Card de resumen de dirección */
#resumenDireccion.card {
  border: 1px solid #e9ecef;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
#resumenDireccion .card-body {
  padding: 14px 16px;
}
#resumenDireccionTexto {
  line-height: 1.4;
}
#btnEditarDireccionSeleccionada {
  margin-top: -4px;
  color: #0d6efd;
  text-decoration: none;
}
#btnEditarDireccionSeleccionada:hover {
  text-decoration: underline;
}

/* Card del formulario de dirección */
#cardFormularioDireccion.card {
  border: 1px solid #e9ecef;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
#cardFormularioDireccion .card-body {
  padding: 16px;
}

/* Inputs y selects */
.datos-direccion .form-control,
.datos-direccion select.form-control {
  border: 1px solid #dfe3e8;
  border-radius: 8px;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.datos-direccion .form-control:focus,
.datos-direccion select.form-control:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 .2rem rgba(13,110,253,.15);
}

/* Etiquetas */
.form-label {
  font-weight: 600;
  color: #495057;
}

/* Botones principales */
.btn-primary {
  border-radius: 8px;
}
.btn-outline-primary {
  border-radius: 8px;
}

/* Layouts responsivos */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.form-row .form-group {
  flex: 1 1 240px;
}

/* Microajustes */
.section-title {
  margin-bottom: .75rem;
}
#savedAddresses small.text-muted {
  display: inline-block;
  margin-top: .25rem;
}

/* Cards de direcciones */
.address-cards.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.address-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px 12px 40px;
  position: relative;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .03s;
  outline: none;
}
.address-card:hover { border-color: #cbd5e1; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.address-card:active { transform: scale(0.995); }
.address-card.selected { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.15); }
.address-card .radio-dot {
  position: absolute; left: 12px; top: 16px; width: 18px; height: 18px;
  border-radius: 50%; border: 2px solid #9ca3af; background: #fff;
}
.address-card.selected .radio-dot {
  border-color: #2563eb; background: radial-gradient(#2563eb 60%, transparent 61%);
}
.address-card .title { font-weight: 600; margin-bottom: 6px; color: #111827; }
.address-card .meta { font-size: 0.92rem; color: #374151; }
.address-card .meta div + div { margin-top: 2px; }
.address-card .tags { margin-top: 8px; }
.address-card .tag {
  display: inline-block; font-size: 0.75rem; padding: 2px 8px; border-radius: 9999px;
  background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0;
}

.direccion-resumen-card {
 border: 1px solid #dbeafe;
  box-shadow: 0 4px 16px rgba(37,99,235,0.06);
  border-radius: 12px;
  background: #fff;
  padding: 14px 16px;
}

.direccion-resumen-card .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.direccion-resumen-card .title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.direccion-resumen-card .icon {
  color: #2563eb;
  font-size: 18px;
}

.direccion-resumen-card .text .nombre {
  font-weight: 700;
  color: #111827;
  line-height: 1.1;
}
.direccion-resumen-card .text .telefono {
  font-size: 0.9rem;
  color: #4b5563;
}

.direccion-resumen-card .body {
  border-top: 1px dashed #e5e7eb;
  padding-top: 10px;
}

.direccion-resumen-card .fila {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: 0.96rem;
  margin: 6px 0;
}
.direccion-resumen-card .fila i {
  color: #6b7280;
}

.direccion-resumen-card .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.8rem;
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 9999px;
  padding: 4px 10px;
}
.direccion-resumen-card .tag i {
  color: #059669;
  font-size: 0.85rem;
}


/* Sutil detalle decorativo en el borde superior */
.order-pagoinfo::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #38bdf8, #60a5fa);
  opacity: 0.9;
}

/* Título */
.order-pagoinfo h2 {
  font-size: clamp(1.25rem, 1.1rem + 0.8vw, 1.75rem);
  line-height: 1.2;
  margin: 0 0 12px 0;
  letter-spacing: 0.2px;
  color: #0f172a; /* más contraste */
}

/* Párrafos */
.order-pagoinfo p {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 0.975rem;
}

/* Lista de datos bancarios */
.order-pagoinfo ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 8px;
  display: grid;
  gap: 10px;
}

/* Ítems con estilo de tarjeta ligera */
.order-pagoinfo ul li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  gap: 8px;
  align-items: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.2s ease;
}

/* Hover suave en desktop */
@media (hover: hover) and (pointer: fine) {
  .order-pagoinfo ul li:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(2, 132, 199, 0.08); /* sombra azul suave */
    border-color: #dbeafe;
  }
}

/* Negritas dentro de la lista (las etiquetas) */
.order-pagoinfo ul li strong {
  min-width: 132px;
  color: #0f172a;
  font-weight: 600;
}

/* Texto de valor */
.order-pagoinfo ul li strong + span,
.order-pagoinfo ul li :not(strong) {
  color: #111827;
}

/* Asegura que el formato “Etiqueta: Valor” se vea bien incluso sin spans extra */
.order-pagoinfo ul li {
  /* Permite que el texto largo envuelva correctamente */
  flex-wrap: wrap;
}

/* Tipografía y legibilidad general */
.order-pagoinfo,
.order-pagoinfo * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Responsive spacing */
@media (max-width: 480px) {
  .order-pagoinfo {
    padding: 18px;
    border-radius: 14px;
    margin: 16px;
  }
  .order-pagoinfo ul li {
    padding: 10px 12px;
  }
  .order-pagoinfo ul li strong {
    min-width: 110px;
  }
}

/* Variante opcional: resaltar la cuenta con un “chip” (usa nth-child) */
.order-pagoinfo ul li:nth-child(2) {
  background: linear-gradient(0deg, #f0f9ff, #ffffff);
  border-color: #bae6fd;
  position: relative;
}
.order-pagoinfo ul li:nth-child(2)::after {
  content: "Cuenta";
  position: absolute;
  top: -10px;
  right: 12px;
  font-size: 10px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #0369a1;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  padding: 2px 8px;
}

/* Accesibilidad: enfoque visible si se navega con teclado */
.order-pagoinfo :where(a, button, [tabindex]:not([tabindex="-1"])):focus {
  outline: 3px solid #93c5fd;
  outline-offset: 2px;
  border-radius: 8px;
}