@charset "UTF-8";

:root {

  --c-primary: #085AA3;
  --c-primary-dark: #063F72;
  --c-primary-soft: #EDF4FB;
  --c-ink: #0F1A2A;
  --c-body: #33435A;
  --c-muted: #5A6B80;
  --c-muted-2: #6B7C93;
  --c-muted-3: #7A8CA3;
  --c-border: #E6EDF4;
  --c-border-2: #D8E4F0;
  --c-surface: #F6F9FC;
  --c-tint: #F4F8FC;
  --c-white: #fff;
  --c-accent: #8A6A3C;

  --c-ok-bg: #E8F6EE;
  --c-ok-fg: #0E7A47;
  --c-ok-dot: #12A55D;
  --c-warn-bg: #FDF3E3;
  --c-warn-fg: #8A5A00;
  --c-warn-dot: #D89A18;
  --c-off-bg: #F1F5F9;
  --c-off-fg: #64748B;
  --c-off-dot: #94A3B8;
  --c-err: #B3261E;
  --c-err-bg: #FDECEA;

  --f-head: Archivo, "Segoe UI", system-ui, sans-serif;
  --f-body: Barlow, "Segoe UI", system-ui, sans-serif;

  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;

  --r-sm: 0.5rem;
  --r-md: 0.625rem;
  --r-lg: 0.875rem;
  --r-xl: 1.125rem;
  --r-2xl: 1.25rem;
  --r-pill: 62.4375rem;

  --sh-sm: 0 0.5rem 1.5rem -0.75rem rgba(11, 74, 143, .4);
  --sh-md: 0 1rem 2.125rem -1.375rem rgba(11, 74, 143, .4);
  --sh-lg: 0 1.5rem 3.75rem -1.875rem rgba(11, 74, 143, .35);
  --sh-xl: 0 2.5rem 5.625rem -1.875rem rgba(6, 26, 48, .6);

  --container: 80rem;
  --container-pad: 1.125rem;
  --header-h: 4.875rem;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
  position: fixed;
  left: 0; right: 0; width: 100%;
}

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

picture { display: contents; }

a { color: var(--c-primary); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--c-primary-dark); }

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

h1, h2, h3, h4 {
  font-family: var(--f-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.125rem, 1.55rem + 2.4vw, 3.625rem); line-height: 1.05; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6875rem, 1.42rem + 1.15vw, 2.375rem); }
h3 { font-size: clamp(1.3125rem, 1.2rem + 0.5vw, 1.625rem); }
h4 { font-size: clamp(1.0625rem, 1.02rem + 0.2vw, 1.1875rem); font-weight: 600; }

p { margin: 0; }

::selection { background: var(--c-primary); color: var(--c-white); }

:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 2px;
  border-radius: 0.25rem;
}

.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: absolute; left: 0.5rem; top: -6rem; z-index: 200;
  background: var(--c-primary); color: #fff; padding: 0.75rem 1.25rem;
  border-radius: var(--r-md); font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 0.5rem; color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: clamp(2.5rem, 1.8rem + 3vw, 4.75rem); }
.section--tight { padding-block: clamp(2rem, 1.5rem + 2vw, 3.25rem); }
.section--tint { background: var(--c-tint); border-block: 1px solid var(--c-border); }
.section--surface { background: var(--c-surface); }
.section--white { background: var(--c-white); }

.page-head {
  background: var(--c-tint);
  border-bottom: 1px solid var(--c-border);
  padding-block: clamp(2rem, 1.5rem + 2.2vw, 3.5rem);
}
.page-head__lead {
  font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.125rem);
  color: var(--c-muted);
  margin-top: var(--sp-3);

  max-width: 92ch;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.section-head__text { max-width: 60ch; }
.section-head p {
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.09375rem);
  color: var(--c-muted);
  margin-top: var(--sp-2);
}

.grid { display: grid; gap: var(--sp-5); }
.grid--auto-sm { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.4375rem), 1fr)); }
.grid--auto-md { grid-template-columns: repeat(auto-fit, minmax(min(100%, 15.9375rem), 1fr)); }
.grid--auto-lg { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.875rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--c-primary); color: var(--c-white); }
.btn--primary:hover { background: var(--c-primary-dark); color: var(--c-white); }

.btn--outline { background: var(--c-white); color: var(--c-primary); border-color: var(--c-border-2); }
.btn--outline:hover { border-color: var(--c-primary); color: var(--c-primary-dark); }

.btn--white { background: var(--c-white); color: var(--c-primary); }
.btn--white:hover { background: #E9F1F9; color: var(--c-primary-dark); }

.btn--ghost-light { background: transparent; color: var(--c-white); border-color: rgba(255, 255, 255, .4); }
.btn--ghost-light:hover { border-color: var(--c-white); color: var(--c-white); }

.btn--pill {
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: var(--r-pill);
  padding: 0.8125rem 1.625rem;
  box-shadow: var(--sh-sm);
}
.btn--pill:hover { background: var(--c-primary-dark); color: var(--c-white); box-shadow: var(--sh-md); }
.btn--pill .btn__arrow { transition: transform .18s var(--ease); }
.btn--pill:hover .btn__arrow { transform: translateX(0.1875rem); }

.btn--sm { padding: 0.6875rem 1.125rem; font-size: 0.9375rem; }
.btn--lg { padding: 1rem 1.75rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(0.75rem);
  border-bottom: 1px solid var(--c-border);
}
.header__inner {
  min-height: 4rem;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-block: 0.625rem;
}

.logo { display: flex; align-items: center; gap: 0.6875rem; flex-shrink: 0; }
.logo__img { height: 2rem; width: auto; }
.logo__mark {
  width: 2.5rem; height: 2.5rem;
  border-radius: var(--r-md);
  background: var(--c-primary);
  color: var(--c-white);
  display: grid; place-items: center;
  font-family: var(--f-head); font-weight: 700; font-size: 0.9375rem;
  letter-spacing: -0.01em;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name {
  font-family: var(--f-head); font-weight: 700; font-size: 1.125rem;
  letter-spacing: 0.06em; color: var(--c-ink);
}
.logo__tag {
  font-size: 0.65625rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-muted-3); font-weight: 500;
}

.nav { display: none; gap: 0.125rem; margin-left: auto; }
.nav__link {
  padding: 0.5625rem 0.6875rem;
  border-radius: var(--r-sm);
  font-size: 0.90625rem;
  font-weight: 500;
  color: var(--c-body);
  white-space: nowrap;
}
.nav__link:hover { background: #F1F6FB; color: var(--c-primary); }
.nav__link--active { font-weight: 600; color: var(--c-primary); background: var(--c-primary-soft); }

.header__actions { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; margin-left: auto; }
.header__phone {
  display: none;
  font-family: var(--f-head); font-weight: 600; font-size: 0.9375rem;
  color: var(--c-ink); white-space: nowrap;
}
.header__phone:hover { color: var(--c-primary); }
.header__cta { display: none; }

.burger {
  width: 3rem; height: 3rem;
  border: 2px solid var(--c-primary);
  background: var(--c-white);
  border-radius: var(--r-lg);
  display: grid; place-items: center;
  cursor: pointer; padding: 0;
}
.burger:hover { background: var(--c-primary-soft); }
.burger__lines { display: flex; flex-direction: column; gap: 0.3125rem; width: 1.5rem; }
.burger__lines span { height: 0.25rem; background: var(--c-primary); border-radius: 0.125rem; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 95;
  background: var(--c-white);
  display: none;
  flex-direction: column;
  animation: jf-up .18s ease-out;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); padding: 0.875rem var(--container-pad);
  border-bottom: 1px solid var(--c-border); flex-shrink: 0;
}
.mobile-menu__close {
  width: 3rem; height: 3rem; border: 2px solid var(--c-primary); background: var(--c-white);
  border-radius: var(--r-lg); display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--c-primary); padding: 0; line-height: 0;
}
.mobile-menu__close:hover { background: var(--c-primary-soft); }
.mobile-menu__nav {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.25rem; padding: var(--sp-8) var(--sp-5); overflow-y: auto;
}
.mobile-menu__link {
  font-family: var(--f-head); font-weight: 600;
  font-size: clamp(1.375rem, 1.15rem + 1.1vw, 1.75rem);
  letter-spacing: -0.02em; color: var(--c-ink);
  padding: 0.8125rem 1.625rem; border-radius: var(--r-lg);
  text-align: center; min-width: 14.375rem;
}
.mobile-menu__link:hover { background: #F1F6FB; }
.mobile-menu__link--active { color: var(--c-primary); background: var(--c-primary-soft); }
.mobile-menu__cta { display: flex; flex-direction: column; gap: 0.625rem; margin-top: var(--sp-8); width: 100%; max-width: 18.75rem; }
.mobile-menu__foot {
  padding: var(--sp-5); text-align: center; font-size: 0.84375rem;
  color: #8092A8; border-top: 1px solid var(--c-border); flex-shrink: 0;
}

.hero {
  background: linear-gradient(180deg, var(--c-tint) 0%, var(--c-white) 100%);
  border-bottom: 1px solid var(--c-border);
}
.hero__inner {
  display: grid;
  gap: clamp(2rem, 1.5rem + 3vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2.125rem, 1.6rem + 2.8vw, 4.75rem) clamp(3rem, 2.2rem + 3vw, 5.25rem);
}
.badge-pill {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--c-white); border: 1px solid var(--c-border-2);
  color: var(--c-primary); font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.4375rem 0.8125rem; border-radius: var(--r-pill);
}
.hero__title { margin-top: var(--sp-5); }
.hero__text {
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.1875rem);
  line-height: 1.6; color: #4A5C72; max-width: 52ch; margin-top: var(--sp-5);
}
.hero__actions { display: flex; gap: var(--sp-3); margin-top: var(--sp-8); flex-wrap: wrap; }
.hero__stats { display: flex; gap: var(--sp-8); margin-top: clamp(1.75rem, 1.4rem + 1.4vw, 2.75rem); flex-wrap: wrap; }
.hero__stat-num { font-family: var(--f-head); font-weight: 700; font-size: 1.625rem; color: var(--c-primary); }
.hero__stat-label { font-size: 0.90625rem; color: var(--c-muted-2); margin-top: 0.125rem; }

.hero__photo { line-height: 0; }
.hero__photo picture { display: block; }
.hero__photo img {
  width: 100%; height: auto; display: block;
  border-radius: var(--r-2xl);
}

.cat-card {
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  color: var(--c-ink);
  background: var(--c-white);
  display: flex; flex-direction: column; gap: 0.875rem;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.cat-card:hover { border-color: var(--c-primary); box-shadow: var(--sh-md); transform: translateY(-2px); color: var(--c-ink); }
.cat-card__img {
  height: 7rem; border-radius: var(--r-lg); background-color: var(--c-surface);
  display: grid; place-items: center; padding: 0.75rem; overflow: hidden;
}

.cat-card__img img { max-height: 5.5rem; max-width: 100%; width: auto; height: auto; object-fit: contain; }
.cat-card__name { font-family: var(--f-head); font-weight: 600; font-size: 1.0625rem; }
.cat-card__count { font-size: 0.90625rem; color: var(--c-muted-2); margin-top: 0.25rem; }

.usp {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: clamp(1.375rem, 1.2rem + 0.8vw, 1.75rem);
}
.usp--bordered { background: var(--c-white); border: 1px solid var(--c-border); }
.usp__tag {
  font-family: var(--f-head); font-weight: 700; font-size: 0.8125rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-primary);
}
.usp__title { font-family: var(--f-head); font-weight: 600; font-size: 1.25rem; margin-top: var(--sp-3); letter-spacing: -0.01em; }
.usp__text { font-size: 1rem; line-height: 1.6; color: var(--c-muted); margin-top: 0.5625rem; }

.quote {
  margin: 0;
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 1.25rem + 1vw, 2rem);
}
.quote__text {
  margin: 0; font-family: var(--f-head); font-weight: 500;
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem); line-height: 1.5; letter-spacing: -0.01em;
}
.quote__who { margin-top: var(--sp-5); font-size: 0.9375rem; color: var(--c-muted-2); }
.quote__stars { color: #E6A817; letter-spacing: 0.1em; font-size: 0.9375rem; margin-bottom: var(--sp-3); }

.cat-picker {
  margin-top: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: clamp(1rem, 0.85rem + 0.7vw, 1.5rem);
  box-shadow: var(--sh-md);
}
.cat-picker__label {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--f-head); font-weight: 700;
  font-size: 0.8125rem; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: clamp(0.75rem, 0.6rem + 0.5vw, 1rem);
}
.cat-picker__label svg { flex-shrink: 0; }

.chips { display: flex; gap: 0.625rem; flex-wrap: wrap; }

.chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8125rem 1.25rem;
  border-radius: var(--r-pill);
  font-size: clamp(0.9375rem, 0.91rem + 0.12vw, 1rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--c-ink);
  background: var(--c-white);
  border: 2px solid var(--c-border-2);
  transition: color .18s var(--ease), background-color .18s var(--ease),
              border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.chip:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  background: var(--c-primary-soft);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}
.chip--active {
  color: var(--c-white);
  background: var(--c-primary);
  border-color: var(--c-primary);
  box-shadow: var(--sh-sm);
}
.chip--active:hover {
  color: var(--c-white);
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
}
.chip__count {
  display: inline-grid; place-items: center;
  min-width: 1.5rem; height: 1.5rem; padding-inline: 0.375rem;
  border-radius: var(--r-pill);
  background: var(--c-primary-soft);
  color: var(--c-primary);
  font-size: 0.78125rem; font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.chip:hover .chip__count { background: var(--c-white); }
.chip--active .chip__count { background: rgba(255, 255, 255, .22); color: var(--c-white); }

.product-list { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); align-items: stretch; }

.product {
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: clamp(1.25rem, 1rem + 1.4vw, 2.125rem);
  background: var(--c-white);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 1rem + 2.5vw, 2.5rem);
}

.view-switch { display: none; }
@media (min-width: 48.75em) {
  .view-switch {
    display: inline-flex; gap: 0.25rem; margin-bottom: var(--sp-5);
    padding: 0.25rem; border: 1px solid var(--c-border-2); border-radius: var(--r-pill);
    background: var(--c-white);
  }
}
.view-switch__btn {
  display: inline-flex; align-items: center; gap: 0.4375rem;
  font-family: var(--f-head); font-weight: 600; font-size: 0.875rem;
  color: var(--c-muted); background: none; border: 0; cursor: pointer;
  padding: 0.5rem 0.9375rem; border-radius: var(--r-pill);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.view-switch__btn:hover { color: var(--c-primary); }
.view-switch__btn.is-active { background: var(--c-primary); color: var(--c-white); }

.product-list .product { display: flex; flex-direction: column; gap: var(--sp-5); }
.product__head { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); align-items: start; }
.product__intro { min-width: 0; }
.product__media { min-width: 0; }
.product-list .product__desc,
.product-list .product__specs-title,
.product-list .specs { margin-top: 0; }
.product__foot { display: grid; gap: var(--sp-4); margin-top: auto; }
.product-list .price { margin-top: 0; }
.product-list .product__actions { margin-top: 0; }

@media (min-width: 34em) {
  .product__head { grid-template-columns: minmax(0, 1fr) minmax(0, 20rem); }
  .product-list .gallery__main { min-height: 13.625rem; padding: var(--sp-3); }
  .product-list .gallery__main img { max-height: 12.625rem; }

  .product-list .gallery__thumbs { flex-wrap: nowrap; gap: 0.4375rem; }
  .product-list .gallery__thumb { width: 4.5rem; height: 3.75rem; padding: 0.25rem; }
  .product-list .gallery__thumb img { max-height: 3.125rem; }
}

@media (min-width: 48.75em) {

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

  .product-list--rows .product {
    display: grid;
    grid-template-columns: 17rem minmax(0, 1fr);
    grid-template-rows: auto auto auto auto 1fr;
    grid-template-areas:
      "media intro"
      "media desc"
      "media title"
      "media specs"
      "buy   buy";
    gap: 1.125rem 1.75rem;
    align-items: start;
    padding: 1.375rem;
  }
  .product-list--rows .product__head { display: contents; }
  .product-list--rows .product__intro { grid-area: intro; }
  .product-list--rows .product__media { grid-area: media; }
  .product-list--rows .product__desc  { grid-area: desc; }
  .product-list--rows .product__specs-title { grid-area: title; }
  .product-list--rows .specs { grid-area: specs; }
  .product-list--rows .product__foot { grid-area: buy; }

  .product-list--rows .gallery__main {
    min-height: 12.625rem; height: 12.625rem; padding: 0.875rem;
    border-color: #EEF3F8; border-radius: 0.75rem;
  }
  .product-list--rows .gallery__main img { max-height: 10.5rem; }
  .product-list--rows .gallery__thumbs { flex-wrap: wrap; gap: 0.4375rem; margin-top: 0.5625rem; }
  .product-list--rows .gallery__thumb { width: 3.875rem; height: 3.125rem; padding: 0.25rem; border-radius: 0.4375rem; }
  .product-list--rows .gallery__thumb img { max-height: 100%; }

  .product-list--rows .product__name { font-size: 1.375rem; line-height: 1.22; }
  .product-list--rows .product__sub { font-size: 0.96875rem; line-height: 1.5; margin-top: 0.375rem; }
  .product-list--rows .product__desc { font-size: 0.96875rem; line-height: 1.6; }
  .product-list--rows .product__specs-title { font-size: 1rem; }

  .product-list--rows .specs--pairs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.125rem; font-size: 0.9375rem;
  }

  .product-list--rows .product__foot {
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.875rem;
    margin-top: 0;
    border-top: 1px solid #EEF3F8; padding-top: 1.125rem;
  }
  .product-list--rows .product__foot .price { flex: 0 0 auto; }
  .product-list--rows .price__net { font-size: 1.625rem; }
  .product-list--rows .price__gross { font-size: 0.90625rem; }
  .product-list--rows .product__actions { margin-left: auto; }
}

@media (min-width: 67.5em) {
  .product-list--rows .product {
    grid-template-columns: 17rem minmax(0, 1fr) 15.25rem;
    grid-template-areas:
      "media intro buy"
      "media desc  buy"
      "media title buy"
      "media specs buy"
      "media .     buy";
  }
  .product-list--rows .product__foot {
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0.875rem; align-self: stretch;
    border-top: 0; padding-top: 0;
    border-left: 1px solid #EEF3F8; padding-left: 1.625rem;
  }
  .product-list--rows .product__actions {
    margin-left: 0; flex-direction: column; align-items: stretch; gap: 0.6875rem;
  }
  .product-list--rows .product__actions .stock { justify-content: center; }
  .product-list--rows .product__actions .btn { justify-content: center; }
}

.pill {
  display: inline-flex; align-items: center;
  font-family: var(--f-head); font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.375rem 0.75rem; border-radius: var(--r-pill);
  margin-bottom: 0.625rem;
}
.pill--primary { background: var(--c-primary-soft); color: var(--c-primary); }
.pill--red     { background: var(--c-err-bg); color: var(--c-err); }
.pill--accent  { background: var(--c-warn-bg); color: var(--c-warn-fg); }
.product__name { font-size: clamp(1.375rem, 1.25rem + 0.6vw, 1.625rem); line-height: 1.2; }
.product__sub { font-size: 1.03125rem; line-height: 1.6; color: var(--c-accent); margin-top: 0.625rem; }
.product__desc { font-size: 1rem; line-height: 1.65; color: var(--c-muted); margin-top: var(--sp-4); }
.product__specs-title { font-family: var(--f-head); font-weight: 700; font-size: 1.125rem; color: var(--c-primary); margin-top: var(--sp-6); }

.specs {
  display: grid; grid-template-columns: auto 1fr;
  gap: 0 1.125rem; margin: var(--sp-3) 0 0; font-size: 1rem;
}
.specs dt { color: var(--c-muted-2); padding: 0.4375rem 0; border-bottom: 1px solid #F0F4F8; }
.specs dd { margin: 0; font-weight: 600; padding: 0.4375rem 0; border-bottom: 1px solid #F0F4F8; text-align: right; }

.specs--pairs { grid-template-columns: minmax(0, 1fr); gap: 0; }
.specs--pairs .spec {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 0.875rem; padding: 0.4375rem 0; border-bottom: 1px solid #F0F4F8;
}
.specs--pairs dt,
.specs--pairs dd { padding: 0; border-bottom: 0; }
.specs--pairs dd { white-space: nowrap; }

.price { display: flex; align-items: flex-end; gap: 1.125rem; margin-top: var(--sp-6); flex-wrap: wrap; }
.price__net { font-family: var(--f-head); font-weight: 700; font-size: 1.75rem; letter-spacing: -0.02em; }
.price__gross { font-size: 0.9375rem; color: var(--c-muted-2); margin-top: 0.125rem; }

.product__actions { display: flex; gap: 0.6875rem; margin-top: var(--sp-6); flex-wrap: wrap; align-items: center; }

.stock {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-family: var(--f-head); font-weight: 700; font-size: 0.9375rem;
  padding: 0.875rem 1.25rem; border-radius: var(--r-md);
}
.stock__dot { width: 0.5625rem; height: 0.5625rem; border-radius: 50%; flex-shrink: 0; }
.stock--ok { background: var(--c-ok-bg); color: var(--c-ok-fg); }
.stock--ok .stock__dot { background: var(--c-ok-dot); }
.stock--warn { background: var(--c-warn-bg); color: var(--c-warn-fg); }
.stock--warn .stock__dot { background: var(--c-warn-dot); }
.stock--off { background: var(--c-off-bg); color: var(--c-off-fg); }
.stock--off .stock__dot { background: var(--c-off-dot); }

.gallery__main {
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  background: var(--c-white);
  padding: var(--sp-5);
  display: grid; place-items: center;
  min-height: 19.5rem;
}
.gallery__main img { max-height: 24.375rem; max-width: 100%; width: auto; height: auto; object-fit: contain; }
.gallery__thumbs { display: flex; gap: 0.625rem; margin-top: var(--sp-3); flex-wrap: wrap; }
.gallery__thumb {
  width: 6rem; height: 4.875rem;
  border: 1px solid var(--c-border); border-radius: 0.5625rem;
  display: grid; place-items: center; padding: 0.3125rem; background: var(--c-white);
  cursor: pointer; overflow: hidden; transition: border-color .18s var(--ease);
}
.gallery__thumb:hover { border-color: var(--c-primary); }
.gallery__thumb--active { border-color: var(--c-primary); border-width: 2px; }
.gallery__thumb img { max-height: 4.0625rem; max-width: 100%; width: auto; height: auto; object-fit: contain; }

.ref-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
.ref-tile {
  display: block; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--c-border);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}
.ref-tile:hover { opacity: .88; transform: scale(1.01); }
.ref-tile img { width: 100%; height: 100%; object-fit: cover; }

.ref-carousel { position: relative; margin-top: var(--sp-8); }
.ref-carousel__viewport { overflow: hidden; border-radius: var(--r-xl); }
.ref-carousel__track {
  display: flex;
  gap: var(--sp-5);
  transition: transform .6s var(--ease);
  will-change: transform;
}
.ref-carousel__slide { flex: 0 0 100%; min-width: 0; }

.ref-card {
  display: block;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  color: var(--c-ink);
  height: 100%;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.ref-card:hover { border-color: var(--c-primary); box-shadow: var(--sh-md); transform: translateY(-2px); color: var(--c-ink); }
.ref-card__media { aspect-ratio: 4 / 3; background: var(--c-border); overflow: hidden; }
.ref-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.ref-card:hover .ref-card__media img { transform: scale(1.04); }
.ref-card__body { padding: var(--sp-5); }
.ref-card__cat {
  font-family: var(--f-head); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.11em; text-transform: uppercase; color: var(--c-primary);
}
.ref-card__title { font-family: var(--f-head); font-weight: 600; font-size: 1.1875rem; margin-top: 0.5rem; letter-spacing: -0.01em; }
.ref-card__meta { font-size: 0.90625rem; color: var(--c-muted-2); margin-top: 0.375rem; }

.carousel__nav { display: flex; align-items: center; justify-content: center; gap: var(--sp-3); margin-top: var(--sp-5); }
.carousel__btn {
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  border: 1px solid var(--c-border-2); background: var(--c-white);
  display: grid; place-items: center; cursor: pointer; color: var(--c-primary);
  transition: all .18s var(--ease);
}
.carousel__btn:hover { border-color: var(--c-primary); background: var(--c-primary); color: var(--c-white); }
.carousel__dots { display: flex; gap: 0.5rem; }
.carousel__dot {
  width: 0.5rem; height: 0.5rem; border-radius: 50%; border: 0; padding: 0;
  background: var(--c-border-2); cursor: pointer; transition: all .18s var(--ease);
}
.carousel__dot--active { background: var(--c-primary); width: 1.5rem; border-radius: var(--r-pill); }

.lightbox {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(6, 26, 48, .92);
  display: none; place-items: center;
  padding: clamp(0.875rem, 0.5rem + 2vw, 2.5rem);

  height: 100vh;
  height: 100dvh;
}
.lightbox.is-open { display: grid; }
.lightbox__img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  border-radius: var(--r-sm); animation: jf-up .2s ease-out; object-fit: contain;
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; background: rgba(255, 255, 255, .14); border: 0;
  color: #fff; width: 3rem; height: 3rem; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  font-size: 1.5rem; line-height: 0;
  transition: background-color .18s var(--ease);
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255, 255, 255, .3); }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev { left: 0.75rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 0.75rem; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  color: rgba(255, 255, 255, .8); font-size: 0.875rem;
  background: rgba(6, 26, 48, .6); padding: 0.375rem 0.875rem; border-radius: var(--r-pill);
}

.cta-band { background: var(--c-primary); }
.cta-band__inner {
  padding-block: clamp(2.5rem, 2rem + 2.4vw, 4.5rem);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--sp-8); flex-wrap: wrap; text-align: center;
}
.cta-band h2 { color: var(--c-white); font-size: clamp(1.5rem, 1.3rem + 1.1vw, 2.25rem); }
.cta-band p { font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem); color: #BFD6EC; margin-top: var(--sp-3); }
.cta-band__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; justify-content: center; width: 100%; }
.cta-band__actions .btn { flex: 1 1 auto; }

.contact-card {
  display: block; border: 1px solid var(--c-border); border-radius: var(--r-xl);
  padding: var(--sp-6); transition: border-color .18s var(--ease);
}
.contact-card + .contact-card, .contact-card + .btn { margin-top: 0.875rem; }
.contact-card:hover { border-color: var(--c-primary); }
.contact-card__label {
  font-size: 0.875rem; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--c-muted-3); font-weight: 600;
}
.contact-card__value {
  font-family: var(--f-head); font-weight: 700;
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.625rem);
  color: var(--c-primary); margin-top: 0.4375rem; word-break: break-word;
}
.contact-card__text { font-size: 1.125rem; line-height: 1.55; margin-top: 0.4375rem; font-weight: 500; }

.map-wrap {
  border: 1px solid var(--c-border); border-radius: var(--r-xl);
  overflow: hidden; min-height: 18.75rem;
  display: flex; flex-direction: column;
}
.map-wrap > * { flex: 1 1 auto; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 18.75rem; border: 0; display: block; }

.map-wrap--pinned { position: relative; }
.map-canvas { width: 100%; height: 100%; min-height: 18.75rem; border: 0; display: block; z-index: 0; }

.map-open {
  z-index: 500;
  position: absolute; left: 0.75rem; top: 0.75rem;
  background: var(--c-white); color: var(--c-primary);
  font-family: var(--f-head); font-weight: 700; font-size: 0.8125rem;
  padding: 0.5rem 0.875rem; border-radius: var(--r-md);
  border: 1px solid var(--c-border-2);
  box-shadow: 0 2px 8px rgba(15, 26, 42, .12);
}
.map-open:hover { background: var(--c-primary); color: var(--c-white); border-color: var(--c-primary); }

.info-box { background: var(--c-surface); border-radius: var(--r-xl); padding: clamp(1.5rem, 1.25rem + 1vw, 2rem); }
.info-box__title {
  font-family: var(--f-head); font-weight: 700; font-size: 0.8125rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-primary);
}
.info-list { display: grid; grid-template-columns: auto 1fr; gap: 0 1.125rem; margin: var(--sp-4) 0 0; font-size: 1rem; }
.info-list dt { color: var(--c-muted-2); padding: 0.5rem 0; border-bottom: 1px solid var(--c-border); }
.info-list dd { margin: 0; font-weight: 600; padding: 0.5rem 0; border-bottom: 1px solid var(--c-border); text-align: right; }

.prose { font-size: clamp(1rem, 0.97rem + 0.2vw, 1.0625rem); line-height: 1.75; color: var(--c-muted); max-width: 72ch; }
.prose > * + * { margin-top: var(--sp-4); }
.prose h2 { font-size: clamp(1.375rem, 1.25rem + 0.6vw, 1.625rem); color: var(--c-ink); margin-top: var(--sp-10); }
.prose h3 { font-size: clamp(1.125rem, 1.05rem + 0.4vw, 1.3125rem); color: var(--c-ink); margin-top: var(--sp-8); }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li + li { margin-top: var(--sp-2); }
.prose strong { color: var(--c-ink); }
.prose a { text-decoration: underline; text-underline-offset: 0.125rem; }
.prose blockquote {
  border-left: 3px solid var(--c-primary); padding-left: var(--sp-5);
  color: var(--c-body); font-style: italic;
}
.lead-text {
  font-size: clamp(1.0625rem, 1rem + 0.5vw, 1.25rem);
  line-height: 1.6; color: var(--c-ink);
}

.newsletter { background: var(--c-white); border-top: 1px solid var(--c-border); }
.newsletter__inner {
  padding-block: clamp(2.5rem, 2rem + 2.5vw, 4.5rem);
  display: grid; gap: clamp(1.75rem, 1.4rem + 1.8vw, 3rem); align-items: center;
}
.newsletter__title { font-size: clamp(1.5rem, 1.32rem + 1vw, 2.125rem); }
.newsletter__text { font-size: clamp(1rem, 0.96rem + 0.3vw, 1.0625rem); color: var(--c-muted); margin-top: var(--sp-3); max-width: 52ch; }
.newsletter__form { display: flex; flex-direction: column; gap: var(--sp-3); }
.newsletter__row { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.newsletter__row .field { flex: 1 1 15rem; }
.newsletter__gdpr {
  display: flex; align-items: flex-start; gap: 0.6875rem;
  font-size: 0.875rem; line-height: 1.5; color: var(--c-muted-2); cursor: pointer;
}
.newsletter__gdpr input { accent-color: var(--c-primary); width: 1.0625rem; height: 1.0625rem; margin-top: 0.125rem; flex-shrink: 0; }
.newsletter__note { font-size: 0.875rem; color: var(--c-muted-3); }

.footer { background: var(--c-surface); border-top: 1px solid var(--c-border); }
.footer__inner {
  padding-block: clamp(2.75rem, 2.2rem + 2.6vw, 5rem) var(--sp-8);
  display: grid; gap: clamp(2rem, 1.6rem + 2vw, 3rem);
  text-align: center; justify-items: center;
}
.footer__logo { display: flex; align-items: center; gap: 0.6875rem; }
.footer__logo .logo__img { height: 2.125rem; }
.footer__about { font-size: 1rem; line-height: 1.65; color: var(--c-muted); margin-top: var(--sp-5); max-width: 34ch; }
.footer__actions { display: flex; gap: 0.625rem; margin-top: var(--sp-6); flex-wrap: wrap; justify-content: center; }
.footer__col-title {
  font-family: var(--f-head); font-weight: 700;
  font-size: clamp(0.9375rem, 0.9rem + 0.25vw, 1.0625rem);
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-primary);
}
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.125rem; align-items: center; }
.footer__links a { font-size: 1rem; color: var(--c-body); }
.footer__links a:hover { color: var(--c-primary); }
.footer__contact { font-size: 1rem; line-height: 1.7; color: var(--c-body); margin-top: 1.125rem; }
.footer__contact a { color: var(--c-body); }
.footer__contact a:hover { color: var(--c-primary); }
.footer__legal { font-size: 0.90625rem; color: var(--c-muted-3); margin-top: 0.875rem; }
.footer__bottom {
  border-top: 1px solid var(--c-border);
  padding: var(--sp-6) 0 var(--sp-10);
  display: flex; justify-content: space-between; gap: var(--sp-5);
  flex-wrap: wrap; font-size: 0.90625rem; color: var(--c-muted-3);
  text-align: center; justify-content: center;
}
.footer__bottom-links { display: flex; gap: 1.375rem; flex-wrap: wrap; justify-content: center; }
.footer__bottom a { color: var(--c-muted-3); }
.footer__bottom a:hover { color: var(--c-primary); }

.call-fab {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 80;
  display: flex; align-items: center; gap: 0.75rem;
}
.call-fab__label {
  display: none;
  background: var(--c-white); border: 1px solid var(--c-border-2);
  box-shadow: var(--sh-sm); color: var(--c-ink);
  font-family: var(--f-head); font-weight: 600; font-size: 0.90625rem;
  padding: 0.625rem 0.9375rem; border-radius: var(--r-pill); white-space: nowrap;
}
.call-fab__label:hover { color: var(--c-primary); }
.call-fab__ring { position: relative; width: 3.5rem; height: 3.5rem; display: block; }
.call-fab__ring span {
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--c-primary); opacity: .5;
  animation: jf-ring 2.4s ease-out infinite;
}
.call-fab__ring span:nth-child(2) { animation-delay: 1.2s; }
.call-fab__btn {
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--c-primary); box-shadow: 0 0.75rem 1.875rem -0.625rem rgba(11, 74, 143, .6);
  display: grid; place-items: center; color: var(--c-white);
  animation: jf-bob 3s ease-in-out infinite;
}
.call-fab__btn:hover { background: var(--c-primary-dark); color: var(--c-white); }

.modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(6, 26, 48, .55);
  backdrop-filter: blur(0.1875rem);
  display: none; align-items: stretch; justify-content: center;
  padding: 0;

  height: 100vh;
  height: 100dvh;

  overflow: hidden;
}
.modal.is-open { display: flex; }
.modal__box {
  background: var(--c-white); border-radius: 0; width: 100%; max-width: 47.5rem;
  box-shadow: var(--sh-xl); animation: jf-up .22s ease-out;
  display: flex; flex-direction: column;
  max-height: 100%; min-height: 0;
}
.modal__head {
  flex: 0 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: var(--sp-5); padding: var(--sp-6) 1.25rem 0;
}
.modal__title { font-size: clamp(1.375rem, 1.25rem + 0.6vw, 1.625rem); }
.modal__sub { font-size: 1rem; color: var(--c-muted-2); margin-top: var(--sp-2); }
.modal__close {
  flex-shrink: 0; width: 2.375rem; height: 2.375rem; border: 0;
  border-radius: 0.5625rem; background: #F1F5F9; color: var(--c-body);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer; line-height: 0;
}
.modal__close:hover { background: #E2E9F1; }
.modal__body {
  flex: 1 1 auto; min-height: 0;
  overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  padding: var(--sp-5) 1.25rem var(--sp-8);

  padding-bottom: calc(var(--sp-8) + env(safe-area-inset-bottom, 0px));
}

.tabs { display: flex; gap: var(--sp-2); background: #F1F5F9; padding: 0.3125rem; border-radius: var(--r-lg); width: fit-content; }
.tab {
  padding: 0.5625rem 1.125rem; border: 0; border-radius: var(--r-sm);
  font-size: 0.9375rem; font-weight: 600; color: var(--c-muted);
  background: transparent; cursor: pointer;
}
.tab--active { color: var(--c-primary); background: var(--c-white); box-shadow: 0 1px 2px rgba(15, 26, 42, .08); }

.form-grid { display: grid; grid-template-columns: 1fr; gap: 0.875rem; margin-top: var(--sp-5); }
.field { display: block; }
.field--span2 { grid-column: 1 / -1; }
.field__label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--c-body); margin-bottom: 0.375rem; }
.field__control, .input, .textarea, .select {
  width: 100%; border: 1px solid var(--c-border-2); border-radius: var(--r-md);
  padding: 0.75rem 0.8125rem; font-size: 0.96875rem; color: var(--c-ink);
  background: var(--c-white); outline: none;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.textarea { resize: vertical; min-height: 6rem; }
.input:focus, .textarea:focus, .select:focus, .field__control:focus {
  border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(11, 74, 143, .12);
}
.input[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: var(--c-err); }

.radio-row { display: flex; gap: 0.625rem; flex-wrap: wrap; }
.radio-box {
  display: flex; align-items: center; gap: 0.5625rem;
  border: 1px solid var(--c-border-2); border-radius: var(--r-md);
  padding: 0.75rem 1rem; font-size: 0.96875rem; cursor: pointer;
  transition: border-color .15s var(--ease);
}
.radio-box:hover { border-color: var(--c-primary); }
.radio-box input { accent-color: var(--c-primary); width: 1rem; height: 1rem; }
.radio-box:has(input:checked) { border-color: var(--c-primary); background: var(--c-primary-soft); }

.checkbox-row {
  display: flex; align-items: flex-start; gap: 0.6875rem; margin-top: var(--sp-5);
  font-size: 0.9375rem; line-height: 1.55; color: var(--c-muted); cursor: pointer;
}
.checkbox-row input { accent-color: var(--c-primary); width: 1.0625rem; height: 1.0625rem; margin-top: 0.125rem; flex-shrink: 0; }

.form-foot { display: flex; align-items: center; gap: var(--sp-4); margin-top: var(--sp-6); flex-wrap: wrap; }
.form-note { font-size: 0.9375rem; color: var(--c-muted-3); }

.form-msg { border-radius: var(--r-md); padding: 0.875rem 1rem; font-size: 0.9375rem; margin-top: var(--sp-4); }
.form-msg--error { background: var(--c-err-bg); color: var(--c-err); }
.form-msg--ok { background: var(--c-ok-bg); color: var(--c-ok-fg); }

.form-success { padding: clamp(2rem, 1.6rem + 2vw, 2.875rem) 1.25rem; text-align: center; }
.form-success__icon {
  width: 3.625rem; height: 3.625rem; border-radius: 50%;
  background: var(--c-ok-bg); color: var(--c-ok-fg);
  display: grid; place-items: center; margin: 0 auto; font-size: 1.625rem; font-weight: 700;
}
.form-success__title { font-family: var(--f-head); font-weight: 700; font-size: 1.375rem; margin-top: 1.125rem; }
.form-success__text { font-size: 1.03125rem; color: var(--c-muted); margin-top: 0.625rem; }

.form-step { margin-top: var(--sp-6); padding-top: var(--sp-5); border-top: 1px solid var(--c-border); }
.form-step:first-of-type { margin-top: var(--sp-5); padding-top: 0; border-top: 0; }
.form-step__title {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--f-head); font-weight: 700;
  font-size: 0.8125rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-primary);
}
.form-step__n {
  display: grid; place-items: center;
  width: 1.375rem; height: 1.375rem; border-radius: 50%;
  background: var(--c-primary-soft); color: var(--c-primary);
  font-size: 0.75rem; letter-spacing: 0;
}

.rental-block {
  margin-top: var(--sp-4);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-md);
  background: var(--c-tint);
  padding: 0.875rem 1rem 1rem;
}
.rental-block__label {
  font-size: 0.8125rem; font-weight: 600; color: var(--c-primary);
  display: flex; align-items: center; gap: 0.375rem;
}

.form-grid > * { min-width: 0; }

.input[type="date"] {
  -webkit-appearance: none; appearance: none;
  min-width: 0; width: 100%; max-width: 100%;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7C93' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4.5' width='18' height='16' rx='2.5'/%3E%3Cpath d='M3 9.5h18M8 2.5v4M16 2.5v4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.125rem 1.125rem;
}
.input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0; cursor: pointer;
  width: 1.5rem; height: 1.5rem;
  margin: 0 -0.375rem 0 0; padding: 0;
}

.input[type="date"]::-webkit-date-and-time-value { text-align: left; }
.input[type="date"]:disabled { opacity: .55; background-color: var(--c-tint); }

.field__hint {
  display: flex; align-items: center; gap: 0.375rem;
  margin-top: 0.375rem; font-size: 0.8125rem; color: var(--c-muted-2);
}
.input--locked {
  background: var(--c-surface);
  color: var(--c-ink);
  font-weight: 600;
  border-color: var(--c-border-2);
  cursor: default;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translate(-50%, 1rem);
  z-index: 130;
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--c-ink);
  color: var(--c-white);
  font-size: 0.9375rem; font-weight: 500;
  padding: 0.75rem 1.125rem;
  border-radius: var(--r-pill);
  box-shadow: 0 1rem 2.5rem -0.75rem rgba(6, 26, 48, .6);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  max-width: calc(100vw - 2rem);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.toast svg { flex-shrink: 0; color: #6BE3A6; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.cookie-bar {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 110;
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); box-shadow: 0 1.25rem 3rem -1rem rgba(6, 26, 48, .35);
  padding: 1.25rem; display: none; animation: jf-up .3s ease-out;
  max-width: 34rem;
}
.cookie-bar.is-open { display: block; }
.cookie-bar__title { font-family: var(--f-head); font-weight: 700; font-size: 1.0625rem; }
.cookie-bar__text { font-size: 0.9375rem; line-height: 1.55; color: var(--c-muted); margin-top: 0.5rem; }
.cookie-bar__text a { text-decoration: underline; }
.cookie-bar__actions { display: flex; gap: 0.625rem; margin-top: 1.125rem; flex-wrap: wrap; }
.cookie-bar__actions .btn { flex: 1 1 auto; }

.cookie-ball {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 105;
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--c-white); border: 1px solid var(--c-border-2);
  box-shadow: 0 0.5rem 1.5rem -0.5rem rgba(6, 26, 48, .35);
  display: none; place-items: center; cursor: pointer; padding: 0;
  color: var(--c-primary);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.cookie-ball.is-visible { display: grid; }
.cookie-ball:hover { transform: translateY(-2px) rotate(-8deg); box-shadow: 0 0.75rem 1.75rem -0.5rem rgba(6, 26, 48, .4); }

.breadcrumbs { font-size: 0.875rem; color: var(--c-muted-3); display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.breadcrumbs a { color: var(--c-muted-3); }
.breadcrumbs a:hover { color: var(--c-primary); }
.breadcrumbs__sep { opacity: .6; }

.empty-state {
  border: 1px dashed var(--c-border-2); border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-5); text-align: center; color: var(--c-muted-2);
}

.notice { border-radius: var(--r-lg); padding: 1rem 1.25rem; font-size: 0.96875rem; }
.notice--ok { background: var(--c-ok-bg); color: var(--c-ok-fg); }
.notice--err { background: var(--c-err-bg); color: var(--c-err); }

.error-page { text-align: center; padding-block: clamp(3rem, 2.4rem + 3vw, 6rem); }
.error-page__code { font-family: var(--f-head); font-weight: 700; font-size: clamp(4rem, 3rem + 6vw, 8rem); color: var(--c-primary-soft); line-height: 1; }

@keyframes jf-ring { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(2.2); opacity: 0; } }
@keyframes jf-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-0.25rem); } }
@keyframes jf-up { from { opacity: 0; transform: translateY(0.875rem); } to { opacity: 1; transform: none; } }

.reveal { opacity: 0; transform: translateY(1rem); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (min-width: 40em) {
  :root { --container-pad: 1.5rem; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .modal { padding: 2.5rem 1.25rem; align-items: flex-start; }
  .modal__box { border-radius: var(--r-2xl); min-height: 0; }
  .modal__head { padding: 1.875rem 2.125rem 0; }
  .modal__body { padding: 1.625rem 2.125rem 2.125rem; }
  .form-success { padding: 2.75rem 2.125rem 2.875rem; }
  .ref-grid { grid-template-columns: repeat(3, 1fr); gap: 0.875rem; }
  .cta-band__actions { width: auto; }
  .cta-band__actions .btn { flex: 0 0 auto; }
  .cookie-bar { left: 1.5rem; bottom: 1.5rem; right: auto; width: calc(100% - 3rem); padding: 1.5rem; }
  .cookie-ball { left: 1.5rem; bottom: 1.5rem; }
  .call-fab { right: 1.5rem; bottom: 1.5rem; }
}

@media (min-width: 48em) {
  .logo__img { height: 2.25rem; }
  .header__inner { min-height: var(--header-h); gap: var(--sp-4); padding-block: var(--sp-3); }
  .header__phone { display: block; }

  .hero__inner { grid-template-columns: 1fr; }
  .newsletter__inner { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: repeat(2, 1fr); text-align: left; justify-items: start; }
  .footer__links { align-items: flex-start; }
  .footer__actions { justify-content: flex-start; }
  .footer__bottom { justify-content: space-between; text-align: left; }
  .footer__bottom-links { justify-content: flex-start; }
  .ref-carousel__slide { flex: 0 0 calc((100% - var(--sp-5)) / 2); }
  .cta-band__inner { text-align: left; }
  .cta-band__actions { justify-content: flex-end; width: auto; }
  .call-fab__label { display: block; }
  .call-fab { right: 1.625rem; bottom: 1.625rem; }
}

@media (min-width: 64em) {
  :root { --container-pad: 1.75rem; }
  .header__cta { display: inline-flex; }

  .hero__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); }
  .ref-grid { grid-template-columns: repeat(4, 1fr); }
  .product-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .section > .product { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
  .ref-carousel__slide { flex: 0 0 calc((100% - var(--sp-5) * 2) / 3); }
  .footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .call-fab__ring { width: 4rem; height: 4rem; }
  .contact-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); }
  .map-wrap, .map-wrap iframe { min-height: 28.75rem; }
  .onas-grid { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); }
}

@media (min-width: 80em) {
  .nav { display: flex; }
  .burger { display: none; }
  .ref-grid { grid-template-columns: repeat(5, 1fr); }
  .ref-grid--home { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 96em) {
  :root { --container-pad: 2rem; }
}

@media (min-width: 120em) {
  :root { --container: 84rem; --container-pad: 2.25rem; }
  .hero__inner { padding-block: 5rem 5.5rem; }
}
