/**
 * Carrito — rediseño racing Motos Hotwheels.
 *
 * Fuente ÚNICA de estilos del carrito. Reemplaza:
 *  - los 2 bloques <style> inline de woocommerce/cart/cart.php
 *  - las reglas .the-cart-content de theme.css
 * Nada de eso debe convivir con este archivo (se borró al introducirlo).
 *
 * Sistema de diseño compartido con el checkout (--mhw-co-*). Tarjetas claras,
 * Barlow Semi Condensed en mayúsculas para labels, JetBrains Mono para cifras/SKU.
 */

@font-face{font-family:"JetBrains Mono";font-weight:500;font-style:normal;font-display:swap;
  src:url("../fonts/jetbrains-mono-500.woff2") format("woff2")}
@font-face{font-family:"JetBrains Mono";font-weight:700;font-style:normal;font-display:swap;
  src:url("../fonts/jetbrains-mono-700.woff2") format("woff2")}

.the-cart-content,
.the-cart-content *,
.the-cart-content *::before,
.the-cart-content *::after{box-sizing:border-box}

.the-cart-content{
  --co-bg:#f4f4f6; --co-surface:#fff; --co-fieldbg:#f5f5f7;
  --co-ink:#18181b; --co-muted:#6b6b73; --co-faint:#9a9aa2; --co-line:#e6e6ea;
  --co-red:#e11414; --co-red-dark:#b81010; --co-green:#16893a;
  --co-cond:"Barlow Semi Condensed","Arial Narrow",sans-serif;
  --co-mono:"JetBrains Mono",ui-monospace,SFMono-Regular,Menlo,monospace;
  --co-shadow:0 1px 2px rgba(0,0,0,.04),0 8px 30px rgba(0,0,0,.06);
}

/* ============ Layout ============ */
.the-cart-content{
  display:block;                     /* antes flex-row; ahora columna con header */
  max-width:1180px;margin:100px auto 80px;padding:0 20px;
  color:var(--co-ink);
}
/* align-items:stretch (default) para que la columna del resumen ocupe toda la
   altura de la fila y el sticky tenga recorrido mientras se baja por los productos */
.mhw-cart-cols{display:grid;grid-template-columns:1fr 372px;gap:26px}
.the-cart-content .woocommerce-cart-form{margin:0;min-width:0}   /* min-width:0: evita que un título largo ensanche la columna */
.the-cart-content .cart-collaterals{width:auto;margin:0;min-width:0}
.the-cart-content .left-wrapper{border:0;padding:0;border-radius:0}

/* ============ Encabezado ============ */
.mhw-cart-head{margin-bottom:24px}
.mhw-cart-head .eyebrow{
  font-family:var(--co-cond);font-weight:700;font-size:.8rem;text-transform:uppercase;
  letter-spacing:.18em;color:var(--co-red);display:flex;align-items:center;gap:8px;margin-bottom:6px;
}
.mhw-cart-head .eyebrow::before{content:"";width:22px;height:2px;background:var(--co-red)}
.mhw-cart-head h1{
  font-family:var(--co-cond);font-weight:700;font-size:2.6rem;text-transform:uppercase;
  letter-spacing:.005em;line-height:.98;margin:0;color:var(--co-ink);
}
.mhw-cart-head .mhw-cart-count{
  font-family:var(--co-mono);font-size:.82rem;color:var(--co-muted);margin-top:10px;letter-spacing:-.01em;
}
.mhw-cart-head .mhw-cart-count b{color:var(--co-ink);font-weight:700}

/* ============ Cards de repuestos ============ */
.the-cart-content .cart-items-cards{display:flex;flex-direction:column;gap:14px;margin:0 0 18px}
.the-cart-content .cart-item-card{
  position:relative;display:grid;grid-template-columns:92px 1fr auto;gap:18px;align-items:center;
  background:var(--co-surface);border:1px solid var(--co-line);border-radius:14px;
  padding:16px 18px;box-shadow:var(--co-shadow);overflow:visible;
  transition:border-color .18s ease, box-shadow .18s ease;
}
.the-cart-content .cart-item-card:hover{
  border-color:#d6d6dc;box-shadow:0 2px 4px rgba(0,0,0,.05),0 14px 40px rgba(0,0,0,.08);
}
.the-cart-content .cart-card-image{margin:0}
.the-cart-content .cart-card-image img{
  width:92px;height:92px;object-fit:contain;border-radius:10px;
  background:var(--co-fieldbg);border:1px solid var(--co-line);padding:6px;
}
.the-cart-content .cart-card-info{display:flex;flex-direction:column;gap:9px;min-width:0}
.the-cart-content .cart-card-title{font-family:inherit;font-weight:600;font-size:1.04rem;
  color:var(--co-ink);line-height:1.24;margin:0}
.the-cart-content .cart-card-title a{color:inherit;text-decoration:none}
.the-cart-content .cart-card-title a:hover{color:var(--co-red)}

/* SKU → chip "REF" estampado (la referencia es la identidad del repuesto) */
.the-cart-content .cart-card-sku{
  display:inline-flex;align-items:center;gap:7px;align-self:flex-start;
  font-family:var(--co-mono);font-weight:500;font-size:.72rem;color:var(--co-muted);
  background:var(--co-fieldbg);border:1px solid var(--co-line);
  padding:3px 9px 3px 7px;border-radius:6px;letter-spacing:-.02em;
}
.the-cart-content .cart-card-sku::before{content:"";width:5px;height:5px;border-radius:50%;
  background:var(--co-red);flex:none}

/* fila cantidad + precio unitario */
.the-cart-content .cart-card-quantity{display:flex;align-items:center;gap:12px;margin:0}
.the-cart-content .cart-card-quantity > label{
  position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;
}
.the-cart-content .quantity-controls-wrapper{
  display:inline-flex;align-items:center;background:var(--co-surface);
  border:1px solid var(--co-line);border-radius:10px;overflow:hidden;width:max-content;
}
/* woocommerce_quantity_input envuelve el input en .quantity: que no estire la fila */
.the-cart-content .quantity-controls-wrapper .quantity{display:contents}
.the-cart-content .quantity-controls-wrapper label{
  position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;
}
.the-cart-content .qty-btn{
  width:34px;height:34px;border:0;background:transparent;color:var(--co-ink);
  display:grid;place-items:center;cursor:pointer;transition:background .15s;
}
.the-cart-content .qty-btn:hover:not(:disabled){background:var(--co-fieldbg)}
.the-cart-content .qty-btn:disabled{color:var(--co-faint);cursor:default}
.the-cart-content .quantity-controls-wrapper .qty-input-modern,
.the-cart-content .quantity-controls-wrapper input.qty{
  width:44px;height:34px;text-align:center;border:0;
  border-left:1px solid var(--co-line);border-right:1px solid var(--co-line);
  font-family:var(--co-mono);font-weight:500;font-size:.9rem;color:var(--co-ink);
  background:transparent;-moz-appearance:textfield;
}
.the-cart-content .qty-input-modern::-webkit-outer-spin-button,
.the-cart-content .qty-input-modern::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}

.the-cart-content .cart-card-price-unit{
  display:flex;align-items:center;gap:5px;font-family:var(--co-mono);font-size:.76rem;
  color:var(--co-faint);letter-spacing:-.02em;margin:0;
}
.the-cart-content .cart-card-price-label{
  font-family:var(--co-cond);font-weight:600;font-size:0;letter-spacing:0;
}
.the-cart-content .cart-card-price-unit .woocommerce-Price-amount{color:var(--co-faint)}
.the-cart-content .cart-card-price-unit::after{content:"c/u";color:var(--co-faint)}

/* subtotal por línea */
.the-cart-content .cart-card-subtotal{
  display:flex;flex-direction:column;align-items:flex-end;gap:4px;text-align:right;margin:0;
}
.the-cart-content .cart-card-subtotal-label{
  font-family:var(--co-cond);font-weight:600;font-size:.62rem;text-transform:uppercase;
  letter-spacing:.14em;color:var(--co-faint);
}
.the-cart-content .cart-card-subtotal-price,
.the-cart-content .cart-card-subtotal-price .woocommerce-Price-amount{
  font-family:var(--co-mono);font-weight:700;font-size:1.18rem;color:var(--co-ink);letter-spacing:-.03em;
}

/* quitar (×) arriba a la derecha */
.the-cart-content .cart-card-remove{position:absolute;top:12px;right:12px;margin:0;z-index:2}
.the-cart-content .cart-card-remove .remove{
  width:26px;height:26px;border-radius:7px;border:1px solid transparent;background:transparent;
  color:var(--co-faint);font-size:17px;line-height:1;display:grid;place-items:center;
  text-decoration:none;transition:.15s;box-shadow:none;transform:none;
}
.the-cart-content .cart-card-remove .remove:hover{
  color:var(--co-red);background:#fdecec;border-color:#f6d4d4;transform:none;
}
.the-cart-content .cart-card-backorder{font-size:.76rem;color:var(--co-muted);margin:2px 0 0}

/* ============ Agregar por referencia (buscador SKU) ============ */
.the-cart-content .cart-quick-search-wrapper{
  margin:0;background:var(--co-surface);border:1px dashed var(--co-line);border-radius:14px;padding:16px 18px;
}
.the-cart-content .cart-quick-search-label{
  display:flex;align-items:center;gap:8px;margin:0 0 10px;
  font-family:var(--co-cond);font-weight:700;font-size:.78rem;text-transform:uppercase;
  letter-spacing:.13em;color:var(--co-ink);
}
.the-cart-content .cart-quick-search-container{position:relative}
.the-cart-content .cart-quick-search-icon{
  position:absolute;left:13px;top:50%;transform:translateY(-50%);width:16px;height:16px;
  fill:var(--co-faint);pointer-events:none;z-index:2;
}
.the-cart-content .cart-quick-search-input{
  width:100%;height:46px;padding:0 44px 0 40px;font-size:.95rem;color:var(--co-ink);
  background:var(--co-fieldbg);border:1px solid var(--co-line);border-radius:10px;outline:none;
  transition:border-color .15s, box-shadow .15s;
}
.the-cart-content .cart-quick-search-input::placeholder{color:var(--co-faint)}
.the-cart-content .cart-quick-search-input:focus{
  border-color:var(--co-red);box-shadow:0 0 0 3px rgba(225,20,20,.10);
}
.the-cart-content .cart-quick-search-clear{
  position:absolute;right:12px;top:50%;transform:translateY(-50%);width:22px;height:22px;
  display:grid;place-items:center;background:var(--co-line);color:var(--co-ink);border:0;
  border-radius:50%;font-size:15px;line-height:1;cursor:pointer;z-index:2;transition:.15s;
}
.the-cart-content .cart-quick-search-clear:hover{background:var(--co-red);color:#fff;transform:translateY(-50%)}
.the-cart-content .cart-quick-search-results{
  position:absolute;top:calc(100% + 6px);left:0;right:0;background:var(--co-surface);
  border:1px solid var(--co-line);border-radius:12px;box-shadow:0 12px 40px rgba(0,0,0,.14);
  max-height:360px;overflow-y:auto;z-index:1000;
}
.the-cart-content .cart-quick-search-result-item{
  display:flex;align-items:center;gap:12px;padding:11px 14px;cursor:pointer;
  border-bottom:1px solid var(--co-line);transition:background .15s;
}
.the-cart-content .cart-quick-search-result-item:last-child{border-bottom:0}
.the-cart-content .cart-quick-search-result-item:hover,
.the-cart-content .cart-quick-search-result-item.active,
.the-cart-content .cart-quick-search-result-item.first-result{background:#fdf4f4}
.the-cart-content .cart-quick-search-result-item.first-result{position:relative}
.the-cart-content .cart-quick-search-result-item.first-result::after{
  content:"⏎ Enter";position:absolute;top:8px;right:10px;background:var(--co-red);color:#fff;
  padding:3px 7px;border-radius:5px;font-family:var(--co-mono);font-size:.62rem;font-weight:500;
}
.the-cart-content .cart-quick-search-result-item.no-stock{opacity:.55;cursor:not-allowed;background:var(--co-fieldbg)}
.the-cart-content .cart-quick-search-result-image{
  width:46px;height:46px;object-fit:contain;border-radius:8px;flex-shrink:0;
  background:var(--co-fieldbg);border:1px solid var(--co-line);
}
.the-cart-content .cart-quick-search-result-name{font-weight:600;font-size:.9rem;color:var(--co-ink);line-height:1.2}
.the-cart-content .cart-quick-search-result-sku{font-family:var(--co-mono);font-size:.72rem;color:var(--co-muted)}
.the-cart-content .cart-quick-search-result-price{margin-left:auto;font-family:var(--co-mono);
  font-weight:700;font-size:.9rem;color:var(--co-ink)}
.the-cart-content .cart-quick-search-loading,
.the-cart-content .cart-quick-search-no-results{padding:14px;text-align:center;color:var(--co-muted);font-size:.88rem}


/* cupón */
.the-cart-content .table-coupons{width:100%;margin:16px 0 0;border:0;background:transparent}
.the-cart-content .table-coupons td.actions{padding:0}
.the-cart-content .table-coupons .coupon{display:flex;gap:10px;flex-wrap:wrap}
.the-cart-content .table-coupons .coupon input#coupon_code{
  flex:1;min-width:160px;height:46px;padding:0 14px;border:1px solid var(--co-line);
  border-radius:10px;background:var(--co-fieldbg);font-size:.95rem;color:var(--co-ink);
}
.the-cart-content .table-coupons .coupon button{
  height:46px;padding:0 20px;border:1px solid var(--co-line)!important;border-radius:10px!important;
  background:var(--co-surface)!important;color:var(--co-ink)!important;
  font-family:var(--co-cond);font-weight:700;text-transform:uppercase;letter-spacing:.05em;cursor:pointer;
  min-width:0;
}
.the-cart-content .table-coupons .coupon button:hover{background:var(--co-ink)!important;color:#fff!important}

/* ============ Resumen (tarjeta clara, sticky) ============ */
.the-cart-content .cart_totals{
  position:sticky;top:24px;float:none!important;width:100%!important;background:var(--co-surface);
  border:1px solid var(--co-line);border-top:3px solid var(--co-red);border-radius:16px;
  padding:22px 22px 24px;box-shadow:var(--co-shadow);
}
.the-cart-content .mhw-sum__label{
  font-family:var(--co-cond);font-weight:700;font-size:.82rem;text-transform:uppercase;
  letter-spacing:.16em;color:var(--co-muted);margin:0 0 14px;
}
.the-cart-content .mhw-sum__row{
  display:flex;justify-content:space-between;align-items:baseline;padding:9px 0;
  border-bottom:1px solid var(--co-line);
}
.the-cart-content .mhw-sum__row .k{font-size:.92rem;color:var(--co-muted)}
.the-cart-content .mhw-sum__row .v,
.the-cart-content .mhw-sum__row .v .woocommerce-Price-amount{
  font-family:var(--co-mono);font-weight:500;font-size:.92rem;color:var(--co-ink);
  font-variant-numeric:tabular-nums;letter-spacing:-.02em;
}
.the-cart-content .mhw-sum__row.mhw-discount .v,
.the-cart-content .mhw-sum__row.mhw-discount .v .woocommerce-Price-amount{color:var(--co-green)}

.the-cart-content .mhw-sum__total{
  display:flex;justify-content:space-between;align-items:flex-end;margin-top:16px;
  padding-top:16px;border-top:1px solid var(--co-line);
}
.the-cart-content .mhw-sum__total .k{
  font-family:var(--co-cond);font-weight:700;font-size:1.15rem;text-transform:uppercase;
  letter-spacing:.08em;color:var(--co-ink);
}
.the-cart-content .mhw-sum__total .v,
.the-cart-content .mhw-sum__total .v .woocommerce-Price-amount{
  font-family:var(--co-mono);font-weight:700;font-size:2.05rem;line-height:1;color:var(--co-ink);
  letter-spacing:-.045em;
}
/* $ pequeño y rojo, VERTICALMENTE CENTRADO con el monto (inline-flex en el bdi de WC) */
.the-cart-content .mhw-sum__total .v .woocommerce-Price-amount bdi{
  display:inline-flex;align-items:center;
}
.the-cart-content .mhw-sum__total .v .woocommerce-Price-currencySymbol{
  font-size:.5em;font-weight:500;color:var(--co-red);margin-right:2px;
}

/* botón finalizar compra */
.the-cart-content .wc-proceed-to-checkout{margin-top:20px;padding:0}
.the-cart-content .checkout-button{
  display:flex!important;align-items:center;justify-content:center;gap:10px;width:100%;height:54px;
  padding:0!important;border:0!important;border-radius:11px!important;cursor:pointer;
  background:var(--co-red)!important;color:#fff!important;
  font-family:var(--co-cond);font-weight:700;font-size:1.08rem;text-transform:uppercase;letter-spacing:.06em;
  transition:background .16s;min-width:0;
}
.the-cart-content .checkout-button:hover{background:var(--co-red-dark)!important;color:#fff!important}

.the-cart-content .mhw-sum__trust{
  display:flex;align-items:center;justify-content:center;gap:8px;margin-top:14px;
  font-size:.76rem;color:var(--co-muted);
}
.the-cart-content .mhw-sum__trust svg{width:13px;height:13px;color:var(--co-faint)}
.the-cart-content .mhw-sum__keep{
  display:block;text-align:center;margin-top:16px;font-size:.85rem;color:var(--co-muted);text-decoration:none;
}
.the-cart-content .mhw-sum__keep:hover{color:var(--co-ink)}

/* ============ Envío colapsable dentro del resumen ============ */
/* Mismo patrón que el checkout (.mhw-ship-acc): llega ya elegido del carrito →
   colapsado con el método + PRECIO A LA DERECHA; "Cambiar" abre los métodos y al
   elegir se vuelve a colapsar con el precio nuevo. */
.the-cart-content .mhw-ship-acc{border-top:1px solid var(--co-line);border-bottom:1px solid var(--co-line)}
.the-cart-content .mhw-ship-acc > summary{
  list-style:none;cursor:pointer;user-select:none;
  display:flex;align-items:center;justify-content:space-between;gap:12px;padding:13px 0;
}
.the-cart-content .mhw-ship-acc > summary::-webkit-details-marker{display:none}
.the-cart-content .mhw-ship-sel{display:flex;align-items:center;gap:10px;min-width:0}
.the-cart-content .mhw-ship-ico{width:18px;height:18px;flex:none;color:var(--co-muted)}
.the-cart-content .mhw-ship-sel-name{font-size:.9rem;font-weight:700;color:var(--co-ink);white-space:nowrap}
.the-cart-content .mhw-ship-change{
  display:inline-flex;align-items:center;gap:5px;flex:none;font-size:.78rem;font-weight:600;color:var(--co-muted);
}
/* "¡Gratis!" en una línea del desglose (Costo de envío) */
.the-cart-content .mhw-sum__row .v.mhw-free{
  color:var(--co-green);font-family:var(--co-cond);text-transform:uppercase;font-weight:700;letter-spacing:.02em;
}
.the-cart-content .mhw-ship-change i{font-style:normal;transition:transform .16s ease}
.the-cart-content .mhw-ship-acc[open] > summary .mhw-ship-change i{transform:rotate(180deg)}
.the-cart-content .mhw-ship-acc > summary:hover .mhw-ship-change{color:var(--co-red)}
.the-cart-content .mhw-ship-acc-body{padding:2px 0 12px}
/* cart.css es la ÚNICA autoridad del selector aquí: la frontend.css del plugin
   se deja fuera en el carrito (dequeue). El costo/umbral/barra van DENTRO de
   .shipping-method-info (stack vertical), no en columna aparte. */
.the-cart-content .rafas-custom-shipping-options{background:none;border:0;padding:0;margin:0}
.the-cart-content .rafas-custom-shipping-options > h3{display:none}   /* "Opciones de Envío": lo reemplaza el summary del acordeón */
.the-cart-content .shipping-methods-list{display:flex;flex-direction:column;gap:8px;margin:0}
.the-cart-content .shipping-method-option{
  margin:0;background:var(--co-surface);border:1px solid var(--co-line);border-radius:10px;
  cursor:pointer;transition:border-color .15s, background .15s;
}
.the-cart-content .shipping-method-option:hover{border-color:#d2d2d9}
.the-cart-content .shipping-method-option:has(.rafas-shipping-method-radio:checked){
  border-color:var(--co-red);background:#fdf4f4;
}
.the-cart-content .shipping-method-option > label{
  display:flex;align-items:flex-start;gap:11px;margin:0;padding:11px 12px;cursor:pointer;width:100%;font-weight:400;
}
.the-cart-content .rafas-shipping-method-radio{
  appearance:none;-webkit-appearance:none;width:18px;height:18px;margin:1px 0 0;border-radius:50%;
  border:2px solid var(--co-line);display:grid;place-items:center;cursor:pointer;flex:none;
  transition:border-color .15s;
}
.the-cart-content .rafas-shipping-method-radio:checked{border-color:var(--co-red)}
.the-cart-content .rafas-shipping-method-radio:checked::after{
  content:"";width:9px;height:9px;border-radius:50%;background:var(--co-red);
}
.the-cart-content .shipping-method-info{display:flex;flex-direction:column;gap:3px;flex:1;min-width:0}
.the-cart-content .shipping-method-name{font-weight:600;font-size:.9rem;color:var(--co-ink);line-height:1.2}
.the-cart-content .shipping-method-description{font-size:.74rem;color:var(--co-muted);line-height:1.3}
/* costo real (no gratis) */
.the-cart-content .shipping-method-cost{
  font-family:var(--co-mono);font-weight:700;font-size:.9rem;color:var(--co-ink);
  letter-spacing:-.02em;margin-top:2px;
}
/* badge cuando SÍ es gratis (umbral alcanzado) */
.the-cart-content .shipping-method-cost.shipping-method-free-badge{
  display:inline-flex;align-items:center;gap:6px;width:fit-content;
  font-family:var(--co-cond);font-weight:700;font-size:.82rem;text-transform:uppercase;letter-spacing:.05em;
  color:var(--co-green);
}
.the-cart-content .shipping-free-original-cost{
  text-decoration:line-through;color:var(--co-faint);font-family:var(--co-mono);font-weight:500;font-size:.78rem;
}
/* hint "Gratis desde $X" */
.the-cart-content .shipping-free-threshold{font-size:.72rem;color:var(--co-faint);font-style:normal}
/* mini barra de progreso a envío gratis */
.the-cart-content .shipping-method-mini-bar{
  background:var(--co-line);border-radius:99px;height:5px;margin-top:7px;overflow:hidden;
}
.the-cart-content .shipping-method-mini-progress{
  background:linear-gradient(90deg,#f59e0b,var(--co-red));height:100%;border-radius:99px;
  min-width:3px;transition:width .4s ease;
}
/* estado bloqueado */
.the-cart-content .shipping-method-option.shipping-method-locked{
  opacity:.6;background:var(--co-fieldbg);cursor:not-allowed;
}
.the-cart-content .shipping-method-unlock-info{font-size:.72rem;color:#b45309;margin-top:4px}
.the-cart-content .shipping-method-lock-icon{margin-left:4px;font-size:.8rem;font-style:normal}
/* aviso global de envío gratis (si el plugin lo pinta) */
.the-cart-content .rafas-free-shipping-notice{
  background:var(--co-fieldbg);border:1px solid var(--co-line);border-left:3px solid var(--co-red);
  border-radius:8px;padding:10px 12px;margin-bottom:12px;font-size:.78rem;color:var(--co-ink);
}
.the-cart-content .rafas-free-shipping-notice.rafas-free-shipping-achieved{border-left-color:var(--co-green)}
.the-cart-content .rafas-free-shipping-bar{background:var(--co-line);border-radius:99px;height:7px;overflow:hidden;margin-top:8px}
.the-cart-content .rafas-free-shipping-progress{
  background:linear-gradient(90deg,#f59e0b,var(--co-red));height:100%;border-radius:99px;min-width:4px;transition:width .4s ease;
}
/* costos por producto (poco común): estilo mínimo legible */
.the-cart-content .product-shipping-costs{margin-top:12px;border-top:1px solid var(--co-line);padding-top:10px}
.the-cart-content .product-shipping-costs h4{font-family:var(--co-cond);text-transform:uppercase;font-size:.7rem;
  letter-spacing:.1em;color:var(--co-muted);margin:0 0 8px}
.the-cart-content .product-shipping-list{list-style:none;margin:0;padding:0}
.the-cart-content .product-shipping-item{display:flex;justify-content:space-between;gap:10px;padding:5px 0;
  border-bottom:1px solid var(--co-line);font-size:.78rem;color:var(--co-muted)}
.the-cart-content .product-shipping-total{display:flex;justify-content:space-between;padding-top:8px;margin-top:4px;
  border-top:1px solid var(--co-line);color:var(--co-ink);font-weight:600;font-size:.82rem}

/* destino / cambiar dirección */
.the-cart-content .mhw-ship__dest{
  display:flex;align-items:center;gap:7px;padding:11px 0 2px;font-size:.78rem;color:var(--co-muted);
}
.the-cart-content .mhw-ship__dest svg{width:14px;height:14px;flex:none;color:var(--co-faint)}
.the-cart-content .mhw-ship__dest b{color:var(--co-ink);font-weight:600}
.the-cart-content .mhw-ship__dest .shipping-calculator-button{
  margin-left:auto;color:var(--co-red)!important;text-decoration:none;font-weight:600;font-size:.76rem;
}
.the-cart-content .mhw-ship__dest .shipping-calculator-button:hover{text-decoration:underline}

/* ============ Responsive ============ */
@media (max-width:860px){
  .the-cart-content{margin-top:80px}
  .mhw-cart-cols{grid-template-columns:1fr;gap:20px}
  .the-cart-content .cart_totals{position:static}
  .mhw-cart-head h1{font-size:2.1rem}
}
@media (max-width:520px){
  .the-cart-content .cart-item-card{grid-template-columns:64px 1fr;gap:14px}
  .the-cart-content .cart-card-image img{width:64px;height:64px}
  .the-cart-content .cart-card-subtotal{
    grid-column:1 / -1;flex-direction:row;justify-content:space-between;align-items:baseline;
    border-top:1px solid var(--co-line);padding-top:10px;
  }
}
