.checkout-form {
  max-width: 900px;
  margin: auto;
  font-family: Arial, sans-serif;
}

/* GRID PRINCIPAL */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* CADA COLUMNA */
.checkout-col h3 {
  margin-bottom: 16px;
  color: #003a8f;
}

/* LABELS + INPUTS */
.checkout-form label {
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
}

.checkout-form input {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.checkout-form input:focus {
  outline: none;
  border-color: #1e5cff;
  box-shadow: 0 0 0 2px rgba(30, 92, 255, 0.15);
}

/* BOTÓN */
.checkout-form button {
  margin-top: 30px;
  padding: 14px;
  width: 100%;
  background-color: #01132a;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.checkout-form select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  background-color: #fff;
  cursor: pointer;
}

.checkout-form select:focus {
  outline: none;
  border-color: #1e5cff;
  box-shadow: 0 0 0 2px rgba(30, 92, 255, 0.15);
}

.order-confirmation {
  max-width: 520px;
  margin: 4rem auto;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.order-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.order-confirmation h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
}

.order-text {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.order-box {
  background: #f1f5f9;
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.order-box span {
  display: block;
  font-size: .85rem;
  color: #64748b;
}

.order-box strong {
  font-size: 1.3rem;
  color: #0ea5e9;
  letter-spacing: .5px;
}

.order-note {
  font-size: .95rem;
  color: #334155;
}


/* 📱 MOBILE */
@media (max-width: 768px) {
  .checkout-grid {
      grid-template-columns: 1fr;
  }
}

.checkout-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 15px 10px;
  border-bottom: 1px solid #eee;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.checkout-steps .step {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 1;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

/* Línea conectora */
.checkout-steps .step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -50%;
  width: 100%;
  height: 2px;
  background: #ddd;
  z-index: -1;
}

.checkout-steps .step:last-child::after {
  display: none;
}

/* Círculo */
.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background: #fff;
}

/* Paso completado */
.step.completed {
  color: #2e7dff; /* azul Shamá */
}

.step.completed .step-number {
  border-color: #2e7dff;
  background: #2e7dff;
  color: #fff;
}

/* Paso activo */
.step.active {
  color: #000;
  font-weight: 600;
}

.step.active .step-number {
  border-color: #2e7dff;
}

/* Responsive */
@media (max-width: 768px) {
  .checkout-steps {
      flex-direction: column;
      gap: 15px;
      border-bottom: none;
  }

  .checkout-steps .step::after {
      display: none;
  }
}
