:root {
  color-scheme: light;
  --ink: #101710;
  --ink-soft: #263126;
  --blue: #6ba827;
  --blue-dark: #4f8517;
  --aqua: #a4d563;
  --yellow: #ffd43b;
  --green: #16a463;
  --green-dark: #0d824b;
  --paper: #f4f7fb;
  --surface: #ffffff;
  --line: #dce4ee;
  --muted: #63748a;
  --muted-light: #8c9aae;
  --shadow: 0 20px 60px rgba(6, 23, 44, 0.11);
  --shadow-small: 0 14px 36px rgba(6, 23, 44, 0.08);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shell: min(1200px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

body.dialog-open .mobile-whatsapp {
  display: none;
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 16px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow-small);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.source-note {
  background: var(--ink);
  color: #dbe8f8;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.source-note-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.source-note-inner span:last-child {
  color: #a9bdd5;
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid rgba(220, 228, 238, 0.8);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

.brand-symbol {
  position: relative;
  width: 42px;
  height: 54px;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-symbol img {
  position: absolute;
  top: -12px;
  left: -47px;
  width: 137px;
  max-width: none;
  height: auto;
}

.brand-wording {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-size: 1.23rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 4px;
  color: #537f20;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav a {
  color: #50647d;
  font-size: 0.92rem;
  font-weight: 720;
  transition: color 160ms ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--blue);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 0;
  border-radius: var(--radius-sm);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.filter-chip:focus-visible,
.product-card button:focus-visible,
.collection-media:focus-visible,
.dialog-close:focus-visible,
.gallery-arrow:focus-visible,
.gallery-thumb:focus-visible,
.source-link:focus-visible,
.search-field:focus-within {
  outline: 3px solid rgba(107, 168, 39, 0.3);
  outline-offset: 3px;
}

.button svg,
.mobile-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.button-header {
  min-height: 44px;
  padding-inline: 17px;
  background: var(--ink);
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f7e7 0%, #fbfcf8 56%, #edf7e8 100%);
}

.hero::after {
  position: absolute;
  top: -180px;
  right: -90px;
  width: 560px;
  height: 560px;
  border: 115px solid rgba(107, 168, 39, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: linear-gradient(rgba(24, 70, 119, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(24, 70, 119, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, #000, transparent 62%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 70px);
  padding-block: 68px 74px;
}

.cover-showcase {
  position: relative;
  width: min(100%, 650px);
  aspect-ratio: 16 / 9;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 35px 90px rgba(23, 57, 18, 0.2);
}

.cover-showcase::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 48%), linear-gradient(0deg, rgba(9, 18, 7, 0.5), transparent 45%);
  content: "";
  pointer-events: none;
}

.cover-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-brand {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  width: 116px;
  padding: 7px 9px;
  overflow: hidden;
  border: 1px solid rgba(107, 168, 39, 0.2);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(16, 23, 16, 0.1);
}

.cover-brand img {
  width: 100%;
  height: auto;
}

.cover-showcase figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: baseline;
  gap: 10px 13px;
  color: #fff;
}

.cover-showcase figcaption span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cover-showcase figcaption strong {
  font-size: clamp(1rem, 1.8vw, 1.32rem);
  letter-spacing: -0.035em;
}

.cover-showcase figcaption small {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.69rem;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid #c9d9ed;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #445e7b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.eyebrow span {
  padding-inline: 9px 4px;
}

.eyebrow b {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
}

.hero h1 {
  max-width: 690px;
  margin: 22px 0 20px;
  font-size: clamp(3rem, 5.5vw, 5.35rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.hero h1 em {
  position: relative;
  color: var(--blue);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 2px;
  height: 7px;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
  transform: rotate(-1.5deg);
}

.hero-copy > p {
  max-width: 610px;
  margin: 0;
  color: #52657c;
  font-size: 1.12rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 31px;
}

.button-primary {
  background: #6ba827;
  color: #fff;
  box-shadow: 0 13px 28px rgba(107, 168, 39, 0.25);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.text-link span {
  color: var(--blue);
  font-size: 1.35rem;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 39px;
}

.hero-stats div {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.hero-stats strong {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.hero-stats span {
  color: #6a7d92;
  font-size: 0.8rem;
  font-weight: 700;
}

.featured-card {
  position: relative;
  width: min(100%, 430px);
  justify-self: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 35px 90px rgba(9, 43, 83, 0.2);
  backdrop-filter: blur(12px);
  transform: rotate(1.2deg);
}

.featured-card::before {
  position: absolute;
  z-index: -1;
  inset: 40px -28px -25px 54px;
  border-radius: 38px;
  background: var(--blue);
  content: "";
  transform: rotate(-4.2deg);
}

.featured-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 7px 14px;
  color: #54677d;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.featured-topline b {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.82rem;
}

.featured-image-wrap {
  position: relative;
  display: grid;
  min-height: 290px;
  place-items: center;
  overflow: hidden;
  border-radius: 23px;
  background: linear-gradient(145deg, #f3f6f9, #fff);
}

.featured-image-wrap img {
  position: relative;
  z-index: 1;
  width: 80%;
  height: 270px;
  object-fit: contain;
  filter: drop-shadow(0 19px 20px rgba(10, 35, 63, 0.15));
}

.featured-rank {
  position: absolute;
  right: 9px;
  bottom: -35px;
  color: #e4ebf2;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.09em;
}

.featured-copy {
  padding: 20px 8px 7px;
}

.featured-copy > span {
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-copy h2 {
  margin: 8px 0 12px;
  font-size: 1.32rem;
  letter-spacing: -0.035em;
}

.featured-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.featured-price del {
  color: var(--muted-light);
  font-size: 0.86rem;
}

.featured-price strong {
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.featured-copy > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 17px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 800;
}

.featured-copy > a span {
  color: var(--blue);
  font-size: 1.25rem;
}

.confidence {
  position: relative;
  z-index: 5;
  background: var(--surface);
  box-shadow: 0 12px 35px rgba(6, 23, 44, 0.05);
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.confidence article {
  min-height: 116px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 25px 36px;
  border-right: 1px solid var(--line);
}

.confidence article:first-child {
  padding-left: 0;
}

.confidence article:last-child {
  padding-right: 0;
  border-right: 0;
}

.confidence-icon {
  width: 43px;
  height: 43px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: #edf7e2;
  color: var(--blue);
  font-weight: 900;
}

.confidence strong {
  display: block;
  font-size: 0.95rem;
}

.confidence p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.catalog-section {
  padding: 96px 0 104px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 60px;
}

.section-kicker {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading h2,
.criteria-heading h2,
.contact-card h2 {
  margin: 10px 0 0;
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  line-height: 1.7;
}

.catalog-tools {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.search-field {
  min-height: 56px;
  display: flex;
  flex: 1;
  align-items: center;
  gap: 13px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(6, 23, 44, 0.04);
}

.search-field svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #76889e;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
}

.search-field input::placeholder {
  color: #8492a4;
}

.result-count {
  min-width: 112px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 800;
  text-align: right;
}

.filter-row {
  display: flex;
  gap: 9px;
  margin: 18px 0 36px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  min-height: 42px;
  flex: 0 0 auto;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #586b82;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-chip.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(211, 222, 235, 0.9);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(6, 23, 44, 0.055);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.product-card:hover {
  border-color: #bcd0e8;
  box-shadow: var(--shadow-small);
  transform: translateY(-5px);
}

.product-media {
  position: relative;
  min-height: 295px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #f2f5f8, #fff);
  cursor: pointer;
}

.product-media::after {
  position: absolute;
  right: -45px;
  bottom: -75px;
  width: 190px;
  height: 190px;
  border: 38px solid rgba(107, 168, 39, 0.065);
  border-radius: 50%;
  content: "";
}

.product-media img {
  position: relative;
  z-index: 1;
  width: 82%;
  height: 250px;
  object-fit: contain;
  transition: transform 260ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.rank-number {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 17px;
  color: #b6c3d1;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}

.discount-pill {
  position: absolute;
  z-index: 3;
  top: 15px;
  right: 15px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.discount-pill.is-new,
.dialog-meta b.is-new {
  background: #dff2ca;
  color: #3d7010;
}

.image-count {
  position: absolute;
  z-index: 3;
  right: 15px;
  bottom: 15px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(16, 23, 16, 0.78);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 850;
  backdrop-filter: blur(7px);
}

.product-body {
  padding: 22px 22px 24px;
}

.product-category {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-body h3 {
  min-height: 54px;
  margin: 8px 0 10px;
  font-size: 1.2rem;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.product-reason {
  min-height: 62px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 19px;
  padding-top: 17px;
  border-top: 1px solid #e7edf4;
}

.price-stack {
  display: flex;
  flex-direction: column;
}

.price-stack del {
  color: var(--muted-light);
  font-size: 0.76rem;
}

.price-stack strong {
  margin-top: 2px;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.savings-label {
  padding: 5px 8px;
  border-radius: 8px;
  background: #e9f9f2;
  color: #0c8050;
  font-size: 0.7rem;
  font-weight: 850;
  white-space: nowrap;
}

.savings-label.is-fixed,
.dialog-pricing span.is-fixed {
  background: #eef5e7;
  color: #4f741f;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  margin-top: 18px;
}

.details-button,
.quick-whatsapp {
  min-height: 45px;
  border-radius: 12px;
  font-weight: 850;
}

.details-button {
  border: 0;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.details-button:hover {
  background: var(--blue);
}

.quick-whatsapp {
  width: 46px;
  display: grid;
  place-items: center;
  background: #e6f8ef;
  color: var(--green-dark);
}

.quick-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.empty-state {
  padding: 55px 20px;
  border: 1px dashed #bdcbd9;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.empty-state strong {
  font-size: 1.2rem;
}

.empty-state p {
  margin: 7px 0 16px;
  color: var(--muted);
}

.empty-state button {
  padding: 10px 16px;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.catalog-disclaimer {
  max-width: 900px;
  margin: 30px auto 0;
  color: #728298;
  font-size: 0.78rem;
  line-height: 1.6;
  text-align: center;
}

.commercial-section,
.tools-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 105px;
}

.commercial-section {
  background: radial-gradient(circle at 92% 7%, rgba(255, 212, 59, 0.13), transparent 28%), linear-gradient(145deg, #0c0e0c 0%, #171a15 52%, #0d110d 100%);
  color: #fff;
}

.commercial-section::before {
  position: absolute;
  top: -260px;
  left: -190px;
  width: 540px;
  height: 540px;
  border: 105px solid rgba(211, 31, 30, 0.08);
  border-radius: 50%;
  content: "";
}

.tools-section {
  background: linear-gradient(145deg, #fff8ef, #f5f7f2 58%, #eef5e7);
}

.tools-section::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 82px solid rgba(246, 102, 16, 0.08);
  border-radius: 50%;
  content: "";
}

.commercial-section > .shell,
.tools-section > .shell {
  position: relative;
  z-index: 1;
}

.collection-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 70px;
}

.collection-heading h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.collection-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  line-height: 1.72;
}

.collection-heading-light > p {
  color: #aeb9aa;
}

.section-kicker-warm {
  color: var(--yellow);
}

.section-kicker-orange {
  color: #d84e00;
}

.collection-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 42px 0 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.collection-highlight div {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.collection-highlight div:last-child {
  border-right: 0;
}

.collection-highlight strong {
  color: var(--yellow);
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.collection-highlight span {
  color: #c1cabf;
  font-size: 0.78rem;
  font-weight: 750;
}

.collection-grid {
  display: grid;
  gap: 25px;
}

.commercial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tools-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.collection-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(211, 222, 235, 0.9);
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--shadow-small);
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.commercial-section .collection-card {
  border-color: rgba(255, 255, 255, 0.11);
  background: #171a17;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.collection-card:hover {
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.19);
  transform: translateY(-5px);
}

.collection-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #090a09;
  cursor: pointer;
}

.tools-grid .collection-media {
  aspect-ratio: 3 / 2;
}

.collection-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.collection-card:hover .collection-media img {
  transform: scale(1.018);
}

.collection-badge,
.collection-zoom {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.collection-badge {
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  background: var(--yellow);
  color: #111;
}

.collection-zoom {
  right: 13px;
  bottom: 13px;
  padding: 7px 10px;
  background: rgba(0, 0, 0, 0.76);
  color: #fff;
  backdrop-filter: blur(7px);
}

.collection-body {
  padding: 21px 21px 22px;
}

.collection-body > span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.commercial-section .collection-body > span {
  color: var(--yellow);
}

.collection-body h3 {
  margin: 8px 0 9px;
  font-size: 1.24rem;
  line-height: 1.24;
  letter-spacing: -0.035em;
}

.collection-body > p {
  min-height: 62px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.commercial-section .collection-body > p {
  color: #aeb9aa;
}

.collection-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid rgba(145, 158, 177, 0.2);
}

.collection-footer > strong {
  display: flex;
  flex-direction: column;
  font-size: 1.33rem;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.commercial-section .collection-footer > strong {
  color: var(--yellow);
}

.collection-footer > strong small {
  margin-bottom: -1px;
  color: var(--muted-light);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-footer > div {
  display: flex;
  gap: 7px;
}

.collection-footer .details-button {
  min-height: 43px;
  padding-inline: 14px;
  border-radius: 11px;
  font-size: 0.76rem;
}

.commercial-section .collection-footer .details-button {
  background: var(--yellow);
  color: #111;
}

.commercial-section .collection-footer .details-button:hover {
  background: #ffe271;
}

.collection-footer .quick-whatsapp {
  min-height: 43px;
  width: 43px;
}

.collection-disclaimer {
  max-width: 940px;
  margin: 30px auto 0;
  color: #8f9b8c;
  font-size: 0.76rem;
  line-height: 1.6;
  text-align: center;
}

.collection-disclaimer-dark {
  color: #6c7785;
}

.tools-strip {
  display: flex;
  gap: 9px;
  margin-top: 34px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tools-strip::-webkit-scrollbar {
  display: none;
}

.tools-strip span {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid #f0bd99;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #a43b00;
  font-size: 0.76rem;
  font-weight: 850;
}

.criteria-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--ink);
  color: #fff;
}

.criteria-section::before {
  position: absolute;
  right: -120px;
  bottom: -250px;
  width: 600px;
  height: 600px;
  border: 120px solid rgba(67, 224, 208, 0.06);
  border-radius: 50%;
  content: "";
}

.criteria-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.section-kicker-light {
  color: var(--aqua);
}

.criteria-heading h2 {
  max-width: 540px;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.criteria-heading p {
  max-width: 490px;
  margin: 24px 0 0;
  color: #a9bdd5;
  font-size: 1rem;
  line-height: 1.75;
}

.criteria-list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.criteria-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.criteria-list article > span {
  color: var(--yellow);
  font-size: 0.79rem;
  font-weight: 900;
}

.criteria-list strong {
  font-size: 1.05rem;
}

.criteria-list p {
  margin: 6px 0 0;
  color: #9bb0c8;
  font-size: 0.88rem;
}

.contact-section {
  padding: 86px 0;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  padding: 54px 58px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-card::after {
  position: absolute;
  top: -70px;
  right: 250px;
  width: 210px;
  height: 210px;
  border: 46px solid rgba(107, 168, 39, 0.065);
  border-radius: 50%;
  content: "";
}

.contact-card h2 {
  max-width: 710px;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

.contact-card p {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-actions {
  position: relative;
  z-index: 1;
  min-width: 235px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.button-whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 27px rgba(22, 164, 99, 0.2);
}

.button-whatsapp:hover {
  background: var(--green-dark);
}

.contact-actions span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  min-height: 120px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand-footer .brand-symbol {
  width: 38px;
  height: 49px;
}

.brand-footer .brand-symbol img {
  top: -11px;
  left: -43px;
  width: 124px;
}

.footer-inner p {
  color: var(--muted);
  font-size: 0.83rem;
}

.footer-inner > a:last-child {
  justify-self: end;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.mobile-whatsapp {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 17px 40px rgba(12, 92, 55, 0.3);
  font-size: 0.84rem;
  font-weight: 850;
}

.product-dialog {
  width: min(970px, calc(100% - 30px));
  max-height: calc(100vh - 36px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 38px 100px rgba(2, 14, 29, 0.38);
}

.product-dialog::backdrop {
  background: rgba(2, 14, 29, 0.72);
  backdrop-filter: blur(7px);
}

.dialog-layout {
  max-height: calc(100vh - 36px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: auto;
  border-radius: inherit;
}

.dialog-close {
  position: absolute;
  z-index: 5;
  top: -14px;
  right: -14px;
  width: 44px;
  height: 44px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 1.45rem;
  cursor: pointer;
}

.dialog-gallery {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 28px 0 0 28px;
  background: #f4f7fa;
}

.dialog-media {
  position: relative;
  min-height: 465px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 28px 0 0 0;
  background: linear-gradient(145deg, #edf3f8, #fff);
}

.dialog-image-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 465px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 44px 48px 38px;
}

.dialog-image-frame img {
  position: relative;
  width: 100%;
  height: 370px;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(6, 23, 44, 0.15));
  transition: transform 240ms ease;
}

.dialog-media[data-view="zoom"] .dialog-image-frame img {
  transform: scale(1.28);
}

.dialog-media[data-view="detail"] .dialog-image-frame img {
  transform: scale(1.72);
  transform-origin: center 38%;
}

.gallery-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 23, 16, 0.09);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(6, 23, 44, 0.12);
  font-size: 1.1rem;
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-previous {
  left: 13px;
}

.gallery-next {
  right: 13px;
}

.gallery-counter {
  position: absolute;
  z-index: 4;
  right: 16px;
  bottom: 14px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(16, 23, 16, 0.78);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 850;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 11px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  background: #fff;
  scrollbar-width: thin;
}

.gallery-thumb {
  min-width: 105px;
  min-height: 62px;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 7px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1.18;
  text-align: left;
  cursor: pointer;
}

.gallery-thumb img {
  width: 36px;
  height: 42px;
  object-fit: contain;
}

.gallery-thumb.active {
  border-color: var(--blue);
  background: #f3f9eb;
  color: var(--ink);
}

.dialog-rank {
  position: absolute;
  right: -10px;
  bottom: -50px;
  color: #e1e9f1;
  font-size: 11rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.1em;
}

.dialog-content {
  padding: 48px 45px 40px;
}

.dialog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dialog-meta b {
  padding: 7px 9px;
  border-radius: 9px;
  background: var(--yellow);
  color: var(--ink);
  letter-spacing: 0;
}

.dialog-content h2 {
  margin: 14px 0 13px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.dialog-reason {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.dialog-features {
  display: grid;
  gap: 8px;
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
}

.dialog-features li {
  position: relative;
  padding-left: 22px;
  color: #344b65;
  font-size: 0.87rem;
}

.dialog-features li::before {
  position: absolute;
  top: 0.51em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 4px rgba(67, 224, 208, 0.16);
  content: "";
}

.dialog-caution {
  margin: 20px 0 0;
  padding: 11px 13px;
  border-left: 3px solid #e7a800;
  border-radius: 5px 10px 10px 5px;
  background: #fff8dc;
  color: #755b0c;
  font-size: 0.77rem;
  line-height: 1.5;
}

.dialog-pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 9px 13px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.dialog-pricing del {
  color: var(--muted-light);
  font-size: 0.9rem;
}

.dialog-pricing strong {
  font-size: 1.8rem;
  letter-spacing: -0.045em;
}

.dialog-pricing span {
  padding: 5px 8px;
  border-radius: 8px;
  background: #e9f9f2;
  color: #0c8050;
  font-size: 0.73rem;
  font-weight: 850;
}

.dialog-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 19px;
}

.dialog-actions .button {
  flex: 1;
}

.source-link {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.dialog-note {
  margin: 13px 0 0;
  color: var(--muted-light);
  font-size: 0.72rem;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 55px;
    padding-block: 62px 80px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .featured-card {
    width: min(100%, 720px);
    justify-self: center;
    transform: none;
  }

  .cover-showcase {
    width: min(100%, 760px);
    justify-self: center;
  }

  .featured-card::before {
    inset: 35px -18px -20px 80px;
  }

  .featured-image-wrap img {
    width: 72%;
  }

  .confidence article {
    padding-inline: 22px;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commercial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-heading {
    gap: 42px;
  }

  .collection-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .collection-footer > div {
    width: 100%;
  }

  .collection-footer .details-button {
    flex: 1;
  }

  .criteria-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-actions {
    width: max-content;
    align-items: flex-start;
  }

  .dialog-layout {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .dialog-media {
    min-height: 445px;
  }

  .dialog-image-frame {
    min-height: 445px;
  }

  .dialog-image-frame img {
    height: 345px;
  }

  .dialog-content {
    padding-inline: 32px;
  }

  .dialog-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 28px, 640px);
  }

  .source-note-inner {
    min-height: 32px;
    justify-content: center;
    text-align: center;
  }

  .source-note-inner span:last-child {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-symbol {
    width: 35px;
    height: 46px;
  }

  .brand-symbol img {
    top: -10px;
    left: -40px;
    width: 116px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.54rem;
  }

  .button-header {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 0.79rem;
  }

  .hero-grid {
    gap: 46px;
    padding-block: 47px 60px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(2.75rem, 13vw, 4.15rem);
  }

  .hero h1 em {
    white-space: normal;
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 32px;
  }

  .hero-stats div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .hero-stats strong {
    font-size: 1.3rem;
  }

  .featured-card {
    padding: 14px;
  }

  .cover-showcase {
    aspect-ratio: 4 / 3;
    border-width: 5px;
    border-radius: 25px;
  }

  .cover-art {
    object-position: 63% center;
  }

  .cover-brand {
    top: 13px;
    left: 13px;
    width: 88px;
    padding: 5px 7px;
    border-radius: 13px;
  }

  .cover-showcase figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .cover-showcase figcaption small {
    display: none;
  }

  .featured-card::before {
    right: -10px;
    left: 30px;
  }

  .featured-image-wrap {
    min-height: 250px;
  }

  .featured-image-wrap img {
    height: 225px;
  }

  .confidence-grid {
    grid-template-columns: 1fr;
  }

  .confidence article,
  .confidence article:first-child,
  .confidence article:last-child {
    min-height: 94px;
    padding: 19px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .confidence article:last-child {
    border-bottom: 0;
  }

  .catalog-section {
    padding-block: 74px 78px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .section-heading h2 {
    font-size: 2.55rem;
  }

  .catalog-tools {
    align-items: stretch;
    flex-direction: column;
    gap: 11px;
    margin-top: 30px;
  }

  .result-count {
    min-width: 0;
    padding-left: 3px;
    text-align: left;
  }

  .filter-row {
    margin-block: 13px 27px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .commercial-section,
  .tools-section {
    padding-block: 76px 82px;
  }

  .collection-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .collection-heading h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .collection-highlight {
    margin-top: 31px;
  }

  .collection-highlight div {
    min-height: 82px;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 13px;
  }

  .collection-highlight strong {
    font-size: 1.35rem;
  }

  .collection-highlight span {
    font-size: 0.66rem;
    line-height: 1.3;
  }

  .commercial-grid,
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .collection-body > p {
    min-height: 0;
  }

  .collection-footer {
    align-items: center;
    flex-direction: row;
  }

  .collection-footer > div {
    width: auto;
  }

  .collection-footer .details-button {
    flex: initial;
  }

  .product-media {
    min-height: 310px;
  }

  .product-media img {
    height: 267px;
  }

  .product-body h3,
  .product-reason {
    min-height: 0;
  }

  .criteria-section {
    padding-block: 76px;
  }

  .criteria-heading h2 {
    font-size: 3rem;
  }

  .contact-section {
    padding-block: 58px 86px;
  }

  .contact-card {
    padding: 36px 25px;
    border-radius: 23px;
  }

  .contact-card h2 {
    font-size: 2.45rem;
  }

  .contact-actions,
  .contact-actions .button {
    width: 100%;
  }

  .footer-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 13px;
    padding-block: 35px 104px;
  }

  .footer-inner p {
    margin: 0;
  }

  .footer-inner > a:last-child {
    justify-self: start;
  }

  .mobile-whatsapp {
    right: 14px;
    bottom: 13px;
    left: 14px;
    justify-content: center;
  }

  .product-dialog {
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    overflow: auto;
    border-radius: 23px;
  }

  .dialog-layout {
    max-height: none;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .dialog-gallery {
    border-radius: 23px 23px 0 0;
  }

  .dialog-close {
    position: fixed;
    top: 14px;
    right: 14px;
  }

  .dialog-media {
    min-height: 325px;
    border-radius: 23px 23px 0 0;
  }

  .dialog-image-frame {
    min-height: 325px;
    padding: 38px 43px 32px;
  }

  .dialog-image-frame img {
    height: 255px;
  }

  .gallery-arrow {
    width: 38px;
    height: 38px;
  }

  .gallery-previous {
    left: 9px;
  }

  .gallery-next {
    right: 9px;
  }

  .gallery-thumbs {
    padding: 9px;
  }

  .gallery-thumb {
    min-width: 98px;
  }

  .dialog-rank {
    bottom: -38px;
    font-size: 8.5rem;
  }

  .dialog-content {
    padding: 30px 24px 34px;
  }

  .dialog-content h2 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Rediseño inspirado en una tienda de catálogo limpia: Wepa conserva su marca y contenido. */
:root {
  --ink: #17212b;
  --ink-soft: #283746;
  --blue: #16a36c;
  --blue-dark: #087f55;
  --aqua: #64caa2;
  --yellow: #ffb321;
  --green: #16a36c;
  --green-dark: #087f55;
  --paper: #f5f7fa;
  --surface: #ffffff;
  --line: #e8edf2;
  --muted: #62707d;
  --muted-light: #9aa4ad;
  --shadow: 0 18px 48px rgba(23, 33, 43, 0.12);
  --shadow-small: 0 12px 36px rgba(23, 33, 43, 0.08);
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 8px;
  --shell: min(1180px, calc(100% - 32px));
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

section[id] {
  scroll-margin-top: 100px;
}

main#inicio {
  scroll-margin-top: 100px;
}

.source-note {
  background: #15233a;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
}

.source-note-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  text-align: center;
}

.source-note-inner i {
  margin-inline: 7px;
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 48px);
}

.site-header .brand {
  min-width: 180px;
  min-height: 58px;
  padding: 7px 16px 7px 12px;
  border: 1px solid rgba(183, 143, 45, 0.23);
  border-radius: 14px;
  background: linear-gradient(145deg, #fff, #fbfcf9);
  box-shadow: 0 10px 26px rgba(23, 33, 43, 0.08);
}

.site-header .brand-symbol {
  width: 35px;
  height: 44px;
}

.site-header .brand-symbol img {
  top: -10px;
  left: -39px;
  width: 112px;
}

.site-header .brand strong {
  color: #17212b;
  font-size: 1rem;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.site-header .brand small {
  color: #6a9e2a;
  font-size: 0.54rem;
}

.primary-nav {
  min-width: 0;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.primary-nav::-webkit-scrollbar {
  display: none;
}

.primary-nav a {
  min-height: 42px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #17212b;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  border-color: rgba(22, 163, 108, 0.45);
  background: #f2fbf7;
  color: #087f55;
}

.button-header {
  min-height: 44px;
  padding-inline: 19px;
  border-radius: 8px;
  background: #16a36c;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(22, 163, 108, 0.2);
}

.button-header:hover {
  background: #087f55;
}

.hero {
  overflow: visible;
  padding: 18px 0 12px;
  background: var(--paper);
}

.hero::after {
  display: none;
}

.hero-collage {
  width: min(1840px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1040px);
  grid-template-areas: "commercial main";
  align-items: center;
  gap: 14px;
  margin-inline: auto;
}

.hero-side,
.hero-main {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(23, 33, 43, 0.1);
}

.hero-side {
  aspect-ratio: 1;
}

.hero-side-commercial {
  grid-area: commercial;
}

.hero-side-tools {
  grid-area: tools;
  background: #111512;
}

.hero-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.hero-side-tools img {
  object-fit: contain;
}

.hero-side:hover img {
  transform: scale(1.02);
}

.hero-side span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(21, 35, 58, 0.9);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-main {
  grid-area: main;
  aspect-ratio: 2095 / 750;
}

.hero-main::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.95) 38%, rgba(255, 255, 255, 0.18) 59%, transparent 73%);
  content: "";
  pointer-events: none;
}

.hero-main .cover-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main figcaption {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(16px, 4vw, 52px);
  width: 44%;
  color: #17212b;
  transform: translateY(-50%);
}

.hero-main figcaption > span {
  color: #087f55;
  font-size: clamp(0.58rem, 0.8vw, 0.76rem);
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-main h1 {
  margin: 6px 0 7px;
  font-size: clamp(1.45rem, 2.35vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-main p {
  max-width: 390px;
  margin: 0;
  color: #52616f;
  font-size: clamp(0.72rem, 0.9vw, 0.95rem);
  line-height: 1.45;
}

.hero-main figcaption > div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(10px, 1.3vw, 18px);
}

.hero-main .button,
.hero-whatsapp {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 900;
  white-space: nowrap;
}

.hero-main .button-primary {
  background: #16a36c;
  box-shadow: none;
}

.hero-whatsapp {
  border: 1px solid rgba(8, 127, 85, 0.25);
  background: rgba(255, 255, 255, 0.88);
  color: #087f55;
}

.confidence {
  padding: 0 0 20px;
  background: transparent;
  box-shadow: none;
}

.confidence-grid {
  gap: 10px;
}

.confidence article,
.confidence article:first-child,
.confidence article:last-child {
  min-height: 94px;
  padding: 19px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(23, 33, 43, 0.05);
}

.confidence-icon {
  border-radius: 8px;
  background: #eaf8f2;
  color: #087f55;
}

.catalog-section {
  padding: 54px 0 74px;
}

.section-heading,
.collection-heading {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 44px;
}

.section-heading h2,
.collection-heading h2,
.criteria-heading h2,
.contact-card h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-kicker,
.section-kicker-warm,
.section-kicker-orange,
.section-kicker-light {
  color: #087f55;
}

.catalog-tools {
  margin-top: 28px;
}

.search-field {
  min-height: 52px;
  border-radius: 8px;
  box-shadow: none;
}

.filter-row {
  gap: 10px;
  margin: 14px 0 20px;
}

.filter-chip {
  min-height: 42px;
  border-radius: 8px;
  background: #fff;
  color: #17212b;
}

.filter-chip.active {
  border-color: #15233a;
  background: #15233a;
}

.catalog-grid,
.commercial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card,
.collection-card,
.commercial-section .collection-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #17212b;
  box-shadow: var(--shadow-small);
}

/* Cocina comercial: fichas limpias, con producto aislado y sin arte promocional incrustado. */
.commercial-section .collection-media {
  background: #fff;
}

.commercial-section .collection-media img {
  object-fit: contain;
  padding: 18px;
  mix-blend-mode: multiply;
}

.hero-side-commercial {
  background: #fff;
}

.hero-side-commercial img {
  object-fit: contain;
  padding: 14px;
  background: #fff;
  mix-blend-mode: multiply;
}

.product-card:hover,
.collection-card:hover {
  border-color: rgba(22, 163, 108, 0.45);
  box-shadow: 0 18px 44px rgba(23, 33, 43, 0.13);
  transform: translateY(-5px);
}

.product-media {
  min-height: 0;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #f7f9fb, #fff);
}

.product-media::after {
  display: none;
}

.product-media img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.rank-number {
  display: none;
}

.discount-pill {
  top: 12px;
  right: 12px;
  padding: 7px 9px;
  border-radius: 6px;
  background: #e73f5f;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 950;
}

.discount-pill.is-new,
.dialog-meta b.is-new {
  background: #16a36c;
  color: #fff;
}

.image-count {
  right: 12px;
  bottom: 12px;
}

.product-body,
.collection-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.product-category,
.collection-body > span,
.commercial-section .collection-body > span {
  color: #087f55;
}

.product-body h3,
.collection-body h3 {
  min-height: 48px;
  margin: 7px 0 8px;
  font-size: 1.06rem;
  line-height: 1.32;
}

.product-reason {
  display: none;
}

.price-row {
  margin-top: auto;
  padding-top: 13px;
}

.price-stack strong,
.collection-footer > strong,
.commercial-section .collection-footer > strong {
  color: #087f55;
  font-size: 1.4rem;
  font-weight: 950;
}

.savings-label {
  border-radius: 6px;
}

.card-actions {
  margin-top: 13px;
}

.details-button,
.collection-footer .details-button,
.commercial-section .collection-footer .details-button {
  min-height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, #15233a, #0b7d9d);
  color: #fff;
  font-weight: 950;
}

.details-button:hover,
.collection-footer .details-button:hover,
.commercial-section .collection-footer .details-button:hover {
  background: linear-gradient(135deg, #087f55, #16a36c);
}

.quick-whatsapp,
.collection-footer .quick-whatsapp {
  border-radius: 8px;
  background: #eaf8f2;
  color: #087f55;
}

.commercial-section,
.tools-section {
  padding: 72px 0 78px;
  background: #eef3f6;
  color: #17212b;
}

.tools-section {
  border-top: 1px solid var(--line);
  background: #f5f7fa;
}

.commercial-section::before,
.tools-section::after {
  display: none;
}

.collection-heading > p,
.collection-heading-light > p {
  color: #62707d;
}

.collection-highlight {
  margin: 28px 0 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(23, 33, 43, 0.05);
}

.collection-highlight div {
  min-height: 76px;
  border-right-color: var(--line);
}

.collection-highlight strong {
  color: #087f55;
}

.collection-highlight span {
  color: #62707d;
}

.collection-grid {
  gap: 18px;
}

.collection-media {
  background: #eef2f5;
}

.commercial-section .collection-body > p,
.collection-body > p {
  min-height: 64px;
  color: #62707d;
}

.collection-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top-color: var(--line);
}

.collection-badge {
  border-radius: 6px;
  background: #e73f5f;
  color: #fff;
}

.collection-zoom {
  border-radius: 6px;
}

.collection-disclaimer,
.collection-disclaimer-dark {
  color: #6c7785;
}

.tools-grid {
  gap: 18px;
  margin-top: 24px;
}

.instruments-section {
  padding: 72px 0 78px;
  border-top: 1px solid var(--line);
  background: #fff;
  color: #17212b;
}

.instruments-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.instruments-grid .collection-media {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #f4f7f8, #fff);
}

.instruments-grid .collection-media img {
  object-fit: contain;
  padding: 18px;
}

.instruments-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.instruments-strip span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f5f7fa;
  color: #17212b;
  font-size: 0.76rem;
  font-weight: 850;
}

.tools-strip {
  gap: 8px;
  margin-top: 24px;
}

.tools-strip span {
  padding: 9px 12px;
  border-color: var(--line);
  border-radius: 8px;
  background: #fff;
  color: #17212b;
}

.criteria-section {
  margin: 0;
  padding: 78px 0;
  background: #fff;
  color: #62707d;
}

.criteria-section::before {
  display: none;
}

.criteria-heading h2 {
  color: #17212b;
}

.criteria-list {
  gap: 10px;
}

.criteria-list article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
}

.criteria-list article > span {
  color: #16a36c;
}

.criteria-list strong {
  color: #17212b;
}

.contact-section {
  padding: 24px 0 74px;
  background: #fff;
}

.contact-card {
  border: 1px solid rgba(22, 163, 108, 0.18);
  border-radius: 12px;
  background: linear-gradient(135deg, #eefaf5, #ffffff);
  color: #17212b;
  box-shadow: var(--shadow-small);
}

.contact-card::after {
  display: none;
}

.contact-card p,
.contact-actions span {
  color: #62707d;
}

.button-whatsapp {
  border-radius: 8px;
  background: #16a36c;
  color: #fff;
}

footer {
  background: #15233a;
}

.product-dialog {
  width: min(1120px, calc(100% - 24px));
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(21, 35, 58, 0.28);
}

.dialog-layout {
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
}

.dialog-gallery {
  background: #fff;
}

.dialog-media {
  min-height: 520px;
  border-radius: 12px 0 0 0;
  background: linear-gradient(145deg, #f7f9fb, #fff);
}

.dialog-image-frame {
  min-height: 520px;
}

.dialog-image-frame img {
  height: 430px;
}

.dialog-content {
  padding: 52px 44px 42px;
}

.dialog-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 17px;
}

.dialog-trust span {
  padding: 7px 9px;
  border: 1px solid rgba(22, 163, 108, 0.2);
  border-radius: 7px;
  background: #f0faf5;
  color: #087f55;
  font-size: 0.7rem;
  font-weight: 850;
}

.dialog-pricing strong {
  color: #087f55;
}

.dialog-actions {
  gap: 10px;
}

.dialog-actions .button {
  min-height: 48px;
  border-radius: 8px;
}

.dialog-close,
.gallery-arrow,
.gallery-thumb,
.source-link {
  border-radius: 8px;
}

.dialog-actions .button-whatsapp {
  background: #16a36c;
}

.mobile-whatsapp {
  display: none !important;
}

@media (min-width: 1101px) and (max-width: 1400px) {
  .header-inner {
    gap: 10px;
    padding: 12px 18px;
  }

  .site-header .brand {
    min-width: 168px;
    padding-inline: 10px 12px;
  }

  .primary-nav {
    gap: 5px;
  }

  .primary-nav a {
    min-height: 40px;
    padding: 8px;
    font-size: 0.75rem;
  }

  .button-header {
    padding-inline: 13px;
    font-size: 0.76rem;
  }
}

@media (max-width: 1100px) {
  section[id] {
    scroll-margin-top: 206px;
  }

  main#inicio {
    scroll-margin-top: 206px;
  }

  .header-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 14px;
  }

  .site-header .brand {
    min-width: 168px;
    width: max-content;
    min-height: 52px;
  }

  .primary-nav {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }

  .button-header {
    width: 100%;
  }

  .hero-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "main main"
      "commercial commercial";
  }

  .hero-side-commercial {
    aspect-ratio: 16 / 7;
  }

  .hero-side-commercial img {
    padding: 10px 42px;
  }

  .catalog-grid,
  .commercial-grid,
  .instruments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-footer {
    align-items: center;
    flex-direction: row;
  }

  .collection-footer > div {
    width: auto;
  }

  .dialog-layout {
    grid-template-columns: 0.96fr 1.04fr;
  }

  .dialog-media,
  .dialog-image-frame {
    min-height: 460px;
  }

  .dialog-image-frame img {
    height: 360px;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 20px, 640px);
  }

  .source-note {
    font-size: 0.75rem;
  }

  .source-note-inner {
    min-height: 44px;
    padding: 8px 10px;
  }

  .header-inner {
    min-height: 0;
    padding: 10px;
  }

  .site-header .brand {
    min-width: 156px;
    min-height: 52px;
  }

  .primary-nav {
    gap: 6px;
  }

  .primary-nav a {
    min-height: 39px;
    padding: 9px 10px;
    font-size: 0.81rem;
  }

  .button-header {
    min-height: 44px;
  }

  .hero {
    padding-top: 10px;
  }

  .hero-collage {
    width: calc(100% - 20px);
    gap: 10px;
  }

  .hero-side,
  .hero-main {
    border-radius: 10px;
  }

  .hero-side span {
    right: 7px;
    bottom: 7px;
    left: 7px;
    min-height: 31px;
    padding: 6px;
    font-size: 0.62rem;
  }

  .hero-side-commercial {
    aspect-ratio: 16 / 8;
  }

  .hero-side-commercial img {
    padding: 8px 24px;
  }

  .hero-main figcaption {
    left: 12px;
    width: 48%;
  }

  .hero-main figcaption > span {
    font-size: 0.48rem;
    letter-spacing: 0.07em;
  }

  .hero-main h1 {
    margin: 3px 0 0;
    font-size: clamp(0.95rem, 4.7vw, 1.18rem);
    line-height: 1;
  }

  .hero-main p,
  .hero-whatsapp {
    display: none;
  }

  .hero-main figcaption > div {
    margin-top: 6px;
  }

  .hero-main .button {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 0.64rem;
  }

  .confidence {
    padding-top: 2px;
  }

  .confidence-grid {
    gap: 8px;
  }

  .confidence article,
  .confidence article:first-child,
  .confidence article:last-child {
    min-height: 82px;
    padding: 16px;
  }

  .catalog-section,
  .commercial-section,
  .tools-section,
  .instruments-section,
  .criteria-section {
    padding-block: 56px;
  }

  .section-heading,
  .collection-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-heading h2,
  .collection-heading h2,
  .criteria-heading h2,
  .contact-card h2 {
    font-size: clamp(2rem, 10vw, 2.45rem);
  }

  .catalog-grid,
  .commercial-grid,
  .tools-grid,
  .instruments-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-body,
  .collection-body {
    padding: 16px;
  }

  .product-body h3,
  .collection-body h3 {
    min-height: 0;
    font-size: 1.25rem;
  }

  .price-stack strong,
  .collection-footer > strong,
  .commercial-section .collection-footer > strong {
    font-size: 1.72rem;
  }

  .collection-body > p,
  .commercial-section .collection-body > p {
    min-height: 0;
  }

  .collection-highlight div {
    min-height: 74px;
  }

  .contact-section {
    padding-bottom: 86px;
  }

  .dialog-layout {
    grid-template-columns: 1fr;
  }

  .dialog-media,
  .dialog-image-frame {
    min-height: 325px;
  }

  .dialog-image-frame img {
    height: 255px;
  }

  .dialog-content {
    padding: 30px 24px 34px;
  }
}
