@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-variable-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("../fonts/roboto-condensed-variable-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --blue-950: #032847;
  --blue-900: #063d75;
  --blue-800: #07549a;
  --blue-100: #e8f1fa;
  --red-600: #f52b10;
  --red-700: #d91f08;
  --ink: #122337;
  --muted: #607086;
  --line: #dfe7ef;
  --surface: #f5f8fb;
  --white: #fff;
  --shadow: 0 18px 55px rgb(3 40 71 / 0.14);
  --radius: 18px;
  --shell: min(1380px, calc(100% - 40px));
  --font-body: "Roboto", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Roboto Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

body,
button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.topbar {
  color: var(--white);
  background: var(--blue-900);
  font-size: 0.82rem;
}

.topbar__inner,
.topbar__links,
.header__inner,
.hero__actions,
.hero__benefits,
.catalog__meta {
  display: flex;
  align-items: center;
}

.topbar__inner {
  min-height: 34px;
  justify-content: space-between;
  gap: 20px;
}

.topbar__links {
  gap: 22px;
}

.topbar a:hover,
.topbar a:focus-visible {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgb(255 255 255 / 0.96);
  border-bottom: 1px solid rgb(3 40 71 / 0.08);
  backdrop-filter: blur(14px);
}

.header__inner {
  min-height: 76px;
  gap: 42px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.quote-list-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  color: var(--blue-900);
  background: var(--blue-100);
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 850;
  transition: background 180ms ease, transform 180ms ease;
}

.quote-list-button:hover,
.quote-list-button:focus-visible {
  background: #d8e8f7;
  transform: translateY(-1px);
}

.quote-count {
  display: grid;
  min-width: 22px;
  height: 22px;
  padding-inline: 5px;
  place-items: center;
  color: var(--white);
  background: var(--red-600);
  border-radius: 999px;
  font-size: 0.7rem;
}

.brand {
  flex: 0 0 auto;
}

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

.commerce-header {
  position: relative;
  top: auto;
  backdrop-filter: none;
}

.commerce-header__main {
  display: grid;
  grid-template-columns: auto auto minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  min-height: 88px;
}

.commerce-header .brand img {
  width: 220px;
  height: 72px;
}

.catalog-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding-inline: 18px;
  color: var(--white);
  background: var(--red-600);
  border-radius: 5px;
  font-weight: 850;
}

.header-search {
  display: grid;
  grid-template-columns: 1fr 54px;
  height: 48px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #b7c6d4;
  border-radius: 4px;
}

.header-search:focus-within {
  border-color: var(--blue-800);
  box-shadow: 0 0 0 3px rgb(7 84 154 / 0.12);
}

.header-search input {
  min-width: 0;
  padding: 0 16px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.header-search button {
  color: var(--white);
  background: var(--blue-900);
  border: 0;
  cursor: pointer;
  font-size: 1.5rem;
}

.header-location {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-inline: 8px;
  color: var(--blue-950);
  border-right: 1px solid var(--line);
}

.header-location > span:first-child {
  color: var(--blue-800);
  font-size: 1.65rem;
}

.header-location > span:last-child {
  display: grid;
}

.header-location small {
  color: var(--muted);
  font-size: 0.68rem;
}

.header-location strong {
  font-size: 0.78rem;
}

.category-rail {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  padding-block: 10px 13px;
}

.category-rail a {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--blue-950);
  font-size: 0.77rem;
  text-align: center;
}

.category-rail a > span {
  display: grid;
  width: 70px;
  height: 70px;
  padding: 8px;
  overflow: hidden;
  place-items: center;
  background: var(--surface);
  border: 1px solid #d5e0e9;
  border-radius: 50%;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.category-rail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-rail a:hover > span,
.category-rail a:focus-visible > span {
  border-color: var(--red-600);
  box-shadow: 0 7px 18px rgb(3 40 71 / 0.12);
  transform: translateY(-2px);
}

.storefront-hero {
  padding: 0 0 18px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.storefront-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  min-height: 440px;
  background: var(--white);
  box-shadow: 0 12px 36px rgb(3 40 71 / 0.1);
}

.main-promo {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 40%, #1469a7, transparent 35%),
    linear-gradient(115deg, var(--blue-950), var(--blue-800));
}

.main-promo::after {
  position: absolute;
  z-index: 1;
  inset: 0 42% 0 35%;
  content: "";
  background: linear-gradient(90deg, var(--blue-900), transparent);
  pointer-events: none;
}

.main-promo #hero-canvas {
  z-index: 1;
  opacity: 0.18;
  pointer-events: none;
  mix-blend-mode: screen;
}

.main-promo > img {
  width: 58%;
  height: 440px;
  margin-left: auto;
  object-fit: cover;
  object-position: center 46%;
}

.main-promo__copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 42px;
  width: min(48%, 560px);
  color: var(--white);
  transform: translateY(-50%);
}

.main-promo__copy > p {
  margin: 0 0 9px;
  color: #bfdaed;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-promo__copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  letter-spacing: -0.05em;
  line-height: 0.93;
}

.main-promo__copy h1 span {
  display: block;
  color: #ff442b;
}

.main-promo__copy > strong {
  display: block;
  max-width: 450px;
  margin: 17px 0 21px;
  color: #d7e7f2;
  font-size: 0.95rem;
  font-weight: 600;
}

.main-promo__copy .button {
  min-width: 174px;
  box-shadow: 0 12px 28px rgb(0 0 0 / 0.2);
}

.hero-service-list {
  display: grid;
  padding: 26px 22px;
  align-content: center;
  background: var(--white);
}

.hero-service-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
}

.hero-service-list > div:last-child {
  border-bottom: 0;
}

.hero-service-list > div > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--red-600);
  background: #fff1ee;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 900;
}

.hero-service-list p,
.hero-service-list strong {
  display: block;
}

.hero-service-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-service-list strong {
  color: var(--blue-900);
  font-size: 0.9rem;
}

.home-promos {
  padding: 0 0 18px;
  background: var(--surface);
}

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

.home-promo-card {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--blue-900);
  border-radius: 5px;
}

.home-promo-card::after {
  position: absolute;
  inset: 40% 0 0;
  content: "";
  background: linear-gradient(transparent, rgb(3 40 71 / 0.86));
}

.home-promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.home-promo-card:nth-child(3) img {
  object-position: center 35%;
}

.home-promo-card:hover img,
.home-promo-card:focus-visible img {
  transform: scale(1.035);
}

.home-promo-card > span {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  color: var(--white);
  background: var(--red-600);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 850;
}

.catalog.home-catalog {
  padding: 20px 0 28px;
  background: var(--white);
}

.commerce-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
}

.commerce-section-title h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--blue-950);
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: 0;
  line-height: 1.2;
}

.home-catalog .commerce-section-title h2 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: 0;
  line-height: 1.2;
}

.commerce-section-title h2 > span {
  width: 8px;
  height: 22px;
  background: var(--red-600);
  border-radius: 2px;
}

.commerce-section-title a {
  color: var(--blue-800);
  font-size: 0.78rem;
  font-weight: 800;
}

.commerce-section-title--compact {
  min-height: 42px;
}

.home-catalog__notice {
  margin: 10px 0 13px;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: right;
}

.product-grid--featured {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
}

.product-grid--featured .product-card {
  border-radius: 5px;
}

.product-grid--featured .product-card__image {
  min-height: 160px;
  padding: 16px;
}

.product-grid--featured .product-card__image img {
  height: 130px;
}

.product-grid--featured .product-card__body {
  padding: 13px;
}

.product-grid--featured .product-card h3 {
  min-height: 42px;
  font-size: 0.78rem;
}

.product-grid--featured .product-card__price {
  margin-top: 9px;
  font-size: 1.05rem;
}

.product-grid--featured .product-card__category,
.product-grid--featured .product-card__note {
  display: none;
}

.benefit-strip {
  padding: 0 0 16px;
  background: var(--white);
}

.benefit-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: #f3f7fb;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.benefit-strip__grid > div,
.benefit-strip__grid > a {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 9px;
  min-height: 70px;
  padding: 10px 14px;
  border-right: 1px solid var(--line);
}

.benefit-strip__grid > :last-child {
  color: var(--white);
  background: var(--blue-800);
  border-right: 0;
}

.benefit-strip__grid > :last-child p {
  color: #dcecf7;
}

.benefit-strip__grid > :last-child strong {
  color: var(--white);
}

.benefit-strip__grid > * > span {
  color: var(--blue-800);
  font-size: 1.45rem;
  font-weight: 900;
  text-align: center;
}

.benefit-strip__grid > :last-child > span {
  color: #41d875;
}

.benefit-strip__grid p,
.benefit-strip__grid strong {
  display: block;
}

.benefit-strip__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.3;
}

.benefit-strip__grid strong {
  margin-bottom: 3px;
  color: var(--blue-900);
  font-size: 0.76rem;
}

.brand-strip {
  padding: 0 0 22px;
  background: var(--white);
}

.brand-strip__list {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  padding-top: 14px;
}

.brand-strip__list strong {
  display: grid;
  min-height: 46px;
  padding: 8px;
  place-items: center;
  color: var(--blue-900);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.9rem;
  font-style: italic;
  text-transform: uppercase;
}

.brand-strip__list strong:nth-child(1),
.brand-strip__list strong:nth-child(9) {
  color: var(--red-600);
}

.catalog-page-intro {
  padding: 28px 0 32px;
  color: var(--white);
  background:
    linear-gradient(100deg, rgb(3 40 71 / 0.97), rgb(6 61 117 / 0.86)),
    url("../media/storefront.jpg") center / cover;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  color: #c9deee;
  font-size: 0.76rem;
}

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

.catalog-page-intro__row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 30px;
}

.catalog-page-intro h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.catalog-page-intro__row > p {
  max-width: 460px;
  margin: 0;
  color: #c7dced;
}

.catalog-page {
  padding-top: 28px;
}

.catalog__tools--page {
  margin-top: 0;
}

.catalog-help {
  padding: 0 0 70px;
  background: var(--white);
}

.catalog-help__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 32px;
  color: var(--white);
  background: var(--blue-900);
  border-radius: 14px;
}

.catalog-help__inner div {
  display: grid;
  gap: 4px;
}

.catalog-help__inner strong {
  font-size: 1.25rem;
}

.catalog-help__inner span {
  color: #c9deee;
  font-size: 0.86rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: auto;
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding-block: 8px;
}

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

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

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 17px;
  color: var(--white);
  background: var(--blue-900);
  border-radius: 11px;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgb(3 40 71 / 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.header-whatsapp:hover,
.header-whatsapp:focus-visible {
  background: var(--blue-800);
  transform: translateY(-2px);
}

.whatsapp-dot {
  width: 9px;
  height: 9px;
  background: #35d366;
  border: 2px solid rgb(255 255 255 / 0.7);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgb(53 211 102 / 0.14);
}

.hero {
  position: relative;
  min-height: 518px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgb(20 110 181 / 0.75), transparent 38%),
    linear-gradient(118deg, var(--blue-950), var(--blue-900) 58%, #0b5a99);
  isolation: isolate;
}

#hero-canvas,
.hero__mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#hero-canvas {
  z-index: -1;
  opacity: 0.75;
}

.hero__mesh {
  z-index: -2;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, #000 48%, #000);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 64px;
  min-height: 518px;
  padding-block: 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #bcd7ef;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.hero h1,
.catalog h2,
.section-heading h2,
.story h2,
.video-section h2,
.payment-section h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(2.85rem, 6vw, 5.6rem);
}

.hero h1 span {
  display: block;
  color: #ff4a2c;
}

.hero__lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: #dbe9f5;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero__actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border 180ms ease;
}

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

.button--red {
  color: var(--white);
  background: var(--red-600);
  box-shadow: 0 12px 28px rgb(245 43 16 / 0.28);
}

.button--red:hover,
.button--red:focus-visible {
  background: var(--red-700);
}

.button--ghost {
  color: var(--white);
  border-color: rgb(255 255 255 / 0.4);
  background: rgb(255 255 255 / 0.06);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgb(255 255 255 / 0.13);
  border-color: rgb(255 255 255 / 0.72);
}

.button--blue {
  color: var(--white);
  background: var(--blue-900);
}

.button--blue:hover,
.button--blue:focus-visible {
  background: var(--blue-800);
}

.button--whatsapp {
  width: 100%;
  color: var(--white);
  background: #1da851;
}

.hero__benefits {
  gap: 0;
  padding: 0;
  margin: 35px 0 0;
  list-style: none;
}

.hero__benefits li {
  display: grid;
  gap: 1px;
  padding: 0 20px;
  border-left: 1px solid rgb(255 255 255 / 0.22);
}

.hero__benefits li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero__benefits strong {
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero__benefits span {
  color: #afcbe2;
  font-size: 0.72rem;
}

.hero__visual {
  position: relative;
  min-width: 0;
}

.hero__photo-wrap {
  position: relative;
  overflow: hidden;
  border: 8px solid rgb(255 255 255 / 0.11);
  border-radius: 24px 4px 24px 4px;
  box-shadow: 0 34px 70px rgb(0 16 31 / 0.36);
  transform: rotate(1.4deg);
}

.hero__photo-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgb(3 40 71 / 0.88));
  pointer-events: none;
}

.hero__photo-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero__photo-label {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.hero__photo-label span {
  color: #bcd7ef;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__photo-label strong {
  text-align: right;
}

.hero__stamp {
  position: absolute;
  top: -28px;
  right: -22px;
  display: grid;
  width: 104px;
  height: 104px;
  place-content: center;
  color: var(--blue-950);
  text-align: center;
  background: var(--white);
  border: 5px solid var(--red-600);
  border-radius: 50%;
  box-shadow: var(--shadow);
  transform: rotate(8deg);
}

.hero__stamp span {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.catalog {
  padding: 74px 0 96px;
  background: linear-gradient(180deg, var(--surface), #fff 240px);
}

.catalog__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.catalog h2 {
  max-width: 670px;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.catalog__notice {
  max-width: 330px;
  padding-left: 18px;
  margin: 0 0 4px;
  color: var(--muted);
  border-left: 3px solid var(--red-600);
  font-size: 0.87rem;
}

.catalog__tools {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) 1.7fr;
  gap: 16px;
  padding: 18px;
  margin-top: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgb(3 40 71 / 0.07);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 11px;
  transition: border 180ms ease, background 180ms ease;
}

.search-box:focus-within {
  background: var(--white);
  border-color: var(--blue-800);
}

.search-box svg {
  width: 20px;
  fill: none;
  stroke: var(--blue-900);
  stroke-linecap: round;
  stroke-width: 2;
}

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

.category-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding-bottom: 3px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.category-chip {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  color: var(--blue-900);
  background: var(--blue-100);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

.category-chip[aria-pressed="true"] {
  color: var(--white);
  background: var(--blue-900);
}

.catalog__meta {
  justify-content: space-between;
  gap: 20px;
  margin: 22px 0 14px;
  color: var(--muted);
  font-size: 0.82rem;
}

.catalog__meta p {
  margin: 0;
  color: var(--ink);
}

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

.product-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  flex-direction: column;
  transition: transform 180ms ease, border 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  border-color: #bfd1e3;
  box-shadow: 0 15px 38px rgb(3 40 71 / 0.12);
  transform: translateY(-4px);
}

.product-card__image {
  position: relative;
  display: grid;
  min-height: 210px;
  padding: 22px;
  place-items: center;
  background:
    linear-gradient(135deg, rgb(232 241 250 / 0.75), transparent 70%),
    var(--surface);
  border: 0;
  cursor: pointer;
}

.product-card__image img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  transition: transform 220ms ease;
}

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

.product-card__category {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  padding: 5px 8px;
  overflow: hidden;
  color: var(--blue-900);
  background: rgb(255 255 255 / 0.92);
  border: 1px solid rgb(6 61 117 / 0.1);
  border-radius: 7px;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.product-card__brand {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 45px;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  color: var(--blue-950);
  font-size: 0.92rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card__view {
  padding: 0;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.product-card__price {
  margin: 16px 0 2px;
  color: var(--red-600);
  font-family: var(--font-display);
  font-size: 1.24rem;
}

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

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 15px;
}

.product-card__quote,
.product-card__add {
  min-height: 42px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
}

.product-card__quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--white);
  background: var(--red-600);
  border: 1px solid var(--red-600);
}

.product-card__quote:hover,
.product-card__quote:focus-visible {
  background: var(--red-700);
}

.product-card__add {
  width: 42px;
  color: var(--blue-900);
  background: var(--blue-100);
  border: 1px solid var(--blue-100);
}

.product-card__add:hover,
.product-card__add:focus-visible,
.product-card__add.is-added {
  color: var(--white);
  background: var(--blue-900);
  border-color: var(--blue-900);
}

.catalog__load-more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

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

.catalog-empty {
  grid-column: 1 / -1;
  padding: 60px 24px;
  color: var(--muted);
  text-align: center;
  background: var(--white);
  border: 1px dashed #b9cada;
  border-radius: var(--radius);
}

.catalog-empty strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-950);
  font-size: 1.2rem;
}

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

.section-heading h2,
.story h2,
.video-section h2,
.payment-section h2,
.contact h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.section-heading > p {
  max-width: 410px;
  margin: 0;
  color: #bcd7ef;
}

.promotions {
  padding: 88px 0;
  color: var(--white);
  background: var(--blue-950);
}

.promotion-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, 300px);
  gap: 16px;
}

.promotion-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #062f55;
  border-radius: 18px;
}

.promotion-card--wide {
  grid-row: 1 / 3;
}

.promotion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.promotion-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 28%, rgb(3 28 50 / 0.92));
}

.promotion-card__overlay {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 24px;
  left: 26px;
}

.promotion-card__overlay span {
  color: #a9cde9;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promotion-card__overlay h3 {
  max-width: 520px;
  margin: 7px 0 14px;
  font-size: clamp(1.25rem, 2.4vw, 2.5rem);
  line-height: 1.05;
}

.promotion-card__overlay a {
  display: inline-flex;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--red-600);
  font-size: 0.82rem;
  font-weight: 900;
}

.story {
  padding: 104px 0;
  overflow: hidden;
}

.story__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 80px;
}

.story__collage {
  position: relative;
  min-height: 530px;
}

.story__photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: var(--blue-100);
  border: 8px solid var(--white);
  box-shadow: var(--shadow);
}

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

.story__photo--main {
  inset: 0 90px 60px 0;
  border-radius: 24px 5px 24px 5px;
}

.story__photo--small {
  right: 0;
  bottom: 0;
  width: 235px;
  height: 235px;
  border-radius: 50%;
}

.story__badge {
  position: absolute;
  top: -22px;
  left: -20px;
  display: grid;
  width: 120px;
  height: 120px;
  place-content: center;
  color: var(--white);
  text-align: center;
  background: var(--red-600);
  border: 6px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 14px 35px rgb(245 43 16 / 0.25);
  transform: rotate(-8deg);
}

.story__badge strong,
.story__badge span {
  display: block;
}

.story__badge span {
  max-width: 90px;
  font-size: 0.66rem;
}

.story__copy > p:not(.eyebrow) {
  margin: 24px 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.story__features {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.story__features div {
  display: grid;
  gap: 3px;
  padding-left: 18px;
  border-left: 3px solid var(--red-600);
}

.story__features strong {
  color: var(--blue-950);
}

.story__features span {
  color: var(--muted);
  font-size: 0.86rem;
}

.video-section {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, #0b66a8, transparent 44%),
    var(--blue-900);
}

.video-section__grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  gap: 80px;
  padding-block: 76px;
}

.video-section__copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 28px;
  color: #c7dced;
}

.video-frame {
  max-width: 390px;
  padding: 10px;
  margin-inline: auto;
  background: rgb(255 255 255 / 0.12);
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgb(0 18 35 / 0.38);
}

.video-frame video {
  display: block;
  width: 100%;
  max-height: 610px;
  background: #00101f;
  border-radius: 19px;
}

.payment-section {
  padding: 88px 0;
  background: var(--surface);
}

.payment-section__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.payment-section p:not(.eyebrow) {
  margin: 20px 0;
  color: var(--muted);
}

.payment-section img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  color: var(--red-600);
  font-weight: 900;
}

.contact {
  padding: 88px 0;
  color: var(--white);
  background: var(--blue-950);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 80px;
}

.contact__intro > p:not(.eyebrow) {
  max-width: 480px;
  margin: 22px 0 28px;
  color: #bdd3e5;
}

.contact__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  font-style: normal;
}

.contact__details a {
  display: grid;
  min-height: 118px;
  padding: 20px;
  align-content: center;
  background: rgb(255 255 255 / 0.07);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 13px;
  transition: background 180ms ease, transform 180ms ease;
}

.contact__details a:hover,
.contact__details a:focus-visible {
  background: rgb(255 255 255 / 0.12);
  transform: translateY(-2px);
}

.contact__details span {
  margin-bottom: 7px;
  color: #8fb8d8;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact__details strong {
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.site-footer {
  padding: 52px 0 20px;
  color: #b6ccdd;
  background: #021c32;
  border-top: 1px solid rgb(255 255 255 / 0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 0.7fr 0.8fr;
  gap: 60px;
}

.footer__brand img {
  width: 168px;
  height: 82px;
  padding: 6px;
  object-fit: contain;
  background: var(--white);
  border-radius: 10px;
}

.footer__brand p {
  max-width: 380px;
  margin: 16px 0 0;
  font-size: 0.85rem;
}

.footer__grid > div:not(.footer__brand) {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer__grid strong {
  margin-bottom: 6px;
  color: var(--white);
}

.footer__grid a {
  font-size: 0.82rem;
}

.footer__grid a:hover,
.footer__grid a:focus-visible {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  margin-top: 42px;
  border-top: 1px solid rgb(255 255 255 / 0.08);
  font-size: 0.72rem;
}

.footer__bottom p {
  margin: 0;
}

.quote-backdrop {
  position: fixed;
  z-index: 80;
  inset: 0;
  background: rgb(0 18 34 / 0.62);
  backdrop-filter: blur(3px);
}

.quote-drawer {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  display: grid;
  width: min(440px, 100%);
  height: 100dvh;
  background: var(--white);
  box-shadow: -20px 0 70px rgb(0 15 29 / 0.28);
  grid-template-rows: auto 1fr auto;
  transform: translateX(105%);
  transition: transform 240ms ease;
}

body.quote-open {
  overflow: hidden;
}

body.quote-open .quote-drawer {
  transform: translateX(0);
}

.quote-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.quote-drawer__header span {
  color: var(--red-600);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-drawer__header h2 {
  margin: 2px 0 0;
  color: var(--blue-950);
  font-size: 1.55rem;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  padding: 0 0 4px;
  place-items: center;
  color: var(--blue-950);
  background: var(--blue-100);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
}

.quote-drawer__body {
  padding: 14px 20px;
  overflow-y: auto;
}

.quote-empty {
  display: grid;
  height: 100%;
  min-height: 260px;
  padding: 30px;
  place-content: center;
  color: var(--muted);
  text-align: center;
}

.quote-empty strong {
  margin-bottom: 6px;
  color: var(--blue-950);
  font-size: 1.15rem;
}

.quote-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.quote-item img {
  width: 76px;
  height: 76px;
  padding: 7px;
  object-fit: contain;
  background: var(--surface);
  border-radius: 10px;
}

.quote-item h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 0.8rem;
  line-height: 1.35;
}

.quote-item__price {
  margin: 4px 0 8px;
  color: var(--red-600);
  font-size: 0.79rem;
  font-weight: 900;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quantity-control button,
.quantity-control span {
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  place-items: center;
  background: var(--white);
  border: 0;
  font-size: 0.76rem;
}

.quantity-control button {
  cursor: pointer;
}

.quote-item__remove {
  align-self: start;
  padding: 3px;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}

.quote-drawer__footer {
  padding: 20px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.quote-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.quote-total span {
  color: var(--muted);
  font-size: 0.76rem;
}

.quote-total strong {
  color: var(--blue-950);
  font-size: 1.3rem;
}

.quote-drawer__footer p {
  margin: 9px 0 15px;
  color: var(--muted);
  font-size: 0.67rem;
}

.clear-quote {
  display: block;
  padding: 8px;
  margin: 6px auto 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.72rem;
  text-decoration: underline;
}

.product-dialog {
  width: min(920px, calc(100% - 28px));
  max-height: min(760px, calc(100dvh - 28px));
  padding: 0;
  overflow: visible;
  background: var(--white);
  border: 0;
  border-radius: 22px;
  box-shadow: 0 30px 100px rgb(0 18 34 / 0.4);
}

.product-dialog::backdrop {
  background: rgb(0 18 34 / 0.68);
  backdrop-filter: blur(4px);
}

.product-dialog__close {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
}

.product-dialog__content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  max-height: min(760px, calc(100dvh - 28px));
  overflow: hidden;
  border-radius: inherit;
}

.product-detail__image {
  display: grid;
  min-height: 500px;
  padding: 46px;
  place-items: center;
  background:
    linear-gradient(140deg, rgb(232 241 250 / 0.9), transparent 70%),
    var(--surface);
}

.product-detail__image img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.product-detail__copy {
  padding: 48px 42px 38px;
  overflow-y: auto;
}

.product-detail__category {
  margin: 0 0 9px;
  color: var(--red-600);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail__copy h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 1.05;
}

.product-detail__meta {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.product-detail__price {
  margin: 22px 0 2px;
  color: var(--red-600);
  font-family: var(--font-display);
  font-size: 1.75rem;
}

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

.product-detail__description {
  margin: 22px 0;
  color: #415166;
  white-space: pre-line;
  font-size: 0.88rem;
}

.product-detail__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.product-detail__add {
  color: var(--blue-900);
  background: var(--blue-100);
  border-color: var(--blue-100);
  cursor: pointer;
}

.toast {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 92px;
  max-width: min(360px, calc(100% - 32px));
  padding: 12px 17px;
  color: var(--white);
  background: var(--blue-950);
  border-radius: 10px;
  box-shadow: 0 14px 40px rgb(0 15 29 / 0.28);
  font-size: 0.82rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: #1fbd59;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgb(0 0 0 / 0.2);
  place-items: center;
  transition: transform 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: scale(1.06);
}

.floating-whatsapp svg {
  width: 30px;
  fill: currentColor;
}

:focus-visible {
  outline: 3px solid #ffc334;
  outline-offset: 3px;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 32px, 760px);
  }

  .main-nav {
    display: none;
  }

  .commerce-header__main {
    grid-template-columns: auto auto minmax(220px, 1fr) auto;
    gap: 10px;
  }

  .commerce-header .brand img {
    width: 170px;
  }

  .header-location {
    display: none;
  }

  .category-rail {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .category-rail a {
    flex: 0 0 92px;
  }

  .storefront-hero__grid {
    grid-template-columns: minmax(0, 1fr) 210px;
  }

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

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

  .benefit-strip__grid > div,
  .benefit-strip__grid > a {
    border-bottom: 1px solid var(--line);
  }

  .brand-strip__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .header__actions {
    margin-left: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 46px 60px;
  }

  .hero__copy {
    max-width: 720px;
  }

  .hero__visual {
    max-width: 680px;
  }

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

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

  .story__grid,
  .video-section__grid,
  .payment-section__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .story__copy {
    order: -1;
  }

  .video-section__copy {
    max-width: 680px;
  }

  .contact__details {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__inner > span,
  .topbar__links a:first-child {
    display: none;
  }

  .header__inner {
    min-height: 68px;
    gap: 12px;
  }

  .commerce-header__main {
    grid-template-columns: auto 1fr auto;
    padding-block: 8px 10px;
  }

  .commerce-header .brand img {
    width: 142px;
    height: 56px;
  }

  .catalog-menu-button {
    min-height: 40px;
    padding-inline: 11px;
    font-size: 0.74rem;
  }

  .header-search {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 44px;
  }

  .commerce-header .header__actions {
    margin-left: 0;
  }

  .category-rail {
    gap: 12px;
    padding-top: 8px;
  }

  .category-rail a {
    flex-basis: 78px;
    font-size: 0.68rem;
  }

  .category-rail a > span {
    width: 60px;
    height: 60px;
  }

  .storefront-hero__grid {
    grid-template-columns: 1fr;
  }

  .main-promo > img {
    width: 100%;
    height: min(92vw, 500px);
    margin: 0;
    opacity: 0.36;
  }

  .main-promo::after {
    inset: 0;
    background: linear-gradient(90deg, rgb(3 40 71 / 0.98), rgb(3 40 71 / 0.48));
  }

  .main-promo__copy {
    left: 24px;
    width: calc(100% - 48px);
  }

  .main-promo__copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .hero-service-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px 14px;
  }

  .hero-service-list > div {
    min-height: 76px;
    padding: 8px;
    border-right: 1px solid var(--line);
  }

  .home-promos__grid {
    grid-template-columns: 1fr;
  }

  .home-promo-card {
    height: 300px;
  }

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

  .benefit-strip__grid {
    grid-template-columns: 1fr;
  }

  .benefit-strip__grid > div,
  .benefit-strip__grid > a {
    border-right: 0;
  }

  .brand-strip__list {
    display: flex;
    overflow-x: auto;
  }

  .brand-strip__list strong {
    flex: 0 0 130px;
  }

  .catalog-page-intro__row {
    display: grid;
    gap: 18px;
    margin-top: 24px;
  }

  .catalog-help__inner {
    display: grid;
    padding: 24px;
  }

  .brand img {
    width: 124px;
    height: 54px;
  }

  .header-whatsapp {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .quote-list-button {
    min-height: 40px;
    padding: 0 9px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 0;
  }

  #hero-canvas {
    display: none;
  }

  .hero__grid {
    min-height: 0;
    padding-top: 38px;
  }

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

  .hero__benefits {
    align-items: stretch;
  }

  .hero__benefits li {
    padding: 0 11px;
  }

  .hero__benefits span {
    font-size: 0.65rem;
  }

  .hero__photo-wrap {
    border-width: 5px;
  }

  .hero__stamp {
    top: -22px;
    right: -8px;
    width: 84px;
    height: 84px;
  }

  .catalog {
    padding-block: 58px 82px;
  }

  .catalog.home-catalog {
    padding-block: 20px 30px;
  }

  .catalog__heading {
    display: grid;
  }

  .catalog__notice {
    max-width: none;
  }

  .catalog__tools {
    padding: 12px;
  }

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

  .product-card__image {
    min-height: 160px;
    padding: 16px;
  }

  .product-card__image img {
    height: 125px;
  }

  .product-card__body {
    padding: 13px;
  }

  .product-card h3 {
    min-height: 50px;
    font-size: 0.84rem;
    -webkit-line-clamp: 3;
  }

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

  .product-card__add {
    width: 38px;
  }

  .section-heading {
    display: grid;
  }

  .promotion-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 250px;
  }

  .promotion-card--wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .promotions,
  .story,
  .payment-section,
  .contact {
    padding-block: 68px;
  }

  .story__collage {
    min-height: 440px;
  }

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

  .contact__details a {
    min-height: 100px;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
  }

  .footer__bottom {
    display: grid;
  }

  .product-dialog {
    overflow: hidden;
  }

  .product-dialog__content {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .product-detail__image {
    min-height: 260px;
    padding: 30px;
  }

  .product-detail__image img {
    height: 220px;
  }

  .product-detail__copy {
    padding: 30px 24px;
    overflow: visible;
  }
}

@media (max-width: 420px) {
  .commerce-header__main {
    grid-template-columns: auto auto auto;
  }

  .catalog-menu-button {
    width: 42px;
    padding: 0;
    font-size: 0;
  }

  .catalog-menu-button span {
    font-size: 1rem;
  }

  .commerce-header .quote-list-button {
    font-size: 0;
  }

  .commerce-header .quote-list-button > span:first-child {
    font-size: 1rem;
  }

  .commerce-header .quote-count {
    font-size: 0.7rem;
  }

  .header-whatsapp {
    display: none;
  }

  .hero__actions .button {
    width: 100%;
  }

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

  .hero__benefits strong {
    font-size: 0.94rem;
  }

  .hero__photo-label {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .catalog__meta span {
    display: none;
  }

  .promotion-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 320px);
  }

  .promotion-card--wide {
    grid-column: auto;
  }

  .story__collage {
    min-height: 360px;
  }

  .story__photo--main {
    right: 52px;
    bottom: 40px;
  }

  .story__photo--small {
    width: 170px;
    height: 170px;
  }

  .story__badge {
    left: -9px;
    width: 96px;
    height: 96px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }

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

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

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