:root {
  --ink: #171b24;
  --muted: #626b79;
  --line: #dce1e5;
  --paper: #ffffff;
  --soft: #f4f6f7;
  --orange: #f5a000;
  --orange-dark: #a86100;
  --green: #216e53;
  --green-dark: #174d3b;
  --green-soft: #e8f2ed;
  --blue: #3b78af;
  --teal: #167987;
  --rose: #a64d67;
  --dark: #171b22;
  --shadow: 0 18px 48px rgba(23, 27, 36, 0.12);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 82px;
  --cream: #f4efe4;
  --cream-light: #fffaf0;
  --gold-line: rgba(245, 160, 0, 0.48);
  --premium-shadow: 0 20px 46px rgba(18, 21, 27, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
select {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

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

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

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

button {
  border: 0;
}

:where(a, button, input, select):focus-visible {
  outline: 3px solid rgba(245, 160, 0, 0.58);
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
.button,
.site-nav,
.account-button,
.cart-button,
.nav-toggle {
  font-family: "Segoe UI", Arial, sans-serif;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-top: 4px solid var(--orange);
  border-bottom: 1px solid rgba(23, 27, 36, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.header-main {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 78px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 26px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 166px;
}

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

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 10px 12px;
  overflow: hidden;
  color: #2f3540;
  font-size: 14px;
  font-weight: 700;
  isolation: isolate;
  transition: color 420ms ease, box-shadow 240ms ease;
}

.site-nav a::before,
.site-nav a::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.site-nav a::before {
  z-index: -1;
  inset: 0;
  border-top: 2px solid #262626;
  border-bottom: 2px solid #262626;
  opacity: 0;
  transform: scaleY(1.8);
  transition: transform 320ms var(--ease-smooth), opacity 280ms ease;
}

.site-nav a::after {
  z-index: -1;
  top: 2px;
  right: 0;
  bottom: 2px;
  left: 0;
  background: #262626;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 360ms var(--ease-smooth), opacity 280ms ease;
}

.site-nav a:focus-visible {
  color: var(--paper);
}

.site-nav a:focus-visible::before,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleY(1);
}

.site-nav a.active {
  color: var(--green);
  box-shadow: inset 0 -2px 0 var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account-button,
.cart-button,
.nav-toggle {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform 200ms var(--ease-out), border-color 180ms ease,
    background 180ms ease, color 180ms ease, box-shadow 220ms var(--ease-out);
}

.account-button:hover,
.account-button:focus-visible {
  border-color: var(--green);
  color: var(--green);
}

.cart-button {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.cart-button span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 7px;
  padding: 0 6px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
  font-size: 12px;
  transition: transform 200ms var(--ease-out), background 180ms ease;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  height: calc(100svh - 118px);
  min-height: 590px;
  max-height: 730px;
  overflow: hidden;
  background: #e5e4df;
}

.hero-carousel,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-carousel {
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  margin: 0;
  visibility: hidden;
  opacity: 0;
  background: #eff1f2;
  transition: opacity 780ms var(--ease-smooth), visibility 0s linear 780ms;
}

.hero-slide:nth-child(1) {
  background: #eee9e2;
}

.hero-slide:nth-child(2) {
  background: #f1f4f6;
}

.hero-slide:nth-child(3) {
  background: #eef0f0;
}

.hero-slide:nth-child(4) {
  background: #f3f2f0;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.hero-slide img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 60%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.018);
  transition: transform 5.8s var(--ease-smooth);
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 50px 30px;
}

.hero-copy {
  width: min(555px, 43%);
}

.eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  gap: 9px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 27px;
  height: 2px;
  flex: 0 0 auto;
  content: "";
  background: currentColor;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 104px;
  font-weight: 900;
  line-height: 0.88;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.3);
}

.hero-lead {
  max-width: 500px;
  margin: 24px 0 27px;
  color: #343a44;
  font-size: 20px;
  line-height: 1.5;
}

.hero-actions,
.nahuel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out),
    background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--ink);
  background: var(--orange);
  box-shadow: 0 9px 22px rgba(245, 160, 0, 0.2);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #ffaf0b;
  box-shadow: 0 12px 28px rgba(245, 160, 0, 0.28);
}

.button.secondary,
.button.outline {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
}

.button.secondary:hover,
.button.outline:hover {
  color: var(--paper);
  background: var(--ink);
}

.button.light {
  color: var(--ink);
  background: var(--paper);
}

.hero-actions .button::after,
.nahuel-actions .button::after,
.process-row > .button::after,
.catalog-heading > .button::after,
.wholesale-copy > .button::after {
  margin-left: 12px;
  content: "\2192";
  font-size: 18px;
  line-height: 1;
  transition: transform 220ms var(--ease-out);
}

.hero-actions .button:hover::after,
.nahuel-actions .button:hover::after,
.process-row > .button:hover::after,
.catalog-heading > .button:hover::after,
.wholesale-copy > .button:hover::after {
  transform: translateX(4px);
}

.hero-proof {
  display: flex;
  max-width: 520px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 27, 36, 0.2);
}

.hero-proof span {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 9px;
  color: #444b56;
  font-size: 13px;
  font-weight: 700;
}

.hero-proof b {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
}

.hero-proof span + span {
  padding-left: 20px;
  border-left: 1px solid rgba(23, 27, 36, 0.16);
}

.hero-carousel-ui {
  position: absolute;
  z-index: 4;
  right: 112px;
  bottom: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: min(560px, 44vw);
  gap: 22px;
}

.hero-slide-copy {
  min-width: 0;
  padding-left: 13px;
  border-left: 3px solid var(--orange);
}

.hero-slide-copy span,
.hero-slide-copy strong {
  display: block;
}

.hero-slide-copy span {
  margin-bottom: 3px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-slide-copy strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-carousel-controls {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.hero-carousel-arrow {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(23, 27, 36, 0.18);
  border-radius: 5px;
  cursor: pointer;
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 7px 18px rgba(23, 27, 36, 0.16);
  transition: transform 220ms var(--ease-out), background 180ms ease,
    box-shadow 220ms var(--ease-out);
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(23, 27, 36, 0.3);
  transition: width 240ms var(--ease-out), border-radius 240ms var(--ease-out),
    background 180ms ease;
}

.hero-carousel-dots button.is-active {
  width: 24px;
  border-radius: 4px;
  background: var(--orange);
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 30px;
  border-bottom: 1px solid var(--line);
  counter-reset: promise-item;
}

.promise-strip article {
  position: relative;
  min-width: 0;
  padding: 21px 25px;
  counter-increment: promise-item;
  transition: background 180ms ease, transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.promise-strip article::before {
  display: block;
  margin-bottom: 6px;
  color: var(--orange-dark);
  content: counter(promise-item, decimal-leading-zero);
  font-size: 11px;
  font-weight: 900;
}

.promise-strip article:hover {
  z-index: 1;
  background: #fafbfb;
  transform: translateY(-3px);
}

.promise-strip article + article {
  border-left: 1px solid var(--line);
}

.promise-strip strong,
.promise-strip span {
  display: block;
}

.promise-strip strong {
  margin-bottom: 0;
  font-size: 14px;
}

.promise-strip span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 78px 30px;
}

.section-intro,
.capability-grid,
.process-row,
.catalog-heading,
.catalog-controls,
.product-grid,
.company-facts {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 42px;
}

.section-intro h2,
.catalog-heading h2,
.wholesale-copy h2,
.contact-copy h2 {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 19px;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.06;
}

.section-intro h2::after,
.catalog-heading h2::after,
.wholesale-copy h2::after,
.contact-copy h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 68px;
  height: 4px;
  content: "";
  background: var(--orange);
}

.section-intro > p,
.catalog-heading > div > p:last-child,
.wholesale-copy > p,
.contact-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-grid article {
  position: relative;
  overflow: hidden;
  padding: 28px 28px 30px;
  transition: background 180ms ease, transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.capability-grid article:hover {
  z-index: 1;
  background: var(--green-soft);
  transform: translateY(-4px);
}

.capability-grid article::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}

.capability-grid article + article {
  border-left: 1px solid var(--line);
}

.capability-grid article > span {
  color: var(--orange-dark);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.72;
  transition: color 180ms ease, transform 220ms var(--ease-out), opacity 180ms ease;
}

.capability-grid h3 {
  margin: 10px 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.capability-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-row {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) auto;
  align-items: center;
  gap: 35px;
  margin-top: 24px;
  padding: 30px 34px;
  border-radius: 6px;
  color: var(--paper);
  background: var(--dark);
}

.process-row .eyebrow {
  color: #f6b845;
}

.process-row h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.25;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: flex;
  min-width: 0;
  padding: 0 18px;
  gap: 9px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.process-list span {
  display: inline-grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(246, 184, 69, 0.58);
  border-radius: 50%;
  color: #f6b845;
  font-size: 11px;
  font-weight: 900;
}

.process-list strong {
  font-size: 13px;
  line-height: 1.35;
}

.nahuel-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  min-height: 560px;
  color: var(--paper);
  background: var(--dark);
}

.nahuel-copy {
  align-self: center;
  max-width: 570px;
  margin-left: auto;
  padding: 70px 58px 70px 30px;
}

.nahuel-copy .eyebrow {
  color: #f6b845;
}

.nahuel-copy h2 {
  margin: 0 0 22px;
  font-size: 82px;
  font-weight: 900;
  line-height: 0.95;
}

.nahuel-copy .nahuel-tagline {
  max-width: 420px;
  margin: 0;
  color: var(--paper);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.22;
}

.nahuel-actions {
  margin-top: 30px;
}

.nahuel-actions .button.primary {
  background: #f6b845;
  box-shadow: 0 10px 25px rgba(246, 184, 69, 0.24);
}

.nahuel-lines {
  display: flex;
  margin: 50px 0 0;
  padding: 18px 0 0;
  flex-wrap: wrap;
  gap: 12px 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.nahuel-lines li {
  display: inline-flex;
  width: max-content;
  padding: 0 0 7px;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(246, 184, 69, 0.5);
  color: #d6d9df;
  font-size: 13px;
  font-weight: 800;
}

.nahuel-lines i {
  color: #f6b845;
  font-size: 11px;
  transform: rotate(-18deg);
}

.nahuel-media {
  position: relative;
  min-width: 0;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  background: #eee9e0;
}

.nahuel-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 78% center;
  transition: transform 280ms var(--ease-out), filter 220ms ease;
}

.nahuel-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 7px 10px;
  border-radius: 4px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
}

.catalog-section {
  background: var(--soft);
}

.catalog-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 34px;
  gap: 50px;
}

.catalog-heading > div {
  max-width: 790px;
}

.catalog-heading h2 {
  margin-bottom: 18px;
}

.catalog-controls {
  display: grid;
  grid-template-columns: minmax(230px, 330px) minmax(0, 1fr) auto;
  align-items: end;
  padding: 18px 0;
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-search {
  display: block;
  color: #414854;
  font-size: 12px;
  font-weight: 800;
}

.catalog-search span {
  display: block;
  margin-bottom: 7px;
}

.catalog-search input {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid #cbd1d6;
  border-radius: 5px;
  outline: none;
  background: var(--paper);
}

.catalog-search input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(33, 110, 83, 0.1);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.category-filter {
  min-height: 39px;
  padding: 0 13px;
  border: 1px solid #cbd1d6;
  border-radius: 5px;
  background: var(--paper);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: transform 180ms var(--ease-out), box-shadow 200ms var(--ease-out),
    border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.category-filter.active {
  border-color: var(--green);
  color: var(--paper);
  background: var(--green);
}

.catalog-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 39px;
  margin: 0;
  padding: 0 12px;
  border-left: 4px solid var(--orange);
  color: var(--paper);
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
  justify-self: end;
}

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

.catalog-more {
  display: flex;
  justify-content: center;
  max-width: 1280px;
  margin: 28px auto 0;
}

.catalog-more[hidden] {
  display: none;
}

.catalog-more-button {
  min-width: 250px;
  background: var(--paper);
}

.catalog-more-button::after {
  margin-left: 11px;
  content: "\2193";
  font-size: 17px;
  line-height: 1;
}

.product-card {
  --product-accent: var(--green);
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: none;
  transition: transform 320ms cubic-bezier(0, 0, 1, 1), box-shadow 220ms ease,
    border-color 220ms ease;
}

.product-card-infantil {
  --product-accent: var(--blue);
}

.product-card-capilar {
  --product-accent: var(--teal);
}

.product-card-corporal {
  --product-accent: var(--green);
}

.product-card-perfumeria {
  --product-accent: var(--rose);
}

.product-media {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  overflow: hidden;
  border-bottom: 1px solid #e7eaed;
  background: #f7f7f7;
}

.product-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 6px 10px;
  object-fit: contain;
  transition: transform 260ms var(--ease-out), filter 200ms ease;
}

.product-media-portrait::before,
.product-media-portrait::after {
  position: absolute;
  content: "";
}

.product-media-portrait::before {
  z-index: 0;
  inset: -28px;
  opacity: 0.3;
  background: var(--media-image) center / cover no-repeat;
  filter: blur(25px) brightness(1.08) saturate(0.7);
}

.product-media-portrait::after {
  z-index: 1;
  inset: 0;
  background: var(--media-image) center / auto 104% no-repeat;
  transition: transform 260ms var(--ease-out), filter 200ms ease;
}

.product-media-portrait img {
  opacity: 0;
}

.product-media[data-product-id="nahuel-colonia-infantil-rosada"]::after {
  background-position: center bottom;
  background-size: auto 125%;
}

.product-media-scene img {
  padding: 0;
  object-fit: cover;
  object-position: center;
}

.product-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 17px;
  border-radius: 0 0 5px 5px;
  background: inherit;
}

.product-category {
  margin-bottom: 4px;
  color: var(--product-accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-meta {
  margin-bottom: 9px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.product-card h3 {
  min-height: 52px;
  margin-bottom: 14px;
  font-size: 19px;
  line-height: 1.35;
}

.product-action {
  position: relative;
  width: 100%;
  margin-top: auto;
  color: var(--ink);
  background: var(--orange);
}

.product-action::after {
  position: absolute;
  right: 18px;
  content: "+";
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  transition: transform 200ms var(--ease-out);
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 60px 20px;
  border: 1px dashed #bbc2c8;
  border-radius: 6px;
  color: var(--muted);
  background: var(--paper);
  text-align: center;
}

.wholesale-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--green-soft);
}

.wholesale-media {
  min-width: 0;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #e4ded5;
}

.wholesale-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 280ms var(--ease-out), filter 220ms ease;
}

.wholesale-copy {
  align-self: center;
  max-width: 690px;
  padding: 64px 46px 64px 70px;
}

.wholesale-copy h2 {
  max-width: 540px;
  margin-bottom: 24px;
}

.wholesale-copy ul {
  margin: 24px 0;
  padding: 0;
  border-top: 1px solid rgba(33, 110, 83, 0.22);
  list-style: none;
}

.wholesale-copy li {
  position: relative;
  padding: 10px 0;
  padding-left: 27px;
  border-bottom: 1px solid rgba(33, 110, 83, 0.22);
  color: var(--green-dark);
  font-weight: 700;
}

.wholesale-copy li::before {
  position: absolute;
  top: 16px;
  left: 3px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--orange);
  transform: rotate(45deg);
}

.company-section {
  background: var(--paper);
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-facts div {
  position: relative;
  padding: 24px 25px;
  transition: background 180ms ease, transform 200ms var(--ease-out);
}

.company-facts div:hover {
  background: var(--soft);
}

.company-facts div::before {
  position: absolute;
  top: -1px;
  left: 25px;
  width: 42px;
  height: 3px;
  content: "";
  background: var(--orange);
  transition: width 220ms var(--ease-out);
}

.company-facts div + div {
  border-left: 1px solid var(--line);
}

.company-facts dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.company-facts dd {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  padding: 72px max(30px, calc((100vw - 1280px) / 2));
  gap: 70px;
  color: var(--paper);
  background: var(--dark);
}

.contact-copy {
  max-width: 560px;
}

.contact-copy .eyebrow {
  color: #f6b845;
}

.contact-copy h2 {
  margin-bottom: 18px;
}

.contact-copy > p {
  color: #c5cad2;
}

.contact-options {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-options > * {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  padding: 19px 0;
  gap: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 200ms var(--ease-out), border-color 180ms ease,
    background 180ms ease;
}

.contact-options a:hover strong {
  color: #f6b845;
}

.contact-options a::after {
  color: #f6b845;
  content: "\2197";
  font-size: 20px;
  font-weight: 700;
  transition: transform 160ms ease;
}

.contact-options a:hover::after {
  transform: translate(3px, -3px);
}

.contact-options span {
  color: #9da5b1;
  font-size: 13px;
  font-weight: 700;
}

.contact-options strong {
  overflow-wrap: anywhere;
  text-align: right;
  transition: color 240ms ease;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px max(112px, calc((100vw - 1280px) / 2)) 24px
    max(30px, calc((100vw - 1280px) / 2));
  gap: 24px;
  border-top: 1px solid #323741;
  color: #a9b0bb;
  background: var(--dark);
  font-size: 12px;
}

.site-footer a {
  color: var(--paper);
  font-weight: 800;
}

.dialog-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: rgba(10, 13, 18, 0.58);
  backdrop-filter: blur(4px);
}

.dialog-backdrop[hidden],
.toast[hidden] {
  display: none !important;
}

.cart-drawer {
  display: flex;
  width: min(470px, 100%);
  height: 100%;
  margin-left: auto;
  padding: 25px;
  flex-direction: column;
  background: var(--paper);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.2);
}

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 19px;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2 {
  margin: 0;
  font-size: 29px;
  line-height: 1.1;
}

.drawer-header .eyebrow {
  margin-bottom: 8px;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--soft);
  cursor: pointer;
  font-size: 27px;
  line-height: 1;
}

.cart-items {
  overflow-y: auto;
  flex: 1;
  padding: 12px 2px;
}

.cart-empty {
  padding: 62px 22px;
  color: var(--muted);
  text-align: center;
}

.cart-empty strong,
.cart-empty span {
  display: block;
}

.cart-empty strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  align-items: center;
  padding: 13px 0;
  gap: 13px;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 70px;
  height: 70px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 5px;
  object-fit: contain;
  background: var(--soft);
}

.cart-item-copy {
  min-width: 0;
}

.cart-item-copy strong,
.cart-item-copy span {
  display: block;
}

.cart-item-copy strong {
  font-size: 14px;
  line-height: 1.25;
}

.cart-item-copy span {
  margin: 3px 0 6px;
  color: var(--muted);
  font-size: 12px;
}

.cart-item-copy button {
  padding: 0;
  color: #a34335;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.quantity-control {
  display: grid;
  grid-template-columns: 30px 28px 30px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  text-align: center;
}

.quantity-control button {
  height: 34px;
  background: var(--soft);
  cursor: pointer;
  font-weight: 900;
}

.quantity-control span {
  font-size: 13px;
  font-weight: 800;
}

.cart-summary {
  padding: 17px 0 7px;
  border-top: 1px solid var(--line);
}

.cart-summary p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 20px;
  font-size: 14px;
}

.checkout-button,
.account-submit {
  width: 100%;
}

.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.drawer-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.dialog-backdrop.centered {
  display: grid;
  place-items: center;
  padding: 18px;
}

.account-dialog {
  width: min(520px, 100%);
  max-height: calc(100svh - 36px);
  overflow-y: auto;
  padding: 25px;
  border-radius: 7px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.account-form {
  display: grid;
  margin-top: 22px;
  gap: 14px;
}

.account-form label {
  color: #414854;
  font-size: 13px;
  font-weight: 800;
}

.account-form input,
.account-form select {
  width: 100%;
  min-height: 47px;
  margin-top: 6px;
  padding: 0 12px;
  border: 1px solid #cbd1d6;
  border-radius: 5px;
  outline: none;
  background: var(--paper);
}

.account-form input:focus,
.account-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(33, 110, 83, 0.1);
}

.toast {
  position: fixed;
  z-index: 130;
  right: 22px;
  bottom: 84px;
  max-width: min(390px, calc(100vw - 44px));
  padding: 13px 17px;
  border-radius: 6px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  width: 64px;
  height: 64px;
  padding: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid var(--paper);
  border-radius: 50%;
  color: var(--paper);
  background: #25d366;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.32);
  isolation: isolate;
  transition: opacity 220ms ease, visibility 220ms ease,
    transform 260ms var(--ease-out), box-shadow 320ms var(--ease-out);
}

.whatsapp-float::before {
  position: absolute;
  z-index: 0;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #128c7e;
  transition: top 460ms var(--ease-smooth);
}

.whatsapp-icon {
  position: relative;
  z-index: 1;
  font-size: 32px;
  line-height: 1;
  backface-visibility: hidden;
  transition: color 420ms ease, transform 520ms var(--ease-smooth);
}

.reveal-enabled .reveal-target {
  opacity: 0;
  translate: 0 18px;
  transition: opacity 520ms ease var(--reveal-delay, 0ms),
    translate 520ms ease var(--reveal-delay, 0ms),
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.reveal-enabled .reveal-target.is-visible {
  opacity: 1;
  translate: 0 0;
}

.reveal-enabled .product-card.reveal-target {
  transition: opacity 520ms ease var(--reveal-delay, 0ms),
    translate 520ms ease var(--reveal-delay, 0ms),
    transform 320ms cubic-bezier(0, 0, 1, 1), box-shadow 220ms ease,
    border-color 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover {
    color: var(--paper);
  }

  .site-nav a:hover::before,
  .site-nav a:hover::after {
    opacity: 1;
    transform: scaleY(1);
  }

  .account-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(23, 27, 36, 0.08);
  }

  .cart-button:hover {
    background: #252b36;
    transform: translateY(-1px);
    box-shadow: 0 7px 16px rgba(23, 27, 36, 0.18);
  }

  .cart-button:hover span {
    background: #ffb522;
    transform: scale(1.04);
  }

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

  .button.primary:hover {
    box-shadow: 0 9px 20px rgba(245, 160, 0, 0.25);
  }

  .button.secondary:hover,
  .button.outline:hover {
    box-shadow: 0 8px 18px rgba(23, 27, 36, 0.12);
  }

  .hero-carousel-arrow:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(23, 27, 36, 0.2);
  }

  .hero-carousel-dots button:hover:not(.is-active) {
    background: var(--green);
  }

  .promise-strip article:hover {
    background: #f8faf9;
    transform: none;
    box-shadow: inset 0 -2px 0 rgba(245, 160, 0, 0.7);
  }

  .capability-grid article:hover {
    background: var(--green-soft);
    transform: none;
    box-shadow: none;
  }

  .capability-grid article:hover::after {
    transform: scaleX(1);
  }

  .capability-grid article:hover > span {
    color: var(--orange-dark);
    opacity: 1;
    transform: none;
  }

  .nahuel-media:hover img,
  .wholesale-media:hover img {
    transform: none;
    filter: none;
  }

  .category-filter:hover:not(.active) {
    border-color: var(--green);
    color: var(--green);
    background: var(--paper);
    transform: none;
    box-shadow: inset 0 0 0 1px rgba(33, 110, 83, 0.1);
  }

  .product-card:hover {
    transform: translateY(9px);
    box-shadow: 0 10px 24px rgba(23, 27, 36, 0.12);
  }

  .product-card:hover .product-media-scene img {
    transform: none;
    filter: none;
  }

  .product-card:hover .product-media-portrait::after {
    transform: none;
    filter: none;
  }

  .product-card:active {
    transform: translateY(18px);
    box-shadow: 0 4px 12px rgba(23, 27, 36, 0.1);
  }

  .company-facts div:hover {
    background: var(--soft);
    transform: none;
  }

  .company-facts div:hover::before {
    width: 76px;
  }

  .contact-options a:hover {
    border-color: rgba(246, 184, 69, 0.52);
    transform: none;
  }

  .whatsapp-float:hover {
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.3);
  }

  .whatsapp-float:hover::before {
    top: 0;
  }

  .whatsapp-float:hover .whatsapp-icon {
    color: var(--paper);
    transform: rotateY(360deg);
  }
}

.whatsapp-float:active {
  transform: scale(0.94);
}

.whatsapp-float:active::before {
  top: 0;
}

.whatsapp-float:active .whatsapp-icon {
  color: var(--paper);
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: 150px minmax(0, 1fr) auto;
    padding: 0 18px;
    gap: 18px;
  }

  .brand {
    width: 145px;
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 13px;
  }

  .account-button {
    padding: 0 11px;
  }

  .process-row {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .process-row > .button {
    grid-column: 1 / -1;
    justify-self: end;
  }

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

@media (max-width: 960px) {
  :root {
    --header-height: 74px;
  }

  .header-main {
    position: relative;
    grid-template-columns: 1fr auto auto;
    min-height: 70px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    padding: 8px;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 13px;
    border-bottom: 1px solid #edf0f2;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::before,
  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--green);
  }

  .site-nav a.active {
    background: var(--green-soft);
    box-shadow: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    height: 650px;
  }

  .hero h1 {
    font-size: 82px;
  }

  .hero-slide img {
    max-width: 58%;
  }

  .hero-carousel-ui {
    width: min(510px, 48vw);
  }

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

  .promise-strip article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .promise-strip article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-intro > p {
    max-width: 720px;
  }

  .process-row {
    grid-template-columns: 1fr;
  }

  .process-row > .button {
    grid-column: auto;
    justify-self: start;
  }

  .nahuel-section {
    grid-template-columns: 1fr;
  }

  .nahuel-copy {
    max-width: none;
    margin: 0;
    padding: 74px 30px;
  }

  .nahuel-media {
    min-height: 500px;
  }

  .catalog-controls {
    grid-template-columns: minmax(230px, 330px) minmax(0, 1fr);
  }

  .catalog-count {
    grid-column: 1 / -1;
    margin: 0;
    justify-self: start;
    text-align: left;
  }

  .wholesale-section {
    grid-template-columns: 1fr;
  }

  .wholesale-media {
    min-height: 480px;
  }

  .wholesale-copy {
    max-width: 780px;
    padding: 70px 30px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    padding: 74px 30px;
    gap: 48px;
  }
}

@media (max-width: 720px) {
  .header-main {
    grid-template-columns: 1fr auto auto;
    padding: 0 14px;
    gap: 7px;
  }

  .brand {
    width: 134px;
  }

  .account-button {
    display: none;
  }

  .cart-button,
  .nav-toggle {
    min-height: 40px;
    padding: 0 11px;
  }

  .hero {
    height: 700px;
    min-height: 700px;
  }

  .hero::after {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    height: 58%;
    content: "";
    background: rgba(255, 255, 255, 0.94);
  }

  .hero-carousel {
    height: 44%;
  }

  .hero-slide img {
    width: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center;
  }

  .hero-inner {
    align-items: flex-end;
    padding: 40px 18px 35px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-lead {
    margin: 20px 0 24px;
    font-size: 17px;
  }

  .hero-proof {
    margin-top: 26px;
  }

  .hero-proof span {
    font-size: 12px;
  }

  .hero-proof span + span {
    padding-left: 12px;
  }

  .hero-carousel-ui {
    top: calc(44% - 54px);
    right: 18px;
    bottom: auto;
    left: 18px;
    width: auto;
  }

  .hero-slide-copy {
    max-width: calc(100% - 190px);
  }

  .hero-slide-copy span {
    font-size: 10px;
  }

  .hero-slide-copy strong {
    font-size: 13px;
  }

  .promise-strip {
    padding: 0 18px;
  }

  .promise-strip article {
    padding: 17px 14px;
  }

  .section {
    padding: 56px 18px;
  }

  .section-intro,
  .catalog-heading {
    margin-bottom: 29px;
  }

  .section-intro h2,
  .catalog-heading h2,
  .wholesale-copy h2,
  .contact-copy h2 {
    font-size: 38px;
  }

  .section-intro > p,
  .catalog-heading > div > p:last-child,
  .wholesale-copy > p,
  .contact-copy > p {
    font-size: 16px;
  }

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

  .capability-grid article {
    padding: 23px 5px;
  }

  .capability-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-row {
    padding: 26px 20px;
    gap: 23px;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 0;
  }

  .process-list li:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .nahuel-copy {
    padding: 54px 18px;
  }

  .nahuel-copy h2 {
    font-size: 64px;
  }

  .nahuel-copy .nahuel-tagline {
    font-size: 25px;
  }

  .nahuel-media {
    min-height: 330px;
  }

  .nahuel-lines {
    margin-top: 38px;
    gap: 9px 20px;
  }

  .catalog-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .catalog-controls {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .category-filters {
    display: flex;
    overflow-x: auto;
    margin-right: -18px;
    margin-left: -18px;
    padding: 0 18px 5px;
    flex-wrap: nowrap;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
  }

  .category-filters::-webkit-scrollbar {
    display: none;
  }

  .category-filter {
    min-width: max-content;
    padding: 0 13px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .catalog-count {
    grid-column: auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
    gap: 12px;
  }

  .product-card h3 {
    display: -webkit-box;
    min-height: 60px;
    max-height: 60px;
    margin-bottom: 13px;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .product-media {
    aspect-ratio: 1;
  }

  .product-media img {
    padding: 4px 6px;
  }

  .product-card-body {
    padding: 14px 12px 12px;
  }

  .product-category {
    margin-bottom: 3px;
    font-size: 9px;
    line-height: 1.35;
  }

  .product-meta {
    display: -webkit-box;
    min-height: 31px;
    max-height: 31px;
    margin-bottom: 9px;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-action {
    min-height: 42px;
    padding: 0 8px;
    font-size: 12px;
  }

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

  .catalog-more {
    margin-top: 22px;
  }

  .catalog-more-button {
    width: 100%;
    min-width: 0;
  }

  .wholesale-media {
    min-height: 340px;
  }

  .wholesale-copy {
    padding: 54px 18px;
  }

  .company-facts {
    grid-template-columns: 1fr;
  }

  .company-facts div {
    padding: 22px 5px;
  }

  .company-facts div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-section {
    padding: 54px 18px;
  }

  .contact-options > * {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .contact-options strong {
    text-align: left;
  }

  .site-footer {
    align-items: flex-start;
    padding: 24px 18px 90px;
    flex-direction: column;
    gap: 8px;
  }

  .cart-drawer {
    padding: 20px 16px;
  }

  .cart-item {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .cart-item img {
    width: 58px;
    height: 58px;
  }

  .quantity-control {
    grid-template-columns: 27px 23px 27px;
  }

  .account-dialog {
    padding: 21px 17px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }

  .whatsapp-icon {
    font-size: 26px;
  }

  .whatsapp-float.is-suppressed {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.9);
  }
}

@media (max-width: 430px) {
  .brand {
    width: 118px;
  }

  .cart-button,
  .nav-toggle {
    padding: 0 8px;
    font-size: 12px;
  }

  .cart-button span {
    min-width: 19px;
    height: 19px;
    margin-left: 4px;
  }

  .hero {
    height: 720px;
    min-height: 720px;
  }

  .hero::after {
    height: 62%;
  }

  .hero-carousel {
    height: 42%;
  }

  .hero-carousel-ui {
    top: calc(42% - 50px);
    gap: 10px;
  }

  .hero-slide-copy {
    max-width: calc(100% - 154px);
  }

  .hero-slide-copy span {
    display: none;
  }

  .hero-carousel-controls {
    gap: 7px;
  }

  .hero-carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .hero-carousel-dots {
    gap: 5px;
  }

  .hero-carousel-dots button {
    width: 7px;
    height: 7px;
  }

  .hero-carousel-dots button.is-active {
    width: 18px;
  }

  .hero h1 {
    font-size: 58px;
  }

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

  .promise-strip {
    grid-template-columns: 1fr;
  }

  .promise-strip article + article,
  .promise-strip article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-intro h2,
  .catalog-heading h2,
  .wholesale-copy h2,
  .contact-copy h2 {
    font-size: 35px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .nahuel-copy h2 {
    font-size: 58px;
  }

  .nahuel-lines {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
  }

  .nahuel-lines li + li {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-enabled .reveal-target {
    opacity: 1;
    translate: 0 0;
  }

  .hero-slide img {
    transform: none;
  }
}

/* Horizontal hero carousel */
@keyframes hero-slide-enter-next {
  from {
    opacity: 0.18;
    transform: translate3d(14%, 0, 0) scale(1.015);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-slide-leave-next {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    opacity: 0;
    transform: translate3d(-8%, 0, 0) scale(0.985);
  }
}

@keyframes hero-slide-enter-previous {
  from {
    opacity: 0.18;
    transform: translate3d(-14%, 0, 0) scale(1.015);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-slide-leave-previous {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    opacity: 0;
    transform: translate3d(8%, 0, 0) scale(0.985);
  }
}

.hero-slide {
  transform: translate3d(0, 0, 0);
  transition: none;
  will-change: transform, opacity;
}

.hero-slide.is-active,
.hero-slide.is-entering-next,
.hero-slide.is-entering-previous,
.hero-slide.is-leaving-next,
.hero-slide.is-leaving-previous {
  visibility: visible;
}

.hero-slide.is-entering-next {
  z-index: 2;
  animation: hero-slide-enter-next 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide.is-leaving-next {
  z-index: 1;
  animation: hero-slide-leave-next 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide.is-entering-previous {
  z-index: 2;
  animation: hero-slide-enter-previous 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide.is-leaving-previous {
  z-index: 1;
  animation: hero-slide-leave-previous 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-carousel-ui {
  top: auto;
  right: 28px;
  bottom: 28px;
  width: min(560px, 44vw);
  align-items: flex-end;
  flex-direction: row;
  transform: none;
}

.hero-carousel-controls,
.hero-carousel-dots {
  flex-direction: row;
}

.hero-carousel-controls {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(16, 43, 34, 0.12);
  backdrop-filter: blur(10px);
}

.hero-carousel-dots {
  gap: 7px;
}

.hero-carousel-dots button {
  width: 8px;
  height: 8px;
  transition: width 420ms cubic-bezier(0.16, 1, 0.3, 1), background-color 300ms ease, opacity 300ms ease;
}

.hero-carousel-dots button.is-active {
  width: 28px;
  height: 8px;
}

@media (max-width: 720px) {
  .hero-carousel-ui {
    top: 22px;
    right: 14px;
    bottom: auto;
    left: auto;
    width: auto;
    align-items: center;
    flex-direction: row;
  }

  .hero-carousel-controls,
  .hero-carousel-dots {
    flex-direction: row;
  }

  .hero-carousel-controls {
    padding: 8px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-entering-next,
  .hero-slide.is-leaving-next,
  .hero-slide.is-entering-previous,
  .hero-slide.is-leaving-previous {
    animation: none;
  }
}

/* Stacked corporate logo supplied for the main navigation. */
.brand {
  width: 94px;
  height: 68px;
  justify-content: flex-start;
}

.brand img {
  width: auto;
  height: 62px;
  object-fit: contain;
}

@media (max-width: 720px) {
  .brand {
    width: 72px;
    height: 60px;
  }

  .brand img {
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) and (hover: hover) and (pointer: fine) {
  .site-nav a {
    transition: color 420ms ease, box-shadow 240ms ease !important;
  }

  .site-nav a::before {
    transition: transform 320ms var(--ease-smooth), opacity 280ms ease !important;
  }

  .site-nav a::after {
    transition: transform 360ms var(--ease-smooth), opacity 280ms ease !important;
  }

  .whatsapp-float {
    transition: transform 260ms var(--ease-out), box-shadow 320ms var(--ease-out) !important;
  }

  .whatsapp-float::before {
    transition: top 460ms var(--ease-smooth) !important;
  }

  .whatsapp-icon {
    transition: color 420ms ease, transform 520ms var(--ease-smooth) !important;
  }

  .product-card {
    transition: transform 320ms cubic-bezier(0, 0, 1, 1),
      box-shadow 220ms ease, border-color 220ms ease !important;
  }
}

/* Premium GIESA theme */
.site-header {
  border-top-color: var(--orange);
  border-bottom-color: rgba(245, 160, 0, 0.28);
  color: var(--cream-light);
  background: rgba(21, 25, 32, 0.97);
  box-shadow: 0 10px 30px rgba(9, 12, 16, 0.18);
}

.header-main {
  min-height: 72px;
}

.brand {
  width: 158px;
}

.site-nav a {
  color: #e8e1d5;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.site-nav a::before {
  border-color: rgba(245, 160, 0, 0.72);
}

.site-nav a::after {
  background: var(--green-dark);
}

.site-nav a.active {
  color: var(--cream-light);
  box-shadow: inset 0 -2px 0 var(--orange);
}

.account-button,
.cart-button,
.nav-toggle {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
}

.account-button {
  border-color: rgba(255, 249, 238, 0.38);
  color: var(--cream-light);
  background: transparent;
}

.cart-button {
  border-color: var(--orange);
  color: var(--ink);
  background: var(--orange);
}

.cart-button span:last-child {
  color: var(--cream-light);
  background: var(--dark);
}

.hero {
  height: min(760px, calc(100svh - 108px));
  min-height: 600px;
  max-height: none;
  color: var(--cream-light);
  background: var(--dark);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero::before {
  background: linear-gradient(90deg, rgba(13, 16, 21, 0.96) 0%, rgba(18, 22, 28, 0.9) 34%, rgba(18, 22, 28, 0.42) 63%, rgba(18, 22, 28, 0.08) 100%);
}

.hero::after {
  height: auto;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.024) 0, rgba(255, 255, 255, 0.024) 1px, transparent 1px, transparent 13px);
}

.hero-slide {
  visibility: hidden;
  opacity: 0;
  background: #e8e3d9;
  transform: translateY(7%);
  transition: opacity 720ms var(--ease-smooth), transform 780ms var(--ease-smooth), visibility 0s linear 780ms;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.hero-slide img {
  width: 100%;
  max-width: none;
  height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: 78% center;
  filter: saturate(0.92) contrast(1.02);
  transform: scale(1.025);
  transition: transform 2s var(--ease-smooth), filter 700ms ease;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-inner {
  max-width: 1280px;
  padding: 54px 30px;
}

.hero-copy {
  width: min(610px, 52%);
}

.hero .eyebrow {
  color: #f6b845;
}

.hero h1 {
  color: var(--cream-light);
  font-size: 98px;
  font-weight: 800;
  line-height: 0.9;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.34);
}

.hero-lead {
  max-width: 540px;
  color: #eee7dc;
  font-size: 19px;
}

.hero-proof {
  border-top-color: rgba(255, 249, 238, 0.25);
}

.hero-proof span {
  color: #d5cec2;
}

.hero-proof span + span {
  border-left-color: rgba(255, 249, 238, 0.18);
}

.hero-proof b {
  color: #f6b845;
}

.button {
  border-radius: 999px;
}

.hero-actions .button.secondary {
  border-color: rgba(255, 249, 238, 0.62);
  color: var(--cream-light);
  background: rgba(21, 25, 32, 0.45);
  backdrop-filter: blur(8px);
}

.hero-actions .button.secondary:hover {
  border-color: var(--cream-light);
  color: var(--ink);
  background: var(--cream-light);
}

.hero-carousel-ui {
  top: 50%;
  right: 28px;
  bottom: auto;
  width: auto;
  align-items: flex-end;
  flex-direction: column;
  gap: 14px;
  transform: translateY(-50%);
}

.hero-slide-copy {
  max-width: 250px;
  padding: 10px 13px;
  border: 1px solid rgba(245, 160, 0, 0.35);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  background: rgba(18, 22, 28, 0.78);
  backdrop-filter: blur(10px);
}

.hero-slide-copy span {
  color: #f6b845;
}

.hero-slide-copy strong {
  color: var(--cream-light);
}

.hero-carousel-controls,
.hero-carousel-dots {
  flex-direction: column;
}

.hero-carousel-arrow {
  border-color: rgba(245, 160, 0, 0.48);
  border-radius: 50%;
  background: rgba(21, 25, 32, 0.86);
  backdrop-filter: blur(8px);
}

.hero-carousel-dots button {
  background: rgba(255, 249, 238, 0.55);
  transition: height 240ms var(--ease-out), border-radius 240ms var(--ease-out), background 180ms ease;
}

.hero-carousel-dots button.is-active {
  width: 8px;
  height: 25px;
}

.promise-strip {
  border-top: 1px solid rgba(245, 160, 0, 0.38);
  border-bottom-color: #d6cbb9;
  background: var(--cream-light);
}

.promise-strip article strong {
  color: #34302b;
}

.manufacturing-section {
  background: var(--cream);
}

.section-intro h2,
.catalog-heading h2,
.wholesale-copy h2,
.contact-copy h2,
.nahuel-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.capability-grid {
  gap: 12px;
  border: 0;
}

.capability-grid article {
  min-height: 230px;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  color: var(--cream-light);
  background: var(--dark);
}

.capability-grid article + article {
  border-left: 1px solid var(--gold-line);
}

.capability-grid article > span {
  color: #f6b845;
}

.capability-grid p {
  color: #c8c3bb;
}

.process-row {
  margin-top: 28px;
  border: 1px solid rgba(245, 160, 0, 0.35);
  border-radius: 8px;
  background: var(--green-dark);
}

.nahuel-section {
  background: #11161c;
}

.nahuel-copy {
  position: relative;
}

.nahuel-copy::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 14px);
}

.nahuel-copy > * {
  position: relative;
  z-index: 1;
}

.catalog-section {
  color: var(--cream-light);
  background:
    radial-gradient(circle at 12% 4%, rgba(245, 160, 0, 0.12), transparent 28%),
    linear-gradient(145deg, #171b22 0%, #0e1217 72%);
}

.catalog-heading {
  border-bottom: 1px solid rgba(245, 160, 0, 0.22);
  padding-bottom: 34px;
}

.catalog-heading h2 {
  color: var(--cream-light);
}

.catalog-heading p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.68);
}

.catalog-heading .eyebrow {
  color: #f6b845;
}

.catalog-heading .button {
  border-color: var(--orange-dark);
  color: var(--ink);
  background: linear-gradient(180deg, #ffc451, var(--orange));
  box-shadow: 0 12px 28px rgba(245, 160, 0, 0.2);
}

.catalog-controls {
  align-items: center;
  border-color: rgba(245, 160, 0, 0.22);
}

.catalog-search {
  color: rgba(255, 250, 240, 0.72);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-search input {
  border-color: rgba(245, 160, 0, 0.44);
  border-radius: 999px;
  background: var(--cream-light);
}

.category-filters {
  width: fit-content;
  padding: 5px;
  border: 1px solid rgba(245, 160, 0, 0.5);
  border-radius: 999px;
  background: rgba(245, 160, 0, 0.1);
}

.category-filter {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.68);
  background: transparent;
  transition: color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.category-filter.active {
  color: var(--ink);
  background: linear-gradient(180deg, #ffc451, var(--orange));
  box-shadow: inset 0 0 0 1px var(--orange-dark), 0 6px 16px rgba(245, 160, 0, 0.18);
}

.catalog-count {
  border: 1px solid rgba(245, 160, 0, 0.5);
  border-left-width: 4px;
  border-radius: 4px;
  color: var(--cream-light);
  background: rgba(255, 255, 255, 0.04);
}

.product-grid {
  margin-top: 34px;
  gap: 38px 24px;
}

.product-card {
  gap: 14px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}

.product-media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(245, 160, 0, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(245, 160, 0, 0.2), rgba(255, 250, 240, 0.84)),
    repeating-linear-gradient(135deg, #fffaf0 0 14px, #e9e1d3 14px 28px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  isolation: isolate;
  transition: transform 500ms var(--ease-out), border-color 320ms ease, box-shadow 380ms ease;
}

.product-media img,
.product-media-scene img,
.product-media-portrait img {
  width: 100%;
  height: 100%;
  padding: 14px;
  opacity: 1;
  object-fit: contain;
  object-position: center;
  transition: transform 600ms var(--ease-out), filter 360ms ease;
}

.product-media-portrait::before,
.product-media-portrait::after {
  display: none;
}

.product-media-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(14, 18, 23, 0.32));
  opacity: 0;
  transition: opacity 360ms ease;
}

.product-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  padding: 0 2px;
  gap: 14px;
  border-radius: 0;
  background: transparent;
}

.product-card-copy {
  min-width: 0;
}

.product-category {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  margin: 0;
  padding: 6px 9px;
  border: 1px solid rgba(245, 160, 0, 0.7);
  border-radius: 4px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffc451, var(--orange));
  box-shadow: 0 5px 16px rgba(23, 27, 34, 0.14);
  font-size: 9px;
  line-height: 1.1;
  letter-spacing: 0.08em;
}

.product-meta {
  margin: 10px 0 0;
  color: rgba(255, 250, 240, 0.54);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 0;
  margin: 0;
  color: var(--cream-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.product-action {
  position: relative;
  display: inline-grid;
  width: 44px;
  min-width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  place-items: center;
  border: 1px solid var(--orange-dark);
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(180deg, #ffc451, var(--orange));
  box-shadow: 0 9px 22px rgba(245, 160, 0, 0.18);
  cursor: pointer;
  transition: transform 280ms var(--ease-out), box-shadow 280ms ease, background 280ms ease;
}

.product-action::after {
  content: none;
}

.catalog-more-button {
  border-color: var(--orange-dark);
  color: var(--ink);
  background: linear-gradient(180deg, #ffc451, var(--orange));
}

.empty-state {
  border-color: rgba(245, 160, 0, 0.44);
  color: rgba(255, 250, 240, 0.68);
  background: rgba(255, 255, 255, 0.04);
}

.wholesale-section {
  color: var(--cream-light);
  background: var(--green-dark);
}

.wholesale-copy .eyebrow {
  color: #f6b845;
}

.wholesale-copy > p,
.wholesale-copy li {
  color: #e0e8e3;
}

.wholesale-copy ul,
.wholesale-copy li {
  border-color: rgba(255, 249, 238, 0.18);
}

.company-section {
  background: #fffdf8;
}

.company-facts {
  gap: 12px;
  border: 0;
}

.company-facts div {
  border: 1px solid rgba(168, 97, 0, 0.3);
  border-radius: 8px;
  background: var(--cream-light);
}

.company-facts div + div {
  border-left: 1px solid rgba(168, 97, 0, 0.3);
}

.contact-section,
.site-footer {
  background: #11161c;
}

.reveal-enabled .reveal-target {
  opacity: 0;
  translate: 0 24px;
  transition: opacity 650ms ease var(--reveal-delay, 0ms), translate 650ms var(--ease-out) var(--reveal-delay, 0ms);
}

@media (hover: hover) and (pointer: fine) {
  .account-button:hover {
    border-color: var(--orange);
    color: var(--cream-light);
    background: rgba(245, 160, 0, 0.12);
  }

  .cart-button:hover {
    color: var(--ink);
    background: #ffb325;
    box-shadow: 0 9px 22px rgba(245, 160, 0, 0.24);
  }

  .capability-grid article:hover {
    background: #202630;
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(17, 20, 26, 0.18), 0 0 0 1px rgba(245, 160, 0, 0.3);
  }

  .product-card:hover .product-media {
    border-color: rgba(255, 188, 55, 0.92);
    transform: translateY(-4px);
    box-shadow: 0 0 0 1px rgba(245, 160, 0, 0.8), 0 14px 32px rgba(245, 160, 0, 0.22), 0 28px 58px rgba(0, 0, 0, 0.3);
  }

  .product-card:active .product-media {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(245, 160, 0, 0.16);
  }

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

  .product-card:hover .product-media-shade {
    opacity: 1;
  }

  .product-action:hover {
    transform: translateY(-2px) rotate(90deg);
    background: #ffc451;
    box-shadow: 0 12px 26px rgba(245, 160, 0, 0.28);
  }

  .company-facts div:hover {
    background: #fff8e9;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(42, 34, 22, 0.1);
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    border-color: rgba(245, 160, 0, 0.35);
    color: var(--cream-light);
    background: rgba(21, 25, 32, 0.99);
  }

  .site-nav a {
    border-bottom-color: rgba(255, 249, 238, 0.1);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.active {
    color: var(--cream-light);
    background: var(--green-dark);
  }

  .hero {
    height: min(730px, calc(100svh - 100px));
    min-height: 620px;
  }

  .hero-slide img {
    max-width: none;
  }

  .hero-carousel-ui {
    right: 18px;
    width: auto;
  }
}

@media (max-width: 720px) {
  .header-main {
    min-height: 66px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding: 0 14px;
    gap: 8px;
  }

  .brand {
    width: 118px;
  }

  .account-button {
    display: none;
  }

  .cart-button,
  .nav-toggle {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .cart-button span:last-child {
    position: absolute;
    top: -3px;
    right: 0;
    min-width: 18px;
    height: 18px;
    margin: 0;
    padding: 0 4px;
    font-size: 10px;
  }

  .nav-toggle {
    color: var(--cream-light);
    background: transparent;
    border-color: rgba(255, 249, 238, 0.32);
  }

  .nav-toggle span,
  .cart-button .cart-label {
    display: none;
  }

  .hero {
    height: calc(100svh - 96px);
    min-height: 650px;
    max-height: 760px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(13, 16, 21, 0.12) 0%, rgba(13, 16, 21, 0.42) 34%, rgba(13, 16, 21, 0.92) 58%, rgba(13, 16, 21, 0.99) 100%);
  }

  .hero-carousel {
    height: 100%;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-inner {
    align-items: flex-end;
    padding: 38px 18px 34px;
  }

  .hero-copy {
    width: 100%;
    padding-right: 52px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .hero-lead {
    margin: 18px 0 22px;
    color: #eee7dc;
    font-size: 16px;
  }

  .hero-carousel-ui {
    top: 24px;
    right: 14px;
    bottom: auto;
    left: auto;
    width: auto;
    transform: none;
  }

  .hero-slide-copy {
    display: none;
  }

  .hero-carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .promise-strip {
    padding: 0 18px;
  }

  .capability-grid {
    gap: 10px;
  }

  .capability-grid article,
  .capability-grid article + article {
    min-height: 0;
    padding: 24px 20px;
    border: 1px solid var(--gold-line);
  }

  .product-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

  .catalog-controls {
    overflow: hidden;
  }

  .category-filters {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding: 5px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .category-filters::-webkit-scrollbar {
    display: none;
  }

  .category-filter {
    flex: 0 0 auto;
  }

  .product-card h3 {
    font-size: 20px;
  }

  .company-facts {
    gap: 10px;
  }

  .company-facts div + div {
    border: 1px solid rgba(168, 97, 0, 0.3);
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 620px;
  }

  .hero-copy {
    padding-right: 38px;
  }

  .hero-proof {
    margin-top: 20px;
  }

  .hero-proof span {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide img {
    transform: none;
  }
}

/* Modern laboratory theme */
.site-header {
  border-top-color: var(--orange);
  border-bottom: 1px solid #dfe5e1;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 26px rgba(20, 35, 29, 0.08);
  backdrop-filter: blur(14px);
}

.header-main {
  min-height: 72px;
}

.brand {
  width: 154px;
}

.site-nav a {
  color: #323b37;
  font-size: 13px;
}

.site-nav a::before {
  border-color: rgba(33, 110, 83, 0.38);
}

.site-nav a::after {
  background: var(--green);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav a.active {
  color: var(--green-dark);
  box-shadow: inset 0 -3px 0 var(--orange);
}

.account-button {
  border-color: #b9c8c1;
  color: var(--green-dark);
  background: #fff;
}

.cart-button {
  border-color: var(--orange);
  color: var(--ink);
  background: var(--orange);
}

.nav-toggle {
  border-color: #c5d0cb;
  color: var(--green-dark);
  background: #fff;
}

.hero {
  color: var(--ink);
  background: #edf2ef;
}

.hero::before {
  background: linear-gradient(90deg, #f8faf9 0%, rgba(248, 250, 249, 0.97) 36%, rgba(248, 250, 249, 0.58) 61%, rgba(248, 250, 249, 0.06) 100%);
}

.hero::after {
  background: repeating-linear-gradient(90deg, rgba(33, 110, 83, 0.028) 0, rgba(33, 110, 83, 0.028) 1px, transparent 1px, transparent 48px);
}

.hero-slide {
  background: #edf2ef;
}

.hero-slide img {
  object-fit: contain;
  object-position: 77% center;
  filter: saturate(0.94) contrast(1.02);
}

.hero h1 {
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 94px;
  font-weight: 850;
  line-height: 0.9;
  text-shadow: none;
}

.hero .eyebrow {
  color: var(--green);
}

.hero-lead {
  max-width: 560px;
  color: #4e5b55;
}

.hero .button.secondary {
  border-color: #9dafA6;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
}

.hero .button.secondary:hover {
  border-color: var(--green);
  color: #fff;
  background: var(--green);
}

.hero-proof {
  border-color: #d5ded9;
}

.hero-proof li + li {
  border-color: #d5ded9;
}

.hero-proof span {
  color: #59665f;
}

.hero-slide-copy {
  border-left-color: var(--orange);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(21, 48, 37, 0.12);
}

.hero-slide-copy span {
  color: var(--green);
}

.hero-slide-copy strong {
  color: var(--ink);
}

.hero-carousel-arrow {
  border-color: #c8d4ce;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(21, 48, 37, 0.12);
}

.hero-carousel-dot {
  background: #a8b7b0;
}

.hero-carousel-dot.is-active {
  background: var(--orange);
}

.promise-strip {
  border-color: #dfe5e1;
  background: #fff;
}

.promise-strip article {
  color: #4a5650;
}

.promise-strip article + article {
  border-color: #dfe5e1;
}

.manufacturing-section {
  background: #fff;
}

.section-intro h2,
.nahuel-section h2,
.catalog-heading h2,
.wholesale-copy h2,
.company-section h2,
.contact-section h2 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 820;
  letter-spacing: 0;
}

.capability-grid {
  gap: 16px;
}

.capability-grid article,
.capability-grid article + article {
  min-height: 245px;
  border: 1px solid #dce5e0;
  border-radius: 8px;
  color: var(--ink);
  background: #f6f9f7;
  box-shadow: none;
}

.capability-grid article:nth-child(2) {
  background: #f1f6f3;
}

.capability-grid .capability-number {
  color: var(--orange-dark);
}

.capability-grid h3 {
  color: var(--green-dark);
}

.capability-grid p {
  color: #59665f;
}

.process-row {
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--green-dark);
  box-shadow: 0 18px 40px rgba(23, 77, 59, 0.16);
}

.process-row .eyebrow,
.process-list span {
  color: #ffc451;
}

.process-list li {
  border-color: rgba(255, 255, 255, 0.16);
}

.nahuel-section {
  color: #fff;
  background: var(--green-dark);
}

.nahuel-copy {
  background: linear-gradient(135deg, #174d3b 0%, #123e30 100%);
}

.nahuel-copy::before {
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 54px);
}

.nahuel-copy .eyebrow {
  color: #ffc451;
}

.nahuel-tagline,
.nahuel-lines {
  color: rgba(255, 255, 255, 0.82);
}

.nahuel-lines {
  border-color: rgba(255, 255, 255, 0.18);
}

.nahuel-lines li + li {
  border-color: rgba(255, 255, 255, 0.18);
}

.nahuel-media {
  background: #edf2ef;
}

.catalog-section {
  color: var(--ink);
  background: #f4f7f5;
}

.catalog-heading {
  border-bottom-color: #dce4e0;
}

.catalog-heading h2 {
  color: var(--ink);
}

.catalog-heading p:not(.eyebrow) {
  color: #66716c;
}

.catalog-heading .eyebrow {
  color: var(--green);
}

.catalog-heading .button {
  border-color: var(--orange);
  color: var(--ink);
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(245, 160, 0, 0.16);
}

.catalog-controls {
  border-color: #d7e0dc;
}

.catalog-search {
  color: #55615b;
}

.catalog-search input {
  border-color: #bdcbc4;
  background: #fff;
}

.category-filters {
  border-color: #b9cbc2;
  background: #e7efeb;
}

.category-filter {
  color: #56635d;
}

.category-filter.active {
  color: #fff;
  background: var(--green);
  box-shadow: inset 0 0 0 1px var(--green-dark), 0 5px 14px rgba(33, 110, 83, 0.16);
}

.catalog-count {
  border-color: #b9cbc2;
  border-left-color: var(--orange);
  color: var(--green-dark);
  background: #fff;
}

.product-card {
  gap: 12px;
}

.product-media {
  --media-scale: 1;
  position: relative;
  isolation: isolate;
  aspect-ratio: 4 / 5;
  border-color: #d7e0dc;
  background: #eef3f0;
  box-shadow: 0 8px 24px rgba(24, 48, 38, 0.06);
}

.product-media::before {
  position: absolute;
  z-index: 0;
  inset: -18px;
  display: block;
  content: "";
  pointer-events: none;
  background: var(--media-image) center / cover no-repeat;
  filter: blur(18px) saturate(0.72) brightness(1.08);
  opacity: 0.42;
  transform: scale(1.08);
}

.product-media img,
.product-media-scene img,
.product-media-portrait img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  opacity: 1;
  object-fit: contain;
  object-position: center;
}

.product-media[data-product-id="nahuel-talco-infantil-celeste"] {
  --media-scale: 1.35;
}

.product-media[data-product-id="nahuel-talco-infantil-rosado"] {
  --media-scale: 0.95;
}

.product-media[data-product-id="nahuel-estuche-infantil"] {
  --media-scale: 1.35;
}

.product-media[data-product-id="nahuel-colonia-infantil-celeste"] {
  --media-scale: 1.08;
}

.product-media[data-product-id="nahuel-estuche-infantil-rosado"],
.product-media[data-product-id="nahuel-shampoo-acondicionador-kids"],
.product-media[data-product-id="nahuel-crema-para-peinar-hidraloe"],
.product-media[data-product-id="nahuel-shampoo-leche-de-cabra"],
.product-media[data-product-id="nahuel-shampoo-manzanilla"],
.product-media[data-product-id="nahuel-crema-bano-aguacate-oliva"],
.product-media[data-product-id="nahuel-jabon-liquido-manzana-canela"],
.product-media[data-product-id="nahuel-jabon-liquido-orquidea"],
.product-media[data-product-id="nahuel-jabon-liquido-durazno"],
.product-media[data-product-id="nahuel-talco-barberia-pantenol"],
.product-media[data-product-id="nahuel-talco-pedico"],
.product-media[data-product-id="nahuel-crema-cuerpo-algas-aloe-vera"] {
  --media-scale: 1.05;
}

.product-media[data-product-id="nahuel-aceite-silicona"],
.product-media[data-product-id="nahuel-colonia-infantil-rosada"] {
  --media-scale: 1.1;
}

.product-media[data-product-id="nahuel-crema-aloe-vera"],
.product-media[data-product-id="nahuel-crema-vainilla"] {
  --media-scale: 0.95;
}

.product-media[data-product-id="nahuel-crema-aguacate"] {
  --media-scale: 1.55;
}

.product-media[data-product-id="nahuel-crema-durazno"] {
  --media-scale: 1.45;
}

.product-media[data-product-id="nahuel-perfume-agua-de-lluvia"] {
  --media-scale: 0.93;
}

.product-media[data-product-id="nahuel-perfume-hierbas-aromaticas"],
.product-media[data-product-id="nahuel-perfume-black-noir"] {
  --media-scale: 1.35;
}

.product-media[data-product-id="nahuel-perfume-manantial"] {
  --media-scale: 0.98;
}

.product-media[data-product-id="nahuel-perfume-fragante"] {
  --media-scale: 1.4;
}

.product-media[data-product-id="nahuel-perfume-estuche-elegancia"] {
  --media-scale: 1.3;
}

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

.product-category {
  border-color: rgba(33, 110, 83, 0.28);
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 16px rgba(23, 77, 59, 0.1);
}

.product-card h3 {
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  font-weight: 760;
}

.product-meta {
  color: #748079;
}

.product-action {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 7px 18px rgba(245, 160, 0, 0.14);
}

.catalog-more-button {
  border-color: var(--green);
  color: #fff;
  background: var(--green);
}

.empty-state {
  border-color: #bdcbc4;
  color: #66716c;
  background: #fff;
}

.wholesale-section {
  color: var(--ink);
  background: #e8f0ec;
}

.wholesale-copy .eyebrow {
  color: var(--green);
}

.wholesale-copy > p,
.wholesale-copy li {
  color: #55615b;
}

.wholesale-copy ul,
.wholesale-copy li {
  border-color: #c8d7d0;
}

.wholesale-copy .button {
  color: #fff;
  background: var(--green);
}

.company-section {
  background: #fff;
}

.company-facts div,
.company-facts div + div {
  border-color: #d6e0db;
  background: #f4f7f5;
}

.company-facts dt {
  color: var(--green);
}

.contact-section {
  color: #fff;
  background: var(--green-dark);
}

.contact-copy .eyebrow {
  color: #ffc451;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-options a,
.contact-options div {
  border-color: rgba(255, 255, 255, 0.18);
}

.site-footer {
  border-top-color: rgba(255, 255, 255, 0.1);
  background: #102b22;
}

@media (hover: hover) and (pointer: fine) {
  .account-button:hover {
    border-color: var(--green);
    color: #fff;
    background: var(--green);
  }

  .cart-button:hover {
    background: #ffb325;
    box-shadow: 0 8px 20px rgba(245, 160, 0, 0.2);
  }

  .capability-grid article:hover {
    border-color: #b8ccc2;
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(24, 48, 38, 0.09);
  }

  .product-card:hover .product-media {
    border-color: rgba(33, 110, 83, 0.62);
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(24, 48, 38, 0.13), inset 0 -3px 0 var(--orange);
  }

  .product-card:hover .product-media img {
    transform: scale(1.02);
    filter: saturate(1.02);
  }

  .product-action:hover {
    transform: translateY(-2px) rotate(90deg);
    background: #ffb325;
    box-shadow: 0 10px 22px rgba(245, 160, 0, 0.22);
  }
}

@media (max-width: 960px) {
  .site-nav {
    border-color: #d7e0dc;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.99);
  }

  .site-nav a {
    border-bottom-color: #e4e9e6;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.active {
    color: #fff;
    background: var(--green);
  }
}

@media (max-width: 720px) {
  .site-header {
    background: rgba(255, 255, 255, 0.98);
  }

  .nav-toggle {
    border-color: #b9c8c1;
    color: var(--green-dark);
    background: #fff;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(248, 250, 249, 0.04) 0%, rgba(248, 250, 249, 0.46) 36%, rgba(248, 250, 249, 0.96) 58%, #f8faf9 100%);
  }

  .hero::after {
    background: repeating-linear-gradient(90deg, rgba(33, 110, 83, 0.022) 0, rgba(33, 110, 83, 0.022) 1px, transparent 1px, transparent 42px);
  }

  .hero h1 {
    color: var(--ink);
    font-size: 60px;
  }

  .hero-lead {
    color: #4e5b55;
  }

  .hero-carousel-arrow {
    color: var(--green-dark);
    background: rgba(255, 255, 255, 0.96);
  }

  .product-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .product-card h3 {
    font-size: 19px;
  }
}

/* Refined image motion */
.hero-slide img {
  transform: translate3d(0, 10px, 0) scale(0.985);
  transform-origin: 72% 54%;
  transition: transform 1900ms cubic-bezier(0.22, 1, 0.36, 1), filter 900ms ease;
}

.hero-slide.is-active img {
  transform: translate3d(0, 0, 0) scale(1.025);
  filter: saturate(1) contrast(1.035);
}

.nahuel-media img,
.wholesale-media img {
  transform: translate3d(0, 0, 0) scale(1.001);
  transform-origin: center;
  transition: transform 950ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms ease;
}

.nahuel-media figcaption {
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 700ms ease;
}

.product-media,
.product-media img {
  backface-visibility: hidden;
}

.product-media img {
  transform: translate3d(0, 0, 0) scale(var(--media-scale, 1));
  transform-origin: center 52%;
  transition: transform 780ms cubic-bezier(0.22, 1, 0.36, 1), filter 620ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .nahuel-media:hover img {
    transform: translate3d(-5px, -2px, 0) scale(1.035);
    filter: saturate(1.055) contrast(1.025);
  }

  .nahuel-media:hover figcaption {
    transform: translate3d(-4px, -4px, 0);
    box-shadow: 0 12px 26px rgba(16, 43, 34, 0.16);
  }

  .wholesale-media:hover img {
    transform: translate3d(0, -5px, 0) scale(1.045);
    filter: saturate(1.06) contrast(1.025);
  }

  .product-card:hover .product-media img {
    transform: translate3d(0, -4px, 0) scale(calc(var(--media-scale, 1) * 1.035));
    filter: saturate(1.055) contrast(1.015);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide img,
  .hero-slide.is-active img,
  .nahuel-media img,
  .nahuel-media:hover img,
  .nahuel-media figcaption,
  .wholesale-media img,
  .wholesale-media:hover img,
  .product-media img,
  .product-card:hover .product-media img {
    transform: scale(var(--media-scale, 1));
    transition: none;
  }

  .hero-slide img,
  .hero-slide.is-active img,
  .nahuel-media img,
  .nahuel-media:hover img,
  .nahuel-media figcaption,
  .wholesale-media img,
  .wholesale-media:hover img {
    transform: none;
    transition: none;
  }
}

/* Keep the carousel horizontal after every theme and responsive override. */
.hero-slide {
  transform: translate3d(0, 0, 0);
  transition: none;
  will-change: transform, opacity;
}

.hero-slide.is-active,
.hero-slide.is-entering-next,
.hero-slide.is-entering-previous,
.hero-slide.is-leaving-next,
.hero-slide.is-leaving-previous {
  visibility: visible;
}

.hero-slide.is-entering-next {
  z-index: 2;
  animation: hero-slide-enter-next 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide.is-leaving-next {
  z-index: 1;
  animation: hero-slide-leave-next 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide.is-entering-previous {
  z-index: 2;
  animation: hero-slide-enter-previous 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide.is-leaving-previous {
  z-index: 1;
  animation: hero-slide-leave-previous 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-carousel-ui {
  top: auto;
  right: 28px;
  bottom: 28px;
  width: min(560px, 44vw);
  align-items: flex-end;
  flex-direction: row;
  gap: 14px;
  transform: none;
}

.hero-carousel-controls,
.hero-carousel-dots {
  flex-direction: row;
}

.hero-carousel-controls {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(16, 43, 34, 0.12);
  backdrop-filter: blur(10px);
}

.hero-carousel-dots {
  gap: 7px;
}

.hero-carousel-dots button {
  width: 8px;
  height: 8px;
  transition: width 420ms cubic-bezier(0.16, 1, 0.3, 1), background-color 300ms ease, opacity 300ms ease;
}

.hero-carousel-dots button.is-active {
  width: 28px;
  height: 8px;
}

@media (max-width: 720px) {
  .hero-carousel-ui {
    top: 24px;
    right: 14px;
    bottom: auto;
    left: auto;
    width: auto;
    align-items: center;
    flex-direction: row;
    transform: none;
  }

  .hero-carousel-controls,
  .hero-carousel-dots {
    flex-direction: row;
  }

  .hero-carousel-controls {
    padding: 8px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-entering-next,
  .hero-slide.is-leaving-next,
  .hero-slide.is-entering-previous,
  .hero-slide.is-leaving-previous {
    animation: none;
  }
}


/* Complete product photos, separate from the introductory text. */
[data-hero-carousel] {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  height: auto;
  min-height: 600px;
  max-height: none;
  background: #f4f7f5;
}
[data-hero-carousel]::before,
[data-hero-carousel]::after { display: none; }
[data-hero-carousel] .hero-carousel {
  position: relative;
  inset: auto;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: 600px;
}
[data-hero-carousel] .hero-slide img,
[data-hero-carousel] .hero-slide.is-active img {
  top: 0;
  right: 0;
  width: 100%;
  height: calc(100% - 90px);
  max-width: none;
  padding: 24px;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  transform: none;
  filter: none;
  transition: none;
}
[data-hero-carousel] .hero-inner {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: auto;
  min-width: 0;
  align-items: center;
  padding: 48px clamp(24px, 4vw, 64px);
}
[data-hero-carousel] .hero-copy { width: 100%; max-width: 540px; }
[data-hero-carousel] .hero-carousel-ui {
  top: auto;
  bottom: 24px;
  left: calc(50% + 24px);
  right: 24px;
  width: auto;
}
[data-hero-carousel] .hero-slide-copy { display: block; max-width: calc(100% - 90px); }
@media (max-width: 900px) {
  [data-hero-carousel] { display: flex; flex-direction: column; min-height: 0; }
  [data-hero-carousel] .hero-carousel {
    order: 0;
    flex: none;
    height: clamp(300px, 72vw, 520px);
    min-height: 0;
  }
  [data-hero-carousel] .hero-slide img,
  [data-hero-carousel] .hero-slide.is-active img { height: 100%; padding: 18px; }
  [data-hero-carousel] .hero-carousel-ui {
    position: relative;
    order: 1;
    inset: auto;
    width: 100%;
    padding: 12px 18px;
    margin: 0;
    align-items: center;
    justify-content: space-between;
    background: #edf2ef;
  }
  [data-hero-carousel] .hero-slide-copy { padding: 8px 12px; }
  [data-hero-carousel] .hero-slide-copy strong { white-space: normal; }
  [data-hero-carousel] .hero-inner { order: 2; padding: 32px 22px; }
}

/* Consistent portrait frames: preserve the whole bottle in every source photo. */
[data-hero-carousel] .hero-slide img,
[data-hero-carousel] .hero-slide.is-active img {
  position: absolute;
  top: 18px;
  left: 50%;
  right: auto;
  width: min(320px, calc(100% - 36px));
  height: auto;
  aspect-ratio: 2 / 3;
  padding: 0;
  object-fit: cover;
  object-position: center;
  transform: translateX(-50%);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgb(22 49 40 / 10%);
}
@media (max-width: 900px) {
  [data-hero-carousel] .hero-carousel {
    height: min(516px, calc(150vw - 18px));
  }
}

/* Direct orders via WhatsApp, with no cart or registration. */
.header-actions .order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 17px;
  border: 1px solid #174c3d;
  border-radius: 999px;
  background: #174c3d;
  color: #fff;
  font: 600 14px/1.2 "Poppins", sans-serif;
  text-decoration: none;
  white-space: nowrap;
}
.header-actions .order-button:hover { background: #10382d; }
.header-actions .order-button:focus-visible { outline: 3px solid #e9a73c; outline-offset: 3px; }
.header-actions .order-button i { font-size: 20px; }
@media (max-width: 720px) {
  .header-actions .order-button { padding: 10px 12px; font-size: 12px; gap: 6px; }
}
