:root {
  --ink: #07090d;
  --ink-soft: #10141a;
  --paper: #f4f4ef;
  --paper-bright: #fbfbf7;
  --line: rgba(10, 13, 18, 0.14);
  --muted: #697079;
  --white: #ffffff;
  --lime: #8cf542;
  --cyan: #32d7f4;
  --blue: #3557ff;
  --warm: #f4b86a;
  --success: #45d66e;
  --danger: #db695f;
  --shadow: 0 28px 80px rgba(7, 9, 13, 0.13);
  --radius: 22px;
  --shell: min(1240px, calc(100vw - 64px));
  --display: "Avenir Next", "Montserrat", "Segoe UI", sans-serif;
  --body: "Avenir Next", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

button,
input,
select {
  color: inherit;
  font: inherit;
}

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

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

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

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
}

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

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

.section-shell,
.header-shell,
.hero-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.header-shell {
  display: grid;
  grid-template-columns: 288px 1fr auto;
  align-items: center;
  min-height: 102px;
  gap: 34px;
}

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

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 16px rgba(54, 235, 92, 0.12));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3.5vw, 50px);
}

.main-nav a {
  position: relative;
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--lime);
  content: "";
  transition: transform 180ms ease;
}

.main-nav a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
}

.header-contact small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-pulse {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(140, 245, 66, 0.12);
}

.contact-pulse::after {
  position: absolute;
  inset: -6px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  content: "";
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  to {
    transform: scale(1.9);
    opacity: 0;
  }
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0 0 0 43%;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.9), rgba(7, 9, 13, 0.02) 38%),
    url("/images/decorled/ambiente-exterior.png") center/cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 62%, rgba(244, 184, 106, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.08) 58%, rgba(5, 7, 10, 0.88) 100%),
    linear-gradient(90deg, var(--ink) 0, rgba(7, 9, 13, 0.95) 36%, transparent 70%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 780px;
  align-items: center;
  padding-top: 90px;
}

.hero-copy {
  width: min(690px, 58%);
  padding: 84px 0 150px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--lime);
}

.eyebrow-dark {
  color: var(--muted);
}

.hero h1,
.section-intro h2,
.solutions-copy h2,
.brand-story h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 710px;
  font-size: clamp(4rem, 6.8vw, 7rem);
}

.hero-logo-title {
  width: min(560px, 100%);
  max-width: none !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.hero-logo-crop {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3.36;
  overflow: hidden;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.24));
}

.hero-logo-crop img {
  display: block;
  width: 146%;
  max-width: none;
  height: auto;
}

.hero h1 em,
.brand-story h2 em {
  color: var(--lime);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 570px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 25px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 14px 40px rgba(140, 245, 66, 0.14);
}

.button-primary:hover {
  background: #a8ff67;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.arrow {
  position: relative;
  width: 27px;
  height: 1px;
  background: currentColor;
}

.arrow::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
}

.hero-proof {
  position: absolute;
  bottom: 37px;
  left: 0;
  display: flex;
  gap: clamp(24px, 4vw, 60px);
}

.hero-proof div {
  display: grid;
  gap: 4px;
}

.hero-proof strong {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-feature {
  position: absolute;
  right: 0;
  bottom: 30px;
  display: flex;
  width: 330px;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(7, 9, 13, 0.58);
  backdrop-filter: blur(16px);
}

.feature-index {
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 1rem;
}

.hero-feature div {
  display: grid;
  gap: 6px;
}

.hero-feature small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-feature strong {
  font-size: 0.88rem;
}

.catalog-section {
  padding: 120px 0 132px;
  background:
    radial-gradient(circle at 96% 5%, rgba(50, 215, 244, 0.08), transparent 26%),
    var(--paper);
}

.section-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.section-intro h2,
.solutions-copy h2,
.brand-story h2 {
  font-size: clamp(3.1rem, 5.2vw, 5.5rem);
}

.section-intro > p {
  max-width: 500px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 16px;
  margin-top: 64px;
}

.search-field {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 15px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.62);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.search-field:focus-within {
  border-color: rgba(7, 9, 13, 0.5);
  background: var(--white);
  box-shadow: 0 8px 34px rgba(7, 9, 13, 0.06);
}

.search-mark {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1.8px solid var(--ink);
  border-radius: 50%;
}

.search-mark::after {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 7px;
  height: 1.8px;
  transform: rotate(45deg);
  background: var(--ink);
  content: "";
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 0.94rem;
}

.search-field input::placeholder {
  color: #93989e;
}

.search-field kbd {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 6px;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.65rem;
}

.sort-field {
  display: flex;
  min-width: 230px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.62);
}

.sort-field span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sort-field select {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 700;
}

.catalog-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 24px 0 34px;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.category-chip {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.category-chip:hover,
.category-chip.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.catalog-count {
  flex: 0 0 auto;
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.technical-filters {
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) repeat(3, minmax(160px, 1fr)) auto;
  align-items: end;
  gap: 12px;
  margin: 0 0 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
}

.technical-filter-heading {
  display: grid;
  gap: 4px;
  align-self: center;
}

.technical-filter-heading span,
.technical-filters label > span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.technical-filter-heading strong {
  font-family: var(--display);
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.technical-filters label {
  display: grid;
  gap: 7px;
}

.technical-filters select {
  width: 100%;
  min-height: 44px;
  padding: 0 34px 0 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
}

.technical-filters select:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 87, 255, 0.12);
}

.technical-clear {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--ink);
  border-radius: 11px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
}

.price-filter {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(460px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  margin: 0 0 36px;
  padding: 25px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 14px 45px rgba(7, 9, 13, 0.035);
}

.price-filter-copy .eyebrow {
  margin-bottom: 7px;
  font-size: 0.58rem;
}

.price-filter-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.price-filter-copy > p:last-child {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.45;
}

.price-filter-controls {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto;
  gap: 12px 22px;
  align-items: end;
}

.dual-range {
  position: relative;
  height: 40px;
  grid-column: 1 / -1;
}

.dual-range-track {
  position: absolute;
  top: 19px;
  right: 9px;
  left: 9px;
  height: 4px;
  border-radius: 100px;
  background: #d8dbdc;
}

.dual-range-track span {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.dual-range input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 40px;
  margin: 0;
  pointer-events: none;
  appearance: none;
  background: transparent;
}

.dual-range input::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 2px 9px rgba(7, 9, 13, 0.3);
  cursor: grab;
  pointer-events: auto;
  appearance: none;
}

.dual-range input::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 2px 9px rgba(7, 9, 13, 0.3);
  cursor: grab;
  pointer-events: auto;
}

.price-fields {
  display: flex;
  align-items: end;
  gap: 9px;
}

.price-fields label {
  display: grid;
  gap: 5px;
}

.price-fields label > span:first-child {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-input {
  display: flex;
  width: 112px;
  min-height: 42px;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.price-input:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(50, 215, 244, 0.16);
}

.price-input small {
  font-size: 0.75rem;
  font-weight: 800;
}

.price-input input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-weight: 700;
}

.price-input input::-webkit-inner-spin-button,
.price-input input::-webkit-outer-spin-button {
  appearance: none;
}

.price-separator {
  width: 12px;
  height: 1px;
  margin-bottom: 21px;
  background: var(--muted);
}

.price-apply,
.price-clear {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 800;
}

.price-apply {
  background: var(--ink);
  color: var(--white);
}

.price-clear {
  border: 1px solid var(--line);
  background: transparent;
}

.price-presets {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.price-presets button {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 750;
}

.price-presets button:hover {
  border-color: var(--ink);
  color: var(--ink);
}

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

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 11, 15, 0.09);
  border-radius: var(--radius);
  background: var(--paper-bright);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(8, 11, 15, 0.2);
  box-shadow: var(--shadow);
}

.product-image-button {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  padding: 20px;
  background: #fff;
  cursor: pointer;
}

.product-image-button.is-loading::before {
  position: absolute;
  inset: 18%;
  border-radius: 18px;
  background:
    linear-gradient(110deg, transparent 32%, rgba(255, 255, 255, 0.9) 48%, transparent 64%)
      0 0 / 240% 100%,
    #ecece7;
  content: "";
  animation: skeleton 1.3s linear infinite;
}

.product-image-button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 76%, rgba(7, 9, 13, 0.035));
  content: "";
  pointer-events: none;
}

.product-image-button img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.product-image-button.is-loading img {
  opacity: 0;
}

.product-image-button.is-placeholder img {
  width: 74%;
  opacity: 0.78;
}

.product-card:hover .product-image-button img {
  transform: scale(1.025);
}

.product-badge {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  padding: 7px 11px;
  border-radius: 100px;
  background: rgba(7, 9, 13, 0.86);
  color: var(--white);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}

.product-badge.featured {
  background: var(--lime);
  color: var(--ink);
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 20px;
}

.product-category {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-title {
  margin: 0;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.product-title button {
  display: -webkit-box;
  overflow: hidden;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

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

.product-price {
  display: flex;
  align-items: flex-start;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.product-price small {
  margin: 3px 3px 0 0;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0;
}

.product-open {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.product-open:hover {
  transform: rotate(-8deg) scale(1.06);
  background: var(--blue);
}

.product-open .arrow {
  width: 17px;
}

.skeleton-card {
  min-height: 410px;
  border-color: transparent;
  background:
    linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.78) 48%, transparent 62%)
      0 0 / 240% 100%,
    #e5e5df;
  animation: skeleton 1.3s linear infinite;
}

@keyframes skeleton {
  to {
    background-position: -240% 0;
  }
}

.catalog-empty {
  padding: 70px 24px;
  border: 1px dashed rgba(7, 9, 13, 0.23);
  border-radius: var(--radius);
  text-align: center;
}

.catalog-empty > span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.catalog-empty h3 {
  margin: 10px 0 8px;
  font-size: 2rem;
}

.catalog-empty p {
  margin: 0 0 25px;
  color: var(--muted);
}

.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-top: 44px;
}

.pagination-pages {
  display: flex;
  align-items: center;
}

.pagination-nav,
.pagination-page,
.pagination-ellipsis {
  display: inline-grid;
  min-width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-right-width: 0;
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
}

.pagination-nav {
  grid-auto-flow: column;
  gap: 9px;
  padding: 0 16px;
  cursor: pointer;
}

.pagination-nav:first-child {
  border-radius: 12px 0 0 12px;
}

.pagination-nav:last-child {
  border-right-width: 1px;
  border-radius: 0 12px 12px 0;
}

.pagination-page {
  cursor: pointer;
}

.pagination-page:hover,
.pagination-nav:hover:not(:disabled) {
  background: #eef0ed;
}

.pagination-page.is-active {
  position: relative;
  z-index: 1;
  border-color: var(--ink);
  border-right-width: 1px;
  background: var(--ink);
  color: var(--white);
}

.pagination-page.is-active + .pagination-page,
.pagination-page.is-active + .pagination-ellipsis {
  border-left-width: 0;
}

.pagination-nav:disabled {
  cursor: not-allowed;
  color: #a0a4a8;
}

.pagination-chevron {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.pagination-chevron.previous {
  transform: rotate(-135deg);
}

.solutions {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 8% 80%, rgba(53, 87, 255, 0.18), transparent 23%),
    var(--ink);
  color: var(--white);
}

.solutions::after {
  position: absolute;
  top: -170px;
  right: -130px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(140, 245, 66, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 75px rgba(140, 245, 66, 0.025),
    0 0 0 150px rgba(140, 245, 66, 0.018);
  content: "";
}

.solutions-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(60px, 9vw, 135px);
}

.solutions-visual {
  position: relative;
}

.solutions-visual img {
  width: 100%;
  aspect-ratio: 0.88;
  border-radius: 260px 260px 20px 20px;
  object-fit: cover;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.32);
}

.visual-note {
  position: absolute;
  right: -46px;
  bottom: 40px;
  width: 220px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: rgba(10, 13, 18, 0.78);
  backdrop-filter: blur(18px);
}

.visual-note span {
  color: var(--warm);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
}

.visual-note p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  line-height: 1.5;
}

.solutions-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.solution-list {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.solution-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.solution-list article > span {
  padding-top: 2px;
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 0.82rem;
}

.solution-list h3 {
  margin: 0 0 5px;
  font-size: 0.92rem;
}

.solution-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  font-weight: 800;
}

.brand-story {
  padding: 120px 0;
  background: var(--paper-bright);
}

.brand-story-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 90px;
}

.brand-story h2 em {
  color: var(--blue);
}

.brand-story-shell > div:last-child > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.story-contacts {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 750;
}

.story-contacts span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(140, 245, 66, 0.2);
}

.locations {
  position: relative;
  overflow: hidden;
  padding: 118px 0 126px;
  background:
    radial-gradient(circle at 8% 10%, rgba(50, 215, 244, 0.11), transparent 27%),
    radial-gradient(circle at 92% 80%, rgba(140, 245, 66, 0.08), transparent 25%),
    #0a0d11;
  color: var(--white);
}

.locations-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.locations-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.1rem, 5vw, 5.3rem);
  font-weight: 570;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.locations-intro h2 em {
  color: var(--lime);
  font-family: Georgia, serif;
  font-weight: 400;
}

.locations-intro > p {
  max-width: 500px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.location-card {
  display: grid;
  grid-template-rows: 230px 350px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: var(--paper-bright);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
}

.location-summary {
  display: grid;
  height: 100%;
  min-height: 230px;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 0.58fr);
  color: var(--ink);
}

.location-photo {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  overflow: hidden;
  background: #1a1e23;
}

.location-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.location-photo-tall img {
  object-position: center 73%;
}

.location-photo span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 100px;
  background: rgba(7, 9, 13, 0.78);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.location-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 26px;
}

.location-zone {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.location-copy > p:not(.location-zone) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.location-route {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(7, 9, 13, 0.35);
  font-size: 0.72rem;
  font-weight: 850;
}

.location-route .arrow {
  width: 17px;
}

.location-map {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #e7e9e5;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 90px 0 28px;
  background: #05070a;
  color: var(--white);
}

.footer-glow {
  position: absolute;
  top: -220px;
  left: 58%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(50, 215, 244, 0.1);
  filter: blur(80px);
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  gap: 70px;
  padding-bottom: 80px;
}

.footer-brand img {
  width: 320px;
  margin-left: -12px;
}

.footer-brand p {
  max-width: 340px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.6;
}

.footer-cta p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-cta a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-family: var(--display);
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.footer-cta a:hover {
  color: var(--lime);
}

.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.68rem;
}

.footer-bottom nav {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  z-index: 15;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px 9px 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  background: rgba(7, 9, 13, 0.9);
  color: var(--white);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float > img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 10px;
  object-fit: contain;
}

.whatsapp-float small {
  padding-right: 3px;
  font-size: 0.7rem;
  font-weight: 800;
}

.product-dialog {
  width: min(1120px, calc(100vw - 40px));
  max-width: none;
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: var(--paper-bright);
  box-shadow: 0 50px 160px rgba(0, 0, 0, 0.42);
}

.dialog-content {
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.product-dialog::backdrop {
  background: rgba(4, 6, 9, 0.82);
  backdrop-filter: blur(10px);
}

.product-dialog[open] {
  animation: dialog-in 280ms ease both;
}

@keyframes dialog-in {
  from {
    transform: translateY(24px) scale(0.98);
    opacity: 0;
  }
}

.dialog-close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(7, 9, 13, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.dialog-close span {
  position: absolute;
  top: 21px;
  left: 13px;
  width: 18px;
  height: 1px;
  transform: rotate(45deg);
  background: var(--ink);
}

.dialog-close span:last-child {
  transform: rotate(-45deg);
}

.dialog-grid {
  display: grid;
  min-height: min(650px, calc(100vh - 40px));
  grid-template-columns: 1.05fr 0.95fr;
}

.detail-media {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  padding: 58px 44px 92px;
  background:
    radial-gradient(circle at 50% 44%, #fff 0, #f8f8f5 52%, #ecece7 100%);
}

.detail-media img {
  object-fit: contain;
}

.detail-media > .detail-main-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 500px;
  transition: opacity 180ms ease;
}

.detail-index {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 8px 12px;
  border-radius: 100px;
  background: rgba(7, 9, 13, 0.8);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.detail-thumbnails {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  max-width: calc(100% - 150px);
  gap: 8px;
  overflow-x: auto;
  padding: 5px;
  border-radius: 14px;
  background: rgba(7, 9, 13, 0.68);
  backdrop-filter: blur(12px);
  scrollbar-width: none;
}

.detail-thumbnails::-webkit-scrollbar {
  display: none;
}

.detail-thumb {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #171b20;
  cursor: pointer;
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.detail-thumb.is-active {
  border-color: var(--lime);
}

.detail-thumb:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}

.detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(34px, 5vw, 70px) 54px;
}

.detail-breadcrumb {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-copy h2 {
  margin: 0;
  font-family: var(--display);
  overflow-wrap: anywhere;
  font-size: clamp(2.35rem, 3.55vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.detail-description {
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.detail-specs {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f4f4ef;
}

.detail-specs h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.detail-specs dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
}

.detail-specs div {
  min-width: 0;
}

.detail-specs dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-specs dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

.detail-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 34px 0 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-price-row .product-price {
  font-size: 2rem;
}

.stock-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
}

.stock-status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(69, 214, 110, 0.13);
  content: "";
}

.stock-status.out::before {
  background: var(--danger);
  box-shadow: 0 0 0 5px rgba(219, 105, 95, 0.12);
}

.detail-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.detail-benefits span {
  padding: 12px 8px;
  border-radius: 10px;
  background: #ededE7;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 750;
  text-align: center;
}

.detail-contact {
  width: 100%;
  min-height: 58px;
}

.detail-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.detail-share {
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
}

.detail-share:hover {
  border-color: var(--ink);
  background: var(--paper);
}

.detail-code {
  margin: 14px 0 0;
  color: #9a9fa4;
  font-size: 0.65rem;
  text-align: center;
}

.dialog-loading {
  display: grid;
  min-height: 620px;
  place-items: center;
  color: var(--muted);
}

.dialog-loader {
  width: 40px;
  height: 40px;
  margin: 0 auto 15px;
  border: 3px solid rgba(7, 9, 13, 0.13);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.toast {
  position: fixed;
  z-index: 100;
  bottom: 28px;
  left: 50%;
  max-width: calc(100vw - 40px);
  padding: 13px 18px;
  transform: translate(-50%, 30px);
  border-radius: 100px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.22);
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

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

@media (max-width: 1020px) {
  :root {
    --shell: min(100% - 40px, 900px);
  }

  .header-shell {
    grid-template-columns: 248px 1fr auto;
    gap: 16px;
  }

  .main-nav {
    display: none;
  }

  .brand {
    width: 232px;
  }

  .hero-copy {
    width: 72%;
  }

  .hero h1 {
    font-size: clamp(4rem, 8.5vw, 6.5rem);
  }

  .hero-feature {
    width: 280px;
  }

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

  .price-filter {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .location-summary {
    grid-template-columns: minmax(230px, 0.42fr) minmax(0, 0.58fr);
  }

  .solutions-shell,
  .brand-story-shell {
    gap: 60px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 30px);
  }

  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    background: rgba(7, 9, 13, 0.58);
    backdrop-filter: blur(14px);
  }

  .header-shell {
    grid-template-columns: 1fr auto;
    min-height: 82px;
  }

  .brand {
    width: 192px;
  }

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

  .header-contact {
    width: 42px;
    height: 42px;
    justify-content: center;
    border-radius: 50%;
    background: var(--lime);
  }

  .header-contact > span:last-child {
    display: none;
  }

  .contact-pulse {
    width: 9px;
    height: 9px;
    background: var(--ink);
    box-shadow: none;
  }

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

  .hero,
  .hero-shell {
    min-height: 780px;
  }

  .hero-image {
    inset: 0;
    background-position: 58% center;
    opacity: 0.52;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 9, 13, 0.3), var(--ink) 82%),
      linear-gradient(90deg, rgba(7, 9, 13, 0.9), rgba(7, 9, 13, 0.12));
  }

  .hero-shell {
    align-items: flex-start;
    padding-top: 128px;
  }

  .hero-copy {
    width: 100%;
    padding: 42px 0 220px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .hero-logo-title {
    width: min(390px, 100%);
  }

  .hero-lead {
    max-width: 92%;
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    right: 0;
    bottom: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hero-proof div {
    padding-right: 8px;
  }

  .hero-proof strong {
    font-size: 1rem;
  }

  .hero-proof span {
    font-size: 0.58rem;
    line-height: 1.35;
  }

  .hero-feature {
    display: none;
  }

  .catalog-section,
  .solutions,
  .brand-story,
  .locations {
    padding: 86px 0;
  }

  .section-intro,
  .solutions-shell,
  .brand-story-shell,
  .locations-intro,
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-intro h2,
  .solutions-copy h2,
  .brand-story h2,
  .locations-intro h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .locations-intro {
    margin-bottom: 38px;
  }

  .location-summary {
    height: 485px;
    grid-template-columns: 1fr;
    grid-template-rows: 245px 240px;
  }

  .location-photo {
    height: auto;
  }

  .location-photo-tall img {
    object-position: center 71%;
  }

  .location-copy {
    height: 240px;
    min-height: 0;
    padding: 30px 24px;
  }

  .location-map {
    height: 100%;
  }

  .location-card {
    grid-template-rows: 485px 310px;
  }

  .section-intro > p {
    font-size: 0.92rem;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .sort-field {
    min-height: 54px;
  }

  .catalog-filters {
    display: grid;
  }

  .technical-filters {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .technical-filter-heading {
    margin-bottom: 5px;
  }

  .category-list {
    flex-wrap: nowrap;
    width: calc(100vw - 15px);
    padding-right: 15px;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

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

  .catalog-count {
    order: -1;
  }

  .price-filter {
    padding: 22px 18px;
  }

  .price-filter-controls {
    grid-template-columns: 1fr;
  }

  .price-fields {
    display: grid;
    grid-template-columns: 1fr 18px 1fr;
    align-items: end;
  }

  .price-input {
    width: 100%;
  }

  .price-apply,
  .price-clear {
    grid-column: 1 / -1;
  }

  .price-presets {
    justify-content: flex-start;
  }

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

  .product-image-button {
    aspect-ratio: 1;
  }

  .skeleton-card {
    min-height: 420px;
  }

  .solutions-shell {
    gap: 64px;
  }

  .solutions-visual {
    width: 88%;
  }

  .visual-note {
    right: -13%;
    bottom: 28px;
    width: 180px;
  }

  .solutions-copy h2 {
    font-size: clamp(3rem, 13vw, 4.3rem);
  }

  .brand-story-shell {
    gap: 40px;
  }

  .story-contacts {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .story-contacts span {
    display: none;
  }

  .site-footer {
    padding-top: 70px;
  }

  .footer-main {
    padding-bottom: 55px;
  }

  .footer-brand img {
    width: 260px;
  }

  .footer-cta a {
    font-size: clamp(2.2rem, 12vw, 3.7rem);
  }

  .footer-cta .arrow {
    display: none;
  }

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

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float small {
    display: none;
  }

  .product-dialog {
    width: 100vw;
    height: 100dvh;
    max-height: none;
    margin: 0;
    border-radius: 0;
  }

  .dialog-content {
    height: 100%;
    overflow-y: auto;
  }

  .dialog-grid {
    display: block;
  }

  .detail-media {
    min-height: 46vh;
    padding: 58px 28px 84px;
  }

  .detail-media > .detail-main-image {
    max-height: 42vh;
  }

  .detail-thumbnails {
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 124px);
  }

  .detail-thumb {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .detail-thumb img {
    min-height: 0;
  }

  .detail-copy {
    padding: 40px 22px 44px;
  }

  .detail-copy h2 {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }

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

  .detail-specs dl,
  .detail-actions {
    grid-template-columns: 1fr;
  }

  .detail-benefits span {
    text-align: left;
  }

  .catalog-pagination {
    width: 100%;
  }

  .pagination-nav {
    min-width: 44px;
    padding: 0;
    font-size: 0;
  }

  .pagination-ellipsis {
    display: none;
  }
}

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