:root {
  --color-ink: #202218;
  --color-muted: #657063;
  --color-soft: #eef4e8;
  --color-cream: #fff9ed;
  --color-paper: #fffffb;
  --color-white: #ffffff;
  --color-cocoa: #263228;
  --color-brown: #77552c;
  --color-gold: #cc9632;
  --color-sage: #55785b;
  --color-terracotta: #b85f3a;
  --color-line: rgba(32, 34, 24, 0.12);
  --color-line-strong: rgba(32, 34, 24, 0.22);
  --shadow-sm: 0 14px 34px rgba(39, 51, 39, 0.08);
  --shadow-md: 0 24px 70px rgba(39, 51, 39, 0.14);
  --shadow-lg: 0 32px 90px rgba(39, 51, 39, 0.18);
  --radius: 8px;
  --container: min(1160px, calc(100vw - 32px));
  --header-height: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: linear-gradient(180deg, #fbfff8 0%, #fffdf8 42%, #f4f8ee 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.is-locked {
  overflow: hidden;
}

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

img {
  object-fit: cover;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(198, 146, 52, 0.46);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--color-ink);
  color: var(--color-white);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 251, 0.82);
  backdrop-filter: blur(18px) saturate(1.16);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--color-line);
  background: rgba(255, 255, 251, 0.96);
  box-shadow: 0 14px 34px rgba(38, 50, 40, 0.1);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  transition: transform 180ms var(--ease-out);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--color-cocoa), var(--color-brown));
  color: #ffe8bb;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand-mark--logo {
  width: 78px;
  height: 46px;
  border-radius: 0;
  background: transparent;
  color: inherit;
  box-shadow: none;
}

.brand-mark--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms var(--ease-out);
}

.brand:hover .brand-mark--logo img {
  transform: scale(1.035);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 28px rgba(39, 51, 39, 0.06);
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 160ms ease, background 160ms ease, transform 160ms var(--ease-out);
}

.site-nav a:hover {
  background: var(--color-soft);
  color: var(--color-ink);
  transform: translateY(-1px);
}

.site-nav a.is-active {
  background: linear-gradient(135deg, var(--color-cocoa), var(--color-sage));
  color: var(--color-white);
  box-shadow: 0 10px 22px rgba(85, 120, 91, 0.22);
}

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

.icon-button,
.cart-trigger,
.menu-trigger {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-ink);
  box-shadow: 0 8px 22px rgba(55, 34, 21, 0.05);
  transition: transform 160ms var(--ease-out), border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.icon-button:hover,
.cart-trigger:hover,
.menu-trigger:hover {
  transform: translateY(-1px);
  border-color: var(--color-line-strong);
  background: var(--color-soft);
  box-shadow: 0 14px 28px rgba(39, 51, 39, 0.1);
}

.icon-button svg,
.cart-trigger svg,
.menu-trigger svg,
.btn svg,
.text-link svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.cart-trigger {
  position: relative;
}

.cart-trigger span {
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border: 2px solid var(--color-paper);
  border-radius: 999px;
  background: var(--color-terracotta);
  color: var(--color-white);
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(184, 95, 58, 0.28);
}

.menu-trigger {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(720px, calc(100svh - 94px));
  isolation: isolate;
  overflow: hidden;
  color: var(--color-white);
  background:
    linear-gradient(90deg, rgba(32, 34, 24, 0.9) 0%, rgba(32, 34, 24, 0.66) 42%, rgba(32, 34, 24, 0.14) 100%),
    linear-gradient(180deg, rgba(85, 120, 91, 0.18), rgba(204, 150, 50, 0.1)),
    url("../assets/inicio-cajamarca-lac.jfif") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(36, 20, 13, 0), rgba(36, 20, 13, 0.32));
}

.hero-content {
  padding-block: clamp(68px, 10vw, 122px);
}

.hero-content > * {
  animation: hero-fade-up 720ms var(--ease-out) both;
}

.hero-content > *:nth-child(2) {
  animation-delay: 80ms;
}

.hero-content > *:nth-child(3) {
  animation-delay: 140ms;
}

.hero-content > *:nth-child(4) {
  animation-delay: 200ms;
}

.hero-content > *:nth-child(5) {
  animation-delay: 260ms;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd588;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.75rem, 6.6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.03rem, 2.1vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms var(--ease-out), box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn:active,
.add-button:active,
.icon-button:active,
.cart-trigger:active,
.menu-trigger:active {
  transform: translateY(0);
}

.btn--primary {
  background: linear-gradient(135deg, #f8cf72 0%, var(--color-gold) 62%, #b17a24 100%);
  color: #2b180e;
  box-shadow: 0 16px 40px rgba(198, 146, 52, 0.28);
}

.btn--primary:hover {
  box-shadow: 0 18px 48px rgba(198, 146, 52, 0.38);
}

.btn--light {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  backdrop-filter: blur(10px);
}

.btn--outline {
  border-color: var(--color-line-strong);
  background: transparent;
  color: var(--color-ink);
}

.btn--outline:hover {
  border-color: rgba(85, 120, 91, 0.42);
  background: var(--color-white);
}

.btn--full {
  width: 100%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 42px 0 0;
  padding: 0;
}

.hero-proof div {
  min-width: 138px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-proof dt {
  margin: 0;
  color: #ffe3ab;
  font-size: 1.12rem;
  font-weight: 900;
}

.hero-proof dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

section {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.benefits,
.products-section,
.origin-section,
.testimonials-section,
.related-section {
  padding-block: clamp(64px, 8vw, 108px);
}

.section-kicker {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-kicker h2,
.section-heading h1,
.section-heading h2,
.origin-copy h1,
.origin-copy h2,
.contact-band h1,
.contact-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

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

.section-heading > div {
  max-width: 760px;
}

.section-heading > p {
  max-width: 360px;
  margin: 0;
  color: var(--color-muted);
}

.section-heading--center {
  justify-content: center;
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.benefit {
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms var(--ease-out), border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.benefit:hover {
  transform: translateY(-4px);
  border-color: rgba(85, 120, 91, 0.28);
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.benefit svg {
  box-sizing: content-box;
  width: 24px;
  height: 24px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(85, 120, 91, 0.1);
  color: var(--color-sage);
}

.benefit h3 {
  margin: 18px 0 8px;
  font-size: 1.06rem;
}

.benefit p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.featured-strip {
  padding-block: 30px;
  border-block: 1px solid var(--color-line);
  background: linear-gradient(135deg, #1d2b20 0%, #2b2a17 52%, #3a2518 100%);
  color: var(--color-white);
}

.featured-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.featured-strip h2 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f7cd7f;
  font-weight: 850;
  white-space: nowrap;
  transition: color 160ms ease, transform 160ms var(--ease-out);
}

.text-link:hover {
  color: #ffe3a7;
  transform: translateY(-1px);
}

.text-link svg {
  transition: transform 160ms var(--ease-out);
}

.text-link:hover svg {
  transform: translate(2px, -2px);
}

.catalog-toolbar {
  position: sticky;
  top: calc(var(--header-height) + 12px);
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 310px) minmax(150px, 180px);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(32, 34, 24, 0.1);
  border-radius: var(--radius);
  margin-bottom: 16px;
  background: rgba(255, 255, 251, 0.82);
  backdrop-filter: blur(16px) saturate(1.12);
  box-shadow: 0 18px 42px rgba(39, 51, 39, 0.08);
}

.segmented-control {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 5px;
  overflow-x: auto;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.segment {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, transform 160ms var(--ease-out);
}

.segment.is-active,
.segment:hover {
  background: linear-gradient(135deg, var(--color-cocoa), var(--color-sage));
  color: var(--color-white);
  transform: translateY(-1px);
}

.search-field,
.select-field {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 10px 25px rgba(55, 34, 21, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.search-field:focus-within,
.select-field:focus-within {
  border-color: rgba(85, 120, 91, 0.42);
  box-shadow: 0 16px 32px rgba(85, 120, 91, 0.12);
}

.search-field svg {
  width: 18px;
  height: 18px;
  color: var(--color-muted);
}

.search-field input,
.select-field select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-ink);
}

.select-field {
  padding-right: 10px;
}

.catalog-count {
  margin: 0 0 20px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

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

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

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 220ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(85, 120, 91, 0.08));
  opacity: 0;
  transition: opacity 220ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(85, 120, 91, 0.32);
  box-shadow: var(--shadow-lg);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 0.86;
  overflow: hidden;
  background: linear-gradient(145deg, #f8fbf2, var(--color-soft));
}

.product-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(32, 34, 24, 0.06));
  pointer-events: none;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  padding: 14px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(32, 34, 24, 0.12));
  transition: transform 520ms var(--ease-out), filter 220ms ease;
}

.product-card:hover .product-card__media img {
  filter: drop-shadow(0 24px 30px rgba(32, 34, 24, 0.16));
  transform: scale(1.055);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(38, 50, 40, 0.88);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.product-card__quick {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.86);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms var(--ease-out), border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.product-card:hover .product-card__quick,
.product-card__quick:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card__meta span {
  padding: 4px 7px;
  border-radius: 6px;
  background: rgba(238, 244, 232, 0.78);
}

.product-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

.product-card h3 a {
  transition: color 160ms ease;
}

.product-card h3 a:hover {
  color: var(--color-sage);
}

.product-card__desc {
  margin: 9px 0 14px;
  color: var(--color-muted);
  font-size: 0.92rem;
  display: -webkit-box;
  min-height: 2.76em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.product-card__footer {
  align-items: stretch;
  flex-direction: column;
}

.product-card__footer .price {
  flex-wrap: wrap;
  white-space: normal;
}

.product-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.price strong {
  color: var(--color-ink);
  font-size: 1.18rem;
  letter-spacing: 0;
}

.price__compare {
  color: var(--color-muted);
  font-size: 0.84rem;
  text-decoration: line-through;
}

.add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--color-cocoa), var(--color-ink));
  color: var(--color-white);
  font-size: 0.88rem;
  font-weight: 850;
  box-shadow: 0 12px 22px rgba(32, 34, 24, 0.12);
  transition: transform 160ms var(--ease-out), background 160ms ease, box-shadow 160ms ease;
}

.add-button:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--color-sage), var(--color-cocoa));
  box-shadow: 0 16px 28px rgba(85, 120, 91, 0.2);
}

.add-button--whatsapp {
  background: #24d366;
  color: #0f321f;
}

.add-button--whatsapp:hover {
  background: #1fbd5b;
}

.add-button svg {
  width: 17px;
  height: 17px;
}

.origin-section {
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: var(--color-paper);
}

.catalog-page,
.about-page,
.payments-section {
  padding-top: clamp(54px, 7vw, 86px);
}

.origin-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.origin-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.origin-media img {
  width: 100%;
  height: min(620px, 70svh);
}

.origin-media--poster {
  background: var(--color-cream);
}

.origin-media--poster img {
  height: auto;
  aspect-ratio: 1197 / 880;
  object-fit: contain;
}

.origin-media:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.origin-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 1.03rem;
}

.origin-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.origin-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-ink);
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(39, 51, 39, 0.05);
}

.origin-points svg {
  width: 17px;
  height: 17px;
  color: var(--color-sage);
}

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

.testimonial-card {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms var(--ease-out), border-color 180ms ease, box-shadow 180ms ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(85, 120, 91, 0.28);
  box-shadow: var(--shadow-md);
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.02rem;
}

.testimonial-card figcaption {
  display: grid;
  gap: 2px;
  margin-top: 22px;
}

.testimonial-card span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.contact-band {
  padding-block: clamp(56px, 7vw, 92px);
  background:
    linear-gradient(90deg, rgba(32, 34, 24, 0.92), rgba(32, 34, 24, 0.76)),
    linear-gradient(135deg, rgba(85, 120, 91, 0.28), rgba(204, 150, 50, 0.12)),
    url("https://images.unsplash.com/photo-1486297678162-eb2a19b0a32d?auto=format&fit=crop&q=82&w=1800") center / cover no-repeat;
  color: var(--color-white);
}

.contact-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.contact-layout > div:first-child {
  max-width: 720px;
}

.contact-band p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: min(100%, 280px);
}

.contact-actions .btn--outline {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--color-white);
}

.contact-page-hero {
  min-height: min(560px, calc(100svh - var(--header-height)));
  display: flex;
  align-items: center;
}

.site-footer {
  padding-block: 52px 26px;
  background: linear-gradient(135deg, #151a13 0%, #211d12 52%, #27160e 100%);
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.75fr);
  gap: 34px;
}

.brand--footer .brand-mark {
  background: #ffe3ad;
  color: var(--color-ink);
}

.brand--footer .brand-mark--logo {
  background: transparent;
}

.brand--footer strong {
  color: var(--color-white);
}

.brand--footer small,
.site-footer p {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer p {
  max-width: 340px;
  margin: 18px 0 0;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--color-white);
  font-size: 0.92rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 10px;
}

.site-footer a:hover {
  color: #ffd98d;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.footer-bottom span:last-child {
  font-size: 0.8rem;
  opacity: 0.76;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #24d366;
  color: var(--color-white);
  box-shadow: 0 18px 40px rgba(36, 211, 102, 0.32);
  transition: transform 160ms var(--ease-out), box-shadow 160ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(36, 211, 102, 0.42);
}

.floating-whatsapp svg {
  width: 25px;
  height: 25px;
}

.cart-backdrop,
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(20, 12, 8, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-backdrop.is-open,
.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 190;
  display: flex;
  width: min(440px, 100vw);
  height: 100svh;
  flex-direction: column;
  border-left: 1px solid var(--color-line);
  background: var(--color-paper);
  box-shadow: -22px 0 70px rgba(32, 34, 24, 0.18);
  transform: translateX(104%);
  transition: transform 240ms var(--ease-out);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__header,
.cart-drawer__footer {
  padding: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-line);
}

.cart-drawer__header h2 {
  margin: 0;
  font-size: 1.28rem;
}

.cart-drawer__body {
  flex: 1;
  overflow: auto;
  padding: 18px;
}

.cart-drawer__footer {
  border-top: 1px solid var(--color-line);
}

.cart-line {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-line);
}

.cart-line img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  background: var(--color-soft);
  object-fit: contain;
  padding: 6px;
}

.cart-line h3 {
  margin: 0;
  font-size: 0.98rem;
}

.cart-line p {
  margin: 4px 0 0;
  color: var(--color-muted);
  font-size: 0.86rem;
}

.cart-line__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.quantity {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.quantity button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  transition: background 160ms ease, color 160ms ease;
}

.quantity button:hover {
  background: var(--color-soft);
  color: var(--color-sage);
}

.quantity input,
.quantity span {
  width: 36px;
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 850;
}

.remove-line {
  border: 0;
  background: transparent;
  color: var(--color-terracotta);
  font-size: 0.84rem;
  font-weight: 850;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 1.08rem;
}

.cart-empty {
  display: grid;
  place-items: center;
  min-height: 280px;
  color: var(--color-muted);
  text-align: center;
}

.cart-empty .btn {
  margin-top: 16px;
}

.cart-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 24px;
  align-items: start;
}

.cart-page__items,
.cart-summary,
.payment-panel,
.payment-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.payment-card {
  transition: transform 180ms var(--ease-out), border-color 180ms ease, box-shadow 180ms ease;
}

.payment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(85, 120, 91, 0.28);
  box-shadow: var(--shadow-md);
}

.cart-page__items {
  min-height: 320px;
  padding: 10px 18px;
}

.cart-summary {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  display: grid;
  gap: 16px;
  padding: 18px;
}

.cart-total--page {
  margin-bottom: 0;
}

.btn:disabled {
  cursor: not-allowed;
  filter: grayscale(0.4);
  opacity: 0.62;
  transform: none;
}

.payment-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: linear-gradient(180deg, var(--color-cream), #f8fbf2);
}

.payment-panel h2 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.15;
}

.payment-list {
  display: grid;
  gap: 10px;
}

.payment-list article {
  padding: 12px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
}

.payment-list h3,
.payment-list p,
.payment-card h3,
.payment-card p {
  margin: 0;
}

.payment-list p + p,
.payment-card p + strong {
  margin-top: 4px;
}

.payment-note {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.payments-section {
  padding-bottom: clamp(64px, 8vw, 108px);
}

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

.payment-card {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.payment-card svg {
  box-sizing: content-box;
  width: 24px;
  height: 24px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(85, 120, 91, 0.1);
  color: var(--color-sage);
}

.payment-card strong {
  color: var(--color-ink);
  overflow-wrap: anywhere;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 250;
  padding: 12px 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-ink);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translate(-50%, 16px);
  transition: opacity 180ms ease, transform 180ms var(--ease-out);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.product-page {
  padding-block: 30px clamp(52px, 7vw, 88px);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.breadcrumb a:hover {
  color: var(--color-ink);
}

.breadcrumb svg {
  width: 15px;
  height: 15px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.84fr);
  gap: clamp(28px, 6vw, 64px);
  align-items: start;
}

.product-detail__gallery {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.product-detail__image {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #f8fbf2, var(--color-soft));
  box-shadow: var(--shadow-md);
  object-fit: contain;
  padding: clamp(16px, 3vw, 28px);
  filter: drop-shadow(0 22px 32px rgba(32, 34, 24, 0.14));
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.product-thumb {
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  transition: border-color 160ms ease, transform 160ms var(--ease-out), box-shadow 160ms ease;
}

.product-thumb.is-active {
  border-color: var(--color-gold);
  box-shadow: 0 12px 24px rgba(204, 150, 50, 0.16);
}

.product-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(85, 120, 91, 0.42);
}

.product-thumb img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--color-soft);
  object-fit: contain;
  padding: 6px;
}

.product-detail__info {
  padding-top: 8px;
}

.product-detail__info h1,
.product-detail__info h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.product-detail__subtitle {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.product-detail__price {
  margin: 22px 0;
}

.product-detail__description {
  margin: 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.product-detail__description + .product-detail__description {
  margin-top: 12px;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-ink);
  font-weight: 720;
}

.detail-list svg {
  width: 18px;
  height: 18px;
  color: var(--color-sage);
}

.purchase-panel {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.purchase-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.purchase-row span {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 780;
}

.modal {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 210;
  width: min(980px, calc(100vw - 28px));
  max-height: calc(100svh - 28px);
  overflow: auto;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-paper);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(0.98);
  transition: opacity 180ms ease, transform 180ms var(--ease-out);
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.modal__header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.modal .product-detail {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 26px;
}

.modal .product-detail__gallery {
  position: static;
}

.modal .product-detail__info h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.no-results {
  grid-column: 1 / -1;
  padding: 46px;
  border: 1px dashed var(--color-line-strong);
  border-radius: var(--radius);
  color: var(--color-muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.74);
}

.desktop-only {
  display: inline-grid;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 560ms ease,
    transform 560ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (hover: none) {
  .product-card__quick {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .site-nav {
    position: fixed;
    inset: var(--header-height) 16px auto;
    display: grid;
    justify-content: stretch;
    padding: 10px;
    border-color: var(--color-line-strong);
    background: rgba(255, 255, 251, 0.98);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px;
  }

  .menu-trigger {
    display: inline-grid;
  }

  .desktop-only {
    display: none;
  }

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

  .catalog-toolbar {
    grid-template-columns: 1fr;
    top: calc(var(--header-height) + 8px);
  }

  .origin-layout,
  .product-detail,
  .cart-page__layout,
  .modal .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail__gallery {
    position: static;
  }

  .cart-summary {
    position: static;
  }

  .contact-layout,
  .section-heading,
  .featured-strip__inner {
    align-items: start;
    flex-direction: column;
  }

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

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 22px, 620px);
    --header-height: 70px;
  }

  .brand small {
    display: none;
  }

  .brand-mark,
  .icon-button,
  .cart-trigger,
  .menu-trigger {
    width: 40px;
    height: 40px;
  }

  .brand-mark--logo {
    width: 64px;
    height: 38px;
  }

  .hero {
    min-height: calc(100svh - 116px);
    background-position: 62% center;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

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

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

  .hero-proof div {
    min-width: 0;
    padding: 10px;
  }

  .hero-proof dt {
    font-size: 0.98rem;
  }

  .hero-proof dd {
    font-size: 0.72rem;
  }

  .benefit-grid,
  .product-grid,
  .payment-grid,
  .product-grid--compact,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-card__actions {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    padding: 8px;
  }

  .section-heading > p {
    max-width: none;
  }

  .product-card__media {
    aspect-ratio: 1 / 0.78;
  }

  .contact-actions {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cart-drawer {
    width: 100vw;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
