.elementor-95 .elementor-element.elementor-element-4dd7df5f{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-a958d1a *//* =========================================================
   JUST CASE MX — CARRITO PREMIUM CARD/LIST
========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800;900&display=swap");

.jc-cart-wrapper {
  --jc-bg: #f7f4ff;
  --jc-panel: #ffffff;
  --jc-panel-soft: #fbfaff;
  --jc-text: #10101a;
  --jc-muted: #667085;
  --jc-muted-2: #8a93a6;

  --jc-purple: #6d28d9;
  --jc-purple-2: #8b5cf6;
  --jc-purple-soft: #f1eaff;

  --jc-yellow: #ffd32a;
  --jc-yellow-2: #facc15;

  --jc-border: rgba(148, 163, 184, 0.30);
  --jc-border-strong: rgba(148, 163, 184, 0.46);

  --jc-success: #16a34a;
  --jc-danger: #dc2626;

  --jc-radius-xl: 32px;
  --jc-radius-lg: 24px;
  --jc-radius-md: 16px;
  --jc-radius-sm: 12px;

  --jc-shadow: 0 28px 80px rgba(17, 24, 39, 0.08);
  --jc-shadow-soft: 0 16px 38px rgba(17, 24, 39, 0.06);

  --jc-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --jc-font-display: "Bebas Neue", Impact, sans-serif;

  padding: clamp(32px, 5vw, 74px) 16px;
  background:
    radial-gradient(circle at 10% 0%, rgba(109, 40, 217, 0.12), transparent 28%),
    radial-gradient(circle at 92% 4%, rgba(250, 204, 21, 0.12), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, var(--jc-bg) 48%, #ffffff 100%);
  color: var(--jc-text);
  font-family: var(--jc-font-body);
}

.jc-cart-wrapper,
.jc-cart-wrapper * {
  box-sizing: border-box;
}

.jc-cart-wrapper a {
  color: var(--jc-purple);
  font-weight: 800;
  text-decoration: none;
}

.jc-cart-wrapper a:hover {
  color: #4c1d95;
}

/* =========================================================
   CONTENEDOR
========================================================= */

.jc-cart-shell {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 52px);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(109, 40, 217, 0.14);
  box-shadow: var(--jc-shadow);
  overflow: visible;
}

.jc-cart-header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.jc-cart-header span {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--jc-purple);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.jc-cart-header h1 {
  margin: 0;
  font-family: var(--jc-font-display);
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--jc-text);
}

.jc-cart-header p {
  margin: 14px auto 0;
  max-width: 720px;
  color: var(--jc-muted);
  font-size: 16px;
  line-height: 1.6;
}

.jc-cart-shortcode {
  width: 100%;
}

/* =========================================================
   RESET WOOCOMMERCE LOCAL
========================================================= */

.jc-cart-wrapper .woocommerce {
  width: 100%;
  font-family: var(--jc-font-body);
}

.jc-cart-wrapper .woocommerce::before,
.jc-cart-wrapper .woocommerce::after,
.jc-cart-wrapper .woocommerce-cart-form::before,
.jc-cart-wrapper .woocommerce-cart-form::after,
.jc-cart-wrapper .cart-collaterals::before,
.jc-cart-wrapper .cart-collaterals::after {
  content: none !important;
  display: none !important;
}

/* =========================================================
   LAYOUT DESKTOP
========================================================= */

@media (min-width: 1025px) {
  .jc-cart-wrapper .woocommerce {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 370px) !important;
    grid-template-areas:
      "notices notices"
      "cart totals";
    gap: 30px !important;
    align-items: start !important;
  }

  .jc-cart-wrapper .woocommerce-notices-wrapper {
    grid-area: notices !important;
  }

  .jc-cart-wrapper .woocommerce-cart-form {
    grid-area: cart !important;
    min-width: 0 !important;
  }

  .jc-cart-wrapper .cart-collaterals {
    grid-area: totals !important;
    width: 100% !important;
    min-width: 0 !important;
    position: sticky !important;
    top: 110px !important;
  }

  .jc-cart-wrapper .cart-collaterals .cart_totals {
    float: none !important;
    width: 100% !important;
  }
}

/* =========================================================
   MENSAJES
========================================================= */

.jc-cart-wrapper .woocommerce-info,
.jc-cart-wrapper .woocommerce-message,
.jc-cart-wrapper .woocommerce-error {
  background: #ffffff !important;
  border: 1px solid var(--jc-border) !important;
  border-top: 3px solid var(--jc-purple) !important;
  color: var(--jc-text) !important;
  border-radius: 18px !important;
  padding: 16px 18px 16px 48px !important;
  box-shadow: var(--jc-shadow-soft) !important;
  margin-bottom: 22px !important;
  font-family: var(--jc-font-body) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.jc-cart-wrapper .woocommerce-message {
  border-top-color: var(--jc-success) !important;
}

.jc-cart-wrapper .woocommerce-error {
  border-top-color: var(--jc-danger) !important;
}

.jc-cart-wrapper .woocommerce-info::before,
.jc-cart-wrapper .woocommerce-message::before,
.jc-cart-wrapper .woocommerce-error::before {
  color: var(--jc-purple) !important;
}

/* =========================================================
   CARRITO COMO LISTA PREMIUM
========================================================= */

.jc-cart-wrapper .woocommerce-cart-form {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.jc-cart-wrapper table.shop_table.cart,
.jc-cart-wrapper .woocommerce-cart-form__contents {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  background: transparent !important;
}

.jc-cart-wrapper table.shop_table.cart thead {
  display: none !important;
}

.jc-cart-wrapper table.shop_table.cart tbody {
  display: block !important;
  width: 100% !important;
}

.jc-cart-wrapper table.shop_table.cart tr.cart_item {
  display: grid !important;
  grid-template-columns: 38px 96px minmax(0, 1fr) 86px 82px 92px !important;
  gap: 16px !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 0 16px !important;
  padding: 18px !important;
  border: 1px solid var(--jc-border) !important;
  border-radius: 24px !important;
  background: #ffffff !important;
  box-shadow: var(--jc-shadow-soft) !important;
}

.jc-cart-wrapper table.shop_table.cart tr.cart_item:nth-child(even) {
  background: linear-gradient(180deg, #ffffff 0%, #fbfaff 100%) !important;
}

.jc-cart-wrapper table.shop_table.cart td {
  display: block !important;
  width: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--jc-text) !important;
  font-family: var(--jc-font-body) !important;
  vertical-align: middle !important;
}

/* Eliminar */
.jc-cart-wrapper .product-remove {
  text-align: center !important;
}

.jc-cart-wrapper .product-remove a.remove {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 999px !important;
  background: #fff1f1 !important;
  color: var(--jc-danger) !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  transition: 0.18s ease !important;
}

.jc-cart-wrapper .product-remove a.remove:hover {
  background: var(--jc-danger) !important;
  color: #ffffff !important;
}

/* Imagen principal */
.jc-cart-wrapper .product-thumbnail img {
  width: 82px !important;
  height: 82px !important;
  object-fit: cover !important;
  border-radius: 18px !important;
  border: 1px solid var(--jc-border) !important;
  background: #ffffff !important;
  padding: 5px !important;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.05);
}

/* Oculta miniatura duplicada dentro del nombre */
.jc-cart-wrapper .product-name > a img,
.jc-cart-wrapper .product-name .attachment-woocommerce_thumbnail,
.jc-cart-wrapper .product-name .woocommerce-placeholder {
  display: none !important;
}

/* Producto */
.jc-cart-wrapper .product-name {
  min-width: 0 !important;
}

.jc-cart-wrapper .product-name > a {
  display: block !important;
  margin: 0 0 10px !important;
  color: var(--jc-text) !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 1.28 !important;
  text-decoration: none !important;
}

.jc-cart-wrapper .product-name > a:hover {
  color: var(--jc-purple) !important;
}

/* Metadata limpia */
.jc-cart-wrapper .product-name .variation {
  display: block !important;
  max-width: 360px !important;
  margin: 8px 0 0 !important;
  padding: 11px 12px !important;
  border: 1px solid rgba(109, 40, 217, 0.13) !important;
  border-radius: 14px !important;
  background: #fbfaff !important;
  color: var(--jc-muted) !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.jc-cart-wrapper .product-name .variation dt,
.jc-cart-wrapper .product-name .variation dd {
  display: inline !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.jc-cart-wrapper .product-name .variation dt {
  color: var(--jc-text) !important;
  font-weight: 900 !important;
}

.jc-cart-wrapper .product-name .variation dd {
  color: var(--jc-muted) !important;
}

.jc-cart-wrapper .product-name .variation dd::after {
  content: "";
  display: block;
  margin-bottom: 4px;
}

.jc-cart-wrapper .product-name .variation a {
  display: inline-flex !important;
  margin-top: 2px !important;
  color: var(--jc-purple) !important;
  font-weight: 900 !important;
}

/* Precio y subtotal */
.jc-cart-wrapper .product-price,
.jc-cart-wrapper .product-subtotal {
  white-space: nowrap !important;
  color: var(--jc-text) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  text-align: right !important;
}

.jc-cart-wrapper .product-price::before,
.jc-cart-wrapper .product-subtotal::before {
  display: block;
  margin-bottom: 4px;
  color: var(--jc-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.jc-cart-wrapper .product-price::before {
  content: "Precio";
}

.jc-cart-wrapper .product-subtotal::before {
  content: "Subtotal";
}

/* Cantidad */
.jc-cart-wrapper .product-quantity {
  text-align: center !important;
}

.jc-cart-wrapper .quantity {
  display: inline-flex !important;
  align-items: center !important;
}

.jc-cart-wrapper .quantity .qty {
  width: 62px !important;
  min-height: 44px !important;
  padding: 0 10px !important;
  border: 1px solid var(--jc-border-strong) !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  color: var(--jc-text) !important;
  font-family: var(--jc-font-body) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  text-align: center !important;
  box-shadow: none !important;
}

.jc-cart-wrapper .quantity .qty:focus {
  border-color: rgba(109, 40, 217, 0.70) !important;
  box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.12) !important;
  outline: none !important;
}

/* =========================================================
   CUPÓN Y ACCIONES
========================================================= */

.jc-cart-wrapper table.shop_table.cart tr:has(td.actions) {
  display: block !important;
}

.jc-cart-wrapper td.actions {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 14px !important;
  align-items: center !important;
  width: 100% !important;
  margin-top: 4px !important;
  padding: 18px !important;
  border: 1px solid var(--jc-border) !important;
  border-radius: 22px !important;
  background: #fbfaff !important;
  box-shadow: var(--jc-shadow-soft) !important;
}

.jc-cart-wrapper .coupon {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
}

.jc-cart-wrapper .coupon label {
  display: none !important;
}

.jc-cart-wrapper .coupon input.input-text {
  flex: 1 1 auto !important;
  width: auto !important;
  min-height: 50px !important;
  padding: 0 16px !important;
  border: 1px solid var(--jc-border-strong) !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  color: var(--jc-text) !important;
  font-family: var(--jc-font-body) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}

.jc-cart-wrapper .coupon input.input-text:focus {
  border-color: rgba(109, 40, 217, 0.70) !important;
  box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.12) !important;
  outline: none !important;
}

.jc-cart-wrapper .actions > .button[name="update_cart"] {
  justify-self: end !important;
}

/* =========================================================
   BOTONES
========================================================= */

.jc-cart-wrapper .button,
.jc-cart-wrapper button,
.jc-cart-wrapper input[type="submit"],
.jc-cart-wrapper .checkout-button {
  appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 50px !important;
  padding: 0 22px !important;
  border: none !important;
  border-radius: 16px !important;
  font-family: var(--jc-font-display) !important;
  font-size: 23px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    opacity 0.18s ease;
}

.jc-cart-wrapper .button,
.jc-cart-wrapper button.button,
.jc-cart-wrapper input.button {
  background: #f1eff8 !important;
  color: var(--jc-text) !important;
  box-shadow: none !important;
}

.jc-cart-wrapper .button:hover,
.jc-cart-wrapper button.button:hover,
.jc-cart-wrapper input.button:hover {
  transform: translateY(-1px) !important;
  background: #e9e3f8 !important;
}

.jc-cart-wrapper .button:disabled,
.jc-cart-wrapper button:disabled,
.jc-cart-wrapper input[type="submit"]:disabled {
  opacity: 0.42 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

/* =========================================================
   TOTAL DEL CARRITO
========================================================= */

.jc-cart-wrapper .cart_totals {
  padding: 24px !important;
  border: 1px solid var(--jc-border) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaff 100%) !important;
  box-shadow: var(--jc-shadow-soft) !important;
}

.jc-cart-wrapper .cart_totals h2 {
  margin: 0 0 18px !important;
  font-family: var(--jc-font-display) !important;
  font-size: 46px !important;
  font-weight: 400 !important;
  line-height: 0.95 !important;
  letter-spacing: 0.035em !important;
  text-transform: uppercase !important;
  color: var(--jc-text) !important;
}

.jc-cart-wrapper .cart_totals table.shop_table {
  width: 100% !important;
  margin: 0 !important;
  border: 1px solid var(--jc-border) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

.jc-cart-wrapper .cart_totals table th,
.jc-cart-wrapper .cart_totals table td {
  padding: 16px 14px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--jc-border) !important;
  color: var(--jc-text) !important;
  font-family: var(--jc-font-body) !important;
  font-size: 14px !important;
  vertical-align: top !important;
}

.jc-cart-wrapper .cart_totals table th {
  width: 42% !important;
  background: #ffffff !important;
  font-weight: 900 !important;
}

.jc-cart-wrapper .cart_totals table td {
  text-align: right !important;
  font-weight: 900 !important;
}

.jc-cart-wrapper .cart_totals table tr:last-child th,
.jc-cart-wrapper .cart_totals table tr:last-child td {
  border-bottom: none !important;
}

.jc-cart-wrapper .cart_totals .order-total th,
.jc-cart-wrapper .cart_totals .order-total td {
  background: linear-gradient(135deg, #f3efff 0%, #ffffff 100%) !important;
  font-size: 18px !important;
  font-weight: 900 !important;
}

/* Botón checkout */
.jc-cart-wrapper .wc-proceed-to-checkout {
  padding: 0 !important;
  margin-top: 18px !important;
}

.jc-cart-wrapper .wc-proceed-to-checkout .checkout-button {
  width: 100% !important;
  min-height: 64px !important;
  padding: 0 24px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, var(--jc-purple) 0%, var(--jc-purple-2) 100%) !important;
  color: #ffffff !important;
  font-size: 30px !important;
  box-shadow: 0 18px 38px rgba(109, 40, 217, 0.30) !important;
}

.jc-cart-wrapper .wc-proceed-to-checkout .checkout-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 22px 44px rgba(109, 40, 217, 0.38) !important;
}

.jc-cart-wrapper.jc-cart-yellow .wc-proceed-to-checkout .checkout-button {
  background: linear-gradient(135deg, var(--jc-yellow) 0%, var(--jc-yellow-2) 100%) !important;
  color: #111827 !important;
  box-shadow: 0 18px 38px rgba(250, 204, 21, 0.30) !important;
}

/* =========================================================
   CAJA DE CONFIANZA
========================================================= */

.jcx-cart-trust-box,
.jcx-checkout-trust-box {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(109, 40, 217, 0.14);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
  color: var(--jc-text, #10101a);
  font-family: "Inter", system-ui, sans-serif;
}

.jcx-cart-trust-box strong,
.jcx-checkout-trust-box strong {
  display: block;
  margin-bottom: 10px;
  color: #10101a;
  font-size: 14px;
  font-weight: 900;
}

.jcx-cart-trust-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.jcx-cart-trust-box li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 20px;
  color: #667085;
  font-size: 13px;
  line-height: 1.45;
}

.jcx-cart-trust-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 900;
}

.jcx-cart-trust-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 10px;
  padding: 0 16px;
  border-radius: 999px;
  background: #f1eaff;
  color: #6d28d9 !important;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.jcx-checkout-trust-box p {
  margin: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.55;
}

/* =========================================================
   CARRITO VACÍO
========================================================= */

.jc-cart-wrapper .cart-empty {
  margin: 0 0 22px !important;
  padding: 30px !important;
  border-radius: 24px !important;
  border: 1px solid var(--jc-border) !important;
  background: #ffffff !important;
  box-shadow: var(--jc-shadow-soft) !important;
  color: var(--jc-text) !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
}

.jc-cart-wrapper .return-to-shop {
  margin: 0 !important;
}

.jc-cart-wrapper .return-to-shop .button {
  min-height: 58px !important;
  padding: 0 26px !important;
  background: linear-gradient(135deg, var(--jc-purple) 0%, var(--jc-purple-2) 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(109, 40, 217, 0.28) !important;
}

/* =========================================================
   FOOTER COMPACTO SOLO EN CARRITO Y CHECKOUT
========================================================= */

body.woocommerce-cart footer,
body.woocommerce-checkout footer {
  margin-top: 0 !important;
}

body.woocommerce-cart footer .jc-footer-hero,
body.woocommerce-checkout footer .jc-footer-hero,
body.woocommerce-cart footer .jc-footer-large-cta,
body.woocommerce-checkout footer .jc-footer-large-cta {
  display: none !important;
}

/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1024px) {
  .jc-cart-wrapper {
    padding: 28px 10px 56px;
  }

  .jc-cart-shell {
    padding: 26px 22px;
    border-radius: 28px;
  }

  .jc-cart-wrapper .woocommerce {
    display: block !important;
  }

  .jc-cart-wrapper .cart-collaterals {
    position: static !important;
    top: auto !important;
    margin-top: 24px !important;
  }

  .jc-cart-wrapper .cart-collaterals .cart_totals {
    float: none !important;
    width: 100% !important;
  }

  .jc-cart-wrapper table.shop_table.cart tr.cart_item {
    grid-template-columns: 36px 86px minmax(0, 1fr) 80px 76px 86px !important;
    gap: 12px !important;
    padding: 16px !important;
  }

  .jc-cart-wrapper .product-thumbnail img {
    width: 76px !important;
    height: 76px !important;
  }
}

/* =========================================================
   RESPONSIVE MÓVIL
========================================================= */

@media (max-width: 640px) {
  .jc-cart-wrapper {
    padding: 24px 8px 50px;
  }

  .jc-cart-shell {
    padding: 24px 16px;
    border-radius: 24px;
  }

  .jc-cart-header {
    margin-bottom: 28px;
  }

  .jc-cart-header h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .jc-cart-header p {
    font-size: 15px;
  }

  .jc-cart-wrapper table.shop_table.cart tr.cart_item {
    grid-template-columns: 34px 74px minmax(0, 1fr) !important;
    grid-template-areas:
      "remove image name"
      "remove image meta"
      "remove image qty"
      "remove image price";
    gap: 10px 12px !important;
    padding: 14px !important;
    border-radius: 20px !important;
  }

  .jc-cart-wrapper .product-remove {
    grid-area: remove;
  }

  .jc-cart-wrapper .product-thumbnail {
    grid-area: image;
  }

  .jc-cart-wrapper .product-name {
    grid-area: name;
  }

  .jc-cart-wrapper .product-price {
    grid-area: meta;
    text-align: left !important;
  }

  .jc-cart-wrapper .product-quantity {
    grid-area: qty;
    text-align: left !important;
  }

  .jc-cart-wrapper .product-subtotal {
    grid-area: price;
    text-align: left !important;
  }

  .jc-cart-wrapper .product-thumbnail img {
    width: 68px !important;
    height: 68px !important;
    border-radius: 14px !important;
  }

  .jc-cart-wrapper .product-name > a {
    font-size: 14px !important;
  }

  .jc-cart-wrapper .product-name .variation {
    max-width: 100% !important;
    padding: 9px 10px !important;
    font-size: 11px !important;
  }

  .jc-cart-wrapper .product-price,
  .jc-cart-wrapper .product-subtotal {
    font-size: 13px !important;
  }

  .jc-cart-wrapper .product-price::before,
  .jc-cart-wrapper .product-subtotal::before {
    display: inline-block !important;
    margin: 0 8px 0 0 !important;
  }

  .jc-cart-wrapper td.actions {
    grid-template-columns: 1fr !important;
    padding: 14px !important;
  }

  .jc-cart-wrapper .coupon {
    display: grid !important;
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    gap: 10px !important;
  }

  .jc-cart-wrapper .coupon input.input-text,
  .jc-cart-wrapper .coupon .button,
  .jc-cart-wrapper .actions > .button[name="update_cart"] {
    width: 100% !important;
  }

  .jc-cart-wrapper .actions > .button[name="update_cart"] {
    justify-self: stretch !important;
  }

  .jc-cart-wrapper .cart_totals {
    padding: 20px !important;
    border-radius: 20px !important;
  }

  .jc-cart-wrapper .cart_totals h2 {
    font-size: 40px !important;
  }

  .jc-cart-wrapper .cart_totals table th,
  .jc-cart-wrapper .cart_totals table td {
    padding: 14px 12px !important;
    font-size: 13px !important;
  }

  .jc-cart-wrapper .wc-proceed-to-checkout .checkout-button {
    min-height: 58px !important;
    font-size: 25px !important;
  }
}
/* =========================================================
   JUST CASE — OCULTAR METADATA TÉCNICA SIN FUNCTIONS.PHP
   Carrito + Checkout
========================================================= */

/* Ocultar campos técnicos/redundantes */
.jc-cart-wrapper dt[class*="Marca"],
.jc-cart-wrapper dd[class*="Marca"],
.jc-cart-wrapper dt[class*="marca"],
.jc-cart-wrapper dd[class*="marca"],

.jc-cart-wrapper dt[class*="Línea"],
.jc-cart-wrapper dd[class*="Línea"],
.jc-cart-wrapper dt[class*="Linea"],
.jc-cart-wrapper dd[class*="Linea"],
.jc-cart-wrapper dt[class*="Lnea"],
.jc-cart-wrapper dd[class*="Lnea"],
.jc-cart-wrapper dt[class*="linea"],
.jc-cart-wrapper dd[class*="linea"],

.jc-cart-wrapper dt[class*="Estado"],
.jc-cart-wrapper dd[class*="Estado"],
.jc-cart-wrapper dt[class*="estado"],
.jc-cart-wrapper dd[class*="estado"],

.jc-checkout-wrapper dt[class*="Marca"],
.jc-checkout-wrapper dd[class*="Marca"],
.jc-checkout-wrapper dt[class*="marca"],
.jc-checkout-wrapper dd[class*="marca"],

.jc-checkout-wrapper dt[class*="Línea"],
.jc-checkout-wrapper dd[class*="Línea"],
.jc-checkout-wrapper dt[class*="Linea"],
.jc-checkout-wrapper dd[class*="Linea"],
.jc-checkout-wrapper dt[class*="Lnea"],
.jc-checkout-wrapper dd[class*="Lnea"],
.jc-checkout-wrapper dt[class*="linea"],
.jc-checkout-wrapper dd[class*="linea"],

.jc-checkout-wrapper dt[class*="Estado"],
.jc-checkout-wrapper dd[class*="Estado"],
.jc-checkout-wrapper dt[class*="estado"],
.jc-checkout-wrapper dd[class*="estado"] {
  display: none !important;
}

/* Ocultar miniatura duplicada dentro del nombre */
.jc-cart-wrapper .product-name > a img,
.jc-cart-wrapper .product-name .attachment-woocommerce_thumbnail,
.jc-cart-wrapper .product-name .woocommerce-placeholder,
.jc-checkout-wrapper .product-name > a img,
.jc-checkout-wrapper .product-name .attachment-woocommerce_thumbnail,
.jc-checkout-wrapper .product-name .woocommerce-placeholder {
  display: none !important;
}

/* Hacer la metadata visible más limpia */
.jc-cart-wrapper .variation,
.jc-checkout-wrapper .variation {
  display: block !important;
  max-width: 100% !important;
  margin-top: 8px !important;
  padding: 10px 12px !important;
  border-radius: 12px !important;
  background: #fbfaff !important;
  border: 1px solid rgba(109, 40, 217, 0.14) !important;
  font-size: 11.5px !important;
  line-height: 1.45 !important;
  color: #667085 !important;
}

/* Orden más limpio para dt/dd */
.jc-cart-wrapper .variation dt,
.jc-cart-wrapper .variation dd,
.jc-checkout-wrapper .variation dt,
.jc-checkout-wrapper .variation dd {
  display: inline !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.jc-cart-wrapper .variation dt,
.jc-checkout-wrapper .variation dt {
  color: #10101a !important;
  font-weight: 900 !important;
}

.jc-cart-wrapper .variation dd,
.jc-checkout-wrapper .variation dd {
  color: #667085 !important;
}

.jc-cart-wrapper .variation dd::after,
.jc-checkout-wrapper .variation dd::after {
  content: "";
  display: block;
  margin-bottom: 4px;
}

/* Link "Ver diseño" más pro */
.jc-cart-wrapper .variation a,
.jc-checkout-wrapper .variation a {
  display: inline-flex !important;
  margin-top: 2px !important;
  color: #6d28d9 !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

/* Si después de ocultar campos queda la cajita vacía, la ocultamos */
.jc-cart-wrapper .variation:empty,
.jc-checkout-wrapper .variation:empty {
  display: none !important;
}
/* =========================================================
   JUST CASE — AJUSTE DE ESPACIO SUPERIOR EN CARRITO
========================================================= */

/* Contenedor general del carrito */
body.woocommerce-cart .jc-cart-wrapper {
  padding-top: 28px !important;
  padding-bottom: 56px !important;
}

/* Caja principal del carrito */
body.woocommerce-cart .jc-cart-shell,
body.woocommerce-cart .jc-cart-box,
body.woocommerce-cart .jc-cart-container {
  margin-top: 0 !important;
  padding-top: 28px !important;
}

/* Encabezado del carrito */
body.woocommerce-cart .jc-cart-header,
body.woocommerce-cart .jc-cart-hero,
body.woocommerce-cart .jc-cart-intro {
  margin-top: 0 !important;
  margin-bottom: 26px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Título */
body.woocommerce-cart .jc-cart-header h1,
body.woocommerce-cart .jc-cart-hero h1,
body.woocommerce-cart .jc-cart-title {
  margin: 0 0 10px !important;
  line-height: 0.95 !important;
}

/* Texto debajo del título */
body.woocommerce-cart .jc-cart-header p,
body.woocommerce-cart .jc-cart-hero p,
body.woocommerce-cart .jc-cart-subtitle {
  margin: 0 auto !important;
  max-width: 620px !important;
}

/* Si WooCommerce mete wrappers vacíos arriba */
body.woocommerce-cart .woocommerce-notices-wrapper:empty,
body.woocommerce-cart .entry-header:empty,
body.woocommerce-cart .page-header:empty,
body.woocommerce-cart .cart-empty:empty,
body.woocommerce-cart .jc-cart-wrapper > p:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Evitar huecos raros antes del primer bloque */
body.woocommerce-cart .jc-cart-wrapper > *:first-child,
body.woocommerce-cart .woocommerce > *:first-child {
  margin-top: 0 !important;
}

/* Ajuste del grid principal */
body.woocommerce-cart .jc-cart-main,
body.woocommerce-cart .jc-cart-grid {
  align-items: start !important;
  gap: 26px !important;
}

/* Espaciado de tarjetas de productos */
body.woocommerce-cart .shop_table.cart tr.cart_item td,
body.woocommerce-cart .jc-cart-products .jc-cart-item {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

/* Cupón y botones inferiores más compactos */
body.woocommerce-cart .actions {
  padding-top: 18px !important;
  margin-top: 8px !important;
}

/* Tablet */
@media (max-width: 1024px) {
  body.woocommerce-cart .jc-cart-wrapper,
  body.woocommerce-cart .jc-cart-shell,
  body.woocommerce-cart .jc-cart-box,
  body.woocommerce-cart .jc-cart-container {
    padding-top: 22px !important;
  }

  body.woocommerce-cart .jc-cart-header,
  body.woocommerce-cart .jc-cart-hero,
  body.woocommerce-cart .jc-cart-intro {
    margin-bottom: 20px !important;
  }
}

/* Móvil */
@media (max-width: 767px) {
  body.woocommerce-cart .jc-cart-wrapper,
  body.woocommerce-cart .jc-cart-shell,
  body.woocommerce-cart .jc-cart-box,
  body.woocommerce-cart .jc-cart-container {
    padding-top: 18px !important;
    padding-bottom: 34px !important;
  }

  body.woocommerce-cart .jc-cart-header,
  body.woocommerce-cart .jc-cart-hero,
  body.woocommerce-cart .jc-cart-intro {
    margin-bottom: 18px !important;
  }

  body.woocommerce-cart .jc-cart-header h1,
  body.woocommerce-cart .jc-cart-hero h1,
  body.woocommerce-cart .jc-cart-title {
    margin-bottom: 8px !important;
  }

  body.woocommerce-cart .jc-cart-header p,
  body.woocommerce-cart .jc-cart-hero p,
  body.woocommerce-cart .jc-cart-subtitle {
    margin-bottom: 0 !important;
  }
}
/* =========================================================
   JUST CASE — ACOMODO FINAL DE RECUADROS DEL CARRITO
   Desktop: card horizontal limpia
   Móvil: card vertical premium
========================================================= */

/* Evita etiquetas automáticas tipo "Producto:", "Precio:", etc. */
body.woocommerce-cart .jc-cart-wrapper .shop_table.cart td::before {
  display: none !important;
  content: none !important;
}

/* =========================================================
   DESKTOP — Producto como tarjeta limpia
========================================================= */

@media (min-width: 1025px) {
  body.woocommerce-cart .jc-cart-wrapper table.shop_table.cart tr.cart_item {
    grid-template-columns: 34px 88px minmax(260px, 1fr) 88px 76px 96px !important;
    gap: 14px !important;
    align-items: center !important;
    padding: 18px 20px !important;
    min-height: 150px !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-remove {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-thumbnail {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-thumbnail img {
    width: 78px !important;
    height: 78px !important;
    border-radius: 16px !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-name {
    display: block !important;
    min-width: 0 !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-name > a {
    max-width: 360px !important;
    margin-bottom: 8px !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-name .variation {
    max-width: 340px !important;
    padding: 10px 12px !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-price,
  body.woocommerce-cart .jc-cart-wrapper .product-quantity,
  body.woocommerce-cart .jc-cart-wrapper .product-subtotal {
    align-self: center !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-price,
  body.woocommerce-cart .jc-cart-wrapper .product-subtotal {
    text-align: right !important;
    font-size: 13px !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-price::before,
  body.woocommerce-cart .jc-cart-wrapper .product-subtotal::before {
    display: block !important;
    margin-bottom: 5px !important;
    color: #8a93a6 !important;
    font-size: 9px !important;
    letter-spacing: 0.08em !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-quantity {
    text-align: center !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .quantity .qty {
    width: 56px !important;
    min-height: 42px !important;
  }
}

/* =========================================================
   TABLET — menos comprimido
========================================================= */

@media (min-width: 641px) and (max-width: 1024px) {
  body.woocommerce-cart .jc-cart-wrapper table.shop_table.cart tr.cart_item {
    display: grid !important;
    grid-template-columns: 34px 82px minmax(0, 1fr) !important;
    grid-template-areas:
      "remove image name"
      "remove image controls";
    gap: 12px 16px !important;
    align-items: center !important;
    padding: 18px !important;
    border-radius: 22px !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-remove {
    grid-area: remove !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-thumbnail {
    grid-area: image !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-name {
    grid-area: name !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-price,
  body.woocommerce-cart .jc-cart-wrapper .product-quantity,
  body.woocommerce-cart .jc-cart-wrapper .product-subtotal {
    grid-area: controls !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin-right: 16px !important;
    text-align: left !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-price::before {
    content: "Precio:" !important;
    display: inline-block !important;
    margin: 0 6px 0 0 !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-subtotal::before {
    content: "Subtotal:" !important;
    display: inline-block !important;
    margin: 0 6px 0 0 !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-thumbnail img {
    width: 76px !important;
    height: 76px !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-name .variation {
    max-width: 100% !important;
  }
}

/* =========================================================
   MÓVIL — Card vertical bien ordenada
========================================================= */

@media (max-width: 640px) {
  body.woocommerce-cart .jc-cart-wrapper table.shop_table.cart tr.cart_item {
    display: grid !important;
    grid-template-columns: 32px 74px minmax(0, 1fr) !important;
    grid-template-areas:
      "remove image name"
      "remove image name"
      "details details details"
      "controls controls controls";
    gap: 12px !important;
    align-items: start !important;
    padding: 16px !important;
    border-radius: 22px !important;
    background: #ffffff !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-remove {
    grid-area: remove !important;
    padding-top: 20px !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-thumbnail {
    grid-area: image !important;
    padding-top: 10px !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-thumbnail img {
    width: 70px !important;
    height: 70px !important;
    border-radius: 15px !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-name {
    grid-area: name !important;
    padding-top: 8px !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-name > a {
    margin: 0 !important;
    color: #6d28d9 !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    text-align: left !important;
  }

  /* Metadata se baja a su propio bloque */
  body.woocommerce-cart .jc-cart-wrapper .product-name .variation {
    margin-top: 12px !important;
    max-width: 100% !important;
    padding: 12px !important;
    border-radius: 16px !important;
    background: #fbfaff !important;
    border: 1px solid rgba(109, 40, 217, 0.14) !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
    text-align: left !important;
  }

  /* Precio / cantidad / subtotal como barra inferior */
  body.woocommerce-cart .jc-cart-wrapper .product-price,
  body.woocommerce-cart .jc-cart-wrapper .product-quantity,
  body.woocommerce-cart .jc-cart-wrapper .product-subtotal {
    grid-area: controls !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 10px 12px !important;
    margin: 0 !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    border: 1px solid rgba(148, 163, 184, 0.24) !important;
    text-align: right !important;
    font-size: 13px !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-price {
    margin-top: 2px !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-quantity {
    margin-top: 52px !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-subtotal {
    margin-top: 102px !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-price::before {
    content: "Precio" !important;
    display: inline-block !important;
    margin: 0 !important;
    color: #667085 !important;
    font-size: 11px !important;
    font-weight: 900 !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .product-subtotal::before {
    content: "Subtotal" !important;
    display: inline-block !important;
    margin: 0 !important;
    color: #667085 !important;
    font-size: 11px !important;
    font-weight: 900 !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .quantity {
    width: 100% !important;
    justify-content: space-between !important;
  }

  body.woocommerce-cart .jc-cart-wrapper .quantity::before {
    content: "Cantidad";
    color: #667085;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }

  body.woocommerce-cart .jc-cart-wrapper .quantity .qty {
    width: 58px !important;
    min-height: 42px !important;
    border-radius: 12px !important;
  }
}/* End custom CSS */