
/* CHECKOUT STYLES - Design Reyes Unified */

:root {
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* Container principal — sin fondo propio, para no duplicar el glass de las
   columnas de adentro (eso es lo que se veía "turbio"/muy oscuro). */
.checkout-wrapper {
  width: 90%;
  max-width: 900px;
  margin: 1.25rem auto;
  padding: .5rem 0;
}

/* Header del checkout */
.checkout-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.checkout-header h1 {
  font-family: 'Anton', 'Poppins', sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #dcd1ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.checkout-header h1 i {
  -webkit-text-fill-color: #ffffff;
  margin-right: 0.5rem;
}

.checkout-header p {
  color: #a79fc4;
  font-size: 1rem;
}

/* Grid de 2 columnas — mismo alto siempre (stretch), aunque el contenido
   de una columna sea más corto que el de la otra. */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: stretch;
}

.checkout-col-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .5rem;
  padding: 1.5rem;
}

.checkout-col-payment {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1.5rem;
}

.checkout-product-thumb {
  width: 170px;
  max-width: 100%;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .25rem;
}

.checkout-product-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.checkout-thumb-icon {
  font-size: 3rem;
  color: #fff;
}

.checkout-product-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  white-space: normal;
}

.checkout-product-desc {
  font-size: 0.85rem;
  color: #a79fc4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.checkout-product-desc i {
  font-size: 0.7rem;
}

.checkout-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  width: 100%;
  margin-top: .5rem;
}

.checkout-spec {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-align: left;
  min-width: 0;
}

.checkout-spec iconify-icon {
  flex-shrink: 0;
  color: var(--accent-soft);
}

.checkout-spec div {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  min-width: 0;
}

.checkout-spec span {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #a79fc4;
  font-weight: 600;
}

.checkout-spec strong {
  font-size: .8rem;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-top: .6rem;
}

.checkout-trust-pills span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 999px;
  padding: .3rem .65rem;
}

.checkout-product-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: .3rem;
}

.checkout-product-price small {
  display: block;
  font-size: 0.55em;
  font-weight: 600;
  opacity: 0.7;
}

.checkout-includes {
  list-style: none;
  margin-top: 1rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  width: 100%;
  max-width: 260px;
}

.checkout-includes li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .85rem;
  color: #d4c8f0;
  text-align: left;
}

/* Resumen mini del diseño (columna izquierda) */
.checkout-mini-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.75rem;
}

.checkout-mini-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #9b4dff, var(--accent));
}

.checkout-mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-mini-thumb i,
.checkout-mini-icon {
  font-size: 1.3rem;
  color: white;
}

.checkout-mini-name {
  font-weight: 700;
  color: #ffffff;
  font-size: .98rem;
}

.checkout-mini-desc {
  font-size: .8rem;
  color: #a79fc4;
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-top: .15rem;
}

.checkout-section-title {
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #ffffff;
  margin-bottom: 1rem;
}

/* Formulario de datos de facturación */
.billing-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.billing-field-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: .75rem;
}

.billing-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.billing-field label {
  font-size: .78rem;
  color: #a79fc4;
}

.billing-optional {
  opacity: .7;
  font-weight: 400;
}

.billing-field input,
.billing-field select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: .7rem .85rem;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
}

.billing-field input:focus,
.billing-field select:focus {
  outline: none;
  border-color: var(--accent-soft);
}

.billing-field input::placeholder {
  color: #6b6483;
}

/* Resumen: subtotal / cupón / total */
.checkout-summary {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: .92rem;
  color: #d4c8f0;
}

.checkout-summary-discount {
  color: #4ade80;
}

.checkout-summary-total {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  padding-top: .75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-summary-total small {
  font-size: .55em;
  font-weight: 600;
  opacity: .7;
}

.checkout-coupon-row {
  display: flex;
  gap: .6rem;
}

.checkout-coupon-row input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: .7rem .85rem;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
}

.checkout-coupon-row input:focus {
  outline: none;
  border-color: var(--accent-soft);
}

.checkout-coupon-row button {
  padding: .7rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  white-space: nowrap;
}

.checkout-coupon-row button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.checkout-coupon-msg {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
}

.checkout-coupon-msg.is-valid {
  color: #4ade80;
}

.checkout-coupon-msg.is-invalid {
  color: #f87171;
}

/* Términos y condiciones */
.checkout-terms {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .82rem;
  color: #a79fc4;
  cursor: pointer;
}

.checkout-terms input {
  margin-top: .2rem;
  accent-color: var(--accent);
}

.checkout-terms a {
  color: var(--accent-soft);
  text-decoration: underline;
}

/* Bloqueo del formulario de pago hasta completar datos + términos */
.izipay-form-gate {
  position: relative;
}

.izipay-form-gate-msg {
  display: none;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: #a79fc4;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: .85rem 1rem;
  margin-bottom: .75rem;
}

.izipay-form-gate.is-locked .izipay-form-gate-msg {
  display: flex;
}

.izipay-form-gate.is-locked .kr-embedded {
  opacity: .35;
  pointer-events: none;
  filter: grayscale(.6);
}

/* Métodos de pago */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.payment-method {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.payment-method:hover {
  background: rgba(155, 77, 255, 0.08);
  border-color: rgba(155, 77, 255, 0.4);
  transform: translateY(-2px);
}

.payment-method.active {
  background: rgba(155, 77, 255, 0.12);
  border-color: #9b4dff;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.2);
  transform: translateY(-2px);
}

.payment-method-radio {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.payment-method.active .payment-method-radio {
  border-color: #9b4dff;
  background: var(--accent);
}

.payment-method.active .payment-method-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.payment-method-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.payment-method-icon i {
  font-size: 1.4rem;
}

.payment-method-icon .fa-credit-card {
  color: #ffffff;
}

.payment-method-icon .fa-paypal {
  color: #00457C;
}

.payment-method-icon .yape-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(145deg, #722ed1 0%, #9254de 50%, #b37feb 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
  box-shadow: 0 2px 8px rgba(114, 46, 209, 0.4);
  letter-spacing: -0.5px;
  position: relative;
  overflow: hidden;
}

.payment-method-icon .yape-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  border-radius: 8px 8px 0 0;
}

.payment-method-info {
  flex: 1;
}

.payment-method-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
  color: #ffffff;
}

.payment-method-subtitle {
  font-size: 0.8rem;
  color: #a79fc4;
}

/* Sección de pago de Izipay, directo en la página, sin card ni modal */
.izipay-payment-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* El formulario de Izipay (tema classic) tiene su propio ancho fijo interno
   y por defecto queda pegado a la izquierda; lo centramos dentro del panel. */
.izipay-payment-section .kr-embedded {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Los campos de tarjeta (kr-pan, kr-expiry, etc.) se dejan tal cual los
   renderiza el tema "classic" de Izipay, sin overrides de fondo/borde:
   el input interno siempre queda blanco (estilo inline del SDK), así que
   cualquier fondo/borde en el wrapper solo generaba un recuadro visible
   detrás del campo blanco. Solo se restylea el botón de pago. */
.izipay-payment-section .kr-embedded .kr-payment-button {
  background: #D9FF3D !important;
  color: #14210a !important;
  border: none !important;
  border-radius: 10px !important;
  font-weight: 800 !important;
  letter-spacing: .03em !important;
  animation: izipayPayPulse 1.6s ease-in-out infinite;
}

.izipay-payment-section .kr-embedded .kr-payment-button:hover {
  animation-play-state: paused;
}

@keyframes izipayPayPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}

.modal-title {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.izipay-modal-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.izipay-trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.izipay-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 999px;
  padding: .3rem .7rem;
}

.izipay-card-brands {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.4rem;
  color: var(--text-soft);
}

.izipay-trust-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  text-align: center;
  font-size: .75rem;
  color: var(--muted);
  margin-top: 1rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.izipay-trust-footer iconify-icon {
  color: #4ade80;
  flex-shrink: 0;
}

/* PayPal Buttons Container */
#paypal-button-container {
  min-height: 50px;
}

/* Card Fields */
#card-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-field {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  min-height: 52px;
  transition: all 0.25s ease;
}

.card-field:focus-within {
  border-color: #9b4dff;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.card-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

#card-name-field input {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.25s ease;
}

#card-name-field input:focus {
  border-color: #9b4dff;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

#card-name-field input::placeholder {
  color: #a79fc4;
}

#pay-with-card-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  border: none;
  border-radius: var(--radius-md);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  box-shadow: var(--shadow-accent);
}

#pay-with-card-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.35);
}

#pay-with-card-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Yape/Plin */
.yape-content {
  text-align: center;
}

.yape-qr {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.yape-qr img {
  width: 220px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.yape-info {
  background: #24193d;
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.security-note {
  text-align: center;
  margin-top: 1.5rem;
  color: #10b981;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.yape-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.yape-number i {
  font-size: 1rem;
}

.yape-amount {
  font-size: 1rem;
  font-weight: 600;
  color: #4ade80;
}

.yape-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.yape-form label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  display: block;
  color: var(--text-soft);
}

.yape-form input[type="email"] {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.25s ease;
}

.yape-form input[type="email"]:focus {
  border-color: #9b4dff;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.yape-form input[type="email"]::placeholder {
  color: #a79fc4;
}

.file-upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.file-upload:hover {
  border-color: #9b4dff;
  background: rgba(124, 58, 237, 0.03);
}

.file-upload.has-file {
  border-color: #4ade80;
  background: rgba(74, 222, 128, 0.05);
}

.file-upload i {
  font-size: 2rem;
  color: #a79fc4;
  margin-bottom: 0.75rem;
}

.file-upload.has-file i {
  color: #4ade80;
}

.file-upload p {
  font-size: 0.9rem;
  color: #a79fc4;
}

.file-upload input {
  display: none;
}

#submit-yape-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #9b4dff, var(--accent));
  border: none;
  border-radius: var(--radius-md);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-accent);
}

#submit-yape-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(155, 77, 255, 0.35);
}

#submit-yape-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Security note */
.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: #a79fc4;
  font-size: 0.85rem;
}

.security-note i {
  color: #4ade80;
}

/* Loading overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 0, 13, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
}

.loading-overlay.active {
  display: flex;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1.25rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-text {
  font-size: 1rem;
  color: #a79fc4;
}

/* Alert messages */
.alert {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.alert.show {
  display: flex;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

/* Login required */
.login-required {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.login-required-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-accent);
}

.login-required-icon i {
  font-size: 2rem;
  color: white;
}

.login-required h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.login-required p {
  color: #a79fc4;
  margin-bottom: 1.5rem;
}

.login-required a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-accent);
}

.login-required a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.35);
}

/* Card not available message */
.card-not-available {
  text-align: center;
  padding: 1.5rem;
}

.card-not-available i {
  font-size: 2.5rem;
  color: #a79fc4;
  margin-bottom: 1rem;
}

.card-not-available p {
  color: #a79fc4;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .checkout-col-payment {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
  }
}

@media (max-width: 600px) {
  .checkout-wrapper {
    padding: 1.5rem 0 3rem;
  }

  .checkout-header h1 {
    font-size: 1.6rem;
  }

  .card-field-row {
    grid-template-columns: 1fr;
  }
}