/* =========================================================
   CHECKOUT ECOLIFE - versión ordenada
   ========================================================= */

/* Paleta */
:root {
  --brand-1: #3fb28a;
  --brand-2: #2a92bf;
  --brand-3: #1d5f86;
  --bg-light: #f5f5f5;
  --border: #d8dee4;
  --shadow: rgba(0, 0, 0, 0.06);
  --radius: 14px;

  /* nuevo: tono oscuro para botones */
  --ink: #26313a;      /* gris muy oscuro */
  --ink-soft: #303b45;
  --ink-border: #36404a;
}

/* solo checkout con esta fuente */
.checkout-page,
.checkout-page * {
  font-family: "Montserrat", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ===== layout principal ===== */
.checkout-page {
  padding: 2rem 0 3rem;
}

.checkout-shell {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 1.3rem;
}

@media (min-width: 1024px) {
  .checkout-shell {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.checkout-left {
  flex: 1 1 50%;
}

.checkout-right {
  flex: 1 1 50%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  padding: 1.6rem 1.6rem 1.2rem;
  height: fit-content;
  order: -1;
}
@media (min-width: 1024px) {
  .checkout-right {
    order: 0;
    position: sticky;
    top: 2rem;
  }
}

/* ===== barra de pasos ===== */
.checkout-steps {
  display: flex;
  gap: 0;
  margin-bottom: 1.4rem;
  background: linear-gradient(to right, var(--brand-1), var(--brand-2), var(--brand-3));
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
}

.checkout-steps .step {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  text-align: center;
  padding: 1rem .5rem .9rem;
  cursor: pointer;
  transition: .2s;
}

.checkout-steps .step.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.03);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  margin-bottom: .25rem;
  font-size: .75rem;
}
.checkout-steps .step.is-active .step-number {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}

.step-label {
  display: block;
  font-weight: 600;
  font-size: .79rem;
}
@media (max-width: 600px) {
  .step-label { display:none; }
  .step-number { margin-bottom:0; }
}

/* ===== paneles ===== */
.checkout-panel {
  background: #f6f7f8;
  border: 1px solid rgba(38,49,58,.025);
  border-radius: 16px;
  padding: 1.7rem 1.4rem 1.7rem;
  box-shadow: 0 2px 6px rgba(0,0,0,.02);
  display: none;
}
.checkout-panel.is-visible {
  display: block;
}

.checkout-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #102a43;
  margin-bottom: .5rem;
}
.checkout-sub {
  font-size: .9rem;
  color: #5f6b74;
  margin-bottom: 1.2rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid #e5e7eb;
}

/* campos */
.field-group {
  margin-bottom: 1.05rem;
}
.field-group label {
  display:block;
  font-weight: 500;
  font-size: .78rem;
  margin-bottom: .35rem;
  color: #1f2933;
}
.field-group input,
.field-group select {
  width: 100%;
  border: 1px solid #d3d9de;
  border-radius: 10px;
  padding: .6rem .6rem;
  font-size: .83rem;
  background: #fff;
  transition: .15s;
}
.field-group input:focus,
.field-group select:focus {
  outline: none;
  border-color: var(--brand-2);
  box-shadow: 0 0 0 3px rgba(42,146,191,.15);
}

.field-group.two,
.field-group.three {
  display: grid;
  gap: .9rem;
}
.field-group.two { grid-template-columns: 1fr; }
.field-group.three { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .field-group.two { grid-template-columns: repeat(2, 1fr); }
  .field-group.three { grid-template-columns: repeat(3, 1fr); }
}

/* tabs de envío */
.shipping-tabs {
  display: flex;
  gap: .55rem;
  margin-bottom: 1rem;
}
.ship-tab {
  flex:1;
  border: 1px solid #d3d9de;
  background: #fff;
  border-radius: 10px;
  padding: .55rem 0;
  font-weight: 600;
  font-size: .76rem;
  color: #374151;
  cursor: pointer;
  transition: .15s;
  text-align:center;
}
.ship-tab.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* botones generales */
.btn-primary,
.btn-secondary,
.page-btn,
.cart-list .ci .remove,
.cart-list .ci .qty button {
  font-family: inherit;
}

.btn-primary {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: .6rem 1.4rem;
  font-weight: 600;
  font-size: .8rem;
  cursor: pointer;
  transition: .15s;
}
.btn-primary:hover {
  background: var(--ink-soft);
}

.btn-secondary {
  background: #fff;
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: 999px;
  padding: .55rem 1.3rem;
  font-weight: 600;
  font-size: .78rem;
}
.btn-secondary:hover {
  background: var(--ink);
  color: #fff;
}

.panel-actions {
  display:flex;
  justify-content:flex-end;
  gap:.65rem;
  margin-top:1.4rem;
  padding-top:.9rem;
  border-top:1px solid #e5e7eb;
}

/* ===== columna derecha / acciones superiores ===== */
.cart-actions-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:1.1rem;
  padding-bottom: .9rem;
  border-bottom:1px solid #edf1f3;
}
.cart-actions-top .page-btn {
  border: 1px solid var(--ink-border);
  background: #fff;
  border-radius: 999px;
  padding: .35rem 1.1rem;
  font-weight: 600;
  font-size: .75rem;
  color: var(--ink);
  cursor:pointer;
  transition:.15s;
}
.cart-actions-top .page-btn:hover {
  background: var(--ink);
  color: #fff;
}

/* ===== items del carrito ===== */
.cart-list {
  list-style:none;
  margin:0;
  padding:0;
}
.ci {
  display:grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  align-items:center;
  border-bottom:1px solid #edf1f3;
  padding:1rem 0;
}
.ci:last-child { border-bottom:0; }

.ci figure {
  width:80px;
  height:80px;
  border-radius:12px;
  background:#f4f5f7;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin:0;
}
.ci img {
  width:100%;
  height:100%;
  object-fit:contain;
}

.ci h4 {
  margin:0 0 .4rem 0;
  font-size:.9rem;
  font-weight:600;
  color:#13253a;
}

.ci .qty {
  display:flex;
  align-items:center;
  gap:.35rem;
}

.ci .qty button {
  width:28px;
  height:28px;
  border-radius:50%;
  border:1px solid var(--ink-border);
  background:#fff;
  color:var(--ink);
  font-weight:700;
  line-height:1;
  cursor:pointer;
  transition:.12s;
}
.ci .qty button:hover {
  background:var(--ink);
  color:#fff;
}
.ci .qty input {
  width:42px;
  text-align:center;
  border:1px solid #d8dee4;
  border-radius:6px;
  font-size:.75rem;
  padding:.15rem 0;
}

.ci .remove {
  background:#fff;
  border:1px solid var(--ink-border);
  border-radius:999px;
  padding:.25rem .95rem;
  font-size:.7rem;
  color:var(--ink);
  font-weight:600;
  margin-top:.4rem;
  cursor:pointer;
}
.ci .remove:hover {
  background:var(--ink);
  color:#fff;
}

.ci .price {
  text-align:right;
  align-self:flex-start;
  color:#1d5f86;
  font-weight:700;
}
.ci .line-total {
  font-size:.7rem;
  color:#6b7280;
  margin-top:.25rem;
}

/* subtotal */
.cart-summary {
  padding-top:1.1rem;
  margin-top:1rem;
  border-top:2px solid #edf1f3;
}
.cart-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:.5rem;
}
.cart-row strong {
  font-size:1rem;
  color:#0f172a;
}
.cart-note {
  font-size:.7rem;
  color:#6b7280;
  text-align:right;
}

/* ===== responsive carrito ===== */
@media (max-width: 820px) {
  .checkout-right { order:-1; }
  .ci {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
  }
  .ci .price {
    grid-column: 2 / 3;
    text-align:left;
    margin-top:.35rem;
  }
}
/* ===== overrides pedido ===== */

/* nada redondeado */
.checkout-steps,
.checkout-panel,
.checkout-right,
.cart-list .ci,
.cart-summary,
.cart-actions-top {
  border-radius: 0 !important;
}

/* la columna derecha también con bloque gris claro */
.checkout-right {
  background: #f6f7f8 !important;
  border: 1px solid #d8dee4;
}

/* la izquierda al mismo tono y sin redondeo */
.checkout-panel {
  background: #f6f7f8 !important;
  border: 1px solid #d8dee4;
}

/* items del carrito más compactos */
.cart-list .ci {
  padding: 0.9rem 0;
  gap: 0.75rem;
}

/* imagen un toque más chica */
.cart-list .ci figure {
  width: 70px;
  height: 70px;
}

/* texto y precio más chicos y alineados */
.cart-list .ci h4 {
  font-size: 0.85rem;
}
.cart-list .ci .price {
  font-size: 0.78rem;
  line-height: 1.25;
}
.cart-list .ci .line-total {
  font-size: 0.7rem;
}

/* botones oscuros también en la derecha (quitar y qty) */
.cart-list .ci .remove,
.cart-list .ci .qty button {
  border-color: #26313a !important;
  color: #26313a !important;
}
.cart-list .ci .remove:hover,
.cart-list .ci .qty button:hover {
  background: #26313a !important;
  color: #fff !important;
}

/* cabecera de la derecha en gris */
.cart-actions-top {
  background: #f6f7f8;
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1px solid #d8dee4;
}
.cart-actions-top .page-btn {
  border-color: #26313a !important;
  color: #26313a !important;
}
.cart-actions-top .page-btn:hover {
  background: #26313a !important;
  color: #fff !important;
}
/* === recto todo: botones, cards, qty === */
button,
.btn-primary,
.btn-secondary,
.cart-actions-top .page-btn,
.cart-list .ci .remove,
.cart-list .ci .qty button {
  border-radius: 0 !important;
}

/* cada item de la derecha en un cuadro */
.cart-list .ci {
  background: #fff;
  border: 1px solid #d8dee4;
  margin-bottom: 0.65rem;
  padding: 0.75rem;
  grid-template-columns: 68px 1fr auto;
}

/* imagen más prolija */
.cart-list .ci figure {
  width: 68px;
  height: 68px;
  background: #edf0f2;
  border: 1px solid #d8dee4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-list .ci figure img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

/* textos y precio un poco más ordenados */
.cart-list .ci h4 {
  font-size: .78rem;
  margin-bottom: .35rem;
}
.cart-list .ci .price {
  font-size: .7rem;
  text-align: right;
}
.cart-list .ci .line-total {
  font-size: .65rem;
}

/* botones de cantidad y quitar en oscuro y rectos */
.cart-list .ci .qty button {
  width: 26px;
  height: 26px;
  border: 1px solid #26313a;
  background: #fff;
  color: #26313a;
}
.cart-list .ci .qty button:hover {
  background: #26313a;
  color: #fff;
}

.cart-list .ci .remove {
  border: 1px solid #26313a;
  background: #fff;
  color: #26313a;
  padding: .25rem .8rem;
  font-size: .7rem;
}
.cart-list .ci .remove:hover {
  background: #26313a;
  color: #fff;
}

/* header botones derecha también rectos */
.cart-actions-top .page-btn {
  border-radius: 0 !important;
}
/* seguir encuadrando cada item de la derecha */
.cart-list .ci {
  background: #fff;
  border: 1px solid #d8dee4;
  margin-bottom: 0.65rem;
  padding: 0.75rem;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  align-items: center;
}

/* imagen sin fondo ni borde y un poco más grande */
.cart-list .ci figure {
  width: 80px;
  height: 80px;
  margin: 0;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-list .ci figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* botón quitar con ancho suficiente */
.cart-list .ci .remove {
  min-width: 90px;             /* espacio para "Quitar" */
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.1rem;           /* un poco más de padding lateral */
  border: 1px solid #1d3342;
  background: #fff;
  color: #1d3342;
  font-weight: 600;
  font-size: .9rem;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;         /* que no se parta en 2 líneas */
  transition: background .15s ease, color .15s ease;
}

.cart-list .ci .remove:hover {
  background: #1d3342;
  color: #fff;
}
/* === BOTONES COLUMNA DERECHA NEGROS COMO IZQUIERDA === */

/* Seguir comprando / Vaciar */
.cart-actions-top .page-btn {
  background: var(--ink) !important;
  color: #fff !important;
  border: 1px solid var(--ink) !important;
  border-radius: 0 !important;
  font-weight: 600;
}

.cart-actions-top .page-btn:hover {
  background: var(--ink-soft) !important;
  color: #fff !important;
}

/* Botón Quitar */



/* === CANTIDAD: SOLO RECTO, SIN ESTILO DE BOTÓN NEGRO === */
.cart-list .ci .qty input {
  border-radius: 0 !important;
}

.cart-list .ci .qty button {
  background: #fff !important;
  color: var(--ink) !important;
  border: 1px solid var(--ink) !important;
  border-radius: 0 !important; /* rectos */
}
/* === quitar cuadro de +/- y del input de cantidad === */
.cart-list .ci .qty button {
  background: transparent !important;
  border: none !important;
  color: var(--ink) !important;
  width: auto;
  height: auto;
  padding: 0 .25rem;
  font-size: 1.25rem;
  line-height: 1;
}

.cart-list .ci .qty input {
  background: transparent !important;
  border: none !important;
  width: 42px;
  text-align: center;
  color: #0f172a;
  font-weight: 600;
}
.cart-list .ci .remove {
  min-width: 40px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  border-radius: 0;
  font-size: 1.1rem; /* para que la papelera se vea bien */
  cursor: pointer;
}
/* botón eliminar del carrito */
.cart-list .ci .remove {
  min-width: 40px;
  height: 38px;
  background: #000;
  border: 1px solid #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
}


/* ===== botón eliminar con ícono de papelera ===== */
.cart-list .ci .remove {
  min-width: 40px;
  height: 38px;
  background: #000;
  border: 1px solid #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
}

/* ícono dentro del botón eliminar */
.cart-list .ci .remove .icon-trash {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== cantidad: + y - sin cuadro ni hover negro ===== */
.cart-list .ci .qty button {
  background: transparent !important;
  border: none !important;
  color: #000 !important;
  width: auto;
  height: auto;
  padding: 0 .25rem;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

/* sin cambio de color al pasar */
.cart-list .ci .qty button:hover {
  background: transparent !important;
  color: #000 !important;
  transform: none !important;
}

/* input de cantidad sin borde */
.cart-list .ci .qty input {
  background: transparent !important;
  border: none !important;
  width: 42px;
  text-align: center;
  font-weight: 600;
  color: #0f172a;
}
/* ===============================
   TIPOGRAFÍA DE BLOQUES (estilo panel)
   =============================== */

/* título principal del panel (como DATOS DE ENVÍO) */
.checkout-panel .checkout-title {
  font-family: "Poppins", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;             /* no tan grande */
  font-weight: 700;               /* bien negrita */
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.1;
}

/* línea fina debajo del título */
.checkout-panel .checkout-sub {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .8rem;
  color: #6b7280;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eceff1;
}

/* etiquetas/labels de los campos (izquierda) */
.checkout-panel .field-group label {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: .78rem;
  font-weight: 600;
  text-transform: none;          /* si querés todo en mayúscula poné uppercase */
  color: #111827;
  letter-spacing: .01em;
}

/* títulos de fila tipo “Destinatario”, “Dirección”, si los tenés en <p> o <span> */
.checkout-panel .row-label,
.checkout-panel .form-label-strong {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: .75rem;
  color: #111827;
}

/* valor a la derecha (texto grisito) */
.checkout-panel .row-value {
  font-family: "Inter", system-ui;
  font-size: .85rem;
  color: #4b5563;
}

/* tabs de envío que tenés debajo del título */
.shipping-tabs .ship-tab {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: .01em;
}
.cart-title-box {
  background: #f0f2f4;           /* mismo tono que tu panel gris */
  border-bottom: 1px solid #d8dee4;
  padding: 0.85rem 1.2rem;
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #0f172a;
}
/* encabezado del panel derecho */
.right-head {
  background: #e5e9ed;           /* gris claro tipo pasarela */
  border-bottom: 1px solid #d0d6dc;
  padding: 0.85rem 1.6rem;
}

.right-head h2 {
  margin: 0;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #0f172a;
}
.right-head {
  background: #e5e9ed;
  border-bottom: 1px solid #d0d6dc;
  padding: 0.85rem 1.6rem;
  margin-bottom: 1rem; /* 👈 separa del bloque de botones */
}
/* ======== RESUMEN (Subtotal / Envío / Total) ======== */
.cart-summary {
  background: #fff;
  border: 1px solid #d8dee4;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
  padding: 1rem 1.1rem;
  margin-top: 1rem;
}

.summary-rows {
  display: grid;
  gap: .55rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .92rem;
  line-height: 1.25;
}

.summary-row .label {
  color: #0f172a;
}

.summary-row .value {
  font-weight: 700;
  color: #0f172a;
}

.summary-row + .summary-row {
  border-top: 1px dashed #e3e7ea;
  padding-top: .55rem;
}

.summary-row.total {
  margin-top: .2rem;
  border-top: 2px solid #d8dee4;
  padding-top: .7rem;
  font-size: 1.05rem;
}

.summary-row.total .value {
  font-weight: 800;
}

/* nota aclaratoria debajo (ya existente) */
.cart-note {
  margin-top: .6rem;
  text-align: right;
  font-size: .75rem;
  color: #6b7280;
}
/* "Ahorrás" más chico y tachado */
.summary-row.saving .value {
  color: #64748b;            /* gris suave */
  font-weight: 600;
}
.summary-row.saving .value small {
  font-size: 0.85rem;        /* más chico que Subtotal/Total */
  line-height: 1;
}
.summary-row.saving .value s {
  text-decoration-thickness: 1px;
  text-decoration-color: #94a3b8; /* tono del tachado */
}
/* Valor de envío gratis en verde, tipo pill */
/* Envío gratis: solo la letra en verde */
.summary-row .value.is-free {
  color: #15803d;
  font-weight: 800; /* si lo querés normal, podés quitar esta línea */
}
/* Envío gratis: solo texto verde (ya lo tenías) */
.summary-row .value.is-free {
  color: #15803d;
  font-weight: 800;
}

/* Envío con costo: más chico y gris */
.row-shipping .value.is-paid {
  color: #6b7280;     /* gris */
  font-size: 0.85rem; /* más chico */
}
/* ===== Precio por item ordenado y compacto ===== */
.ci .price .price-box { display: grid; gap: .15rem; }

/* Fila principal: ahora + badge (alineados) */
.ci .price .row-main {
  display: flex;
  align-items: baseline;
  gap: .4rem;
}

/* Precio NUEVO (más chico que antes) */
.ci .price .price-now {
  font-size: 0.95rem;      /* << más chico */
  font-weight: 800;
  color: #1d5f86;          /* brand-3 */
  line-height: 1;
}

/* Badge de % (usa el tuyo si ya había uno) */
.ci .price .price-badge {
  display: inline-block;
  padding: .05rem .45rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  background: #e53935;
  color: #fff;
}

/* Precio ANTES (tachado y gris, más chico) */
.ci .price .row-old { line-height: 1; }
.ci .price .price-old {
  color: #94a3b8;
  font-size: .78rem;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

/* Cálculo por línea ya lo tenés en .line-total; lo dejamos discreto */
.ci .price .line-total {
  font-size: .72rem;
  color: #6b7280;
}
/* =========================================================
   AJUSTE FINAL DE PRECIOS - CHECKOUT / CARRITO
   ========================================================= */
.cart-price {
  display: flex !important;
  flex-direction: column !important;   /* uno debajo del otro */
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 2px !important;
  margin-top: 4px !important;
}

.cart-price .row {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.cart-price .price,
.cart-price .old-price {
  font-size: 0.88rem !important;       /* más chico */
  font-weight: 500 !important;         /* menos grueso */
  color: #1f2937 !important;           /* gris oscuro neutro */
  line-height: 1.2 !important;
}

.cart-price .old-price {
  text-decoration: line-through !important;
  color: #94a3b8 !important;           /* gris claro */
}

.cart-price .badge {
  font-size: 0.7rem !important;        /* mantiene el diseño actual */
  font-weight: 600 !important;
  margin-top: 2px !important;
}

.line-total small {
  display: block !important;
  font-size: 0.78rem !important;
  color: #475569 !important;
  margin-top: 2px !important;
}
/* Ocultar la franja dentro del resumen */
.cart-summary .payment-strip {
  display: none !important;
}
/* Banner Handy dentro del contenedor izquierdo */
.handy-inside-left {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.handy-inside-left img {
  width: 100%;
  max-width: 100%;   /* que respete el ancho del contenedor */
  height: auto;      /* no deformar */
  border-radius: 8px;
}
/* ============================
   BORDES NEGROS SOLO EN INPUTS
   ============================ */
.checkout-panel input,
.checkout-panel select,
.checkout-panel textarea {
  border: 1px solid #000 !important;   /* borde negro */
  border-radius: 0 !important;         /* recto */
  background: #fff !important;         /* fondo blanco limpio */
  padding: 10px !important;
  box-shadow: none !important;
}

/* Hover / Focus también recto */
.checkout-panel input:focus,
.checkout-panel select:focus,
.checkout-panel textarea:focus {
  border: 1px solid #000 !important;
  outline: none !important;
  box-shadow: none !important;
}
.help-note {
  display: block;
  font-size: 11px;
  color: #444;
  margin-top: 4px;
  opacity: 0.8;
}
.checkout-payment-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.35;
  background: #f8fafc;
  padding: 10px 12px;
  border-radius: 8px;
  border-left: 3px solid #3fb28a;
}

/* Mobile */
@media (max-width: 480px) {
  .checkout-payment-note {
    font-size: 0.7rem;
    padding: 8px 10px;
  }
}
.cuotas-select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-top: 4px;
}

.cuotas-info {
  font-size: 12px;
  color: #666;
  display: block;
  margin-top: 6px;
}
.cuotas-note {
  font-size: 13px;
  color: #555;
  margin-top: 6px;
}
.cuotas-box {
  background: #f3f3f3;
  padding: 12px;
  border-radius: 8px;
  margin-top: 15px;
}

.cuotas-box h4 {
  margin: 0 0 6px 0;
  font-size: 15px;
  font-weight: 600;
}

#cuotas-detalle {
  font-size: 14px;
  color: #444;
}
