:root {
  --ink: #24150b;
  --ink-soft: #5d3c25;
  --brown-950: #1b0e07;
  --brown-900: #2a160b;
  --brown-800: #472612;
  --brown-700: #711411;
  --brown-600: #965b27;
  --amber-600: #bd7830;
  --amber-400: #d99b4a;
  --amber-200: #f0c982;
  --wine-accent: #711411;
  --wine-bright: #851c18;
  --wine-soft: rgba(113, 20, 17, 0.16);
  --paper: #fff4dc;
  --cream: #f4d39a;
  --line: rgba(75, 38, 16, 0.22);
  --shadow-soft: 0 16px 42px rgba(55, 27, 10, 0.16);
  --shadow-card: 0 24px 64px rgba(55, 27, 10, 0.22);
  --max: 1180px;
  --hero-banner-height: clamp(300px, 34vw, 460px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 232, 180, 0.72), transparent 34%),
    linear-gradient(180deg, #d29448, #f4d39a 22%, #f7e3bd 58%, #e4b875);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(45deg, rgba(75, 38, 16, 0.035) 0 2px, transparent 2px 12px),
    radial-gradient(circle at 15% 22%, rgba(255, 255, 255, 0.24), transparent 16%),
    radial-gradient(circle at 86% 28%, rgba(80, 38, 15, 0.18), transparent 18%);
  mix-blend-mode: multiply;
}

.home-page {
  background: #ffffff;
}

.home-page::before {
  display: none;
}

.catalog-page {
  background: #ffffff;
}

.catalog-page::before {
  display: none;
}

.product-page {
  background: #ffffff;
}

.product-page::before {
  display: none;
}

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

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

.top-announcement {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-bottom: 1px solid rgba(217, 155, 74, 0.22);
  background:
    radial-gradient(circle at 80% 10%, rgba(150, 91, 39, 0.28), transparent 34%),
    linear-gradient(180deg, #120905, #1d0d07 52%, #120905);
  color: #fff2d6;
  font-size: clamp(0.68rem, 1.7vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  min-height: 84px;
  padding: 5px clamp(18px, 3vw, 42px);
  border-bottom: 1px solid rgba(85, 42, 18, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(64, 32, 12, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2fcd63, #21b955);
  box-shadow: 0 18px 34px rgba(15, 76, 34, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(15, 76, 34, 0.34);
  filter: saturate(1.05);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 1;
  justify-self: start;
  z-index: 2;
}

.brand-logo {
  width: auto;
  height: 76px;
  filter: drop-shadow(0 3px 5px rgba(66, 32, 11, 0.12));
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  margin-left: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  grid-column: 1;
  justify-self: start;
  z-index: 3;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(43, 22, 10, 0.92);
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle span:nth-child(2) {
  width: 18px;
}

.mobile-menu-toggle span:nth-child(3) {
  width: 18px;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  width: 18px;
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: static;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  justify-self: center;
  gap: 4px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(150, 91, 39, 0.14);
}

.header-tools {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 3;
}

.header-search {
  position: relative;
}

.header-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(88, 44, 18, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--brown-950);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-search-toggle:hover,
.header-search-toggle:focus-visible,
.header-search-toggle.is-open {
  background: rgba(150, 91, 39, 0.1);
  border-color: rgba(150, 91, 39, 0.3);
}

.header-search-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-search-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(340px, calc(100vw - 28px));
  padding: 10px;
  border: 1px solid rgba(88, 44, 18, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 40px rgba(43, 22, 10, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
  visibility: hidden;
}

.header-search-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.header-search-panel input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(88, 44, 18, 0.14);
  border-radius: 12px;
  background: #fff;
  color: var(--brown-950);
  font: inherit;
}

.header-search-panel input::placeholder {
  color: rgba(88, 44, 18, 0.56);
}

.header-search-panel button[type="submit"] {
  height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  background: var(--brown-950);
  color: #fff7ea;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.main-nav a:focus-visible,
.brand:focus-visible,
.mobile-menu-toggle:focus-visible,
.header-search-toggle:focus-visible,
.header-search-panel input:focus-visible,
.header-search-panel button[type="submit"]:focus-visible {
  outline: 3px solid rgba(150, 91, 39, 0.28);
  outline-offset: 3px;
}

.home-header {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.home-header .brand {
  grid-column: 1;
}

.home-header-search {
  grid-column: auto;
  justify-self: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(1000px, calc(100% - 220px));
  max-width: 100%;
  z-index: 2;
}

.home-header-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(88, 44, 18, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 10px 24px rgba(43, 22, 10, 0.07);
  cursor: text;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.home-header-search-bar:focus-within {
  border-color: rgba(150, 91, 39, 0.28);
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 14px 30px rgba(43, 22, 10, 0.1);
}

.home-header-search-bar svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: rgba(88, 44, 18, 0.72);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-header-search-bar input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(32, 24, 19, 0.92);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
}

.home-header-search-bar input::placeholder {
  color: rgba(28, 24, 21, 0.62);
}

.home-header-search-bar input:focus {
  outline: none;
}

.home-search-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(88, 44, 18, 0.12);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(43, 22, 10, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
  visibility: hidden;
  z-index: 18;
}

.home-search-dropdown.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.home-search-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(88, 44, 18, 0.1);
  background: #ffffff;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.home-search-card:hover,
.home-search-card:focus-visible {
  background: #fff8ef;
  border-color: rgba(150, 91, 39, 0.18);
  transform: translateY(-1px);
}

.home-search-card[hidden] {
  display: none;
}

.home-search-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
}

.home-search-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-search-card-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.home-search-card-copy strong {
  color: var(--brown-950);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
}

.home-search-card-copy small {
  color: rgba(88, 44, 18, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
}

.home-header .home-menu-toggle {
  display: inline-flex;
  grid-column: 3;
  justify-self: end;
  width: 40px;
  height: 40px;
}

.home-header .home-menu-toggle span {
  width: 20px;
}

.header-drawer-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: clamp(12px, 2vw, 28px);
  display: grid;
  width: min(280px, calc(100vw - 28px));
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(88, 44, 18, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 36px rgba(43, 22, 10, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
  visibility: hidden;
  z-index: 15;
}

.header-drawer-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.header-drawer-nav a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header-drawer-nav a:hover,
.header-drawer-nav a:focus-visible {
  background: rgba(150, 91, 39, 0.12);
}

.banner-stack {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(76, 38, 15, 0.18), transparent 12%, transparent 88%, rgba(76, 38, 15, 0.18)),
    linear-gradient(180deg, rgba(81, 40, 15, 0.18), transparent);
}

.hero-carousel-viewport {
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
}

.hero-carousel-track {
  display: flex;
  transition: transform 620ms ease;
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.hero-carousel-controls {
  position: absolute;
  right: 0;
  bottom: clamp(12px, 2vw, 24px);
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 244, 220, 0.34);
  border-radius: 999px;
  background: rgba(36, 18, 8, 0.38);
  box-shadow: 0 14px 30px rgba(36, 18, 8, 0.24);
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.hero-carousel-dot {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: transform 180ms ease;
}

.hero-carousel-dot:not(.is-active) {
  width: 18px;
  height: 18px;
}

.hero-carousel-dot:hover,
.hero-carousel-dot:focus-visible {
  outline: none;
  transform: scale(1.12);
}

.hero-progress-ring {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 999px;
  background: conic-gradient(var(--paper) var(--hero-progress-angle), rgba(255, 244, 220, 0.26) 0deg);
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  opacity: 0;
  --hero-progress-angle: 0deg;
}

.hero-dot-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.64);
  transform: translate(-50%, -50%);
}

.hero-carousel-dot.is-active .hero-progress-ring {
  animation: heroProgress 5s linear forwards;
  opacity: 1;
}

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

@property --hero-progress-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes heroProgress {
  from {
    --hero-progress-angle: 0deg;
  }

  to {
    --hero-progress-angle: 360deg;
  }
}

.catalog-cover {
  min-height: var(--hero-banner-height);
  padding: clamp(10px, 1.6vw, 18px);
  background:
    linear-gradient(90deg, rgba(76, 38, 15, 0.16), transparent 12%, transparent 88%, rgba(76, 38, 15, 0.16)),
    linear-gradient(180deg, rgba(81, 40, 15, 0.12), transparent);
}

.catalog-cover.catalog-image-slide {
  position: relative;
  overflow: hidden;
  padding: 0;
  aspect-ratio: 1916 / 821;
  min-height: 0;
  background: #ffffff;
}

.catalog-banner-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.catalog-cover-frame {
  position: relative;
  display: grid;
  min-height: calc(var(--hero-banner-height) - clamp(20px, 3.2vw, 36px));
  overflow: hidden;
  align-content: center;
  padding: clamp(20px, 2.8vw, 34px) clamp(18px, 4vw, 54px) clamp(52px, 5vw, 68px);
  border: 3px solid rgba(124, 68, 28, 0.45);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 228, 171, 0.76), rgba(216, 147, 69, 0.48) 52%, rgba(231, 176, 91, 0.86)),
    #d89a4c;
  box-shadow:
    inset 0 0 0 6px rgba(255, 236, 190, 0.24),
    inset 0 0 92px rgba(75, 38, 15, 0.25),
    var(--shadow-card);
  isolation: isolate;
}

.catalog-cover-frame::before,
.catalog-cover-frame::after,
.cover-sky {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
}

.cover-sky {
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 242, 206, 0.75), transparent 28%),
    radial-gradient(circle at 22% 30%, rgba(255, 245, 214, 0.34), transparent 18%),
    linear-gradient(180deg, rgba(255, 232, 176, 0.78), rgba(197, 126, 48, 0.44) 64%, rgba(115, 70, 26, 0.38));
}

.catalog-cover-frame::before {
  background:
    linear-gradient(90deg, rgba(72, 44, 20, 0.34), transparent 28%, transparent 70%, rgba(61, 33, 13, 0.36)),
    radial-gradient(ellipse at 20% 68%, rgba(58, 58, 31, 0.4), transparent 22%),
    radial-gradient(ellipse at 83% 70%, rgba(60, 78, 38, 0.34), transparent 20%),
    linear-gradient(8deg, transparent 0 52%, rgba(72, 52, 22, 0.42) 52% 54%, transparent 54%),
    linear-gradient(175deg, transparent 0 44%, rgba(61, 50, 26, 0.38) 44% 48%, transparent 48%);
  opacity: 0.72;
}

.catalog-cover-frame::after {
  z-index: -2;
  background:
    linear-gradient(90deg, transparent 0 78%, rgba(65, 36, 14, 0.6) 78% 80%, transparent 80%),
    linear-gradient(115deg, transparent 0 72%, rgba(66, 38, 17, 0.52) 72% 86%, transparent 86%),
    linear-gradient(180deg, transparent 0 66%, rgba(109, 67, 28, 0.2) 66% 100%);
}

.cover-logo {
  justify-self: center;
  width: min(190px, 24vw);
  margin-top: 0;
  filter: drop-shadow(0 20px 26px rgba(52, 25, 8, 0.38));
}

.cover-title {
  display: grid;
  justify-items: center;
  margin-top: clamp(14px, 2vw, 28px);
  color: var(--ink);
  text-align: center;
}

.cover-title h1 {
  margin: 0;
  font-size: clamp(1.55rem, 3.6vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(255, 230, 178, 0.45);
}

.cover-title strong {
  font-weight: 900;
}

.cover-title > span {
  position: relative;
  display: inline-grid;
  margin-top: 20px;
  width: min(250px, 60vw);
  place-items: center;
  color: var(--brown-800);
  font-size: 1.5rem;
}

.cover-title > span::before,
.cover-title > span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42%;
  height: 2px;
  background: rgba(80, 42, 18, 0.42);
}

.cover-title > span::before {
  left: 0;
}

.cover-title > span::after {
  right: 0;
}

.hero-promo {
  position: relative;
  display: grid;
  min-height: var(--hero-banner-height);
  align-items: center;
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px) max(18px, calc((100vw - var(--max)) / 2)) clamp(56px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgba(36, 18, 8, 0.76), rgba(36, 18, 8, 0.28) 48%, rgba(36, 18, 8, 0.04)),
    radial-gradient(circle at 48% 16%, rgba(255, 236, 190, 0.72), transparent 28%),
    linear-gradient(180deg, #d89a4c, #f2c981 54%, #9a5622);
  isolation: isolate;
}

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

.hero-promo::before {
  background:
    radial-gradient(ellipse at 18% 68%, rgba(58, 58, 31, 0.42), transparent 22%),
    linear-gradient(115deg, transparent 0 72%, rgba(66, 38, 17, 0.52) 72% 86%, transparent 86%),
    linear-gradient(180deg, transparent 0 68%, rgba(94, 48, 18, 0.34) 68% 100%);
  opacity: 0.78;
}

.hero-promo::after {
  top: auto;
  height: 18%;
  background:
    repeating-linear-gradient(0deg, rgba(67, 34, 15, 0.22) 0 2px, transparent 2px 34px),
    linear-gradient(180deg, #a4612c, #683412);
}

.promo-copy {
  position: relative;
  z-index: 3;
  color: var(--paper);
}

.promo-copy img {
  width: min(150px, 28vw);
  margin-bottom: clamp(12px, 2vw, 24px);
  filter: drop-shadow(0 18px 28px rgba(22, 9, 2, 0.38));
}

.promo-copy .section-kicker {
  color: var(--amber-200);
}

.promo-copy h2 {
  width: min(610px, 100%);
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.7rem);
  line-height: 0.98;
  color: var(--paper);
}

.promo-copy p {
  width: min(520px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 244, 220, 0.84);
  font-weight: 600;
}

.promo-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 26px;
  padding: 0 24px;
  border: 1px solid rgba(255, 244, 220, 0.42);
  background: rgba(36, 18, 8, 0.52);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cover-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(920px, 100%);
  margin: clamp(42px, 7vw, 84px) auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(86, 43, 18, 0.2);
}

.cover-benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  align-items: center;
  padding: 0 clamp(12px, 3vw, 34px);
  color: var(--ink);
  text-transform: uppercase;
}

.cover-benefit + .cover-benefit {
  border-left: 2px solid rgba(81, 42, 17, 0.25);
}

.benefit-icon {
  grid-row: span 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid var(--brown-800);
  border-radius: 999px;
  font-size: 1.55rem;
  font-weight: 900;
}

.cover-benefit strong {
  font-size: clamp(0.94rem, 1.3vw, 1.16rem);
  font-weight: 900;
  line-height: 1.1;
}

.cover-benefit span:last-child {
  font-size: clamp(0.82rem, 1.2vw, 1.02rem);
  font-weight: 600;
  line-height: 1.1;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--brown-700);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.story-section,
.subpage,
.history-panel {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.categories-section {
  width: 100%;
  margin-inline: 0;
  padding: clamp(42px, 6vw, 76px) 0 clamp(22px, 3vw, 38px);
}

.categories-heading {
  display: grid;
  width: 100%;
  margin: 0 0 24px;
  padding: 10px clamp(16px, 4vw, 56px);
  place-items: center;
  border-block: 1px solid rgba(94, 45, 18, 0.1);
  background:
    linear-gradient(90deg, transparent, rgba(207, 154, 75, 0.07), transparent),
    #fff;
  box-shadow: none;
}

.categories-heading .section-kicker {
  width: min(var(--max), calc(100% - 36px));
  justify-content: center;
  margin: 0;
  color: #3b1a0b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.96rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-shadow: none;
  text-transform: uppercase;
}

.categories-heading .section-kicker::before,
.categories-heading .section-kicker::after {
  content: "";
  flex: 1 1 72px;
  max-width: 340px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 112, 40, 0.95));
}

.categories-heading .section-kicker::after {
  background: linear-gradient(90deg, rgba(184, 112, 40, 0.95), transparent);
}

.categories-heading .section-kicker {
  gap: clamp(10px, 2.4vw, 28px);
}

.categories-heading .section-kicker span {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 22px);
}

.categories-heading .section-kicker span::before,
.categories-heading .section-kicker span::after {
  content: "";
  display: inline-block;
  width: clamp(36px, 4.2vw, 62px);
  height: clamp(26px, 3vw, 46px);
  background: url("assets/horse-icon-logo.png") center / contain no-repeat;
  filter: drop-shadow(0 1px 0 rgba(184, 112, 40, 0.18));
}

.categories-heading .section-kicker span::after {
  transform: scaleX(-1);
}

.categories-heading h2,
.story-section h2,
.history-panel h2 {
  margin: 0;
  color: var(--brown-950);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.material-highlight-band {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin: -24px 0 24px;
  padding: 9px clamp(16px, 4vw, 56px);
  background: linear-gradient(180deg, #120905, #1b0d08 55%, #120905);
  color: #fff7ea;
  text-align: center;
}

.material-highlight-band strong {
  font-size: clamp(0.92rem, 1.45vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.material-highlight-band strong,
.material-highlight-band span {
  color: rgba(255, 242, 214, 0.9);
  font-size: clamp(0.92rem, 1.45vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.carousel-controls,
.feature-carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-button,
.feature-carousel-button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(77, 38, 15, 0.28);
  background: rgba(255, 246, 225, 0.88);
  color: var(--brown-950);
  cursor: pointer;
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible,
.feature-carousel-button:hover,
.feature-carousel-button:focus-visible {
  background: var(--brown-900);
  color: var(--paper);
  outline: none;
  transform: translateY(-2px);
}

.category-carousel {
  display: grid;
  width: min(var(--max), calc(100% - 36px));
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-inline: auto;
  padding: 8px 4px 16px;
}

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

.category-card {
  display: grid;
  grid-template-rows: minmax(176px, 1fr) auto;
  min-height: 274px;
  overflow: hidden;
  border: 1px solid rgba(74, 43, 22, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(43, 22, 10, 0.1);
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover,
.category-card:focus-visible {
  border-color: rgba(166, 102, 42, 0.5);
  box-shadow: 0 24px 46px rgba(43, 22, 10, 0.18);
  outline: none;
  transform: translateY(-5px);
}

.category-image,
.product-image {
  position: relative;
  height: 100%;
  min-height: 176px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 240, 202, 0.15), rgba(40, 18, 8, 0.36)),
    var(--category-base);
  isolation: isolate;
}

.category-image img,
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  mix-blend-mode: multiply;
}

.category-image .service-category-icon,
.category-security img,
.category-walk img,
.category-coturno img,
.category-kids img,
.category-rubber img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  mix-blend-mode: normal;
  background: #ead2b0;
  image-rendering: auto;
  transform: translateZ(0);
}

.category-image::after,
.product-image::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 15px;
  left: 14px;
  height: 7px;
  background: rgba(255, 236, 189, 0.32);
}

.category-service {
  --category-base: #ead2b0;
}

.category-service::after {
  display: none;
}

@media (min-width: 761px) {
  .category-service,
  .category-security,
  .category-walk,
  .category-coturno,
  .category-kids,
  .category-rubber {
    background: #140b06;
  }

  .category-image .service-category-icon,
  .category-security img,
  .category-walk img,
  .category-coturno img,
  .category-kids img,
  .category-rubber img {
    object-fit: cover;
    object-position: center bottom;
    background: #140b06;
  }
}

.category-security {
  --category-base: #140b06;
}

.category-security::after {
  display: none;
}

.category-walk {
  --category-base: linear-gradient(135deg, #9a633c, #ead8bd);
}

.category-walk::after {
  display: none;
}

.category-coturno {
  --category-base: linear-gradient(135deg, #312018, #774628);
}

.category-coturno::after {
  display: none;
}

.category-kids {
  --category-base: linear-gradient(135deg, #44523d, #d7b37a);
}

.category-kids::after {
  display: none;
}

.category-rubber {
  --category-base: linear-gradient(135deg, #1f2d22, #6a7f54);
}

.category-rubber::after {
  display: none;
}

.category-card h3 {
  display: grid;
  min-height: 74px;
  margin: 0;
  padding: 14px 16px 16px;
  place-items: center;
  color: var(--brown-950);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.22;
  text-align: center;
  text-transform: uppercase;
}

.product-card h2 {
  margin: 16px 4px 4px;
  color: var(--brown-950);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.22;
  text-align: center;
  text-transform: uppercase;
}

.carousel-dots,
.feature-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  background: rgba(80, 42, 18, 0.34);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dot.is-active {
  width: 30px;
  background: var(--brown-800);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.35fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(50px, 7vw, 82px) 0;
}

.story-section .section-kicker,
.story-section h2 {
  grid-column: 1;
}

.story-section .section-kicker {
  align-self: end;
  margin: 0;
}

.story-copy {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 34px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(88, 44, 18, 0.18);
  background: rgba(255, 246, 225, 0.72);
  box-shadow: var(--shadow-soft);
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.story-copy p,
.history-panel p {
  margin: 0;
}

.contact-shortcuts {
  display: grid;
  width: min(var(--max), calc(100% - 36px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 58px);
  align-items: stretch;
  margin: 0 auto clamp(54px, 7vw, 84px);
  padding: clamp(10px, 2vw, 22px) 0 clamp(34px, 5vw, 64px);
}

.contact-shortcuts-copy {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: center;
}

.contact-shortcuts-copy .section-kicker {
  margin-bottom: 18px;
}

.contact-shortcuts-copy h2 {
  max-width: 540px;
  margin: 0;
  color: var(--brown-950);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 3.7vw, 3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.contact-shortcuts-copy p {
  max-width: 460px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.6vw, 1.18rem);
  font-weight: 500;
  line-height: 1.7;
}

.contact-shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.contact-shortcut-card {
  display: grid;
  min-width: 0;
  min-height: 240px;
  place-items: center;
  gap: 12px;
  padding: 28px 22px;
  border: 1px solid rgba(77, 38, 15, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 249, 238, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 36px rgba(43, 22, 10, 0.1);
  color: var(--brown-950);
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-shortcut-card:hover,
.contact-shortcut-card:focus-visible {
  border-color: rgba(184, 112, 40, 0.48);
  box-shadow: 0 26px 48px rgba(43, 22, 10, 0.17);
  outline: none;
  transform: translateY(-4px);
}

.contact-shortcut-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 999px;
  background: rgba(184, 112, 40, 0.1);
  color: #8a481e;
}

.contact-shortcut-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.contact-shortcut-icon-whatsapp svg {
  fill: currentColor;
  stroke: none;
}

.contact-shortcut-title {
  color: #3b1a0b;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-shortcut-text {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.feature-cards {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto clamp(54px, 7vw, 84px);
}

.feature-carousel-viewport {
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.feature-carousel-track {
  display: flex;
  transition: transform 540ms ease;
  will-change: transform;
}

.feature-card {
  position: relative;
  display: flex;
  flex: 0 0 100%;
  min-height: 330px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 230, 178, 0.22);
  background: var(--brown-900);
  color: var(--paper);
  box-shadow: var(--shadow-card);
  isolation: isolate;
}

.feature-carousel-controls {
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.feature-carousel-button {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(111, 63, 24, 0.34);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 248, 232, 0.96), rgba(231, 202, 158, 0.9));
  color: var(--brown-950);
  box-shadow: 0 10px 22px rgba(55, 27, 10, 0.14);
}

.feature-carousel-button span {
  display: none;
}

.feature-carousel-button::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.feature-carousel-button[data-feature-prev]::before {
  transform: rotate(135deg) translate(-1px, -1px);
}

.feature-carousel-button[data-feature-next]::before {
  transform: rotate(-45deg) translate(-1px, -1px);
}

.feature-carousel-button:hover,
.feature-carousel-button:focus-visible {
  background:
    linear-gradient(145deg, rgba(86, 43, 16, 0.98), rgba(39, 18, 7, 0.98));
  color: var(--amber-200);
  box-shadow: 0 14px 28px rgba(55, 27, 10, 0.2);
}

.feature-carousel-dots {
  min-width: 54px;
  padding: 0 4px;
}

.feature-carousel-dots .carousel-dot {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(111, 63, 24, 0.24);
  border-radius: 999px;
  background: rgba(111, 63, 24, 0.24);
}

.feature-carousel-dots .carousel-dot.is-active {
  width: 26px;
  background: linear-gradient(90deg, var(--brown-950), var(--brown-800));
}

.feature-card::before,
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.feature-card::before {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(30, 13, 5, 0.06), rgba(30, 13, 5, 0.9)),
    linear-gradient(90deg, rgba(167, 92, 31, 0.36), transparent);
}

.feature-card::after {
  z-index: 0;
  inset: 14px;
  border: 1px solid rgba(255, 238, 198, 0.22);
  pointer-events: none;
}

.feature-modern,
.feature-factory {
  display: block;
  min-height: 0;
  padding: 0;
  background: transparent;
}

.feature-modern {
  aspect-ratio: 2170 / 725;
}

.feature-factory {
  aspect-ratio: 2372 / 663;
}

.feature-modern::before,
.feature-modern::after,
.feature-factory::before,
.feature-factory::after {
  display: none;
}

.feature-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.feature-modern .feature-image,
.feature-factory .feature-image {
  display: block;
  position: static;
  width: 100%;
  height: 100%;
  object-position: center center;
  filter: none;
}

.feature-card:hover .feature-image,
.feature-card:focus-visible .feature-image {
  transform: scale(1.04);
}

.feature-modern:hover .feature-image,
.feature-modern:focus-visible .feature-image,
.feature-factory:hover .feature-image,
.feature-factory:focus-visible .feature-image {
  transform: none;
}

.feature-card:focus-visible {
  outline: 3px solid rgba(215, 154, 74, 0.62);
  outline-offset: 4px;
}

.feature-tag {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  border: 1px solid rgba(255, 238, 198, 0.48);
  background: rgba(30, 13, 5, 0.44);
  color: var(--amber-200);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-title {
  display: block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.75rem, 3.1vw, 2.85rem);
  line-height: 1.02;
}

.feature-text {
  display: block;
  max-width: 420px;
  margin-top: 10px;
  color: rgba(255, 244, 220, 0.82);
  font-weight: 600;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(150, 91, 39, 0.28), transparent 34%),
    linear-gradient(180deg, #120905, #1d0d07 52%, #120905);
  color: var(--paper);
}

.footer-topline,
.footer-bottom span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 155, 74, 0.88), transparent);
}

.footer-main {
  display: grid;
  width: min(var(--max), calc(100% - 36px));
  min-height: 124px;
  grid-template-columns: minmax(130px, 0.7fr) minmax(280px, 2fr) minmax(220px, 0.8fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  margin: 0 auto;
  padding: 24px 0 22px;
}

.footer-social {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.footer-social span {
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #ffffff;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: rgba(217, 155, 74, 0.16);
  color: var(--paper);
  outline: none;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px 0;
  margin: 0;
  color: rgba(255, 229, 184, 0.78);
  font-size: clamp(0.75rem, 1.15vw, 0.94rem);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
  text-align: center;
}

.footer-contact span {
  display: inline-flex;
  align-items: center;
}

.footer-contact span:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 15px;
  margin: 0 14px;
  background: rgba(217, 155, 74, 0.72);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: end;
  color: #ffffff;
  text-decoration: none;
}

.footer-brand img {
  display: block;
  width: min(270px, 24vw);
  max-height: 96px;
  object-fit: contain;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.42));
}

.footer-brand-seal {
  display: grid;
  width: 62px;
  height: 62px;
  grid-row: span 2;
  place-items: center;
  border: 1px solid rgba(217, 155, 74, 0.58);
  border-radius: 50%;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 2.1rem;
  line-height: 1;
  box-shadow: inset 0 0 0 4px rgba(217, 155, 74, 0.08);
}

.footer-brand-name {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.92;
  letter-spacing: 0.06em;
}

.footer-brand-subtitle {
  margin-top: 4px;
  color: rgba(217, 155, 74, 0.86);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 0.95rem;
  letter-spacing: 0.52em;
  line-height: 1;
}

.footer-nav {
  display: flex;
  width: min(var(--max), calc(100% - 36px));
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 0;
  margin: 0 auto;
  padding: 19px 0;
  border-top: 1px solid rgba(217, 155, 74, 0.22);
  border-bottom: 1px solid rgba(217, 155, 74, 0.22);
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 229, 184, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.footer-nav a:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 14px;
  margin: 0 26px;
  background: rgba(217, 155, 74, 0.78);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--amber-200);
  outline: none;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 16px;
  text-align: center;
}

.footer-bottom span {
  width: min(420px, 74%);
  margin: 0 auto 12px;
}

.footer-bottom span::after {
  content: "✦";
  display: grid;
  width: 34px;
  height: 20px;
  place-items: center;
  margin: -10px auto 0;
  background: #120905;
  color: var(--amber-200);
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 229, 184, 0.68);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.subpage {
  padding: 28px 0 78px;
}

.subpage-hero {
  display: grid;
  min-height: min(500px, 68vh);
  align-content: end;
  padding: clamp(28px, 5vw, 56px);
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(30, 13, 5, 0.9), rgba(30, 13, 5, 0.3)),
    linear-gradient(135deg, #39271c, #965b27 48%, #44523d);
  box-shadow: var(--shadow-card);
}

.fabrication-hero {
  min-height: min(520px, 70vh);
  background:
    linear-gradient(90deg, rgba(10, 5, 2, 0.86), rgba(10, 5, 2, 0.22) 54%, rgba(10, 5, 2, 0.7)),
    url("assets/fabricacao-godoy-card.png") center / cover;
}

.subpage-hero h1 {
  margin: 0;
  max-width: 720px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.2rem, 5.8vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.subpage-hero p {
  width: min(560px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 244, 220, 0.86);
  font-size: clamp(0.98rem, 1.7vw, 1.18rem);
  font-weight: 600;
}

.catalog-page-main {
  padding-top: clamp(6px, 1.1vw, 12px);
  background: #ffffff;
}

.catalog-page-path {
  width: min(1380px, calc(100% - 72px));
  margin: 0 auto 14px;
}

.catalog-hero {
  width: min(100%, 1560px);
  min-height: clamp(340px, 36vw, 470px);
  align-content: center;
  margin-inline: auto;
  border-bottom: 1px solid rgba(217, 155, 74, 0.22);
  background:
    linear-gradient(90deg, rgba(18, 9, 5, 0.94), rgba(18, 9, 5, 0.58) 46%, rgba(18, 9, 5, 0.18)),
    url("assets/home-banner-3.png") center / cover;
  box-shadow: 0 26px 64px rgba(55, 27, 10, 0.2);
}

.catalog-hero .eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  color: var(--amber-200);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.catalog-hero .eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

.catalog-hero h1 {
  max-width: 760px;
  margin-top: 12px;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.catalog-hero p {
  max-width: 600px;
  color: rgba(255, 244, 220, 0.9);
}

.catalog-directory {
  position: sticky;
  top: 96px;
  z-index: 25;
  display: flex;
  width: min(var(--max), calc(100% - 36px));
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: -24px auto 42px;
  padding: 12px;
  border: 1px solid rgba(88, 44, 18, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(43, 22, 10, 0.12);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.catalog-directory a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(88, 44, 18, 0.16);
  border-radius: 999px;
  padding: 0 17px;
  background: rgba(255, 246, 225, 0.76);
  color: var(--brown-950);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.catalog-directory a:hover,
.catalog-directory a:focus-visible {
  border-color: rgba(217, 155, 74, 0.72);
  background: var(--brown-950);
  color: var(--paper);
  outline: none;
  transform: translateY(-2px);
}

.catalog-lines {
  display: grid;
  width: min(var(--max), calc(100% - 36px));
  gap: 26px;
  margin: 0 auto;
}

.catalog-line {
  display: grid;
  min-height: 390px;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.18fr);
  overflow: hidden;
  border: 1px solid rgba(88, 44, 18, 0.16);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 20px 54px rgba(43, 22, 10, 0.1);
  scroll-margin-top: 148px;
}

.catalog-line:nth-child(even) {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.9fr);
}

.catalog-line:nth-child(even) .catalog-line-media {
  order: 2;
}

.catalog-line-media {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: #140b06;
}

.catalog-line-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 11, 6, 0.03), rgba(20, 11, 6, 0.26)),
    linear-gradient(90deg, rgba(20, 11, 6, 0.18), transparent 42%);
  pointer-events: none;
}

.catalog-line-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
}

.catalog-line-media.category-service img {
  object-position: center;
}

.catalog-line-content {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 46px);
}

.catalog-line-content .section-kicker {
  margin-bottom: 12px;
  color: var(--brown-700);
}

.catalog-line-content .section-kicker::before {
  background: currentColor;
}

.catalog-line-content h2 {
  max-width: 660px;
  margin: 0;
  color: var(--brown-950);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.75rem, 3.6vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.catalog-line-content > p {
  max-width: 660px;
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  font-weight: 600;
}

.catalog-models {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.catalog-model-card {
  display: grid;
  gap: 8px;
  min-height: 156px;
  align-content: start;
  border: 1px solid rgba(88, 44, 18, 0.13);
  border-radius: 8px;
  padding: 17px;
  background:
    linear-gradient(180deg, rgba(255, 246, 225, 0.74), rgba(255, 255, 255, 0.94));
  box-shadow: 0 12px 30px rgba(43, 22, 10, 0.08);
}

.catalog-model-card > span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(217, 155, 74, 0.16);
  color: var(--brown-700);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-model-card h3 {
  margin: 0;
  color: var(--brown-950);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.catalog-model-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.55;
}

.catalog-header {
  grid-template-columns: auto;
  justify-content: start;
}

.catalog-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: center;
  gap: 20px;
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(20px, 3vw, 30px) auto 0;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(88, 44, 18, 0.12);
}

.catalog-summary-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brown-700);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-summary-label::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

.catalog-summary h1 {
  margin: 10px 0 0;
  color: var(--brown-950);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.catalog-summary p {
  max-width: 540px;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
}

.catalog-summary-meta {
  display: grid;
  gap: 4px;
  justify-items: end;
  padding: 14px 18px;
  border: 1px solid rgba(88, 44, 18, 0.1);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(248, 240, 227, 0.9));
}

.catalog-summary-meta strong {
  color: var(--brown-950);
  font-size: 1.35rem;
  font-weight: 900;
}

.catalog-summary-meta span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: right;
}

.catalog-layout {
  display: grid;
  width: min(1280px, calc(100% - 36px));
  grid-template-columns: 296px minmax(0, 1fr);
  gap: 16px;
  margin: clamp(20px, 3vw, 24px) auto clamp(58px, 7vw, 90px);
  align-items: start;
}

@media (min-width: 761px) {
  .catalog-layout {
    width: min(1380px, calc(100% - 72px));
  }
}

.catalog-mobile-filter-toggle {
  display: none;
}

.catalog-mobile-filter-overlay,
.catalog-mobile-filter-head,
.catalog-mobile-filter-close {
  display: none;
}

.catalog-mobile-toolbar,
.catalog-mobile-view-toggle {
  display: none;
}

.catalog-filters {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(88, 44, 18, 0.08);
  border-radius: 18px;
  background: #f7f4ef;
}

.catalog-filter-selected {
  display: grid;
  gap: 6px;
}

.catalog-filter-selected strong {
  color: var(--brown-950);
  font-size: 0.95rem;
  font-weight: 800;
}

.catalog-filter-selected span {
  color: var(--brown-700);
  font-size: 0.92rem;
  font-weight: 700;
}

.catalog-filter-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(88, 44, 18, 0.08);
  border-radius: 12px;
  background: #ffffff;
}

.catalog-filter-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.catalog-filter-heading h2 {
  margin: 0;
  color: var(--brown-950);
  font-size: 0.95rem;
  font-weight: 800;
}

.catalog-filter-heading span {
  color: var(--brown-950);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
}

.catalog-filter-search {
  position: relative;
}

.catalog-filter-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(88, 44, 18, 0.12);
  border-radius: 8px;
  padding: 0 44px 0 14px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.catalog-filter-search span {
  position: absolute;
  top: 50%;
  right: 14px;
  color: rgba(36, 21, 11, 0.55);
  font-size: 1.1rem;
  transform: translateY(-50%);
}

.catalog-filter-options {
  display: grid;
  gap: 10px;
  max-height: 240px;
  overflow: auto;
  padding-right: 4px;
}

.catalog-filter-options a,
.catalog-size-options button {
  min-height: 46px;
  border: 1px solid rgba(88, 44, 18, 0.16);
  border-radius: 8px;
  background: #ffffff;
  color: var(--brown-950);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.catalog-filter-options a {
  display: flex;
  align-items: center;
  padding: 0 14px;
}

.catalog-filter-options a:hover,
.catalog-filter-options a:focus-visible,
.catalog-size-options button:hover,
.catalog-size-options button:focus-visible {
  border-color: rgba(150, 91, 39, 0.42);
  background: rgba(217, 155, 74, 0.1);
  outline: none;
}

.catalog-filter-options a.is-active,
.catalog-size-options button.is-active {
  border-color: rgba(150, 91, 39, 0.72);
  background: var(--brown-950);
  color: var(--paper);
}

.catalog-size-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-height: 260px;
  overflow: auto;
  padding-right: 4px;
}

.catalog-size-options button {
  text-align: center;
}

.catalog-intro {
  display: grid;
  width: min(var(--max), calc(100% - 36px));
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin: clamp(28px, 5vw, 54px) auto clamp(26px, 4vw, 44px);
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(88, 44, 18, 0.14);
  border-radius: 10px;
  background:
    radial-gradient(circle at 88% 20%, rgba(217, 155, 74, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 246, 225, 0.96), #ffffff 54%, rgba(255, 246, 225, 0.72));
  box-shadow: 0 18px 48px rgba(43, 22, 10, 0.1);
}

.catalog-intro-copy .section-kicker {
  margin-bottom: 16px;
  color: var(--brown-700);
}

.catalog-intro-copy .section-kicker::before {
  background: currentColor;
}

.catalog-intro h1 {
  max-width: 720px;
  margin: 0;
  color: var(--brown-950);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.catalog-intro p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  font-weight: 600;
  line-height: 1.7;
}

.catalog-line-shortcuts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.catalog-line-shortcuts a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(88, 44, 18, 0.15);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--brown-950);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.catalog-line-shortcuts a:hover,
.catalog-line-shortcuts a:focus-visible {
  border-color: rgba(217, 155, 74, 0.72);
  background: var(--brown-950);
  color: var(--paper);
  outline: none;
  transform: translateY(-2px);
}

.catalog-model-sections {
  display: grid;
  width: 100%;
  gap: clamp(24px, 4vw, 38px);
  margin: 0;
}

.catalog-model-section {
  scroll-margin-top: 126px;
  padding-top: 4px;
}

.line-showcase-card {
  display: block;
  min-height: 0;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(88, 44, 18, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.line-showcase-image {
  display: none;
}

.line-showcase-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.line-showcase-copy {
  display: block;
  padding: 0;
  color: var(--brown-950);
}

.line-showcase-copy span {
  display: none;
}

.line-showcase-copy h2 {
  margin: 0;
  color: var(--brown-950);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.line-showcase-copy p {
  display: none;
}

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

.product-catalog-grid-featured {
  align-items: stretch;
}

.product-slot {
  --catalog-product-scale: 110%;
  --catalog-product-y: 52%;
  display: grid;
  grid-template-rows: 84% 16%;
  min-height: 336px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.product-slot-featured {
  position: relative;
}

.product-slot:hover,
.product-slot:focus-visible {
  border-color: transparent;
  box-shadow: none;
  outline: none;
  transform: none;
}

.product-slot-media {
  position: relative;
  display: grid;
  height: 100%;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border-bottom: 0;
}

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

.product-photo-count {
  display: none;
}

.product-slot:hover .product-slot-media::after,
.product-slot:focus-visible .product-slot-media::after {
  display: none;
}

.product-slot-media img {
  width: var(--catalog-product-scale);
  height: var(--catalog-product-scale);
  max-height: none;
  object-fit: contain;
  object-position: center var(--catalog-product-y);
  filter: none;
  transform: none;
  transition: transform 220ms ease;
}

.product-slot-media .product-photo {
  width: var(--catalog-product-scale);
  height: var(--catalog-product-scale);
  max-height: none;
  object-fit: contain;
  object-position: center var(--catalog-product-y);
  transform: none;
  mix-blend-mode: normal;
  filter: none;
}

.product-slot:hover .product-slot-media img,
.product-slot:focus-visible .product-slot-media img {
  transform: scale(1.04);
}

.product-slot-info {
  display: grid;
  align-content: start;
  gap: 2px;
  padding: 0 6px 2px;
}

.product-slot-info > span {
  display: none;
  width: 100%;
  min-height: 20px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 6px;
  background: linear-gradient(90deg, #8f5526, #bd7830);
  color: #fff4dc;
  font-size: 0.46rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-slot-info strong {
  color: var(--brown-950);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.12;
  padding: 0;
}

.product-slot-info small {
  display: none;
}

.product-slot-info small:empty {
  display: none;
}

.product-preview {
  position: relative;
  width: min(840px, calc(100% - 28px));
  border: 0;
  border-radius: 12px;
  padding: 0;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(18, 9, 5, 0.38);
}

.product-preview::backdrop {
  background: rgba(18, 9, 5, 0.72);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.product-preview-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(217, 155, 74, 0.28);
  border-radius: 12px;
}

.product-preview-media {
  display: grid;
  min-height: 420px;
  place-items: center;
  background: #ffffff;
}

.product-preview-media img {
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  max-height: 390px;
  object-fit: contain;
}

.product-preview-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 44px);
}

.product-preview-copy span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(217, 155, 74, 0.16);
  color: var(--brown-700);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-preview-copy h2 {
  margin: 0;
  color: var(--brown-950);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.03;
}

.product-preview-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.65;
}

.product-preview-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(88, 44, 18, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brown-950);
  cursor: pointer;
  font: inherit;
  font-size: 1.45rem;
  line-height: 1;
}

.product-preview-close:hover,
.product-preview-close:focus-visible {
  background: var(--brown-950);
  color: var(--paper);
  outline: none;
}

.product-preview {
  width: min(1120px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(320px, 0.92fr);
  overflow: hidden;
  border: 1px solid rgba(217, 155, 74, 0.28);
  border-radius: 12px;
  background: #ffffff;
}

.product-detail-gallery {
  display: grid;
  gap: 10px;
  padding: clamp(10px, 1.6vw, 18px);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.86), rgba(255, 255, 255, 0.98)),
    #ffffff;
}

.product-detail-main-image {
  display: grid;
  min-height: clamp(420px, 45vw, 560px);
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(88, 44, 18, 0.12);
  border-radius: 10px;
  background: #ffffff;
}

.product-detail-main-image img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 16px rgba(55, 27, 10, 0.08));
}

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

.product-preview-thumb {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(88, 44, 18, 0.14);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-preview-thumb:hover,
.product-preview-thumb:focus-visible,
.product-preview-thumb.is-active {
  border-color: rgba(217, 155, 74, 0.95);
  box-shadow: 0 10px 22px rgba(43, 22, 10, 0.12);
  outline: none;
}

.product-preview-thumb.is-active {
  transform: translateY(-2px);
}

.product-preview-thumb img {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  object-fit: contain;
}

.product-detail-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(26px, 4vw, 52px);
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.96), rgba(248, 239, 224, 0.72)),
    var(--paper);
}

.product-detail-line {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(217, 155, 74, 0.16);
  color: var(--brown-700);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail-code {
  width: fit-content;
  margin: 0;
  color: rgba(88, 44, 18, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail-copy h2 {
  margin: 0;
  color: var(--brown-950);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.03;
}

.product-detail-copy > p:not(.product-detail-code) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.72;
}

.product-detail-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-detail-specs span {
  border: 1px solid rgba(88, 44, 18, 0.14);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--brown-950);
  font-size: 0.72rem;
  font-weight: 900;
}

.product-detail-actions {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.product-detail-actions a {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--brown-950);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(43, 22, 10, 0.18);
}

.product-detail-actions a:hover,
.product-detail-actions a:focus-visible {
  background: var(--amber-600);
  color: var(--brown-950);
  outline: none;
}

.product-detail-actions small {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-page-backlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--brown-950);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-page-backlink::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.product-page-backlink:hover,
.product-page-backlink:focus-visible {
  color: var(--amber-700);
  outline: none;
}

.product-page .site-header {
  background: #ffffff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.product-header-nav {
  justify-content: center;
  gap: 4px;
}

.product-header-nav a {
  font-size: 0.72rem;
  padding: 0 12px;
}

@media (min-width: 761px) {
  .product-page .site-header {
    position: sticky;
  }

  .product-page .product-header-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    width: max-content;
  }
}

.product-page-main {
  background: #ffffff;
  padding: clamp(6px, 1.1vw, 12px) 0 clamp(42px, 5vw, 64px);
}

.product-page-path {
  width: min(1380px, calc(100% - 72px));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0 auto 14px;
  color: rgba(88, 44, 18, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.product-page-path a {
  color: inherit;
}

.product-page-path span:last-child {
  color: var(--brown-950);
  font-weight: 800;
}

.product-page-shell {
  width: min(1380px, calc(100% - 72px));
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(360px, 420px);
  gap: clamp(26px, 3vw, 44px);
  margin: 0 auto;
  align-items: start;
}

.product-page-gallery {
  --product-main-width: min(100%, 1000px);
  --product-main-height: min(100%, 720px);
  --product-main-y: center;
  --product-thumb-scale: 88%;
  --product-thumb-y: center;
  --product-zoom-width: 100%;
  --product-zoom-max-width: 1080px;
  --product-zoom-y: center;
  --measure-product-width: 100%;
  --measure-product-max-width: 250px;
  --measure-product-y: center;
  display: grid;
  gap: 8px;
  padding-top: 42px;
}

.product-page-main-media {
  display: grid;
  min-height: clamp(500px, 40vw, 640px);
  place-items: center;
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  padding: 0;
  cursor: zoom-in;
}

.product-page-main-media img {
  width: var(--product-main-width);
  height: var(--product-main-height);
  object-fit: contain;
  object-position: center var(--product-main-y);
  filter: none;
  transform: none;
  opacity: 1;
  transition: opacity 220ms ease;
}

.product-page-main-media img.is-switching {
  opacity: 0.42;
}

.product-zoom-dialog {
  width: min(96vw, 1180px);
  max-width: none;
  padding: 18px;
  border: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 60px rgba(18, 9, 5, 0.24);
}

.product-zoom-dialog::backdrop {
  background: rgba(18, 9, 5, 0.74);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.product-zoom-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(88, 44, 18, 0.08);
  color: var(--brown-950);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.product-zoom-frame {
  display: grid;
  min-height: min(82vh, 880px);
  place-items: center;
  position: relative;
}

.product-zoom-frame img {
  width: var(--product-zoom-width);
  max-width: var(--product-zoom-max-width);
  max-height: 82vh;
  object-fit: contain;
  object-position: center var(--product-zoom-y);
}

.product-zoom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(88, 44, 18, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brown-950);
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(43, 22, 10, 0.12);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
  z-index: 2;
}

.product-zoom-arrow:hover,
.product-zoom-arrow:focus-visible {
  background: #fffaf3;
  color: var(--amber-700);
  box-shadow: 0 18px 30px rgba(43, 22, 10, 0.16);
  outline: none;
}

.product-zoom-arrow-prev {
  left: 18px;
}

.product-zoom-arrow-next {
  right: 18px;
}

.product-page-thumbs {
  display: grid;
  width: fit-content;
  grid-template-columns: repeat(var(--product-page-thumb-columns, 4), 92px);
  gap: 10px;
  justify-content: center;
  justify-self: center;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.product-page-dots {
  display: none;
}

.product-page-thumb {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(88, 44, 18, 0.14);
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-page-thumb img {
  width: var(--product-thumb-scale);
  height: var(--product-thumb-scale);
  object-fit: contain;
  object-position: center var(--product-thumb-y);
}

.product-page-thumb:hover,
.product-page-thumb:focus-visible,
.product-page-thumb.is-active {
  border-color: rgba(217, 155, 74, 0.94);
  box-shadow: 0 14px 28px rgba(43, 22, 10, 0.12);
  outline: none;
}

.product-page-thumb.is-active {
  transform: translateY(-2px);
}

.product-page-info {
  display: grid;
  max-width: 420px;
  width: 100%;
  gap: 10px;
  align-content: start;
  padding-top: 2px;
  justify-self: center;
}

@media (min-width: 1101px) {
  .product-page-gallery {
    padding-top: 18px;
  }

  .product-page-info {
    padding-top: 46px;
  }
}

.product-page-line {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  padding: 0;
  background: transparent;
  color: var(--brown-950);
  font-size: 1.24rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-page-ref {
  margin: -2px 0 0;
  color: rgba(88, 44, 18, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
}

.product-page-info h1 {
  margin: 0;
  color: var(--brown-950);
  font-size: clamp(1.45rem, 1.8vw, 1.95rem);
  line-height: 1.12;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
}

.product-page-description {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}

.product-page-description-stack {
  display: grid;
  gap: 1px;
}

.product-page-description-stack p {
  margin: 0;
}

.product-page-option-group {
  display: grid;
  gap: 6px;
}

.product-page-color-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-page-color-card {
  min-height: 56px;
  border: 1px solid rgba(88, 44, 18, 0.12);
  border-radius: 10px;
  background: #ffffff;
  color: var(--brown-950);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.product-page-color-card span {
  display: block;
  padding: 0 12px;
}

.product-page-model-card {
  display: grid;
  min-height: 74px;
  place-items: center;
  overflow: hidden;
  padding: 6px 10px;
}

.product-page-model-card img {
  display: block;
  width: 100%;
  height: 64px;
  object-fit: contain;
}

.product-page-option-group h2,
.product-page-details h2 {
  margin: 0;
  color: var(--brown-950);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.product-page-option-group p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 600;
}

.product-page-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-page-sizes button {
  min-width: 40px;
  min-height: 40px;
  border: 1px solid rgba(88, 44, 18, 0.12);
  border-radius: 6px;
  background: #f5f5f5;
  color: var(--brown-950);
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-page-sizes button:hover,
.product-page-sizes button:focus-visible,
.product-page-sizes button.is-active {
  border-color: rgba(217, 155, 74, 0.9);
  background: var(--brown-950);
  color: var(--paper);
  outline: none;
}

.product-page-sizes button.is-active {
  transform: translateY(-2px);
}

.product-page-measure-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brown-950);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  cursor: pointer;
}

.product-page-measure-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  transform: translateY(1px);
}

.product-page-measure-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  shape-rendering: geometricPrecision;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-page-measure-link:hover,
.product-page-measure-link:focus-visible {
  color: var(--amber-700);
  outline: none;
}

.measure-table-dialog {
  width: min(94vw, 920px);
  max-width: none;
  padding: 54px 28px 24px;
  border: 0;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 28px 60px rgba(18, 9, 5, 0.24);
}

.measure-table-dialog::backdrop {
  background: rgba(18, 9, 5, 0.74);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.measure-table-close {
  position: absolute;
  top: 10px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(88, 44, 18, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: var(--brown-950);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(43, 22, 10, 0.08);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.measure-table-close:hover,
.measure-table-close:focus-visible {
  border-color: rgba(217, 155, 74, 0.52);
  background: #fffaf3;
  color: var(--amber-700);
  transform: translateY(-1px);
  outline: none;
}

.measure-table-layout {
  display: grid;
  grid-template-columns: minmax(240px, 290px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.measure-table-copy {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 10px;
  height: 100%;
  padding: 0 4px 0 0;
  align-content: start;
}

.measure-table-showcase {
  display: grid;
  gap: 10px;
  padding: 16px 16px 10px;
  border: 1px solid rgba(88, 44, 18, 0.08);
  border-radius: 24px;
  background: #fdf7ee;
}

.measure-table-brand-block {
  display: grid;
  gap: 6px;
  justify-items: start;
}

.measure-table-brand {
  width: 126px;
  max-width: 100%;
  height: auto;
}

.measure-table-product {
  display: grid;
  place-items: center;
  min-height: 228px;
  padding: 0 8px 0;
  border: 0;
  border-radius: 0;
  background: #fdf7ee;
}

.measure-table-product img {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  filter: saturate(1.02) contrast(1.01) brightness(1.01);
}

@media (min-width: 761px) {
  .measure-table-showcase,
  .measure-table-product {
    background: #fcf6ed;
  }

  .measure-table-product img {
    opacity: 0.985;
    filter: saturate(1.01) contrast(1.03) brightness(1);
  }
}

.measure-table-copy h2 {
  margin: 0;
  color: #000000;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 800;
}

.measure-table-copy p {
  margin: 0;
  color: #000000;
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 25ch;
}

.measure-table-wrap {
  max-height: min(70vh, 540px);
  overflow: auto;
  border: 1px solid rgba(88, 44, 18, 0.12);
  border-radius: 18px;
}

.measure-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.measure-table th,
.measure-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(88, 44, 18, 0.1);
  text-align: center;
  font-size: 0.92rem;
}

.measure-table th {
  position: sticky;
  top: 0;
  background: #fffaf3;
  color: var(--brown-950);
  font-weight: 800;
}

.measure-table tbody tr:nth-child(even) td {
  background: rgba(255, 248, 236, 0.62);
}

.product-page-pricebox {
  display: grid;
  gap: 4px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-page-pricebox strong {
  color: var(--brown-950);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.2;
}

.product-page-pricebox span {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.product-page-actions {
  display: grid;
  gap: 8px;
}

.product-page-actions a {
  display: inline-grid;
  place-items: center;
  width: 100%;
  min-height: 44px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-page-primary {
  background: var(--brown-950);
  color: var(--paper);
  box-shadow: 0 18px 34px rgba(43, 22, 10, 0.16);
}

.product-page-primary:hover,
.product-page-primary:focus-visible {
  background: var(--amber-600);
  color: var(--brown-950);
  outline: none;
}

.product-page-secondary {
  border: 1px solid rgba(88, 44, 18, 0.14);
  background: #ffffff;
  color: var(--brown-950);
}

.product-page-secondary:hover,
.product-page-secondary:focus-visible {
  border-color: rgba(217, 155, 74, 0.88);
  background: rgba(255, 250, 240, 1);
  outline: none;
}

.product-page-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.product-page-details > div {
  padding: 12px 0 0;
  border: none;
  border-top: 1px solid rgba(88, 44, 18, 0.08);
  border-radius: 0;
  background: transparent;
}

.product-page-details ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.6;
}

.product-page-story {
  width: min(1380px, calc(100% - 72px));
  display: grid;
  gap: 18px;
  margin: 56px auto 0;
  padding-top: 10px;
}

.product-page-story-kicker {
  color: var(--brown-950);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-page-story h2 {
  margin: 0;
  color: var(--brown-950);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
}

.product-page-story-lead {
  color: var(--brown-950);
  font-size: 1.02rem;
  font-weight: 800;
}

.product-page-story p,
.product-page-story li {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.72;
}

.product-page-story ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.product-related {
  width: min(1380px, calc(100% - 72px));
  display: grid;
  gap: 24px;
  margin: 64px auto 0;
}

.product-related-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-related h2 {
  margin: 0;
  color: var(--brown-950);
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
}

.product-related-controls {
  display: none;
  align-items: center;
  gap: 8px;
}

.product-related-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(88, 44, 18, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: var(--brown-950);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

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

.product-related-card {
  display: grid;
  align-content: start;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.product-related-card:hover p,
.product-related-card:focus-visible p {
  text-decoration: underline;
}

.product-related-media {
  display: grid;
  min-height: 280px;
  place-items: center;
  background: #ffffff;
}

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

.product-related-card p {
  margin: 0;
  color: var(--brown-950);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.catalog-grid {
  width: min(var(--max), calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px auto 0;
}

.fabrication-process {
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(34px, 5vw, 64px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(88, 44, 18, 0.18);
  background: var(--brown-950);
  box-shadow: var(--shadow-card);
}

.fabrication-process img {
  display: block;
  width: 100%;
  height: auto;
}

.fabrication-lines {
  padding-top: clamp(38px, 6vw, 72px);
}

.product-card,
.history-panel {
  border: 1px solid rgba(88, 44, 18, 0.18);
  background: rgba(255, 246, 225, 0.72);
  box-shadow: var(--shadow-soft);
}

.product-card {
  padding: 12px;
  scroll-margin-top: 120px;
}

.product-card p {
  margin: 8px 4px 8px;
  color: var(--ink-soft);
  text-align: center;
}

.history-panel {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: clamp(24px, 5vw, 54px);
  color: var(--ink-soft);
}

.history-page .history-banner {
  background: #ffffff;
}

.history-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 5, 2, 0.72), rgba(10, 5, 2, 0.24) 44%, rgba(10, 5, 2, 0.72)),
    linear-gradient(180deg, rgba(10, 5, 2, 0.12), rgba(10, 5, 2, 0.42));
  pointer-events: none;
}

.history-cover-copy {
  position: absolute;
  right: clamp(24px, 7vw, 120px);
  bottom: clamp(24px, 5vw, 78px);
  z-index: 2;
  width: min(520px, calc(100% - 48px));
  padding: clamp(18px, 2.6vw, 30px);
  border: 1px solid rgba(240, 201, 130, 0.42);
  border-radius: 8px;
  background: rgba(27, 14, 7, 0.58);
  box-shadow: 0 22px 48px rgba(8, 4, 2, 0.36);
  color: #fff4dc;
  backdrop-filter: blur(8px);
}

.history-cover-copy span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--amber-200);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.history-cover-copy span::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.history-cover-copy p {
  margin: 14px 0 0;
  color: rgba(255, 244, 220, 0.92);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1rem, 1.55vw, 1.45rem);
  line-height: 1.55;
}

.history-page-section {
  padding: clamp(34px, 5vw, 62px) 0 clamp(54px, 7vw, 84px);
}

.history-page-section .history-heading {
  margin-bottom: clamp(24px, 4vw, 42px);
}

.history-layout {
  display: grid;
  width: min(var(--max), calc(100% - 36px));
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: stretch;
  margin: 0 auto;
}

.history-intro {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 2vw, 22px) 0;
}

.history-intro .section-kicker {
  margin-bottom: 18px;
}

.history-intro h1 {
  max-width: 520px;
  margin: 0;
  color: var(--brown-950);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.history-intro p {
  max-width: 460px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.6vw, 1.16rem);
  font-weight: 600;
  line-height: 1.7;
}

.history-page .history-panel {
  width: 100%;
  gap: 0;
  margin: 0;
  padding: clamp(24px, 4vw, 44px);
  border-color: rgba(77, 38, 15, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 249, 238, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 36px rgba(43, 22, 10, 0.1);
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.35vw, 1.06rem);
  line-height: 1.75;
}

.history-page .history-panel p + p {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(77, 38, 15, 0.1);
}

@media (min-width: 980px) {
  .category-carousel {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .category-carousel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-header {
    gap: 14px;
    min-height: 66px;
    padding-inline: clamp(12px, 2.4vw, 24px);
  }

  .brand-logo {
    height: 64px;
  }

  .main-nav {
    gap: 1px;
  }

  .main-nav a {
    padding-inline: 9px;
    font-size: 0.68rem;
  }

  .header-search-toggle {
    width: 38px;
    height: 38px;
  }

  .story-section,
  .catalog-grid,
  .history-layout {
    grid-template-columns: 1fr;
  }

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

  .catalog-summary-meta {
    justify-items: start;
  }

  .catalog-summary-meta span {
    text-align: left;
  }

  .catalog-layout {
    padding-left: 0;
    grid-template-columns: 1fr;
  }

  .catalog-filters {
    position: static;
  }

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

  .catalog-directory {
    position: static;
    top: auto;
    margin: 18px auto 28px;
  }

  .catalog-line,
  .catalog-line:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .catalog-line:nth-child(even) .catalog-line-media {
    order: 0;
  }

  .catalog-line-media,
  .catalog-line-media img {
    min-height: 300px;
  }

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

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

  .line-showcase-card {
    grid-template-columns: 1fr;
  }

  .line-showcase-image {
    min-height: 260px;
  }

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

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

  .product-preview-media {
    min-height: 280px;
  }

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

  .product-detail-main-image {
    min-height: 360px;
  }

  .product-detail-copy {
    align-content: start;
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-social {
    justify-items: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-brand img {
    width: min(250px, 60vw);
    max-height: 88px;
  }

  .footer-nav a:not(:last-child)::after {
    margin-inline: 16px;
  }

  .history-intro {
    text-align: center;
  }

  .history-intro .section-kicker {
    justify-content: center;
  }

  .history-intro h1,
  .history-intro p {
    max-width: none;
  }

  .story-section .section-kicker,
  .story-section h2,
  .story-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-promo {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

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

  .top-announcement {
    min-height: 24px;
    padding: 5px 8px;
    font-size: clamp(0.54rem, 2.25vw, 0.7rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: none;
    white-space: nowrap;
  }

  .site-header {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
    min-height: 72px;
    padding: 6px 10px;
    position: sticky;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
    min-width: 0;
  }

  .brand-logo {
    height: 58px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
  }

  .header-tools {
    grid-column: 3;
  }

  .header-search-toggle {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 10px;
    right: auto;
    display: grid;
    width: min(300px, calc(100vw - 20px));
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(88, 44, 18, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 34px rgba(43, 22, 10, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    visibility: hidden;
  }

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

  .main-nav a {
    justify-content: flex-start;
    min-height: 40px;
    width: 100%;
    padding: 0 10px;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .header-search-panel {
    position: fixed;
    top: calc(34px + 72px);
    left: 10px;
    right: 10px;
    width: auto;
    padding: 10px;
  }

  .header-search-panel input {
    height: 40px;
  }

  .header-search-panel button[type="submit"] {
    height: 40px;
    padding-inline: 14px;
    font-size: 0.72rem;
  }

  .home-header {
    position: relative;
    grid-template-columns: 44px 1fr 44px;
  }

  .home-header .brand {
    grid-column: 2;
    justify-self: center;
  }

  .home-header-search {
    left: 10px;
    transform: none;
    width: 40px;
    z-index: 3;
  }

  .home-header-search-bar {
    min-height: 40px;
    width: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 999px;
  }

  .home-header-search-bar svg {
    width: 17px;
    height: 17px;
  }

  .home-header-search-bar input {
    display: none;
  }

  .home-header .home-menu-toggle {
    grid-column: 3;
  }

  .home-header .header-drawer-nav {
    right: 10px;
    width: min(280px, calc(100vw - 20px));
  }

  .home-search-dropdown {
    position: fixed;
    top: 84px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    left: 10px;
    width: min(320px, calc(100vw - 20px));
    padding: 12px;
    border-radius: 20px;
    background: #ffffff;
    border-color: rgba(88, 44, 18, 0.1);
    box-shadow: 0 20px 40px rgba(43, 22, 10, 0.16);
    z-index: 80;
  }

  .home-search-dropdown.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .home-search-card {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    min-height: 116px;
    padding: 10px 8px;
    border: 1px solid rgba(88, 44, 18, 0.08);
    border-radius: 16px;
    background: #ffffff;
    text-align: center;
  }

  .home-search-card-media {
    width: 66px;
    border-radius: 14px;
    background: #ffffff;
  }

  .home-search-card-copy {
    display: none;
  }

  .home-search-card::after {
    content: attr(data-short-label);
    color: var(--brown-950);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;
  }

  .home-search-card-copy strong {
    font-size: 0.74rem;
    line-height: 1.25;
  }

  .home-search-card-copy small {
    font-size: 0.62rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
  }

  .hero-carousel-viewport {
    width: 100%;
  }

  .hero-carousel-dots {
    min-height: 34px;
    padding: 5px 8px;
  }

  .hero-carousel-dot {
    width: 22px;
    height: 22px;
  }

  .hero-carousel-dot:not(.is-active) {
    width: 14px;
    height: 14px;
  }

  .catalog-cover {
    min-height: 400px;
    padding: 10px;
  }

  .catalog-cover-frame {
    min-height: 380px;
    border-radius: 24px;
    padding: 20px 14px 72px;
  }

  .catalog-cover.catalog-image-slide,
  .catalog-banner-image {
    min-height: 0;
  }

  .catalog-cover.catalog-image-slide {
    height: auto;
    aspect-ratio: 1916 / 821;
  }

  .catalog-banner-image {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    image-rendering: auto;
    transform: translateZ(0);
  }

  .hero-carousel-controls {
    bottom: 14px;
    margin-top: 0;
  }

  .cover-logo {
    width: min(150px, 48vw);
  }

  .cover-title {
    margin-top: 18px;
  }

  .cover-title h1 {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }

  .cover-benefits {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 56px;
    padding-top: 18px;
  }

  .cover-benefit {
    padding: 0;
  }

  .cover-benefit + .cover-benefit {
    border-left: 0;
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .hero-promo {
    min-height: 500px;
    padding: 28px 18px 92px;
  }

  .catalog-page-main {
    padding-bottom: 48px;
  }

  .catalog-page-path {
    width: calc(100% - 24px);
    margin: 0 auto 12px;
  }

  .catalog-header {
    grid-template-columns: auto;
  }

  .catalog-summary {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
    padding-bottom: 16px;
  }

  .catalog-summary h1 {
    margin-top: 10px;
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }

  .catalog-summary p {
    margin-top: 10px;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .catalog-summary-meta {
    gap: 6px;
    justify-items: start;
    padding: 14px;
  }

  .catalog-summary-meta strong {
    font-size: 1.05rem;
  }

  .catalog-summary-meta span {
    font-size: 0.74rem;
    text-align: left;
  }

  .catalog-layout {
    width: calc(100% - 24px);
    gap: 16px;
    margin-bottom: 48px;
    grid-template-columns: minmax(0, 1fr);
  }

  .catalog-mobile-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    padding-bottom: 2px;
  }

  .catalog-mobile-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    width: fit-content;
    min-width: 0;
    min-height: 34px;
    margin: 0 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--brown-950);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: none;
    transition: color 180ms ease, opacity 180ms ease;
  }

  .catalog-mobile-filter-toggle.is-open {
    color: var(--brown-700);
    opacity: 0.96;
  }

  .catalog-mobile-filter-icon {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linejoin: round;
    stroke-linecap: round;
    flex: 0 0 auto;
  }

  .catalog-mobile-view-toggle {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 2px;
    border: 1px solid rgba(88, 44, 18, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 6px 16px rgba(24, 12, 6, 0.04);
  }

  .catalog-mobile-view-toggle button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(88, 44, 18, 0.48);
    cursor: pointer;
    padding: 0;
    transition: background 180ms ease, color 180ms ease;
  }

  .catalog-mobile-view-toggle button.is-active {
    background: var(--brown-950);
    color: #ffffff;
  }

  .catalog-mobile-view-toggle button svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
  }

  .catalog-mobile-filter-overlay {
    position: fixed;
    inset: 0;
    z-index: 48;
    background: rgba(24, 20, 18, 0.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .catalog-mobile-filter-overlay.is-open {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .catalog-filters {
    display: grid;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 49;
    width: min(86vw, 380px);
    max-width: 380px;
    height: 100dvh;
    margin: 0;
    padding: 12px 14px 22px;
    border: 0;
    border-radius: 0 16px 16px 0;
    background: #ffffff;
    box-shadow: 18px 0 42px rgba(24, 12, 6, 0.16);
    overflow-y: auto;
    transform: translateX(-104%);
    transition: transform 220ms ease;
  }

  .catalog-filters.is-open {
    transform: translateX(0);
  }

  .catalog-mobile-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 2px;
    padding: 0 2px 12px;
    border-bottom: 1px solid rgba(88, 44, 18, 0.08);
  }

  .catalog-mobile-filter-head strong {
    color: var(--brown-950);
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.03em;
  }

  .catalog-mobile-filter-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: var(--brown-950);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
  }

  .catalog-filter-selected {
    display: none;
  }

  .catalog-filter-card {
    gap: 8px;
    padding: 10px 10px 6px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .catalog-filter-search input {
    min-height: 42px;
  }

  .catalog-filter-heading span,
  .catalog-filter-search {
    display: none;
  }

  .catalog-filter-heading {
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .catalog-filter-heading h2 {
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .catalog-filter-options {
    display: grid;
    gap: 2px;
    max-height: none;
  }

  .catalog-filter-options a {
    position: relative;
    justify-content: flex-start;
    min-height: 40px;
    padding: 0 0 0 40px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--brown-950);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .catalog-filter-options a::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(88, 44, 18, 0.48);
    border-radius: 2px;
    background: #ffffff;
    transform: translateY(-50%);
  }

  .catalog-filter-options a.is-active::before {
    background: #ffffff;
  }

  .catalog-filter-options a.is-active::after {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 6px;
    height: 11px;
    border-right: 2px solid var(--brown-950);
    border-bottom: 2px solid var(--brown-950);
    transform: translateY(-62%) rotate(45deg);
  }

  .catalog-filter-options a:hover,
  .catalog-filter-options a:focus-visible,
  .catalog-filter-options a.is-active {
    background: transparent;
    color: var(--brown-950);
    box-shadow: none;
  }

  .catalog-size-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: 220px;
    gap: 8px;
  }

  .catalog-line-shortcuts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .catalog-line-shortcuts a {
    min-height: 34px;
    padding: 0 9px;
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }

  .catalog-model-sections {
    gap: 18px;
  }

  .catalog-model-section {
    scroll-margin-top: 96px;
    padding-top: 0;
  }

  .line-showcase-card {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 6px;
    padding-bottom: 4px;
    border-bottom: 0;
    border-radius: 0;
  }

  .line-showcase-copy {
    padding: 0;
  }

  .line-showcase-copy span {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.56rem;
  }

  .line-showcase-copy h2 {
    margin-top: 0;
    font-size: clamp(0.88rem, 4vw, 1rem);
  }

  .line-showcase-copy p {
    font-size: 0.78rem;
    line-height: 1.55;
  }

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

  .catalog-page.catalog-view-single .product-catalog-grid {
    grid-template-columns: 1fr;
  }

  .product-slot {
    grid-template-rows: 88% 12%;
    min-height: 286px;
    overflow: visible;
    border-radius: 0;
  }

  .product-slot:hover,
  .product-slot:focus-visible {
    transform: none;
  }

  .product-slot-media {
    min-height: 0;
    padding: 0;
  }

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

  .product-photo-count {
    display: none;
  }

  .product-slot-media img {
    width: 110%;
    height: 110%;
    max-height: none;
    object-position: center 52%;
    transform: translateY(4px);
  }

  .product-slot-media .product-photo {
    width: 110%;
    height: 110%;
    max-height: none;
    object-position: center 52%;
    transform: translateY(4px);
  }

  .catalog-model-section[data-line="servico"] .product-slot-media img,
  .catalog-model-section[data-line="servico"] .product-slot-media .product-photo {
    width: 118%;
    height: 118%;
    max-width: none;
  }

  .catalog-model-section[data-line="seguranca"] .product-slot-media img,
  .catalog-model-section[data-line="seguranca"] .product-slot-media .product-photo {
    width: 114%;
    height: 114%;
    max-width: none;
  }

  .catalog-model-section[data-line="passeio"] .product-slot-media img,
  .catalog-model-section[data-line="passeio"] .product-slot-media .product-photo {
    width: 120%;
    height: 120%;
    max-width: none;
  }

  .catalog-page.catalog-view-single .catalog-model-section[data-line="passeio"] .product-slot-media img,
  .catalog-page.catalog-view-single .catalog-model-section[data-line="passeio"] .product-slot-media .product-photo {
    width: 116%;
    height: 116%;
  }

  .catalog-page.catalog-view-single .catalog-model-section[data-line="servico"] .product-slot-media img,
  .catalog-page.catalog-view-single .catalog-model-section[data-line="servico"] .product-slot-media .product-photo,
  .catalog-page.catalog-view-single .catalog-model-section[data-line="seguranca"] .product-slot-media img,
  .catalog-page.catalog-view-single .catalog-model-section[data-line="seguranca"] .product-slot-media .product-photo {
    width: 110%;
    height: 110%;
    max-width: 100%;
  }

  .product-slot-info {
    gap: 0;
    padding: 0 6px 0;
    margin-top: 0;
    position: relative;
    z-index: 1;
    justify-items: start;
    text-align: left;
  }

  .product-slot-info > span {
    display: none;
    width: 100%;
    min-height: 16px;
    margin: 0;
    padding: 0 5px;
    font-size: 0.36rem;
  }

  .product-slot-info strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: -2px;
    padding: 0;
    max-width: 100%;
    text-align: left;
    line-height: 1.12;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-preview {
    width: calc(100% - 20px);
  }

  .product-detail {
    border-radius: 10px;
  }

  .product-detail-gallery {
    gap: 8px;
    padding: 8px;
  }

  .product-detail-main-image {
    min-height: 280px;
    border-radius: 8px;
  }

  .product-detail-main-image img {
    width: 100%;
    height: 100%;
    max-height: none;
  }

  .product-detail-thumbs {
    gap: 7px;
  }

  .product-preview-thumb {
    border-radius: 6px;
  }

  .product-detail-copy {
    gap: 10px;
    padding: 18px;
  }

  .product-detail-line {
    padding: 4px 9px;
    font-size: 0.56rem;
  }

  .product-detail-code {
    font-size: 0.64rem;
  }

  .product-detail-copy h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .product-detail-copy > p:not(.product-detail-code) {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .product-detail-specs {
    gap: 6px;
  }

  .product-detail-specs span {
    padding: 5px 8px;
    font-size: 0.62rem;
  }

  .product-detail-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 11px 14px;
    font-size: 0.68rem;
  }

  .product-preview-media {
    min-height: 210px;
  }

  .product-preview-copy {
    gap: 10px;
    padding: 18px;
  }

  .product-preview-copy h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .product-preview-close {
    width: 34px;
    height: 34px;
    font-size: 1.25rem;
  }

  .catalog-hero {
    min-height: 330px;
    padding: 28px 18px;
    background-position: center;
  }

  .catalog-hero .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .catalog-hero .eyebrow::before {
    width: 24px;
  }

  .catalog-hero h1 {
    font-size: clamp(1.8rem, 9vw, 2.65rem);
  }

  .catalog-hero p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .catalog-directory {
    width: calc(100% - 24px);
    gap: 7px;
    margin: 14px auto 22px;
    padding: 9px;
    border-radius: 8px;
  }

  .catalog-directory a {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }

  .catalog-lines {
    width: calc(100% - 24px);
    gap: 16px;
  }

  .catalog-line {
    min-height: 0;
    border-radius: 8px;
    scroll-margin-top: 98px;
  }

  .catalog-line-media,
  .catalog-line-media img {
    min-height: 190px;
  }

  .catalog-line-content {
    padding: 18px;
  }

  .catalog-line-content .section-kicker {
    margin-bottom: 8px;
    font-size: 0.62rem;
  }

  .catalog-line-content .section-kicker::before {
    width: 22px;
  }

  .catalog-line-content h2 {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
  }

  .catalog-line-content > p {
    margin-top: 10px;
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .catalog-models {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 15px;
  }

  .catalog-model-card {
    min-height: 0;
    gap: 6px;
    padding: 13px;
  }

  .catalog-model-card > span {
    font-size: 0.56rem;
  }

  .catalog-model-card h3 {
    font-size: 0.86rem;
  }

  .catalog-model-card p {
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .promo-copy img {
    width: 150px;
  }

  .promo-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .categories-section {
    padding: 14px 0 24px;
  }

  .categories-heading {
    align-items: center;
    flex-direction: column;
    margin-bottom: 14px;
    padding-block: 5px;
    place-items: center;
  }

  .categories-heading .section-kicker {
    width: 100%;
    font-size: clamp(0.7rem, 2.9vw, 0.88rem);
    letter-spacing: 0.06em;
  }

  .categories-heading .section-kicker span::before,
  .categories-heading .section-kicker span::after {
    width: 30px;
    height: 23px;
  }

  .categories-heading .section-kicker::before,
  .categories-heading .section-kicker::after {
    flex-basis: 24px;
    max-width: 48px;
  }

  .material-highlight-band {
    gap: 4px;
    margin: -14px 0 18px;
    padding: 6px 16px;
  }

  .material-highlight-band strong {
    font-size: 0.64rem;
    letter-spacing: 0.05em;
  }

  .material-highlight-band span {
    width: auto;
    font-size: 0.64rem;
    letter-spacing: 0.05em;
  }

  .category-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0 0 12px;
  }

  .category-card {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(66px, 1fr) auto;
    align-items: stretch;
    min-height: 108px;
    border-color: rgba(74, 43, 22, 0.08);
    border-radius: 7px;
    box-shadow: 0 10px 26px rgba(43, 22, 10, 0.08);
  }

  .category-card:hover {
    transform: none;
  }

  .category-image {
    width: 100%;
    height: 100%;
    min-height: 66px;
  }

  .category-card h3 {
    justify-content: center;
    min-height: auto;
    padding: 6px 5px 7px;
    font-size: clamp(0.54rem, 2.18vw, 0.66rem);
    line-height: 1.14;
    text-align: center;
  }

  .contact-shortcuts {
    width: min(100% - 24px, var(--max));
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 38px;
    padding: 8px 0 32px;
  }

  .contact-shortcuts-copy {
    min-height: auto;
    text-align: center;
  }

  .contact-shortcuts-copy .section-kicker {
    justify-content: center;
    margin-bottom: 10px;
  }

  .contact-shortcuts-copy .section-kicker::before {
    width: 22px;
  }

  .contact-shortcuts-copy h2 {
    max-width: none;
    font-size: clamp(1.35rem, 5.6vw, 1.95rem);
  }

  .contact-shortcuts-copy p {
    max-width: 34rem;
    margin: 12px auto 0;
    font-size: clamp(0.78rem, 3vw, 0.9rem);
    line-height: 1.55;
  }

  .contact-shortcuts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .contact-shortcut-card {
    min-height: 126px;
    gap: 8px;
    padding: 15px 8px;
  }

  .contact-shortcut-icon {
    width: 42px;
    height: 42px;
  }

  .contact-shortcut-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 2.6;
  }

  .contact-shortcut-title {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .contact-shortcut-text {
    font-size: 0.66rem;
  }

  .story-copy {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .feature-card {
    min-height: 290px;
  }

  .feature-modern,
  .feature-factory {
    min-height: 0;
  }

  .footer-main {
    width: calc(100% - 28px);
    min-height: 0;
    gap: 18px;
    padding: 22px 0 20px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 5px;
    font-size: 0.78rem;
  }

  .footer-contact span:not(:last-child)::after {
    display: none;
  }

  .footer-brand-seal {
    width: 48px;
    height: 48px;
    font-size: 1.55rem;
  }

  .footer-brand-name {
    font-size: 2rem;
  }

  .footer-brand-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.42em;
  }

  .footer-brand img {
    width: min(220px, 70vw);
    max-height: 78px;
  }

  .footer-nav {
    width: calc(100% - 28px);
    display: grid;
    gap: 10px;
    padding: 16px 0;
  }

  .footer-nav a {
    justify-content: center;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .footer-nav a:not(:last-child)::after {
    display: none;
  }

  .footer-bottom {
    width: calc(100% - 28px);
  }

  .history-page-section {
    padding: 20px 0 42px;
  }

  .history-cover-copy {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 14px;
  }

  .history-cover-copy span {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .history-cover-copy span::before {
    width: 20px;
  }

  .history-cover-copy p {
    margin-top: 8px;
    font-size: clamp(0.72rem, 2.65vw, 0.9rem);
    line-height: 1.45;
  }

  .history-page-section .history-heading {
    margin-bottom: 18px;
  }

  .history-layout {
    width: min(100% - 24px, var(--max));
    gap: 14px;
  }

  .history-intro {
    padding: 0;
  }

  .history-intro .section-kicker {
    margin-bottom: 10px;
  }

  .history-intro .section-kicker::before {
    width: 22px;
  }

  .history-intro h1 {
    font-size: clamp(1.55rem, 6vw, 2.15rem);
  }

  .history-intro p {
    margin-top: 12px;
    font-size: clamp(0.78rem, 3vw, 0.92rem);
    line-height: 1.55;
  }

  .history-page .history-panel {
    padding: 18px;
    font-size: 0.82rem;
    line-height: 1.62;
  }

  .history-page .history-panel p + p {
    margin-top: 14px;
    padding-top: 14px;
  }
}

@media (max-width: 380px) {
  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    width: 50px;
    height: 50px;
  }

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

  .site-header {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 4px;
    min-height: 60px;
    padding-inline: 7px;
  }

  .brand-logo {
    height: 50px;
  }

  .main-nav {
    left: 7px;
    width: min(280px, calc(100vw - 14px));
  }

  .home-header .header-drawer-nav {
    right: 7px;
    width: min(264px, calc(100vw - 14px));
  }

  .home-search-dropdown {
    width: min(264px, calc(100vw - 14px));
  }

  .home-search-dropdown.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .home-header-search {
    left: 7px;
    width: 36px;
  }

  .home-header-search-bar {
    min-height: 36px;
    width: 36px;
  }

  .main-nav a {
    min-height: 36px;
    padding-inline: 8px;
    font-size: 0.68rem;
  }

  .header-search-toggle,
  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
  }

  .hero-carousel-viewport {
    width: 100%;
  }

  .hero-carousel-controls {
    bottom: 8px;
  }

  .product-page-shell {
    width: calc(100% - 20px);
  }
}

@media (max-width: 1100px) {
  .product-page-shell {
    grid-template-columns: 1fr;
  }

  .product-page-info {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .product-page {
    overflow-x: hidden;
  }

  .product-page body,
  body.product-page {
    width: 100%;
    max-width: 100%;
  }

  .product-page-backlink {
    font-size: 0.72rem;
  }

  .product-header-nav {
    position: absolute;
    top: calc(100% + 6px);
    right: 10px;
    left: auto;
    display: grid;
    width: max-content;
    min-width: 0;
    max-width: calc(100vw - 24px);
    gap: 1px;
    padding: 5px;
    border: 1px solid rgba(88, 44, 18, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 28px rgba(43, 22, 10, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    visibility: hidden;
  }

  .product-header-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .product-header-nav a {
    justify-content: flex-start;
    min-height: 30px;
    width: 100%;
    padding: 0 9px;
    border-radius: 8px;
    font-size: 0.63rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .product-page-main {
    width: 100%;
    max-width: 100%;
    padding-top: 8px;
    overflow-x: hidden;
  }

  .product-page-path {
    width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
    font-size: 0.64rem;
    gap: 5px;
  }

  .product-page-shell {
    width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
    gap: 14px;
  }

  .product-page-story,
  .product-related {
    width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
  }

  .product-page-main-media {
    min-height: clamp(330px, 82vw, 470px);
    border-radius: 14px;
  }

  .product-page-main-media img {
    width: 98%;
    height: 98%;
  }

  .product-zoom-dialog {
    width: min(100vw, 100vw);
    padding: 10px 8px 8px;
    border-radius: 18px;
  }

  .product-zoom-close {
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }

  .product-zoom-frame {
    min-height: min(46vh, 340px);
  }

  .product-zoom-frame img {
    width: 100%;
    max-width: calc(100vw - 24px);
    max-height: 44vh;
  }

  .product-zoom-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.3rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 18px rgba(43, 22, 10, 0.08);
  }

  .product-zoom-arrow-prev {
    left: 6px;
  }

  .product-zoom-arrow-next {
    right: 6px;
  }

  .product-page-thumbs {
    display: none;
  }

  .product-page-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 4px 0 0;
  }

  .product-page-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(88, 44, 18, 0.22);
    padding: 0;
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease;
  }

  .product-page-dot.is-active {
    background: rgba(88, 44, 18, 0.58);
    transform: scale(1.08);
  }

  .product-page-thumb {
    border-radius: 8px;
    border-color: rgba(88, 44, 18, 0.1);
  }

  .product-page-thumb img {
    width: 80%;
    height: 80%;
  }

  .product-page-info {
    max-width: 100%;
    width: 100%;
    gap: 8px;
  }

  .product-page-line {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .product-page-ref {
    font-size: 0.66rem;
  }

  .product-page-info h1 {
    font-size: clamp(1.55rem, 6vw, 1.9rem);
    line-height: 1.08;
  }

  .product-page-description {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .product-page-description-stack {
    gap: 0;
  }

  .product-page-option-group {
    gap: 4px;
  }

  .product-page-option-group h2,
  .product-page-details h2 {
    font-size: 0.76rem;
    letter-spacing: 0.03em;
    font-weight: 800;
  }

  .product-page-color-cards {
    gap: 8px;
  }

  .product-page-color-card {
    min-height: 48px;
    border-radius: 8px;
    font-size: 0.78rem;
  }

  .product-page-sizes button {
    min-width: 40px;
    min-height: 38px;
    font-size: 0.82rem;
    border-radius: 5px;
  }

  .product-page-measure-link {
    margin-top: 8px;
    font-size: 0.82rem;
    gap: 6px;
  }

  .product-page-measure-icon {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }

  .product-page-measure-icon svg {
    width: 21px;
    height: 21px;
  }

  .measure-table-dialog {
    width: min(94vw, 94vw);
    padding: 22px 14px 18px;
    border-radius: 20px;
  }

  .measure-table-close {
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    font-size: 1.05rem;
  }

  .measure-table-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .measure-table-copy {
    grid-template-rows: none;
    gap: 10px;
    padding: 0;
    height: auto;
  }

  .measure-table-showcase {
    gap: 10px;
    padding: 10px 12px 8px;
    border-radius: 18px;
  }

  .measure-table-brand-block {
    gap: 6px;
  }

  .measure-table-brand {
    width: 90px;
  }

  .measure-table-product {
    min-height: 150px;
    padding: 2px 2px 0;
  }

  .measure-table-product img {
    max-width: 172px;
  }

  .measure-table-copy h2 {
    font-size: 1.1rem;
  }

  .measure-table-copy p,
  .measure-table th,
  .measure-table td {
    font-size: 0.78rem;
  }

  .measure-table th,
  .measure-table td {
    padding: 12px 10px;
  }

  .measure-table-wrap {
    max-height: 52vh;
    border-radius: 14px;
  }

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

  .product-related {
    gap: 18px;
    margin-top: 42px;
  }

  .product-related h2 {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
  }

  .product-related-controls {
    display: inline-flex;
  }

  .product-related-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 14px) / 2);
    grid-template-columns: none;
    gap: 14px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
    padding-right: 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .product-related-media {
    min-height: 112px;
  }

  .product-related-card {
    scroll-snap-align: start;
  }

  .product-related-card p {
    font-size: 0.82rem;
    line-height: 1.45;
  }
}

@media (max-width: 340px) {
  .category-carousel {
    grid-template-columns: 1fr;
  }
}

body.fabrication-page {
  background: #ffffff;
}

body.fabrication-page::before {
  display: none;
}

.fabrication-main {
  padding-top: 0;
  background: #ffffff;
}

.fabrication-video-section {
  width: min(430px, calc(100% - 36px));
  margin: 0 auto;
}

.fabrication-section-heading {
  width: min(1280px, calc(100% - 36px));
  margin: clamp(64px, 8vw, 120px) auto clamp(26px, 4vw, 48px);
}

.fabrication-section-heading h1,
.fabrication-section-heading h2 {
  margin: 10px 0 0;
  max-width: 820px;
  color: var(--brown-950);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.25rem, 4.8vw, 3.75rem);
  line-height: 1.02;
}

.fabrication-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(88, 44, 18, 0.18);
  border-radius: 8px;
  background: #120905;
  box-shadow: var(--shadow-card);
}

.fabrication-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #120905;
  object-fit: contain;
  object-position: center center;
}

.fabrication-video-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #120905;
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms linear;
}

.fabrication-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: clamp(72px, 8vw, 104px);
  height: clamp(72px, 8vw, 104px);
  place-items: center;
  border: 1px solid rgba(255, 244, 220, 0.72);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.96), rgba(255, 244, 220, 0.88)),
    var(--paper);
  box-shadow:
    0 18px 40px rgba(18, 9, 5, 0.32),
    0 0 0 14px rgba(255, 244, 220, 0.16);
  color: var(--brown-950);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.fabrication-video-play::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 28px solid currentColor;
}

.fabrication-video-play::after {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(255, 244, 220, 0.38);
  border-radius: inherit;
  animation: fabricationPlayPulse 1.8s ease-out infinite;
}

.fabrication-video-play:hover,
.fabrication-video-play:focus-visible {
  box-shadow:
    0 22px 46px rgba(18, 9, 5, 0.38),
    0 0 0 18px rgba(255, 244, 220, 0.2);
  outline: none;
  transform: translate(-50%, -50%) scale(1.06);
}

.fabrication-video-play.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.92);
}

@keyframes fabricationPlayPulse {
  0% {
    opacity: 0.72;
    transform: scale(0.86);
  }

  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

.fabrication-steps {
  width: min(1280px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 18px auto 0;
  border: 1px solid rgba(88, 44, 18, 0.14);
  border-radius: 8px;
  background: rgba(88, 44, 18, 0.14);
  box-shadow: 0 18px 44px rgba(43, 22, 10, 0.08);
}

.fabrication-step {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 188px;
  padding: 26px;
  background: #fffdf9;
}

.fabrication-step span {
  color: var(--amber-600);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.fabrication-step h3 {
  margin: 0;
  color: var(--brown-950);
  font-size: 1.12rem;
  line-height: 1.2;
}

.fabrication-step p {
  margin: 0;
  color: rgba(58, 32, 17, 0.74);
  font-weight: 600;
  line-height: 1.6;
}

.fabrication-lines {
  padding-top: clamp(38px, 6vw, 72px);
}

@media (max-width: 760px) {
  .fabrication-main {
    padding-bottom: 44px;
  }

  .fabrication-video-section,
  .fabrication-section-heading,
  .fabrication-steps {
    width: calc(100% - 24px);
  }

  .fabrication-video-section {
    width: min(430px, calc(100% - 24px));
  }

  .fabrication-section-heading {
    margin-top: 34px;
  }

  .fabrication-section-heading h1,
  .fabrication-section-heading h2 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .fabrication-video {
    min-height: 0;
  }

  .fabrication-steps {
    grid-template-columns: 1fr;
  }

  .fabrication-step {
    min-height: 0;
    padding: 18px;
  }
}

/* Shared subtle wine accents based on the Godoy brand artwork. */
.top-announcement {
  background:
    radial-gradient(circle at 18% 50%, rgba(126, 23, 19, 0.5), transparent 36%),
    linear-gradient(105deg, #32090a 0%, #180707 56%, #0b0808 100%);
  color: #fff8f4;
}

.brand-logo {
  filter:
    brightness(0)
    saturate(100%)
    invert(13%)
    sepia(48%)
    saturate(2760%)
    hue-rotate(347deg)
    brightness(84%)
    contrast(106%)
    drop-shadow(0 3px 5px rgba(66, 18, 15, 0.14));
}

.site-footer {
  background:
    radial-gradient(circle at 84% 30%, rgba(120, 22, 18, 0.24), transparent 30%),
    linear-gradient(180deg, #120707 0%, #1b0908 52%, #100706 100%);
}

.footer-topline,
.footer-bottom span {
  background: linear-gradient(90deg, transparent, rgba(164, 44, 36, 0.82), transparent);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: rgba(126, 23, 19, 0.24);
}

.footer-contact span:not(:last-child)::after {
  background: rgba(164, 44, 36, 0.58);
}

.categories-heading {
  border-block-color: rgba(113, 20, 17, 0.12);
  background:
    linear-gradient(90deg, transparent, rgba(113, 20, 17, 0.045), transparent),
    #ffffff;
}

.categories-heading .section-kicker {
  color: #5f100e;
}

.categories-heading .section-kicker::before {
  background: linear-gradient(90deg, transparent, rgba(133, 28, 24, 0.92));
}

.categories-heading .section-kicker::after {
  background: linear-gradient(90deg, rgba(133, 28, 24, 0.92), transparent);
}

.categories-heading .section-kicker span::before,
.categories-heading .section-kicker span::after {
  filter:
    brightness(0)
    saturate(100%)
    invert(13%)
    sepia(48%)
    saturate(2760%)
    hue-rotate(347deg)
    brightness(84%)
    contrast(106%)
    drop-shadow(0 1px 0 rgba(113, 20, 17, 0.16));
}

body.fabrication-page .fabrication-section-heading .section-kicker {
  color: var(--wine-accent);
}

body.fabrication-page .fabrication-video-frame {
  border-color: rgba(112, 20, 17, 0.24);
}

body.fabrication-page .fabrication-video-play {
  border-color: rgba(112, 20, 17, 0.32);
  background: linear-gradient(180deg, #fffdfb, #fff6f2);
  box-shadow:
    0 18px 40px rgba(18, 9, 5, 0.3),
    0 0 0 14px rgba(112, 20, 17, 0.1);
  color: var(--wine-accent);
}

body.fabrication-page .fabrication-video-play::after {
  border-color: rgba(112, 20, 17, 0.32);
}

body.fabrication-page .fabrication-video-play:hover,
body.fabrication-page .fabrication-video-play:focus-visible {
  box-shadow:
    0 22px 46px rgba(18, 9, 5, 0.36),
    0 0 0 18px rgba(112, 20, 17, 0.13);
}

body.fabrication-page .fabrication-steps {
  border-color: rgba(113, 20, 17, 0.2);
  background: var(--wine-soft);
  box-shadow: 0 18px 44px rgba(64, 12, 10, 0.08);
}

body.fabrication-page .fabrication-step span {
  color: var(--wine-bright);
}

body.fabrication-page .fabrication-step p {
  color: rgba(91, 38, 34, 0.82);
}

/* Wine accents requested for navigation and product details. */
.carousel-button,
.feature-carousel-button {
  border-color: rgba(113, 20, 17, 0.32);
  background: rgba(255, 246, 241, 0.92);
  color: var(--wine-accent);
}

.carousel-button:hover,
.carousel-button:focus-visible,
.feature-carousel-button:hover,
.feature-carousel-button:focus-visible {
  background: var(--wine-accent);
  color: #ffffff;
}

.carousel-dot {
  background: rgba(113, 20, 17, 0.26);
}

.carousel-dot.is-active {
  background: var(--wine-accent);
}

.contact-shortcut-card {
  border-color: rgba(113, 20, 17, 0.14);
}

.contact-shortcut-card:hover,
.contact-shortcut-card:focus-visible {
  border-color: rgba(113, 20, 17, 0.42);
  box-shadow: 0 26px 48px rgba(64, 12, 10, 0.14);
}

.contact-shortcut-icon {
  background: rgba(113, 20, 17, 0.09);
  color: var(--wine-bright);
}

.contact-shortcut-title {
  color: #5f100e;
}

.contact-shortcut-text {
  color: rgba(95, 16, 14, 0.86);
}

.product-page-path,
.product-page-path span:last-child {
  color: rgba(113, 20, 17, 0.82);
}

.product-detail-code,
.product-page-ref {
  color: rgba(113, 20, 17, 0.82);
}

/* Wine accents for selected filters, thumbnails and options. */
.catalog-filter-search span {
  color: rgba(113, 20, 17, 0.68);
}

.catalog-filter-options a:hover,
.catalog-filter-options a:focus-visible,
.catalog-size-options button:hover,
.catalog-size-options button:focus-visible {
  border-color: rgba(113, 20, 17, 0.38);
  background: rgba(113, 20, 17, 0.07);
}

.catalog-filter-options a.is-active,
.catalog-size-options button.is-active {
  border-color: var(--wine-accent);
  background: var(--wine-accent);
  color: #ffffff;
}

.home-search-card:hover,
.home-search-card:focus-visible {
  border-color: rgba(113, 20, 17, 0.24);
  background: rgba(113, 20, 17, 0.045);
}

.home-search-card-copy small {
  color: rgba(113, 20, 17, 0.76);
}

.product-page-thumb:hover,
.product-page-thumb:focus-visible,
.product-page-thumb.is-active {
  border-color: rgba(133, 28, 24, 0.88);
  box-shadow: 0 14px 28px rgba(64, 12, 10, 0.12);
}

.product-page-color-card:hover,
.product-page-color-card:focus-visible {
  border-color: rgba(133, 28, 24, 0.76);
  box-shadow: 0 10px 22px rgba(64, 12, 10, 0.09);
  outline: none;
}

.product-page-sizes button:hover,
.product-page-sizes button:focus-visible,
.product-page-sizes button.is-active {
  border-color: var(--wine-accent);
  background: var(--wine-accent);
  color: #ffffff;
}

/* Balanced vertical rhythm for the fabrication page. */
body.fabrication-page .fabrication-main {
  padding-bottom: 16px;
}

body.fabrication-page .fabrication-section-heading {
  margin-top: clamp(34px, 4vw, 50px);
  margin-bottom: clamp(24px, 3vw, 34px);
}

body.fabrication-page .fabrication-steps {
  margin-top: clamp(38px, 4vw, 52px);
}

body.fabrication-page .fabrication-lines {
  padding-top: clamp(44px, 5vw, 60px);
  padding-bottom: 22px;
}

body.fabrication-page .fabrication-lines .categories-heading {
  margin-bottom: 20px;
}

body.fabrication-page .fabrication-lines .category-carousel {
  padding-bottom: 10px;
}

@media (max-width: 760px) {
  body.fabrication-page .fabrication-main {
    padding-bottom: 10px;
  }

  body.fabrication-page .fabrication-section-heading {
    margin-top: 20px;
    margin-bottom: 22px;
  }

  body.fabrication-page .fabrication-steps {
    margin-top: 34px;
  }

  body.fabrication-page .fabrication-lines {
    padding-top: 36px;
    padding-bottom: 16px;
  }
}
