/* =========================================================
   LENYES.ES — Design System
   ========================================================= */

:root {
  --ink: #0b0e14;
  --ink-soft: #171c26;
  --surface: #ffffff;
  --surface-alt: #f5f6f9;
  --surface-dim: #eceef3;
  --border: #e2e4ea;
  --text: #171c26;
  --text-mute: #5b6270;
  --text-faint: #8a90a0;

  --accent: #4f5bff;
  --accent-dark: #3a3fd9;
  --accent-soft: #eceeff;
  --accent-2: #00c2b2;

  --b2c: #ff6a3d;
  --b2c-dark: #e5501f;
  --b2c-soft: #ffece3;
  --b2b: #171c26;
  --b2b-dark: #000000;

  --ok: #1fa971;
  --warn: #e8ab00;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-card: 16px;
  --shadow-sm: 0 1px 2px rgba(15, 18, 30, .06), 0 1px 1px rgba(15,18,30,.04);
  --shadow: 0 8px 24px rgba(15, 18, 30, .10);
  --shadow-lg: 0 20px 60px rgba(15, 18, 30, .18);

  --container: 1280px;
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Montserrat", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Tema forzado siempre claro (a propósito: no seguir prefers-color-scheme)
   para mantener la marca consistente hasta tener un diseño oscuro dedicado. */
:root { color-scheme: light; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  background: #f3f3f3;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.05; letter-spacing: -0.035em; margin: 0 0 .5em; font-weight: 800; }
p { margin: 0 0 1em; color: var(--text-mute); }
.container { max-width: var(--container); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
section { padding: 80px 0; }
@media (max-width: 720px) { section { padding: 52px 0; } .container { padding-left: 20px; padding-right: 20px; } }
@media (max-width: 440px) { .container { padding-left: 18px; padding-right: 18px; } }

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-b2c { background: var(--b2c); color: #fff; box-shadow: 0 10px 24px rgba(255,106,61,.35); }
.btn-b2c:hover { background: var(--b2c-dark); }
.btn-b2b { background: var(--b2b); color: #fff; }
.btn-b2b:hover { background: var(--b2b-dark); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--text); }
.btn-ghost { background: var(--surface-alt); color: var(--text); }
.btn-sm { padding: 9px 16px; font-size: .85rem; }
.btn-block { width: 100%; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* -------- Announcement bar (estatica, sin scroll) -------- */
.announce-bar { background: var(--ink); color: #fff; }
.announce-bar .container { height: 38px; display: flex; align-items: center; justify-content: center; }
.announce-bar span { font-size: .8rem; font-weight: 600; text-align: center; }
.announce-bar a { text-decoration: underline; color: #fff; }
.announce-bar a:hover { color: #ffb199; }

/* -------- Header: pill flotante blanco, siempre fijo -------- */
.header-spacer { height: 94px; }
.site-header {
  position: fixed; top: 50px; left: 20px; right: 20px; z-index: 500; max-width: calc(var(--container) + 40px);
  margin: 0 auto; background: var(--surface); border-radius: 999px; box-shadow: var(--shadow);
}
.site-header .container { display: flex; align-items: center; gap: 24px; height: 68px; max-width: none; padding: 0 12px 0 28px; }
.logo { display: flex; align-items: center; }
.logo img { height: 40px; width: auto; display: block; }
@media (max-width: 480px) { .logo img { height: 34px; } }
.main-nav { flex: 1; display: flex; justify-content: center; gap: 4px; }
.main-nav > ul { display: flex; gap: 2px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a { display: flex; align-items: center; height: 68px; padding: 0 14px; font-weight: 700; font-size: .88rem; transition: color .15s ease; }
.main-nav > ul > li:hover > a, .main-nav > ul > li > a[aria-current] { color: var(--accent); }

/* Mega menu: multi-columna con imagen + lista de productos */
.mega-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px); background: var(--surface);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 26px; width: min(680px, 88vw);
  opacity: 0; visibility: hidden; transition: all .15s ease;
}
.main-nav > ul > li:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 22px; }
.mega-col { display: flex; flex-direction: column; gap: 10px; }
.mega-col-thumb { display: block; aspect-ratio: 1/1; border-radius: var(--radius-card); overflow: hidden; background: var(--surface-alt); transition: box-shadow .15s ease; }
.mega-col-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.mega-col:hover .mega-col-thumb img { transform: scale(1.05); }
.mega-col-title { font-family: var(--font-heading); font-weight: 800; font-size: .92rem; color: var(--text); }
.mega-col:hover .mega-col-title { color: var(--accent); }
.mega-col-count { font-size: .78rem; color: var(--text-faint); margin-top: -6px; }
.mega-menu .dd-all { display: block; text-align: center; border-top: 1px solid var(--border); margin-top: 22px; padding-top: 16px; font-weight: 700; color: var(--accent); font-size: .9rem; }
.mega-menu .dd-all:hover { color: var(--accent-dark); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.search-toggle, .menu-toggle { background: none; border: none; cursor: pointer; padding: 8px; color: var(--text); }
.menu-toggle { display: none; }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .site-header .container { padding: 0 8px 0 20px; }
  .header-spacer { height: 86px; }
}
@media (max-width: 480px) {
  .site-header { left: 12px; right: 12px; top: 48px; }
}

/* Mobile off-canvas menu */
.mobile-nav { position: fixed; inset: 0; z-index: 900; display: none; }
.mobile-nav.open { display: block; }
.mobile-nav .backdrop { position: absolute; inset: 0; background: rgba(10,12,18,.5); }
.mobile-nav .panel { position: absolute; top: 0; right: 0; height: 100%; width: min(380px, 90vw); background: var(--surface); padding: 18px 16px; overflow-y: auto; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
.mnav-top { display: flex; justify-content: space-between; align-items: center; padding: 4px 4px 16px; }
.close-btn { background: var(--surface-alt); border: none; border-radius: 50%; width: 36px; height: 36px; font-size: 1.1rem; cursor: pointer; flex-shrink: 0; }

.mnav-list { display: flex; flex-direction: column; gap: 10px; }
.mnav-card {
  display: flex; align-items: center; gap: 14px; background: var(--surface-alt); border-radius: var(--radius);
  padding: 10px 14px 10px 10px;
}
.mnav-card-thumb { width: 48px; height: 48px; border-radius: var(--radius-sm); overflow: hidden; background: var(--surface-dim); flex-shrink: 0; }
.mnav-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mnav-card-text { flex: 1; display: flex; flex-direction: column; }
.mnav-card-text strong { font-family: var(--font-heading); font-weight: 800; font-size: .92rem; color: var(--text); }
.mnav-card-text span { font-size: .76rem; color: var(--text-faint); }
.mnav-card .chev { color: var(--text-faint); flex-shrink: 0; }

.mnav-simple { margin-top: 16px; padding-top: 10px; border-top: 1px solid var(--border); }
.mnav-simple a { display: block; padding: 11px 4px; font-weight: 600; }

.mnav-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; padding-top: 4px; padding-bottom: 6px; }

/* Search overlay */
.search-overlay { position: fixed; inset: 0; z-index: 950; background: rgba(10,12,18,.55); display: none; align-items: flex-start; justify-content: center; padding-top: 10vh; }
.search-overlay.open { display: flex; }
.search-box { background: var(--surface); width: min(640px, 92vw); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 22px; }
.search-box input { width: 100%; font-size: 1.1rem; padding: 14px 16px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface-alt); color: var(--text); }
.search-results { margin-top: 14px; max-height: 50vh; overflow-y: auto; display: grid; gap: 4px; }
.search-results a { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: var(--radius-sm); }
.search-results a:hover { background: var(--surface-alt); }
.search-results img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; background: var(--surface-dim); }
.search-hint, .search-empty { color: var(--text-faint); font-size: .85rem; padding: 8px 4px; }

/* -------- Hero (home): la cabecera flota transparente sobre el video, sin hueco -------- */
body.page-home .header-spacer { display: none; }
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; padding: 0; }
.hero-media { position: absolute; inset: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .8; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(11,14,20,.84) 0%, rgba(11,14,20,.58) 32%, rgba(11,14,20,.22) 58%, rgba(11,14,20,.08) 78%),
    linear-gradient(0deg, rgba(11,14,20,.42) 0%, rgba(11,14,20,0) 35%);
}
@media (max-width: 720px) {
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(11,14,20,.5) 0%, rgba(11,14,20,.78) 38%, rgba(11,14,20,.76) 65%, rgba(11,14,20,.9) 100%);
  }
}
.hero-inner { position: relative; z-index: 2; padding: 145px 0 90px; text-align: left; max-width: 640px; }
@media (max-width: 980px) { .hero-inner { padding-top: 135px; } }
.hero-eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700; color: #ffb199; margin-bottom: 14px; text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.hero h1 { font-size: clamp(2.6rem, 6.5vw, 5.6rem); font-weight: 600; letter-spacing: -0.035em; color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.55); }
.hero p.lead { color: #eef0f5; font-size: 1.15rem; max-width: 520px; text-shadow: 0 1px 14px rgba(0,0,0,.45); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 20px; margin-top: 36px; max-width: 460px; }
.hero-stats div strong { display: block; font-size: 1.5rem; font-weight: 800; }
.hero-stats div span { font-size: .78rem; color: #a7adbb; line-height: 1.3; }
@media (max-width: 720px) {
  .hero-inner { padding: 132px 0 56px; text-align: center; }
  .hero-inner .cta-row { justify-content: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-stats { max-width: 100%; gap: 12px 14px; text-align: center; margin-left: auto; margin-right: auto; }
  .hero-stats div strong { font-size: 1.25rem; }
  .hero-stats div span { font-size: .7rem; }
}

/* -------- Editorial full-bleed section -------- */
.editorial { position: relative; background: #000; min-height: 82vh; display: flex; align-items: flex-end; overflow: hidden; padding: 0; }
.editorial-media { position: absolute; inset: 0; }
.editorial-media video { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.editorial-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.15) 45%, rgba(0,0,0,.4) 100%);
}
.editorial-inner { position: relative; z-index: 2; padding: 60px 0 72px; max-width: 620px; }
.editorial-inner .eyebrow { color: #9fd8ff; }
.editorial-inner h2 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 600; letter-spacing: -0.03em; color: #fff; margin-bottom: 18px; }
.editorial-inner p.lead { color: #d7d9e3; font-size: 1.1rem; max-width: 480px; }
.editorial-inner .btn { margin-top: 10px; }
@media (max-width: 720px) {
  .editorial { min-height: 64vh; }
  .editorial-inner { padding: 40px 0 48px; text-align: center; margin: 0 auto; }
  .editorial-inner p.lead { margin-left: auto; margin-right: auto; }
}

/* -------- Category showcase (home) -------- */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.section-head h2 { font-family: var(--font-heading); font-size: clamp(1.9rem, 4vw, 3.1rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: 6px; }
.section-head .see-all { font-weight: 700; color: var(--accent); padding-bottom: 4px; }
.section-sub { color: var(--text-mute); font-size: 1rem; margin: 0; max-width: 480px; }
.section-head--center { flex-direction: column; align-items: center; text-align: center; margin-top: 28px; margin-bottom: 40px; }
.section-head--center .section-sub { max-width: 560px; margin: 0 auto; }
@media (max-width: 720px) { .section-head--center { margin-top: 14px; } }
.eyebrow { text-transform: uppercase; letter-spacing: .1em; font-size: .75rem; font-weight: 700; color: var(--accent); margin-bottom: 8px; display: block; }

.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.cat-card {
  position: relative; border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 1/1;
  background: var(--surface-alt); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; }
.cat-card .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,14,20,0) 40%, rgba(11,14,20,.82) 100%); display: flex; align-items: flex-end; padding: 16px; }
.cat-card .overlay h3 { color: #fff; font-size: 1.05rem; margin: 0; }
.cat-card .overlay span { color: #cfd3e0; font-size: .78rem; }

/* -------- Product grid & cards -------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1080px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 440px) { .product-grid { grid-template-columns: 1fr 1fr; } }

.product-card {
  position: relative; background: var(--surface); border: none; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-card .thumb { position: relative; aspect-ratio: 1/1; background: var(--surface-alt); overflow: hidden; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .thumb img { transform: scale(1.05); }
.product-card .thumb .thumb-img--hover { position: absolute; inset: 0; opacity: 0; transition: opacity .3s ease; }
.product-card:hover .thumb .thumb-img--hover { opacity: 1; }
.card-swatches { display: flex; gap: 6px; margin: 2px 0 2px; }
.card-swatch { width: 13px; height: 13px; border-radius: 50%; background: var(--swatch-color); box-shadow: inset 0 0 0 1px rgba(0,0,0,.15); }
.product-card .badge { position: absolute; top: 10px; left: 10px; background: var(--b2c); color: #fff; font-size: .68rem; font-weight: 800; padding: 4px 9px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.product-card .badge.video { left: auto; right: 10px; background: rgba(11,14,20,.75); }
.product-card .body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card .cat-tag { font-size: .7rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }
.product-card h3 { font-size: .95rem; font-weight: 700; margin: 0; }
.product-card h3 a::after { content: ""; position: absolute; inset: 0; }
.product-card .price { margin-top: auto; font-size: 1.15rem; font-weight: 800; color: var(--text); }
.product-card .price small { font-size: .7rem; color: var(--text-faint); font-weight: 500; }

/* -------- Filters bar (category page) -------- */
.subcat-strip {
  display: flex; gap: 20px; padding: 6px 2px 34px; overflow-x: auto; scroll-snap-type: x proximity;
  scrollbar-width: none; -ms-overflow-style: none;
}
.subcat-strip::-webkit-scrollbar { display: none; }
.subcat-item {
  flex: 0 0 220px; display: flex; flex-direction: column; gap: 14px; scroll-snap-align: start;
  background: none; border: none; padding: 0; border-radius: 0; cursor: pointer;
}
.subcat-thumb {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface-alt); box-shadow: 0 0 0 0 transparent; transition: box-shadow .18s ease;
}
.subcat-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.subcat-item:hover .subcat-thumb img { transform: scale(1.05); }
.subcat-item.active .subcat-thumb { box-shadow: 0 0 0 2px var(--ink); }
.subcat-item span:last-child { font-size: 1.05rem; font-weight: 700; color: var(--text); text-align: left; line-height: 1.2; }
@media (max-width: 720px) { .subcat-item { flex-basis: 160px; } .subcat-item span:last-child { font-size: .92rem; } }

.filters-bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: ""; position: absolute; right: 16px; top: 50%; width: 7px; height: 7px;
  border-right: 2px solid var(--text-mute); border-bottom: 2px solid var(--text-mute);
  transform: translateY(-65%) rotate(45deg); pointer-events: none;
}
.sort-select {
  appearance: none; -webkit-appearance: none; padding: 11px 34px 11px 18px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow-sm);
  font-weight: 700; font-size: .85rem; color: var(--text); cursor: pointer;
}
.result-count { font-size: .85rem; color: var(--text-faint); font-weight: 600; }

/* -------- Breadcrumbs -------- */
.breadcrumbs { font-size: .82rem; color: var(--text-faint); padding: 18px 0; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { margin: 0 6px; }

/* -------- Category intro -------- */
.cat-hero { position: relative; padding: 22px 0 4px; }
.cat-hero .breadcrumbs { padding: 0 0 16px; }
.cat-hero .eyebrow { color: var(--b2c); }
.cat-hero h1 {
  font-family: var(--font-heading); font-size: clamp(2.1rem, 5vw, 3.25rem); font-weight: 800;
  letter-spacing: -.03em; color: var(--text);
}
.cat-hero p.lead { max-width: 640px; font-size: 1.05rem; color: var(--text-mute); margin-top: 12px; }
@media (max-width: 720px) { .cat-hero { padding: 16px 0 0; } }

/* -------- Pagination -------- */
.pagination { display: flex; justify-content: center; gap: 8px; margin: 40px 0 10px; }
.pagination a, .pagination span { min-width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); font-weight: 700; font-size: .9rem; }
.pagination a { background: var(--surface-alt); }
.pagination a:hover { background: var(--surface-dim); }
.pagination .current { background: var(--ink); color: #fff; }

/* -------- Product detail -------- */
.product-detail { display: grid; grid-template-columns: 1.15fr 1fr; gap: 44px; align-items: start; max-width: 1140px; margin: 0 auto; }
.product-detail > * { min-width: 0; }
@media (max-width: 900px) { .product-detail { grid-template-columns: 1fr; gap: 24px; } }

.gallery-wrap { display: flex; gap: 14px; min-width: 0; }
@media (max-width: 900px) { .gallery-wrap { flex-direction: column-reverse; } }

.gallery-main { flex: 1; min-width: 0; border-radius: var(--radius-card); overflow: hidden; background: var(--surface-alt); aspect-ratio: 1/1; }
.gallery-main img, .gallery-main video { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs {
  display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; width: 76px;
  max-height: 600px; overflow-y: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumbs button {
  padding: 0; border: 2px solid transparent; border-radius: var(--radius); overflow: hidden;
  width: 76px; height: 76px; flex-shrink: 0; cursor: pointer; background: var(--surface-alt);
}
.gallery-thumbs button.active { border-color: var(--ink); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs .play-chip { position: relative; }
.gallery-thumbs .play-chip::after { content: "▶"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(11,14,20,.45); color: #fff; font-size: .8rem; }
@media (max-width: 900px) {
  .gallery-thumbs { flex-direction: row; width: auto; max-height: none; overflow-x: auto; overflow-y: visible; }
}

.pd-panel {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm);
}
.pd-subcat { font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; font-weight: 700; color: var(--b2c); }
.pd-title { font-family: var(--font-heading); font-size: clamp(1.7rem, 2.4vw, 2.3rem); font-weight: 800; letter-spacing: -.03em; margin: 6px 0 14px; }
.pd-sku { color: var(--text-faint); font-size: .85rem; margin-bottom: 18px; }
.pd-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.pd-price { font-size: 2.1rem; font-weight: 900; }
.pd-price-note { font-size: .78rem; color: var(--text-faint); margin-bottom: 22px; }

.color-picker { margin-bottom: 22px; }
.color-picker-label { display: block; font-size: .85rem; color: var(--text-mute); margin-bottom: 10px; }
.color-picker-label strong { color: var(--text); }
.swatch-row { display: flex; gap: 16px; flex-wrap: wrap; }
.swatch {
  width: auto; padding: 0; cursor: pointer; background: none; border: none;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  transition: transform .15s ease;
}
.swatch:hover { transform: translateY(-2px); }
.swatch-dot {
  width: 38px; height: 38px; border-radius: 50%; background: var(--swatch-color);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); border: 2px solid transparent; transition: border-color .15s ease;
}
.swatch.active .swatch-dot { border-color: var(--ink); }
.swatch-label { font-size: .72rem; font-weight: 600; color: var(--text-mute); max-width: 68px; text-align: center; line-height: 1.2; }
.swatch.active .swatch-label { color: var(--text); }
.pd-features { margin: 22px 0; display: grid; gap: 10px; }
.pd-features li { display: flex; gap: 10px; font-size: .92rem; color: var(--text); align-items: flex-start; }
.pd-features li .ico { color: var(--ok); flex-shrink: 0; margin-top: 2px; }

.cta-card { background: var(--surface-alt); border-radius: var(--radius); padding: 20px; margin: 20px 0; }
.cta-card h4 { font-size: .95rem; margin-bottom: 4px; }
.cta-card p { font-size: .82rem; margin-bottom: 14px; }
.cta-card .btn { width: 100%; border-radius: 999px; }
.cta-card + .cta-card { margin-top: 12px; }

.trust-row { display: flex; gap: 18px; flex-wrap: wrap; margin: 24px 0 0; padding-top: 20px; border-top: 1px solid var(--border); }
.trust-row div { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--text-mute); font-weight: 600; }

/* -------- Product tabs (Descripción / Especificaciones / Envío) -------- */
.pd-tabs { max-width: 1080px; margin: 56px auto 0; }
.tab-pills { display: flex; width: max-content; gap: 4px; background: var(--surface-alt); padding: 5px; border-radius: 999px; margin: 0 auto 30px; }
.tab-pill {
  padding: 10px 24px; border-radius: 999px; font-weight: 700; font-size: .88rem; color: var(--text-mute);
  background: none; border: none; cursor: pointer; transition: background .15s ease, color .15s ease; white-space: nowrap;
}
.tab-pill.active { background: var(--surface); color: var(--text); box-shadow: var(--shadow-sm); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel.prose, .tab-panel .specs-table { margin: 0 2px; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table td { padding: 12px 8px; font-size: .92rem; }
.specs-table td:first-child { color: var(--text-faint); width: 40%; font-weight: 600; }
.specs-table tr:nth-child(odd) { background: var(--surface-alt); }
@media (max-width: 640px) { .tab-pills { width: auto; overflow-x: auto; max-width: 100%; } }

.related-section { margin-top: 64px; }

/* -------- Sticky mobile CTA -------- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 400; background: var(--surface);
  border-top: 1px solid var(--border); padding: 10px 14px; gap: 10px;
  box-shadow: 0 -8px 24px rgba(15,18,30,.12); display: none;
  transform: translateY(100%); opacity: 0; transition: transform .25s ease, opacity .25s ease;
  pointer-events: none;
}
.sticky-cta .btn { flex: 1; }
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  .sticky-cta.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
  body { padding-bottom: 76px; }
}

/* -------- Trust / value strip -------- */
.value-strip { background: var(--surface-alt); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 780px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-item .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem; }
.value-item h4 { font-size: .95rem; margin-bottom: 2px; }
.value-item p { font-size: .82rem; margin: 0; }

/* -------- Channel split (B2C / B2B) -------- */
.channel-split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 780px) { .channel-split { grid-template-columns: 1fr; } .channel-card { text-align: center; } }
.channel-card { border-radius: var(--radius-lg); padding: 38px; color: #fff; position: relative; overflow: hidden; }
.channel-card.b2c { background: linear-gradient(135deg, #ff6a3d, #d8330a); }
.channel-card.b2b { background: linear-gradient(135deg, #232838, #0b0e14); }
.channel-card .eyebrow { color: rgba(255,255,255,.75); }
.channel-card h3 { color: #fff; font-size: 1.6rem; }
.channel-card p { color: rgba(255,255,255,.85); }
.channel-card .btn { margin-top: 14px; background: #fff; color: var(--ink); }
.channel-card .btn:hover { background: #f0f0f0; }

/* -------- About / static pages -------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2em; font-size: 1.4rem; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }
.prose ul li { color: var(--text-mute); margin-bottom: .4em; }

.category-seo { margin-top: 32px; }
.category-seo h2 {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.7rem; letter-spacing: -.02em;
  margin: 0 0 16px; color: var(--text);
}
@media (max-width: 720px) {
  .category-seo { margin-top: 20px; padding: 0 6px; }
}
.stat-block { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin: 40px 0; }
@media (max-width: 780px) { .stat-block { grid-template-columns: repeat(2,1fr); } }
.stat-block div { background: var(--surface-alt); border-radius: var(--radius); padding: 20px; }
.stat-block strong { display: block; font-size: 1.8rem; font-weight: 900; }
.stat-block span { font-size: .8rem; color: var(--text-faint); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--surface-alt); border-radius: var(--radius-lg); padding: 28px; }
.contact-card .row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-card .row .ico { width: 38px; height: 38px; border-radius: 10px; background: var(--surface); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card .row strong { display: block; font-size: .95rem; }
.contact-card .row span, .contact-card .row a { font-size: .88rem; color: var(--text-mute); }

/* -------- Footer -------- */
.site-footer { position: relative; background: var(--surface-alt); color: var(--text); padding: 76px 0 32px; overflow: hidden; }
.footer-pattern {
  position: absolute; left: -120px; top: 20px; width: 460px; height: 460px; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='460' height='460' viewBox='0 0 460 460'%3E%3Cg fill='none' stroke='%23dcdee5' stroke-width='1.5'%3E%3Ccircle cx='230' cy='230' r='40'/%3E%3Ccircle cx='230' cy='230' r='80'/%3E%3Ccircle cx='230' cy='230' r='120'/%3E%3Ccircle cx='230' cy='230' r='160'/%3E%3Ccircle cx='230' cy='230' r='200'/%3E%3Ccircle cx='230' cy='230' r='229'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--text); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 800; margin-bottom: 16px; }
.site-footer a { color: var(--text-mute); font-size: .92rem; display: block; padding: 5px 0; }
.site-footer a:hover { color: var(--text); }
.footer-address { display: block; padding: 5px 0; font-size: .88rem; color: var(--text-mute); max-width: 220px; }

.footer-divider { border-top: 1px solid var(--border); margin-top: 48px; }
.footer-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 32px; }
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 36px; width: auto; display: block; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); color: var(--text); display: flex; align-items: center; justify-content: center; padding: 0; }
.footer-social a:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

.footer-bottom { border-top: 1px solid var(--border); margin-top: 24px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .8rem; color: var(--text-faint); }
.footer-bottom div { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a { display: inline; padding: 0; color: var(--text-faint); font-size: .8rem; }
.footer-bottom a:hover { color: var(--text); }

/* -------- 404 -------- */
.error-page { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.error-page .code { font-size: 6rem; font-weight: 900; color: var(--accent-soft); line-height: 1; }

/* -------- Scroll reveal (home) -------- */
[data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .7s cubic-bezier(.16,.8,.3,1);
}
[data-reveal].in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* -------- Misc -------- */
.badge-real { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; color: var(--ok); font-weight: 700; }
.skeleton { background: linear-gradient(90deg, var(--surface-alt) 25%, var(--surface-dim) 37%, var(--surface-alt) 63%); background-size: 400% 100%; animation: shimmer 1.4s ease infinite; }
@keyframes shimmer { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }
