:root {
  /* paleta estilo Mercado Libre adaptada a M&W */
  --c-bg: #ebebeb;          /* fondo gris ML */
  --c-fg: #333;
  --c-muted: #6b6b6b;
  --c-accent: #c2185b;       /* rosa M&W */
  --c-accent-2: #e91e63;
  --c-mw-green: #2e7d32;     /* verde M&W header */
  --c-mw-green-2: #1b5e20;
  --c-line: #e6e6e6;
  --c-card: #ffffff;
  --c-success: #00a650;      /* verde envio gratis ML */
  --c-warn: #f57c00;
  --c-promo: #fff3e0;
  --c-link: #3483fa;         /* azul links ML */
  --r: 6px;
  --maxw: 1280px;
  --shadow-soft: 0 1px 2px rgba(0,0,0,.12);
  --shadow-hover: 0 6px 20px rgba(0,0,0,.10);
  --t-fast: .18s ease;
  --t-base: .28s ease;
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-fg);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========= HEADER ========= */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--c-line);
  z-index: 50;
}
.header-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .85rem 1rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: .015em;
}
.brand img { height: 38px; width: auto; }

.search-bar {
  flex: 1;
  position: relative;
  max-width: 540px;
}
.search-bar input {
  width: 100%;
  height: 42px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 0 1rem 0 2.4rem;
  font-size: .95rem;
  background: #fff;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.search-bar input:focus { outline: 0; border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(194,24,91,.15); }
.search-bar::before {
  content: '⌕';
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-muted);
  font-size: 1.2rem;
}

.icon-actions { display: flex; gap: .5rem; align-items: center; }
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--c-line);
  font-size: 1.05rem;
  position: relative;
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.icon-btn:hover { transform: translateY(-1px); border-color: var(--c-accent); }
.icon-btn .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--c-accent);
  color: #fff;
  font-size: .7rem;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-switch {
  position: relative;
}
.lang-switch select {
  appearance: none;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: #fff;
  padding: .5rem 2rem .5rem .9rem;
  font-size: .85rem;
  cursor: pointer;
}
.lang-switch::after {
  content: '▾';
  position: absolute;
  right: .8rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--c-muted);
  font-size: .75rem;
}

/* ========= NAV ========= */
.main-nav {
  border-bottom: 1px solid var(--c-line);
  background: #fff;
  font-size: .92rem;
}
.main-nav ul {
  display: flex;
  gap: 1.5rem;
  padding: .65rem 1rem;
  margin: 0;
  list-style: none;
  max-width: var(--maxw);
  margin-inline: auto;
  overflow-x: auto;
  scrollbar-width: thin;
}
.main-nav a {
  position: relative;
  white-space: nowrap;
  padding: .35rem 0;
  color: var(--c-fg);
  font-weight: 500;
}
.main-nav a:hover { color: var(--c-accent); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  inset: auto 0 -.7rem 0;
  height: 2px;
  background: var(--c-accent);
}

/* ========= HERO ========= */
.hero {
  background: linear-gradient(135deg, #fff5f7 0%, #fde8ee 100%);
  padding: 4rem 1rem;
  text-align: center;
}
.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.015em;
  margin: 0 0 .8rem;
}
.hero p {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 620px;
  margin: 0 auto 1.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.65rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 0;
  background: var(--c-accent);
  color: #fff;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.btn:hover { background: var(--c-accent-2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(194,24,91,.3); }
.btn.ghost { background: #fff; color: var(--c-fg); border: 1px solid var(--c-line); }
.btn.ghost:hover { border-color: var(--c-accent); color: var(--c-accent); background: #fff; }
.btn.lg { padding: 1.1rem 2.2rem; font-size: 1rem; }
.btn.full { width: 100%; }

/* ========= GRID PRODUCTS ========= */
.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 3rem 0 1.5rem;
}
.section-title h2 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0;
}
.section-title a { font-size: .9rem; color: var(--c-accent); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--c-card);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.product-card .img-wrap {
  aspect-ratio: 4/5;
  background: #f5f3f0;
  overflow: hidden;
  position: relative;
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover img { transform: scale(1.04); }
.product-card .body {
  padding: .85rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card h3 {
  font-size: .98rem;
  font-weight: 600;
  margin: 0 0 .35rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .short {
  font-size: .82rem;
  color: var(--c-muted);
  margin: 0 0 .65rem;
  line-height: 1.4;
}
.product-card .price-row {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-top: auto;
}
.price-current { font-weight: 700; font-size: 1.05rem; color: var(--c-accent); }
.price-old { color: var(--c-muted); text-decoration: line-through; font-size: .85rem; }
.badge-promo {
  position: absolute;
  top: .6rem;
  left: .6rem;
  background: var(--c-accent);
  color: #fff;
  font-size: .7rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  font-weight: 700;
}
.badge-wholesale {
  position: absolute;
  top: .6rem;
  right: .6rem;
  background: var(--c-promo);
  color: var(--c-warn);
  font-size: .7rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid #ffe0b2;
}

/* ========= PRODUCT DETAIL ========= */
.product-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  padding: 2rem 0;
}
@media (max-width: 800px) {
  .product-detail { grid-template-columns: 1fr; gap: 1.5rem; }
}
.gallery {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
}
.gallery .thumbs {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  max-height: 520px;
  overflow-y: auto;
}
.gallery .thumbs img {
  border-radius: 8px;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--t-fast);
}
.gallery .thumbs img.active { border-color: var(--c-accent); }
.gallery .main img {
  width: 100%;
  border-radius: var(--r);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.product-info h1 {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0 0 .6rem;
}
.product-info .price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-accent);
  margin: .4rem 0;
}
.product-info .wholesale-line {
  background: var(--c-promo);
  color: var(--c-warn);
  padding: .65rem 1rem;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  margin: .8rem 0;
  border: 1px solid #ffe0b2;
}
.product-info .desc { white-space: pre-wrap; line-height: 1.7; color: #333; margin: 1.5rem 0; }
.attr-row { display: flex; gap: 1rem; margin: 1rem 0; flex-wrap: wrap; }
.attr-row label { font-size: .85rem; color: var(--c-muted); display: block; margin-bottom: .3rem; }
.attr-row select, .attr-row input {
  padding: .55rem .9rem;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  font-size: .95rem;
  background: #fff;
  min-width: 100px;
}
.qty-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  overflow: hidden;
}
.qty-pill button { padding: .5rem .85rem; font-weight: 700; }
.qty-pill input { width: 50px; text-align: center; border: 0; font-size: 1rem; }

.size-guide-link { font-size: .85rem; color: var(--c-accent); text-decoration: underline; }

/* ========= CART / CHECKOUT ========= */
.cart-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
@media (max-width: 800px) { .cart-grid { grid-template-columns: 1fr; } }

.cart-line {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-line);
}
.cart-line img { width: 100px; height: 100px; object-fit: cover; border-radius: 8px; }

.summary-box {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: 1.5rem;
  position: sticky;
  top: 6rem;
}
.summary-box .row { display: flex; justify-content: space-between; padding: .4rem 0; }
.summary-box .row.total { font-weight: 800; font-size: 1.15rem; border-top: 1px solid var(--c-line); padding-top: .8rem; margin-top: .5rem; }

input[type=text], input[type=email], input[type=tel], input[type=password], textarea, select {
  width: 100%;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: .65rem .85rem;
  font-size: .95rem;
  font-family: inherit;
  background: #fff;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

label.field { display: block; margin-bottom: .9rem; }
label.field span { display: block; font-size: .85rem; color: var(--c-muted); margin-bottom: .3rem; }

.method-pick { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: .75rem; }
.method-pick label {
  border: 1px solid var(--c-line);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  transition: all var(--t-fast);
}
.method-pick label:hover, .method-pick input:checked + span { border-color: var(--c-accent); color: var(--c-accent); }
.method-pick input { display: none; }

/* ========= JULIA WIDGET ========= */
.julia-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--c-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 12px 32px rgba(194,24,91,.4);
  z-index: 100;
  border: 0;
  cursor: pointer;
  transition: transform var(--t-fast);
}
.julia-fab:hover { transform: scale(1.07); }
.julia-fab::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid var(--c-accent);
  opacity: .35;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.4); opacity: 0; }
}
.julia-panel {
  position: fixed;
  bottom: 100px; right: 24px;
  width: 380px;
  max-width: calc(100vw - 32px);
  max-height: 80vh;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 101;
  border: 1px solid var(--c-line);
}
.julia-panel.open { display: flex; }
.julia-head {
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  color: #fff;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.julia-head .avatar {
  width: 40px; height: 40px;
  background: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-weight: 800;
}
.julia-head .name { font-weight: 700; }
.julia-head .status { font-size: .75rem; opacity: .85; }
.julia-head .close-btn { margin-inline-start: auto; color: #fff; font-size: 1.2rem; }
.julia-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  background: #faf8f6;
}
.julia-msg { max-width: 86%; padding: .7rem .9rem; border-radius: 14px; font-size: .92rem; line-height: 1.45; }
.julia-msg.julia { background: #fff; border: 1px solid var(--c-line); border-bottom-left-radius: 4px; align-self: flex-start; }
.julia-msg.user { background: var(--c-accent); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.julia-suggest { display: flex; flex-wrap: wrap; gap: .4rem; padding: 0 1rem .8rem; }
.julia-suggest button { background: #fff; border: 1px solid var(--c-line); border-radius: 999px; padding: .35rem .8rem; font-size: .8rem; }
.julia-prods { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .4rem; }
.julia-prods a { display: flex; gap: .5rem; align-items: center; padding: .4rem .6rem; border: 1px solid var(--c-line); border-radius: 8px; background: #fff; font-size: .8rem; }
.julia-prods img { width: 40px; height: 40px; border-radius: 6px; object-fit: cover; }
.julia-input {
  display: flex;
  border-top: 1px solid var(--c-line);
  padding: .6rem;
  gap: .4rem;
  background: #fff;
}
.julia-input input {
  flex: 1;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: .55rem .9rem;
  font-size: .9rem;
}
.julia-input button {
  background: var(--c-accent);
  color: #fff;
  border-radius: 999px;
  padding: .55rem 1rem;
  font-weight: 600;
}

/* ========= LANG BANNER ========= */
.lang-banner {
  position: fixed;
  bottom: 100px;
  left: 24px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-soft);
  z-index: 99;
  max-width: 320px;
  display: none;
}
.lang-banner.show { display: block; }
.lang-banner p { margin: 0 0 .6rem; font-size: .9rem; }
.lang-banner .actions { display: flex; gap: .5rem; }
.lang-banner button { padding: .35rem .8rem; border-radius: 999px; font-size: .8rem; }
.lang-banner button.primary { background: var(--c-accent); color: #fff; }
.lang-banner button.ghost { border: 1px solid var(--c-line); }

/* ========= FOOTER ========= */
.site-footer {
  background: #1a1a1a;
  color: #d6d4d1;
  padding: 3rem 1rem 1.5rem;
  margin-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: var(--maxw);
  margin: 0 auto 2rem;
}
.footer-grid h4 { color: #fff; font-size: .95rem; margin: 0 0 .8rem; }
.footer-grid a { display: block; padding: .25rem 0; font-size: .88rem; color: #b0aeac; }
.footer-grid a:hover { color: #fff; }
.copyright { text-align: center; font-size: .8rem; color: #777; border-top: 1px solid #2a2a2a; padding-top: 1.2rem; }

/* ========= UTILS ========= */
.skeleton { background: linear-gradient(90deg, #efefef 25%, #f8f8f8 50%, #efefef 75%); background-size: 200% 100%; animation: skel 1.5s infinite; border-radius: 8px; }
@keyframes skel { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.hidden { display: none !important; }
.text-center { text-align: center; }
.spacer { height: 2rem; }

/* ============= ML-STYLE HOMEPAGE ============= */
body.ml-home { background: var(--c-bg); }

.ml-header {
  background: var(--c-mw-green);
  color: #fff;
  padding: .7rem 0 0;
  position: sticky; top: 0;
  z-index: 50;
  box-shadow: 0 2px 4px rgba(0,0,0,.10);
}
.ml-header a { color: #fff; }
.ml-header .ml-actions select { color: #fff; }
.ml-header-row {
  display: flex; align-items: center; gap: 1rem;
  max-width: var(--maxw); margin: 0 auto; padding: 0 1rem;
}
.ml-brand { display: flex; align-items: center; gap: .5rem; font-weight: 800; font-size: 1.05rem; }
.ml-brand img { height: 32px; }

.ml-search {
  flex: 1; max-width: 720px;
  position: relative;
  background: #fff; border-radius: 4px;
  display: flex; align-items: center;
  box-shadow: 0 1px 2px rgba(0,0,0,.18);
}
.ml-search input {
  border: 0; padding: .65rem 1rem .65rem 3rem;
  width: 100%; font-size: .95rem;
  outline: none;
}
.ml-search::before {
  content: '⌕'; position: absolute; left: 1rem; top: 50%;
  transform: translateY(-50%); color: var(--c-muted); font-size: 1.2rem;
}
.ml-search button {
  border: 0; background: #fff; padding: 0 1rem; height: 100%;
  cursor: pointer; color: var(--c-link); font-weight: 600;
  border-left: 1px solid #eee;
}

.ml-actions { display: flex; gap: 1rem; align-items: center; font-size: .9rem; }
.ml-actions a { color: rgba(0,0,0,.85); display: flex; align-items: center; gap: .35rem; }
.ml-actions a:hover { color: #000; }
.ml-actions .badge {
  background: var(--c-accent); color: #fff; font-size: .7rem;
  padding: 0 5px; border-radius: 999px; min-width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
}

.ml-cats {
  background: var(--c-mw-green-2);
  border-top: 1px solid rgba(255,255,255,.1);
}
.ml-cats-row {
  max-width: var(--maxw); margin: 0 auto; padding: .55rem 1rem;
  display: flex; gap: 1.2rem; overflow-x: auto;
  font-size: .85rem;
  scrollbar-width: thin;
}
.ml-cats-row a {
  white-space: nowrap; color: rgba(255,255,255,.92);
  padding: .3rem 0; position: relative;
}
.ml-cats-row a:hover { color: #fff; text-decoration: underline; }

/* free-shipping ribbon */
.ml-ribbon {
  background: var(--c-success); color: #fff;
  text-align: center; padding: .55rem 1rem;
  font-size: .92rem; font-weight: 600;
}

/* hero promo grid (ML usa 3 banners) */
.ml-hero {
  max-width: var(--maxw); margin: 1.2rem auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: .9rem;
  padding: 0 1rem;
}
@media (max-width: 800px) { .ml-hero { grid-template-columns: 1fr; } }
.ml-promo {
  background: linear-gradient(135deg,#fff5f7,#fde8ee);
  border-radius: var(--r); padding: 2.5rem 1.5rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  min-height: 220px;
}
.ml-promo h2 { font-size: 1.8rem; margin: 0 0 .5rem; font-weight: 800; line-height: 1.1; }
.ml-promo p { color: #555; margin: 0 0 1rem; }
.ml-promo a { color: var(--c-link); font-weight: 600; font-size: .92rem; }
.ml-promo.dark { background: linear-gradient(135deg,#1a1d2e,#3a1d4e); color: #fff; }
.ml-promo.dark p { color: #d8d6e3; }
.ml-promo.dark a { color: #fff; text-decoration: underline; }
.ml-promo.green { background: linear-gradient(135deg,#dcfce7,#bbf7d0); }

/* sections title */
.ml-section { max-width: var(--maxw); margin: 2rem auto; padding: 0 1rem; }
.ml-section-h {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 1rem;
}
.ml-section-h h2 { font-size: 1.35rem; font-weight: 800; margin: 0; color: #333; }
.ml-section-h a { color: var(--c-link); font-size: .9rem; font-weight: 500; }

/* horizontal scroll carousel */
.ml-carousel {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 220px);
  gap: 1rem; overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: .5rem;
  scrollbar-width: thin;
}
.ml-carousel > * { scroll-snap-align: start; }

/* product card ML-style */
.ml-card {
  background: var(--c-card); border-radius: var(--r);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  overflow: hidden;
  text-decoration: none; color: inherit;
}
.ml-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.ml-card .img-box {
  aspect-ratio: 1;
  background: #fff; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ml-card img { max-width: 100%; max-height: 100%; object-fit: contain; padding: .5rem; }
.ml-card .body { padding: .9rem 1rem 1rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.ml-card .price-old { font-size: .8rem; color: #999; text-decoration: line-through; }
.ml-card .price-now { font-size: 1.4rem; font-weight: 400; color: #333; line-height: 1; }
.ml-card .discount { color: var(--c-success); font-size: .85rem; font-weight: 600; margin-left: .35rem; }
.ml-card .free-ship { color: var(--c-success); font-size: .8rem; font-weight: 600; margin-top: .15rem; }
.ml-card .cuotas { color: var(--c-success); font-size: .78rem; }
.ml-card .name { font-size: .9rem; color: #333; line-height: 1.3; margin: .3rem 0 .15rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ml-card .stars { color: #3483fa; font-size: .75rem; }

/* category grid pills */
.ml-cat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .8rem;
}
.ml-cat-tile {
  background: #fff; border-radius: var(--r);
  padding: 1.2rem .8rem; text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--t-fast);
  text-decoration: none; color: inherit;
  font-size: .9rem; font-weight: 600;
}
.ml-cat-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.ml-cat-tile .emoji { font-size: 2rem; display: block; margin-bottom: .35rem; }

/* product grid (full) */
.ml-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  gap: 1rem;
}

/* ML footer */
.ml-footer {
  background: #fff; margin-top: 3rem;
  border-top: 1px solid var(--c-line);
  padding: 2.5rem 1rem 1.5rem;
}
.ml-footer-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--c-line);
}
.ml-footer h4 { font-size: .9rem; font-weight: 700; color: #333; margin: 0 0 .8rem; }
.ml-footer a { display: block; color: var(--c-muted); font-size: .82rem; padding: .25rem 0; }
.ml-footer a:hover { color: var(--c-link); }
.ml-footer-bottom {
  max-width: var(--maxw); margin: 1.5rem auto 0;
  text-align: center; font-size: .78rem; color: var(--c-muted);
  line-height: 1.6;
}
.ml-trust {
  display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
  margin: 1.5rem 0; padding: 1.5rem 0;
  border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line);
  max-width: var(--maxw); margin-left: auto; margin-right: auto;
}
.ml-trust div { text-align: center; font-size: .78rem; color: var(--c-muted); }
.ml-trust div b { display: block; font-size: .85rem; color: #333; margin-bottom: .2rem; }
.ml-trust .icon { font-size: 1.6rem; display: block; margin-bottom: .3rem; }
