* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #232b31;
  background: #ffffff;
  font-family: "DM Sans", sans-serif;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.35;
}

p {
  color: #65717a;
  line-height: 1.72;
}

:focus-visible {
  outline: 3px solid rgba(8, 120, 190, 0.25);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(1180px, 100% - clamp(16px, 4vw, 40px));
  min-width: 0;
  margin-inline: auto;
}

.section--space {
  padding-block: 96px;
}

.section--soft {
  background: #f3f7f9;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: #0878be;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 18px;
  height: 3px;
  background: #0878be;
  content: "";
  transform: skewX(-34deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 4px 12px 4px 12px;
  font-weight: 700;
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}
.button .icon--stroke {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  aspect-ratio: 1;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button .icon--whatsapp {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  aspect-ratio: 1;
  overflow: visible;
  fill: currentColor;
  stroke: none;
}
.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  border-color: #0878be;
  color: #ffffff;
  background: #0878be;
  box-shadow: 0 12px 26px rgba(8, 120, 190, 0.2);
}
.button--primary:hover {
  border-color: #045f99;
  color: #ffffff;
  background: #045f99;
  box-shadow: 0 16px 30px rgba(8, 120, 190, 0.25);
}

.button--secondary {
  border-color: #dce3e8;
  color: #232b31;
  background: #ffffff;
  box-shadow: none;
}
.button--secondary:hover {
  border-color: rgba(8, 120, 190, 0.45);
  color: #0878be;
  background: #ffffff;
  box-shadow: none;
}

.button--light {
  border-color: #ffffff;
  color: #232b31;
  background: #ffffff;
  box-shadow: none;
}
.button--light:hover {
  border-color: #edf7fc;
  color: #232b31;
  background: #edf7fc;
  box-shadow: none;
}

.button--compact {
  min-height: 44px;
  padding-inline: 16px;
  font-size: 0.9rem;
}

.button--icon {
  display: inline-flex;
}

.header--section {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(220, 227, 232, 0.8);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header--inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.header--logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}
.header--logo > img {
  width: 178px;
  height: auto;
}

.header--nav {
  margin-left: auto;
}
.header--nav > ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header--nav a {
  position: relative;
}
.header--nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: #0878be;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}
.header--nav a:hover, .header--nav a.is-active {
  color: #0878be;
}
.header--nav a:hover::after, .header--nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header--nav a {
  display: inline-flex;
  padding-block: 28px;
  color: #4a565e;
  font-size: 0.94rem;
  font-weight: 600;
}

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

.header--menu {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  border: 1px solid #dce3e8;
  border-radius: 10px;
  background: #ffffff;
}
.header--menu > span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 10px;
  background: #232b31;
}

.mobile--menu {
  position: fixed;
  z-index: 100;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.44s;
}
.mobile--menu.is-open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.mobile--menu.is-open .mobile--menu__backdrop {
  opacity: 1;
}
.mobile--menu.is-open .mobile--menu__panel {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.mobile--menu__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  background: rgba(21, 31, 38, 0.62);
  opacity: 0;
  backdrop-filter: blur(2px);
  transition: opacity 0.34s ease;
}

.mobile--menu__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: min(86vh, 720px);
  max-height: min(86dvh, 720px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 14px 20px calc(24px + env(safe-area-inset-bottom));
  border-radius: 26px 26px 0 0;
  background: #ffffff;
  box-shadow: 0 -24px 70px rgba(18, 30, 39, 0.22);
  opacity: 0.98;
  transform: translate3d(0, 104%, 0);
  transition: transform 0.44s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  will-change: transform;
}
.mobile--menu__panel nav {
  display: grid;
  margin: 10px 0 22px;
}
.mobile--menu__panel nav a {
  position: relative;
  padding: 15px 38px 15px 4px;
  border-bottom: 1px solid #dce3e8;
  font-weight: 700;
  transition: color 0.28s ease, padding-left 0.28s ease;
}
.mobile--menu__panel nav a::after {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}
.mobile--menu__panel nav a:hover, .mobile--menu__panel nav a:focus-visible {
  padding-left: 9px;
  color: #0878be;
}
.mobile--menu__panel > .button {
  width: 100%;
}

.mobile--menu__handle {
  display: block;
  width: 42px;
  height: 4px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #d5dde2;
}

.mobile--menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
}
.mobile--menu__head > strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
}
.mobile--menu__head > button {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  background: #f3f7f9;
  transition: color 0.28s ease, background-color 0.28s ease, transform 0.28s ease;
}
.mobile--menu__head > button::before, .mobile--menu__head > button::after {
  position: absolute;
  width: 17px;
  height: 2px;
  background: currentColor;
  content: "";
}
.mobile--menu__head > button::before {
  transform: rotate(45deg);
}
.mobile--menu__head > button::after {
  transform: rotate(-45deg);
}
.mobile--menu__head > button:hover {
  color: #ffffff;
  background: #0878be;
  transform: rotate(4deg);
}

.hero--section {
  position: relative;
  overflow: hidden;
  padding: 44px 0 58px;
  background: radial-gradient(circle at 82% 18%, rgba(8, 120, 190, 0.11), transparent 27%), linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
}
.hero--section::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border: 42px solid rgba(8, 120, 190, 0.035);
  content: "";
  transform: rotate(18deg);
  pointer-events: none;
}

.hero--grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  align-items: center;
  gap: 58px;
}

.hero--content > p {
  max-width: 610px;
  margin-bottom: 27px;
  font-size: 1.06rem;
}

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

.hero--notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 27px;
}
.hero--notes > span {
  position: relative;
  padding-left: 17px;
  color: #55616a;
  font-size: 0.9rem;
  font-weight: 600;
}
.hero--notes > span::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 7px;
  height: 7px;
  background: #0878be;
  content: "";
  transform: rotate(45deg);
}

.hero--media {
  overflow: hidden;
}
.hero--media > img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero--media:hover > img {
  transform: scale(1.035);
}
.hero--media {
  position: relative;
  min-height: 410px;
  border-radius: 4px 30px 4px 30px;
  box-shadow: 0 18px 45px rgba(31, 52, 67, 0.09);
}
.hero--media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 410px;
}
.hero--media > span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px 14px 4px 14px;
  color: #ffffff;
  background: rgba(20, 29, 35, 0.7);
  font-weight: 700;
  backdrop-filter: blur(12px);
}
.hero--media::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 68px;
  height: 8px;
  background: #0878be;
  content: "";
}

.section--heading {
  margin-bottom: 38px;
}

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

.text--link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid #dce3e8;
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 0.28s ease, border-color 0.28s ease;
}
.text--link .icon--stroke {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  aspect-ratio: 1;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.28s ease;
}
.text--link:hover {
  border-color: #0878be;
  color: #0878be;
}
.text--link:hover svg {
  transform: translateX(4px);
}

.category--grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}

.category--box {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.category--box:hover {
  border-color: rgba(8, 120, 190, 0.38);
  box-shadow: 0 18px 45px rgba(31, 52, 67, 0.09);
  transform: translateY(-4px);
}
.category--box {
  position: relative;
  isolation: isolate;
  min-height: 220px;
  overflow: hidden;
  padding: 28px;
  border: 0;
  border-radius: 4px 20px 4px 20px;
  color: #ffffff;
  background-image: linear-gradient(180deg, rgba(12, 22, 29, 0.12), rgba(12, 22, 29, 0.88)), var(--category-image);
  background-position: center;
  background-size: cover;
}
.category--box::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 120, 190, 0.32), transparent 46%);
  content: "";
  opacity: 0;
  transition: opacity 0.28s ease;
}
.category--box::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 7px;
  background: #0878be;
  content: "";
  transform: scaleX(0.35);
  transform-origin: right;
  transition: transform 0.28s ease;
}
.category--box > span {
  color: #8bd6ff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.category--box > h3 {
  max-width: 290px;
  margin: 84px 0 8px;
  font-size: 1.35rem;
}
.category--box > p {
  max-width: 320px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.55;
}
.category--box > i {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  padding: 0;
  border: 1px solid #dce3e8;
  border-radius: 4px 12px 4px 12px;
  background: #ffffff;
  transition: color 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
  position: absolute;
  top: 23px;
  right: 23px;
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  background: rgba(19, 30, 38, 0.42);
  backdrop-filter: blur(10px);
}
.category--box > i .icon--stroke {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  aspect-ratio: 1;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.category--box:hover::before {
  opacity: 1;
}
.category--box:hover::after {
  transform: scaleX(1);
}
.category--box:hover > i {
  border-color: #0878be;
  background: #0878be;
  transform: translateX(3px);
}

.category--box--lead {
  grid-row: 1/3;
}
.category--box--lead > h3 {
  margin-top: 282px;
  font-size: 1.7rem;
}

.category--box--wide {
  grid-column: 2/4;
}
.category--box--wide > h3 {
  margin-top: 78px;
}

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

.product--box {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.product--box:hover {
  border-color: rgba(8, 120, 190, 0.38);
  box-shadow: 0 18px 45px rgba(31, 52, 67, 0.09);
  transform: translateY(-5px);
}
.product--box:hover .product--box__media > img {
  transform: scale(1.045);
}
.product--box:hover::after {
  transform: scaleX(1);
}
.product--box {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dce3e8;
  border-radius: 4px 18px 4px 18px;
  background: #ffffff;
}
.product--box::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #0878be;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.product--box__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fbfdfe;
}
.product--box__media > img {
  display: block;
  width: 100%;
  aspect-ratio: 1/0.92;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.product--box__media > span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: #0878be;
  font-size: 0.75rem;
  font-weight: 700;
  position: absolute;
  top: 13px;
  left: 13px;
  font-size: 0.72rem;
}

.product--box__content {
  padding: 18px;
}
/* .product--box__content > h3 {
  min-height: 46px;
  margin: 12px 0 18px;
} */
 .product--box__content > h3 {
    min-height: 25px;
    margin: 5px 0 10px;
}
.product--box__content > h3 a {
  transition: color 0.28s ease;
}
.product--box__content > h3 a:hover {
  color: #0878be;
}

.product--box__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #65717a;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product--box__meta > span:last-child {
  text-align: right;
}

.product--box__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product--box__bottom > strong {
  color: #045f99;
  font-size: 0.95rem;
}

.product--box__actions {
  display: flex;
  gap: 8px;
}
.product--box__actions > button,
.product--box__actions > a {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  padding: 0;
  border: 1px solid #dce3e8;
  border-radius: 50%;
  background: #ffffff;
  transition: color 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}
.product--box__actions > button .icon--stroke,
.product--box__actions > a .icon--stroke {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  aspect-ratio: 1;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product--box__actions > button .icon--whatsapp,
.product--box__actions > a .icon--whatsapp {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  aspect-ratio: 1;
  overflow: visible;
  fill: currentColor;
  stroke: none;
}
.product--box__actions > button:hover,
.product--box__actions > a:hover {
  border-color: #0878be;
  color: #ffffff;
  background: #0878be;
  transform: translateY(-2px);
}

.cta--box {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.15fr 0.85fr;
  border-radius: 28px;
  color: #ffffff;
  background: #232b31;
}

.cta--content {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 64px;
}
.cta--content > .eyebrow {
  color: #71c7f5;
}
.cta--content > h2 {
  max-width: 680px;
  margin-bottom: 20px;
}
.cta--content > p {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.74);
}

.cta--media {
  overflow: hidden;
}
.cta--media > img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta--media:hover > img {
  transform: scale(1.04);
}
.cta--media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta--simple {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 46px;
  border: 1px solid #dce3e8;
  border-radius: 28px;
  background: #ffffff;
}

.archive--hero {
  padding: 70px 0 58px;
  border-bottom: 1px solid #dce3e8;
  background: linear-gradient(180deg, #f7fbfd, #ffffff);
}

.archive--hero__inner {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 70px;
}
.archive--hero__inner h1 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}
.archive--hero__inner > p {
  margin-bottom: 7px;
}

.archive--toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  margin-bottom: 20px;
}

.search--field,
.sort--field {
  min-height: 54px;
  border: 1px solid #dce3e8;
  border-radius: 10px;
  background: #ffffff;
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}
.search--field:focus-within,
.sort--field:focus-within {
  border-color: rgba(8, 120, 190, 0.7);
  box-shadow: 0 0 0 4px rgba(8, 120, 190, 0.08);
}

.search--field {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  padding: 0 16px;
}
.search--field > span {
  flex: 0 0 auto;
  color: #65717a;
}
.search--field svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  aspect-ratio: 1;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.search--field > input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

.sort--field {
  position: relative;
  z-index: 12;
  display: grid;
  min-width: 270px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  padding-left: 16px;
}
.sort--field > span {
  color: #65717a;
  font-size: 0.86rem;
  font-weight: 500;
}
.sort--field.is-open {
  border-color: rgba(8, 120, 190, 0.72);
  box-shadow: 0 0 0 4px rgba(8, 120, 190, 0.08);
}
.sort--field.is-open .sort--field__trigger > i {
  transform: rotate(225deg) translate(-1px, -1px);
}
.sort--field.is-open .sort--field__menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.sort--field__trigger {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px 0 10px;
  border-radius: 0 10px 10px 0;
  background: transparent;
  text-align: left;
}
.sort--field__trigger > strong {
  overflow: hidden;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sort--field__trigger > i {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-right: 1.5px solid #232b31;
  border-bottom: 1.5px solid #232b31;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.28s ease;
}

.sort--field__menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 9px);
  right: 0;
  min-width: 230px;
  overflow: hidden;
  padding: 6px;
  border: 1px solid #dce3e8;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(28, 45, 57, 0.16);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-7px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition: visibility 0s linear 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}
.sort--field__menu > button {
  position: relative;
  display: block;
  width: 100%;
  min-height: 42px;
  padding: 10px 34px 10px 12px;
  border-radius: 8px;
  color: #4f5c65;
  background: transparent;
  font-size: 0.86rem;
  font-weight: 500;
  text-align: left;
  transition: color 0.28s ease, background-color 0.28s ease;
}
.sort--field__menu > button::after {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  opacity: 0;
  transform: translateY(-65%) rotate(-45deg);
}
.sort--field__menu > button:hover, .sort--field__menu > button:focus-visible {
  color: #045f99;
  background: #e8f5fc;
  outline: 0;
}
.sort--field__menu > button.is-active {
  color: #045f99;
  background: rgba(8, 120, 190, 0.1);
  font-weight: 700;
}
.sort--field__menu > button.is-active::after {
  opacity: 1;
}

.filter--rail {
  display: flex;
  overflow-x: auto;
  gap: 9px;
  padding: 2px 0 8px;
  scrollbar-width: none;
}
.filter--rail::-webkit-scrollbar {
  display: none;
}
.filter--rail > button {
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 1px solid #dce3e8;
  border-radius: 999px;
  color: #57636c;
  background: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}
.filter--rail > button:hover, .filter--rail > button.is-active {
  border-color: #0878be;
  color: #ffffff;
  background: #0878be;
}

.archive--summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0;
}
.archive--summary > p {
  margin: 0;
  font-size: 0.9rem;
}
.archive--summary > button {
  padding: 4px 0;
  color: #0878be;
  background: transparent;
  font-size: 0.86rem;
  font-weight: 700;
}

.archive--empty {
  padding: 85px 20px;
  border: 1px dashed #dce3e8;
  border-radius: 18px;
  text-align: center;
}
.archive--empty > span {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  color: #0878be;
  background: #f3f7f9;
}
.archive--empty svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.archive--empty > h2 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.breadcrumb--nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  color: #65717a;
  font-size: 0.84rem;
}
.breadcrumb--nav a {
  transition: color 0.28s ease;
}
.breadcrumb--nav a:hover {
  color: #0878be;
}

.product--details {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: start;
  gap: 62px;
}

.product--gallery__main {
  overflow: hidden;
  border-radius: 18px;
  background: #f3f7f9;
}
.product--gallery__main > img {
  width: 100%;
  aspect-ratio: 1/0.86;
  object-fit: cover;
  transition: opacity 0.28s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.product--gallery__main:hover > img {
  transform: scale(1.025);
}

.product--gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.product--gallery__thumbs > button {
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #f3f7f9;
  transition: border-color 0.28s ease, transform 0.28s ease;
}
.product--gallery__thumbs > button > img {
  width: 100%;
  aspect-ratio: 1.4/1;
  object-fit: cover;
}
.product--gallery__thumbs > button:hover, .product--gallery__thumbs > button.is-active {
  border-color: #0878be;
  transform: translateY(-2px);
}

.product--info {
  position: sticky;
  top: 110px;
  padding-top: 8px;
}
.product--info > h1 {
  margin-bottom: 13px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.product--info__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 19px;
}
.product--info__labels > span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  color: #045f99;
  background: #e8f5fc;
  font-size: 0.75rem;
  font-weight: 700;
}

.product--info__sku {
  color: #65717a;
  font-size: 0.85rem;
}

.product--info__price {
  display: block;
  margin: 24px 0 18px;
  color: #0878be;
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
}

.product--info__summary {
  margin-bottom: 24px;
  font-size: 1.02rem;
}

.product--info__points {
  display: grid;
  gap: 11px;
  margin-bottom: 28px;
}
.product--info__points > span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.91rem;
  font-weight: 600;
}
.product--info__points svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  border-radius: 50%;
  color: #0878be;
  background: #e8f5fc;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product--info__actions {
  display: flex;
  gap: 11px;
}
.product--info__actions .button--primary {
  flex: 1;
}

.product--info__note {
  margin: 18px 0 0;
  padding-top: 17px;
  border-top: 1px solid #dce3e8;
  font-size: 0.78rem;
  line-height: 1.55;
}

.product--tabs {
  margin-top: 72px;
  border-top: 1px solid #dce3e8;
}

.product--tabs__nav {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #dce3e8;
}
.product--tabs__nav > button {
  position: relative;
}
.product--tabs__nav > button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: #0878be;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}
.product--tabs__nav > button:hover, .product--tabs__nav > button.is-active {
  color: #0878be;
}
.product--tabs__nav > button:hover::after, .product--tabs__nav > button.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.product--tabs__nav > button {
  padding: 21px 0;
  color: #65717a;
  background: transparent;
  font-weight: 700;
  transition: color 0.28s ease;
}

.product--tabs__panel {
  display: none;
  max-width: 930px;
  padding: 36px 0 0;
}
.product--tabs__panel.is-active {
  display: block;
}
.product--tabs__panel > p {
  margin-bottom: 0;
  font-size: 1rem;
}
.product--tabs__panel dl {
  margin: 0;
  border: 1px solid #dce3e8;
  border-radius: 10px;
}
.product--tabs__panel dl > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 15px 18px;
}
.product--tabs__panel dl > div:not(:last-child) {
  border-bottom: 1px solid #dce3e8;
}
.product--tabs__panel dt {
  font-weight: 700;
}
.product--tabs__panel dd {
  margin: 0;
  color: #65717a;
}

.footer--section {
  padding-top: 74px;
  border-top: 1px solid #dce3e8;
  background: #fbfdfe;
}

.footer--grid {
  display: grid;
  grid-template-columns: 1.45fr 0.65fr 0.75fr 1.15fr;
  gap: 50px;
  padding-bottom: 62px;
}

.footer--brand > p {
  max-width: 340px;
  margin: 22px 0 0;
  font-size: 0.92rem;
}

.footer--links {
  display: grid;
  align-content: start;
  gap: 13px;
}
.footer--links > strong,
.footer--links + .footer--contact > strong {
  margin-bottom: 6px;
  font-family: "Manrope", sans-serif;
}
.footer--links > a {
  width: fit-content;
  color: #65717a;
  font-size: 0.9rem;
  transition: color 0.28s ease, transform 0.28s ease;
}
.footer--links > a:hover {
  color: #0878be;
  transform: translateX(3px);
}

.footer--contact > strong {
  display: block;
  margin-bottom: 14px;
  font-family: "Manrope", sans-serif;
}
.footer--contact > p {
  margin-bottom: 18px;
  font-size: 0.88rem;
}

.footer--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  border-top: 1px solid #dce3e8;
}
.footer--bottom > p {
  margin: 0;
  color: #65717a;
  font-size: 0.8rem;
}

.footer--bottom__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 24px;
}
.footer--bottom__links > a {
  color: #65717a;
  font-size: 0.8rem;
  transition: color 0.28s ease;
}
.footer--bottom__links > a:hover {
  color: #0878be;
}
.footer--bottom__links > a:last-child {
  position: relative;
  padding-left: 24px;
}
.footer--bottom__links > a:last-child::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 2px;
  background: #0878be;
  content: "";
  transform: translateY(-50%) skewX(-34deg);
}

.site--toast {
  position: fixed;
  z-index: 140;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, 100% - 44px);
  padding: 13px 17px;
  border-radius: 10px;
  color: #ffffff;
  background: #232b31;
  box-shadow: 0 18px 45px rgba(31, 52, 67, 0.09);
  font-size: 0.88rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.site--toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .header--nav {
    display: none;
  }
  .header--menu {
    display: block;
  }
  .hero--grid {
    gap: 38px;
  }
  .category--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }
  .category--box {
    min-height: 240px;
  }
  .category--box--lead,
  .category--box--wide {
    grid-row: auto;
    grid-column: auto;
  }
  .category--box--lead > h3,
  .category--box--wide > h3 {
    margin-top: 84px;
    font-size: 1.35rem;
  }
  .product--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer--grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }
  .footer--grid .footer--contact {
    grid-column: 1/-1;
  }
}
@media (max-width: 820px) {
  .section--space {
    padding-block: 72px;
  }
  .hero--grid,
  .archive--hero__inner,
  .product--details,
  .cta--box {
    grid-template-columns: 1fr;
  }
  .hero--section {
    padding-top: 42px;
  }
  .hero--media,
  .hero--media > img {
    min-height: 390px;
  }
  .archive--hero__inner {
    gap: 22px;
  }
  .product--info {
    position: static;
  }
  .product--details {
    gap: 42px;
  }
  .cta--content {
    min-height: auto;
    padding: 48px;
  }
  .cta--media {
    max-height: 360px;
  }
  .cta--simple {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .container {
    width: calc(100% - 28px);
  }
  .section--space {
    padding-block: 58px;
  }
  .header--section {
    box-shadow: 0 8px 24px rgba(31, 52, 67, 0.05);
  }
  .header--inner {
    min-height: 64px;
    gap: 12px;
  }
  .header--logo > img {
    width: 142px;
  }
  .header--actions > .button {
    display: none;
  }
  .header--menu {
    width: 42px;
    height: 42px;
  }
  h1 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }
  h2 {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }
  .section--heading {
    margin-bottom: 28px;
  }
  .section--heading__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .hero--section {
    padding: 30px 0 42px;
  }
  .hero--grid {
    gap: 28px;
  }
  .hero--content > p {
    margin-bottom: 22px;
    font-size: 0.98rem;
  }
  .hero--actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero--actions .button {
    width: 100%;
  }
  .hero--notes {
    gap: 8px 15px;
    margin-top: 22px;
  }
  .hero--media,
  .hero--media > img {
    min-height: 300px;
  }
  .hero--media > span {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 14px;
    font-size: 0.88rem;
  }
  .category--grid {
    display: flex;
flex-direction: column;
    overflow-x: auto;
    gap: 12px;
    margin-inline: -14px;
    padding: 0 14px 12px;
    scroll-padding-inline: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .category--grid::-webkit-scrollbar {
    display: none;
  }
  .category--box,
  .category--box--lead,
  .category--box--wide {
    min-height: 238px;
    flex: 0 0 min(82vw, 310px);
    padding: 22px;
    scroll-snap-align: start;
  }
  .category--box > h3,
  .category--box--lead > h3,
  .category--box--wide > h3 {
    margin-top: 90px;
    font-size: 1.25rem;
  }
  .category--box > p,
  .category--box--lead > p,
  .category--box--wide > p {
    font-size: 0.86rem;
  }
  .product--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .product--box {
    border-radius: 4px 14px 4px 14px;
  }
  .product--box__media > span {
    top: 9px;
    left: 9px;
    padding: 6px 8px;
    font-size: 0.64rem;
  }
  .product--box__content {
    padding: 13px;
  }
  .product--box__content > h3 {
    min-height: 42px;
    margin: 9px 0 13px;
    font-size: 0.92rem;
  }
  .product--box__meta {
    flex-wrap: wrap;
    gap: 4px 8px;
    font-size: 0.62rem;
  }
  .product--box__bottom {
    align-items: flex-end;
    gap: 8px;
  }
  .product--box__bottom > strong {
    font-size: 0.8rem;
    line-height: 1.25;
  }
  .product--box__actions {
    gap: 5px;
  }
  .product--box__actions > button,
  .product--box__actions > a {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
  .archive--hero {
    padding: 38px 0 32px;
  }
  .archive--hero__inner h1 {
    font-size: clamp(2rem, 11vw, 2.75rem);
  }
  .archive--section {
    padding-top: 24px;
  }
  .archive--toolbar {
    position: sticky;
    z-index: 24;
    top: 64px;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 0 -6px 10px;
    padding: 10px 6px 12px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
  }
  .search--field,
  .sort--field {
    min-height: 50px;
  }
  .sort--field {
    width: 100%;
    min-width: 0;
  }
  .sort--field__trigger {
    min-height: 48px;
  }
  .sort--field__menu {
    right: 0;
    left: 0;
    min-width: 0;
    transform-origin: top center;
  }
  .filter--rail {
    margin-right: -14px;
    padding-right: 14px;
    scroll-snap-type: x proximity;
  }
  .filter--rail > button {
    scroll-snap-align: start;
  }
  .archive--summary {
    margin: 14px 0 18px;
  }
  .product--details {
    gap: 30px;
  }
  .breadcrumb--nav {
    margin-bottom: 22px;
  }
  .product--gallery__thumbs {
    overflow-x: auto;
    grid-template-columns: none;
    grid-auto-columns: minmax(88px, 28%);
    grid-auto-flow: column;
    padding-bottom: 5px;
    scrollbar-width: none;
  }
  .product--gallery__thumbs::-webkit-scrollbar {
    display: none;
  }
  .product--info > h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }
  .product--info__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .product--info__actions .button {
    width: 100%;
  }
  .product--tabs {
    margin-top: 50px;
  }
  .product--tabs__nav {
    overflow-x: auto;
    gap: 22px;
    scrollbar-width: none;
  }
  .product--tabs__nav::-webkit-scrollbar {
    display: none;
  }
  .product--tabs__nav > button {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .product--tabs__panel {
    padding-top: 28px;
  }
  .product--tabs__panel dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .cta--content,
  .cta--simple {
    padding: 34px 24px;
  }
  .cta--media {
    height: 250px;
  }
  .footer--section {
    padding-top: 54px;
  }
  .footer--grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 42px;
  }
  .footer--grid .footer--contact {
    grid-column: auto;
  }
  .footer--bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 18px;
  }
  .footer--bottom__links {
    justify-content: flex-start;
  }
  .site--toast {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    max-width: calc(100% - 28px);
  }
}
@media (max-width: 480px) {
  .mobile--menu__panel {
    max-height: 90vh;
    max-height: 90dvh;
    padding-inline: 16px;
  }
  .category--box,
  .category--box--lead,
  .category--box--wide {
    flex-basis: min(86vw, 300px);
  }
  .cta--box {
    border-radius: 18px;
  }
  .cta--content > h2 {
    font-size: 1.8rem;
  }
  .footer--contact .button {
    width: 100%;
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 20px);
  }
  .section--space {
    padding-block: 48px;
  }
  .header--inner {
    min-height: 60px;
  }
  .header--logo > img {
    width: 126px;
  }
  .header--menu {
    width: 40px;
    height: 40px;
    padding-inline: 9px;
  }
  .mobile--menu__panel {
    padding-inline: 12px;
    border-radius: 20px 20px 0 0;
  }
  .product--grid {
    grid-template-columns: 1fr;
  }
  .product--box__content > h3 {
    min-height: 0;
    font-size: 1rem;
  }
  .product--box__meta {
    font-size: 0.68rem;
  }
  .product--box__bottom > strong {
    font-size: 0.9rem;
  }
  .archive--toolbar {
    top: 60px;
    margin-inline: -2px;
    padding-inline: 2px;
  }
  .category--grid {
    margin-inline: -10px;
    padding-inline: 10px;
  }
  .category--box,
  .category--box--lead,
  .category--box--wide {
    flex-basis: calc(100vw - 38px);
  }
  .archive--summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
  .product--tabs__nav {
    gap: 18px;
  }
  .product--tabs__nav > button {
    font-size: 0.86rem;
  }
  .footer--bottom__links {
    gap: 10px 16px;
  }
  .footer--bottom__links > a:last-child {
    padding-left: 0;
  }
  .footer--bottom__links > a:last-child::before {
    display: none;
  }
}
@media (max-width: 240px) {
  html {
    font-size: 14px;
  }
  .container {
    width: calc(100% - 12px);
  }
  .header--inner {
    min-height: 56px;
    gap: 6px;
  }
  .header--logo > img {
    width: 104px;
  }
  .header--menu {
    width: 38px;
    height: 38px;
  }
  h1 {
    font-size: 1.72rem;
    letter-spacing: -0.04em;
  }
  h2 {
    font-size: 1.5rem;
  }
  .eyebrow {
    gap: 6px;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }
  .button {
    min-height: 44px;
    width: 100%;
    padding-inline: 12px;
    font-size: 0.84rem;
  }
  .hero--section {
    padding-top: 22px;
  }
  .hero--media,
  .hero--media > img {
    min-height: 220px;
  }
  .hero--media > span {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 10px;
    font-size: 0.76rem;
  }
  .category--grid {
    margin-inline: -6px;
    padding-inline: 6px;
  }
  .category--box,
  .category--box--lead,
  .category--box--wide {
    min-height: 200px;
    flex-basis: calc(100vw - 24px);
    padding: 16px;
  }
  .category--box > h3,
  .category--box--lead > h3,
  .category--box--wide > h3 {
    margin-top: 62px;
    font-size: 1.08rem;
  }
  .category--box > p,
  .category--box--lead > p,
  .category--box--wide > p {
    font-size: 0.78rem;
  }
  .category--box > i,
  .category--box--lead > i,
  .category--box--wide > i {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
  .archive--toolbar {
    top: 56px;
  }
  .search--field {
    gap: 7px;
    padding-inline: 10px;
  }
  .search--field > input {
    font-size: 0.82rem;
  }
  .sort--field {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 8px 10px;
  }
  .sort--field > span {
    font-size: 0.72rem;
  }
  .sort--field__trigger {
    min-height: 34px;
    padding: 0;
    border-radius: 0;
  }
  .sort--field__trigger > strong {
    font-size: 0.82rem;
  }
  .sort--field__menu {
    top: calc(100% + 6px);
  }
  .filter--rail > button {
    padding: 8px 11px;
    font-size: 0.76rem;
  }
  .product--box__content {
    padding: 11px;
  }
  .product--box__bottom {
    align-items: stretch;
    flex-direction: column;
  }
  .product--box__actions {
    justify-content: flex-end;
  }
  .product--gallery__thumbs {
    grid-auto-columns: 42%;
  }
  .product--info__points > span {
    align-items: flex-start;
    font-size: 0.82rem;
  }
  .product--tabs__nav > button {
    padding-block: 17px;
    font-size: 0.78rem;
  }
  .cta--content,
  .cta--simple {
    padding: 24px 16px;
  }
  .cta--media {
    height: 190px;
  }
  .footer--section {
    padding-top: 40px;
  }
  .footer--grid {
    gap: 26px;
  }
  .footer--bottom__links {
    align-items: flex-start;
    flex-direction: column;
  }
  .mobile--menu__panel {
    padding-inline: 8px;
  }
  .mobile--menu__head > strong {
    font-size: 1rem;
  }
  .mobile--menu__panel nav a {
    padding-block: 13px;
    font-size: 0.86rem;
  }
}
@media (hover: none) {
  .button:hover,
  .product--box:hover,
  .category--box:hover,
  .product--gallery__thumbs > button:hover {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 240px) {
  .filter--rail {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
  }
  .sort--field > span,
  .sort--field__trigger > strong {
    font-size: 0.78rem;
  }
  .sort--field__trigger {
    overflow: hidden;
  }
}
