/* =====================================================================
   SVR — Carrito
   Bloque 1: andamiaje para el marcado de WooCommerce.
   Bloque 2: skin SVR portado desde component-cart.css / component-cart-items.css
             (rem -> px, porque Shopify usa root de 10px y aquí es 16px).
   ===================================================================== */

/* ---------- 1. Andamiaje ---------- */
.svr-cart-v2 .page-width,
.svr-cart-v2-footer .page-width {
  width: min(1360px, calc(100% - 28px));
  margin-inline: auto;
}

.svr-cart-v2 { display: block; padding: 24px 0 8px; }
.svr-cart-v2-footer { display: block; padding: 0 0 48px; }

.svr-cart-v2-head { display: flex; justify-content: space-between; }
.svr-cart-v2-head .title { margin: 0; }
.svr-cart-v2-head p { margin: 6px 0 0; }

.svr-cart-v2 .cart-items { width: 100%; }
.svr-cart-v2 .cart-items thead th { text-align: left; text-transform: uppercase; }
.svr-cart-v2 .cart-items thead th.right { text-align: right; }
.svr-cart-v2 .cart-item > td { vertical-align: middle; }

/* Ojo: display:flex en un <td> lo saca del flujo de tabla. El flex va dentro. */
.svr-cart-v2 .cart-item__media { width: 106px; }
.svr-cart-v2 .cart-item__image-container { display: flex; overflow: hidden; }
.svr-cart-v2 .cart-item__image { display: block; width: auto; height: auto; }

.svr-cart-v2 .cart-item__details { padding-left: 14px; }
.svr-cart-v2 .cart-item__details > * + * { margin-top: 4px; }
.svr-cart-v2 .cart-item__name { display: inline-block; text-decoration: none; }
.svr-cart-v2 .cart-item__price-wrapper { display: block; }
.svr-cart-v2 .product-option { margin: 0; font-size: 12px; }
.svr-cart-v2 .cart-item__quantity { width: 170px; }
.svr-cart-v2 .cart-item__totals { width: 120px; }

.svr-cart-v2 .cart-item__quantity-wrapper { display: flex; }
.svr-cart-v2 .quantity.cart-quantity { display: inline-flex; align-items: center; overflow: hidden; }
.svr-cart-v2 .quantity__input {
  width: 56px;
  height: 100%;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  -moz-appearance: textfield;
}
.svr-cart-v2 .quantity__input::-webkit-outer-spin-button,
.svr-cart-v2 .quantity__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.svr-cart-v2 cart-remove-button { display: inline-block; }
.svr-cart-v2 cart-remove-button .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  background: rgba(2, 3, 5, .72);
  color: rgba(247, 250, 252, .7);
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
}

.svr-cart-v2 .cart-item__totals { text-align: right; }
.svr-cart-v2 .price.price--end { display: block; text-align: right; }

/* Botón actualizar carrito */
.svr-cart-v2 .svr-cart-update {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 14px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  background: rgba(2, 3, 5, .72);
  color: #f7fafc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
}
.svr-cart-v2 .svr-cart-update:hover { border-color: rgba(202, 255, 47, .5); color: #caff2f; }

/* Bloque de totales */
.svr-cart-v2-footer .cart__footer { display: flex; justify-content: flex-end; }
.svr-cart-v2-footer .cart__blocks { width: min(460px, 100%); }
.svr-cart-v2-footer .totals { display: flex; align-items: baseline; justify-content: space-between; }
.svr-cart-v2-footer .totals__total { margin: 0; }
.svr-cart-v2-footer .totals__total-value { margin: 0; }
.svr-cart-v2-footer .svr-cart-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 6px 0;
  color: rgba(247, 250, 252, .72);
  font-size: 13px;
  font-weight: 700;
}
.svr-cart-v2-footer .tax-note { display: block; margin-top: 8px; color: rgba(247, 250, 252, .5); font-size: 11px; }

.svr-cart-v2-footer .cart__ctas { margin-top: 14px; }
.svr-cart-v2-footer .cart__checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
}

.svr-cart-v2 .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  text-decoration: none;
}

.svr-cart-v2 .cart__warnings { text-align: center; padding: 40px 0 60px; }
.svr-cart-v2 .cart__empty-text { margin: 0 0 18px; }

@media screen and (max-width: 749px) {
  .svr-cart-v2 .cart-items thead { display: none; }
  .svr-cart-v2 .cart-item { display: grid; grid-template-columns: 92px 1fr; gap: 10px; }
  .svr-cart-v2 .cart-item > td { border: 0 !important; background: none !important; padding: 6px 0 !important; }
  .svr-cart-v2 .cart-item { padding: 12px; border: 1px solid rgba(255,255,255,.11); border-radius: 8px; background: rgba(7,10,16,.94); margin-bottom: 10px; }
  .svr-cart-v2 .cart-item__totals, .svr-cart-v2 .price.price--end { text-align: left; }
}

/* ---------- 2. Skin SVR (portado desde Shopify) ---------- */
.svr-cart-v2,
.svr-cart-v2-footer {
  --svr-cart-bg: #020305;
  --svr-cart-panel: #070a10;
  --svr-cart-panel-2: #0a0f18;
  --svr-cart-ink: #f7fafc;
  --svr-cart-muted: rgba(247, 250, 252, 0.72);
  --svr-cart-soft: rgba(247, 250, 252, 0.54);
  --svr-cart-lime: #caff2f;
  --svr-cart-blue: #1557ff;
  --svr-cart-line: rgba(255, 255, 255, 0.12);
  --svr-cart-radius: 8px;
  background:
    radial-gradient(circle at 14% 8%, rgba(202, 255, 47, 0.08), transparent 240px),
    radial-gradient(circle at 86% 0%, rgba(21, 87, 255, 0.16), transparent 280px),
    linear-gradient(180deg, #020305 0%, #060911 48%, #020305 100%);
  color: var(--svr-cart-ink);
}

body:has(.svr-cart-v2) {
  --svr-cart-ink: #f7fafc;
  --svr-cart-muted: rgba(247, 250, 252, 0.72);
  --svr-cart-lime: #caff2f;
  --svr-cart-line: rgba(255, 255, 255, 0.12);
  background: #020305;
}

body:has(.svr-cart-v2) main,
body:has(.svr-cart-v2) main .gradient {
  background:
    radial-gradient(circle at 16% 4%, rgba(202, 255, 47, 0.06), transparent 240px),
    radial-gradient(circle at 82% 0%, rgba(21, 87, 255, 0.14), transparent 260px),
    #020305;
  color: var(--svr-cart-ink);
}

.svr-cart-v2 .page-width,
.svr-cart-v2-footer .page-width {
  width: min(1360px, calc(100% - 28px));
}

.svr-cart-v2-head {
  align-items: end;
  gap: 20px;
  margin: 0 0 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--svr-cart-radius);
  background:
    linear-gradient(135deg, rgba(202, 255, 47, 0.09), rgba(7, 10, 16, 0.94) 48%, rgba(21, 87, 255, 0.14)),
    #05070c;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.38), 0 0 34px rgba(21, 87, 255, 0.12);
}

.svr-cart-v2-head .title {
  margin: 6px 0 0;
  color: #ffffff;
  font-size: clamp(34px, 5.4vw, 68px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.95;
}

.svr-cart-v2-head p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--svr-cart-muted);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.4;
}

.svr-cart-v2-kicker {
  color: var(--svr-cart-lime);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.svr-cart-v2 .underlined-link,
.svr-cart-v2 .cart__login-paragraph a,
.svr-cart-v2-footer a {
  color: var(--svr-cart-lime);
  font-weight: 900;
  text-underline-offset: 4px;
}

.svr-cart-v2 .cart__warnings {
  padding: 40px 0;
  color: var(--svr-cart-ink);
}

.svr-cart-v2 .cart__empty-text,
.svr-cart-v2 .cart__login-title,
.svr-cart-v2 .cart__login-paragraph {
  color: var(--svr-cart-ink);
}

.svr-cart-v2 .cart__warnings .button {
  border: 1px solid var(--svr-cart-lime);
  border-radius: 6px;
  background: linear-gradient(180deg, #dfff5a, #a9ec00);
  color: #071006;
  font-weight: 950;
}

.svr-cart-v2 .cart__items {
  padding-bottom: 0;
  border-bottom: 0;
}

.svr-cart-v2-footer .cart__footer {
  gap: 18px;
  padding-top: 0;
}

.svr-cart-v2-footer .cart__blocks {
  width: min(100%, 430px);
  margin-left: auto;
  padding: 18px;
  border: 1px solid rgba(202, 255, 47, 0.18);
  border-radius: var(--svr-cart-radius);
  background:
    linear-gradient(135deg, rgba(202, 255, 47, 0.1), rgba(7, 10, 16, 0.94) 50%, rgba(21, 87, 255, 0.12)),
    var(--svr-cart-panel);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.38);
}

.svr-cart-v2-footer .cart__note {
  width: min(100%, 430px);
  padding: 16px;
  border: 1px solid var(--svr-cart-line);
  border-radius: var(--svr-cart-radius);
  background: rgba(7, 10, 16, 0.92);
}

.svr-cart-v2-footer .cart__note label {
  position: static;
  height: auto;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 900;
}

.svr-cart-v2-footer .cart__note .field__input {
  min-height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(2, 3, 5, 0.7);
  color: #ffffff;
}

.svr-cart-v2-value-reminder {
  margin: 0 0 14px;
  padding: 11px 12px;
  border: 1px solid rgba(202, 255, 47, 0.22);
  border-radius: 6px;
  background: rgba(202, 255, 47, 0.08);
  color: #ffffff;
  font-size: 13.4px;
  font-weight: 850;
  line-height: 1.35;
}

.svr-free-shipping-progress {
  margin: 0 0 14px;
  padding: 12px;
  border: 1px solid rgba(143, 234, 63, 0.28);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(143, 234, 63, 0.1), rgba(7, 10, 16, 0.82)),
    rgba(2, 3, 5, 0.72);
}

.svr-free-shipping-progress__message {
  margin: 0;
  color: #ffffff;
  font-size: 13.4px;
  font-weight: 900;
  line-height: 1.35;
}

.svr-free-shipping-progress__message span {
  color: #8fea3f;
}

.svr-free-shipping-progress__track {
  position: relative;
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  overflow: hidden;
}

.svr-free-shipping-progress__bar {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8fea3f, #a7f432);
  box-shadow: 0 0 18px rgba(143, 234, 63, 0.24);
}

.svr-cart-v2-footer .cart__checkout-button {
  max-width: none;
  min-height: 56px;
  border: 1px solid var(--svr-cart-lime);
  border-radius: 6px;
  background: linear-gradient(180deg, #dfff5a, #a9ec00);
  color: #071006;
  font-size: 14.5px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 18px 38px rgba(202, 255, 47, 0.24);
}

.svr-cart-v2-footer .cart__checkout-button:hover:not([disabled]) {
  background: #ddff70;
  color: #071006;
}

.svr-cart-v2-footer .cart__checkout-button[disabled] {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.54);
  box-shadow: none;
}

.svr-cart-v2-checkout-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.svr-cart-v2-checkout-trust span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(2, 3, 5, 0.58);
  color: rgba(255, 255, 255, 0.88);
  font-size: 10.5px;
  font-weight: 950;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.svr-cart-v2-checkout-trust span:first-child {
  border-color: rgba(202, 255, 47, 0.32);
  color: var(--svr-cart-lime);
}

.svr-cart-v2-footer .cart__dynamic-checkout-buttons {
  max-width: none;
}

.svr-cart-v2-footer .tax-note,
.svr-cart-v2-footer .discounts__discount,
.svr-cart-v2-footer #cart-errors {
  color: var(--svr-cart-muted);
}

@media screen and (max-width: 749px) {
  .svr-cart-v2 .page-width,
  .svr-cart-v2-footer .page-width {
    width: calc(100% - 14px);
  }

  .svr-cart-v2-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px;
  }

  .svr-cart-v2-footer .cart__footer {
    padding-bottom: 28px;
  }

  .svr-cart-v2-footer .cart__blocks,
  .svr-cart-v2-footer .cart__note {
    width: 100%;
    padding: 14px;
  }
}

.svr-cart-v2 .cart-items {
  border-collapse: separate;
  border-spacing: 0 10px;
}

.svr-cart-v2 .cart-items thead th {
  padding: 0 14px 10px;
  border-bottom: 0;
  color: rgba(247, 250, 252, 0.58);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.svr-cart-v2 .cart-item {
  color: #ffffff;
}

.svr-cart-v2 .cart-item > td {
  padding-top: 14px;
  padding-bottom: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(7, 10, 16, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.svr-cart-v2 .cart-item > td:first-child {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.svr-cart-v2 .cart-item > td:last-child {
  padding-right: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.svr-cart-v2 .cart-item__image-container {
  align-items: center;
  justify-content: center;
  width: 92px;
  min-height: 92px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 18%, rgba(202, 255, 47, 0.08), transparent 80px),
    #070b12;
}

.svr-cart-v2 .cart-item__image {
  max-width: 76px;
  max-height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.34));
}

.svr-cart-v2 .cart-item__name {
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 900;
  line-height: 1.25;
}

.svr-cart-v2 .cart-item__name:hover {
  color: var(--svr-cart-lime, #caff2f);
  text-decoration-color: var(--svr-cart-lime, #caff2f);
}

.svr-cart-v2 .cart-item__details .caption-with-letter-spacing,
.svr-cart-v2 .product-option,
.svr-cart-v2 .cart-item__error-text,
.svr-cart-v2 .quantity__rules,
.svr-cart-v2 .volume-pricing-label,
.svr-cart-v2 .cart-items__info {
  color: rgba(247, 250, 252, 0.68);
}

.svr-cart-v2 .cart-item__details .product-option:first-of-type,
.svr-cart-v2 .cart-item__final-price,
.svr-cart-v2 .cart-item__price-wrapper .price,
.svr-cart-v2 .price.price--end {
  color: var(--svr-cart-lime, #caff2f);
  font-weight: 950;
}

.svr-cart-v2 .cart-item__price-wrapper .price {
  font-size: 16.5px;
}

.svr-cart-v2 .cart-item__old-price,
.svr-cart-v2 .cart-item__discounted-prices .cart-item__old-price {
  color: rgba(247, 250, 252, 0.48);
}

.svr-cart-v2 .discounts__discount {
  color: var(--svr-cart-lime, #caff2f);
  font-weight: 850;
}

.svr-cart-v2 .cart-item__quantity-wrapper {
  align-items: center;
  gap: 8px;
}

.svr-cart-v2 .quantity.cart-quantity {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(2, 3, 5, 0.72);
  color: #ffffff;
}

.svr-cart-v2 .quantity__button,
.svr-cart-v2 .quantity__input {
  color: #ffffff;
}

/* Sin esto el botón se queda con el estilo por defecto del navegador
   (fondo gris claro) y el signo blanco encima queda invisible. */
.svr-cart-v2 .quantity__button {
  width: 40px;
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.svr-cart-v2 .quantity__button:disabled { opacity: .35; cursor: default; }

/* El markup trae un .quantity anidado dentro de .quantity.cart-quantity;
   sin esto los botones se apilan en vertical y el control queda deforme. */
.svr-cart-v2 .quantity,
.svr-cart-v2 .quantity .quantity {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
}
.svr-cart-v2 .quantity__button,
.svr-cart-v2 .quantity__input { flex: 0 0 auto; }

.svr-cart-v2 .quantity__button:hover {
  color: var(--svr-cart-lime, #caff2f);
}

.svr-cart-v2 cart-remove-button {
  margin-left: 0;
}

.svr-cart-v2 cart-remove-button .button {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 250, 252, 0.7);
}

.svr-cart-v2 cart-remove-button .button:not([disabled]):hover {
  border-color: rgba(202, 255, 47, 0.32);
  color: var(--svr-cart-lime, #caff2f);
}

.svr-cart-v2 .quantity-popover__info-button {
  color: rgba(247, 250, 252, 0.72);
}

.svr-cart-v2 .cart-items__info,
.svr-cart-v2 .global-settings-popup.quantity-popover__info {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #070a10;
  color: rgba(247, 250, 252, 0.72);
}

@media screen and (max-width: 749px) {
  .svr-cart-v2 .cart-items thead tr {
    margin-bottom: 10px;
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .svr-cart-v2 .cart-item {
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
      rgba(7, 10, 16, 0.94);
  }

  .svr-cart-v2 .cart-item > td {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .svr-cart-v2 .cart-item > td:first-child,
  .svr-cart-v2 .cart-item > td:last-child {
    padding: 0;
    border: 0;
  }

  .svr-cart-v2 .cart-item__media {
    width: auto;
  }

  .svr-cart-v2 .cart-item__image-container {
    width: 82px;
    min-height: 82px;
  }

  .svr-cart-v2 .cart-item__image {
    max-width: 68px;
    max-height: 68px;
  }

  .svr-cart-v2 .cart-item__details {
    grid-column: 2 / 5;
  }

  .svr-cart-v2 .cart-item__quantity {
    grid-column: 1 / 5;
  }

  .svr-cart-v2 .cart-item__totals {
    grid-column: 4 / 5;
  }
}

/* ---------------------------------------------------------------- *
 * Aviso de la oferta Revolution
 * ---------------------------------------------------------------- */
.svr-regalo{
  margin:12px 0;
  padding:11px 14px;
  border:1px solid rgba(202,255,47,.28);
  border-left:3px solid #caff2f;
  border-radius:6px;
  background:rgba(202,255,47,.07);
  color:rgba(255,255,255,.86);
  font-size:13.5px;
  line-height:1.5;
}
.svr-regalo strong{color:#caff2f;}
.svr-regalo .woocommerce-Price-amount{color:#caff2f;font-weight:700;}
.svr-regalo--ganado{
  border-color:rgba(88,208,139,.35);
  border-left-color:#58d08b;
  background:rgba(88,208,139,.08);
}

/* ---------------------------------------------------------------- *
 * Botones del carrito — corrección
 *
 * El estilo lima del botón de pagar estaba dentro de un bloque
 * @media (max-width: 749px), así que en escritorio no se aplicaba nunca
 * y WooCommerce lo pintaba de su gris por defecto (#e9e6ed sobre gris).
 *
 * Estas reglas van fuera de cualquier media query y llevan !important
 * a propósito: compiten contra woocommerce.css, que trae sus propios
 * botones y se carga después. No es pereza, es el único modo de ganarle
 * sin encadenar selectores frágiles que se rompan al actualizar el plugin.
 * ---------------------------------------------------------------- */
.svr-cart-v2 .cart__checkout-button,
.svr-cart-v2 a.cart__checkout-button,
.woocommerce .svr-cart-v2 a.cart__checkout-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 16px 20px;
  border: 0 !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg, #d4ff4f 0%, #a8e414 100%) !important;
  color: #06090f !important;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 0 14px 30px rgba(168, 228, 20, .22);
  transition: filter .15s ease, transform .15s ease;
}
.svr-cart-v2 .cart__checkout-button:hover,
.woocommerce .svr-cart-v2 a.cart__checkout-button:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  background: linear-gradient(180deg, #ddff70 0%, #b4f01a 100%) !important;
  color: #06090f !important;
}
.svr-cart-v2 .cart__checkout-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Quitar artículo: una × discreta, no un botón lima que compite con el de pagar. */
.svr-cart-v2 cart-remove-button .button,
.woocommerce .svr-cart-v2 cart-remove-button a.button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 40px !important;
  min-height: 40px !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, .14) !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, .04) !important;
  color: rgba(247, 250, 252, .55) !important;
  font-size: 18px;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: none !important;
}
.svr-cart-v2 cart-remove-button .button:hover,
.woocommerce .svr-cart-v2 cart-remove-button a.button:hover {
  border-color: rgba(242, 81, 63, .45) !important;
  background: rgba(242, 81, 63, .1) !important;
  color: #f2513f !important;
}

/* "Update cart" es una acción secundaria: que no compita con pagar. */
.svr-cart-v2 button[name="update_cart"],
.woocommerce .svr-cart-v2 button[name="update_cart"] {
  border: 1px solid rgba(255, 255, 255, .16) !important;
  border-radius: 7px !important;
  background: transparent !important;
  color: rgba(255, 255, 255, .78) !important;
  font-weight: 700;
}
.svr-cart-v2 button[name="update_cart"]:hover:not([disabled]) {
  border-color: rgba(202, 255, 47, .4) !important;
  color: #caff2f !important;
}
