:root {
  --bg: #f4f7f9;
  --surface: #ffffff;
  --surface-soft: #edf3f7;
  --ink: #111827;
  --muted: #697586;
  --line: rgba(17, 24, 39, .1);
  --blue: #006fba;
  --blue-dark: #0e3342;
  --green: #35b957;
  --shadow: 0 10px 30px rgba(15, 23, 42, .08);
  --shadow-strong: 0 24px 60px rgba(15, 23, 42, .13);
  --container: 1880px;
  --gutter: clamp(28px, 2.8vw, 56px);
  --accent-font: "IBM Plex Sans", Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
}

.tool-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.5;
}

.tool-nav__item.is-active {
  background: rgba(0, 111, 186, .10);
  color: var(--blue);
  transform: translateX(2px);
}

.tool-panel__head p:not(.eyebrow) {
  max-width: 860px;
  margin: 0;
  color: #667386;
  font-size: 16px;
  line-height: 1.5;
}

.tool-filter.is-active {
  border-color: rgba(0, 111, 186, .30);
  background: rgba(0, 111, 186, .10);
  color: var(--blue);
}

.account-nav a.is-active {
  background: rgba(0, 111, 186, .10);
  color: var(--blue);
  transform: translateX(2px);
}

.account-hero p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  font-weight: 500;
}

.account-hero .eyebrow {
  color: #9ee8b0;
}

.crm-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

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

@keyframes crm-loading-sweep {
  from {
    background-position: -240px 0, 0 0;
  }
  to {
    background-position: calc(100% + 240px) 0, 0 0;
  }
}

.crm-lead-editor.is-open,
.crm-lead-viewer.is-open,
.crm-task-editor.is-open {
  opacity: 1;
}

.crm-lead-editor.is-open .crm-lead-editor__panel,
.crm-lead-viewer.is-open .crm-lead-viewer__panel,
.crm-task-editor.is-open .crm-task-editor__panel {
  transform: translateX(0);
}

.crm-nav a.is-active {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .13);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 10px 30px rgba(0, 0, 0, .10);
}

:where(.category-card, .product-gallery__stage, .product-gallery__thumbs button, .search-result__image, .builder-card__image, .category-related-card__image) {
  --image-surface: #f7fafc;
  --image-surface-glow: rgba(0, 111, 186, .045);
}

:where(.category-card img, .product-gallery__stage img, .product-gallery__thumbs img, .search-result__image img, .builder-card__image img, .category-related-card__image img) {
  mix-blend-mode: multiply;
  filter: saturate(1.02) contrast(1.015);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 1180px;
  overflow-x: hidden;
  font-feature-settings: "liga" 1, "kern" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 111, 186, .10), transparent 34rem),
    linear-gradient(180deg, #fff 0, var(--bg) 280px);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(15, 23, 42, .28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

body:has(.search-drawer:not([hidden]))::before {
  opacity: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 118px, rgba(0, 111, 186, .10), rgba(15, 23, 42, 0) 30rem),
    rgba(15, 23, 42, .30);
  backdrop-filter: blur(10px) saturate(1.04);
  -webkit-backdrop-filter: blur(10px) saturate(1.04);
}

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

button,
input { font: inherit; }

svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.app-shell {
  position: relative;
  min-height: 100vh;
}

.admin-toolbar {
  --admin-toolbar-height: 36px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  min-height: var(--admin-toolbar-height);
  border-bottom: 1px solid rgba(203, 213, 225, .62);
  background:
    radial-gradient(ellipse at 84% 50%, rgba(58, 190, 99, .12), rgba(58, 190, 99, 0) 42%),
    rgba(247, 250, 252, .86);
  box-shadow:
    0 10px 28px rgba(15, 23, 42, .08),
    inset 0 1px 0 rgba(255, 255, 255, .82);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
}

.admin-toolbar__inner {
  width: min(calc(100% - var(--gutter) * 2), var(--container));
  min-height: var(--admin-toolbar-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: #1f6fa9;
  font-size: 14px;
  font-weight: 500;
}

.admin-toolbar__user {
  max-width: 280px;
  overflow: hidden;
  color: rgba(15, 23, 42, .52);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-toolbar__nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.admin-toolbar__nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1f6fa9;
  transition: color 160ms ease, opacity 160ms ease;
}

.admin-toolbar__nav a:hover,
.admin-toolbar__nav a:focus-visible {
  color: var(--blue);
  opacity: .86;
}

.admin-toolbar__nav svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.1;
  color: #55b871;
}

@media (max-width: 720px) {
.admin-toolbar {
    --admin-toolbar-height: 34px;
  }

.admin-toolbar__inner {
    justify-content: center;
    gap: 14px;
    font-size: 12px;
  }

.admin-toolbar__user {
    display: none;
  }

.admin-toolbar__nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }
}

.topline {
  height: 28px;
  background: var(--blue-dark);
  color: #fff;
}

.topline__inner,
.header-main,
.category-nav {
  width: min(calc(100% - var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.topline__inner {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 450;
}

.topline strong {
  color: #83d9f0;
  letter-spacing: .08em;
  font-weight: 700;
}

.topline span {
  color: rgba(255, 255, 255, .82);
}

.topline nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.topline__contacts {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 8px;
  min-width: 0;
}

.topline__contacts a {
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease;
}

.topline__contacts a:hover {
  color: #fff;
}

.language-switcher {
  padding: 2px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.language-switch {
  border: 0;
  min-width: 38px;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.language-switch.is-active {
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .10);
}

.site-header {
  position: sticky;
  top: var(--admin-toolbar-offset, 0px);
  z-index: 10;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

body.is-catalog-open .site-header {
  z-index: 90;
}

body:has(.search-drawer:not([hidden])) .site-header {
  z-index: 92;
}

body:has(.search-drawer:not([hidden])) .search {
  z-index: 94;
  border-color: rgba(0, 111, 186, .42);
  background: rgba(255, 255, 255, .76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .92),
    0 18px 46px rgba(0, 111, 186, .12),
    0 28px 78px rgba(15, 23, 42, .10);
}

body:has(.search-drawer:not([hidden])) .search::before {
  background: radial-gradient(ellipse at 68% 50%, rgba(0, 111, 186, .34), rgba(0, 111, 186, .13) 45%, rgba(0, 111, 186, 0) 78%);
  filter: blur(17px);
}

.header-main {
  height: 112px;
  display: grid;
  grid-template-columns: 360px minmax(560px, 1fr) 420px;
  gap: 32px;
  align-items: center;
}

.brand {
  display: grid;
  gap: 8px;
  align-content: center;
  justify-self: start;
}

.brand__logo {
  width: 290px;
  height: auto;
  display: block;
}

.brand__tagline {
  font-family: var(--accent-font);
  color: #6f7785;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 450;
  letter-spacing: .10em;
}

.site-footer {
  margin-top: 72px;
  padding: 0 var(--gutter) 24px;
  color: #334155;
}

.site-footer__inner {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: minmax(210px, .78fr) minmax(560px, 1.15fr) minmax(360px, .78fr);
  gap: clamp(18px, 2vw, 34px);
  align-items: center;
  border: 1px solid rgba(187, 214, 230, .62);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(236, 247, 252, .58)),
    rgba(255, 255, 255, .72);
  box-shadow:
    0 24px 70px rgba(36, 73, 96, .10),
    inset 0 1px 0 rgba(255, 255, 255, .78);
  backdrop-filter: blur(20px) saturate(138%);
  -webkit-backdrop-filter: blur(20px) saturate(138%);
}

.site-footer__brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: fit-content;
  padding: 0;
}

.site-footer__logo {
  position: relative;
  width: clamp(168px, 15vw, 230px);
  height: auto;
  display: block;
  filter:
    saturate(.82)
    brightness(.9)
    drop-shadow(0 10px 22px rgba(67, 120, 148, .14));
}

.site-footer__contacts {
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 22px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  white-space: nowrap;
  font-style: normal;
  line-height: 1.2;
}

.site-footer__contacts a,
.site-footer__social a {
  color: #334155;
  text-decoration: none;
}

.site-footer__contacts a:hover,
.site-footer__social a:hover {
  color: var(--blue);
}

.site-footer__links {
  display: grid;
  gap: 6px;
  justify-items: end;
  min-width: 0;
}

.site-footer__pages {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
  max-width: 100%;
  white-space: nowrap;
}

.site-footer__pages a + a::before {
  content: "/";
  margin-right: 6px;
  color: rgba(100, 116, 139, .45);
}

.site-footer__pages a {
  color: rgba(51, 65, 85, .64);
  font-size: 11px;
  font-weight: 430;
  line-height: 1.3;
  text-decoration: none;
}

.site-footer__pages a:hover {
  color: var(--blue);
}

.site-footer__social {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 10px;
  white-space: nowrap;
}

.site-footer__social a {
  padding: 8px 12px;
  border: 1px solid rgba(0, 111, 186, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.site-footer__social a:hover {
  border-color: rgba(0, 111, 186, .28);
  background: rgba(255, 255, 255, .72);
}

.search {
  position: relative;
  z-index: 0;
  isolation: isolate;
  height: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  align-items: center;
  border: 1px solid rgba(0, 111, 186, .45);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(0, 111, 186, .10);
  overflow: hidden;
}

.search::before,
.search::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.search::before {
  z-index: 0;
  width: 118px;
  height: 64px;
  right: -10px;
  top: 0;
  background: radial-gradient(ellipse at 68% 50%, rgba(0, 111, 186, .22), rgba(0, 111, 186, .08) 45%, rgba(0, 111, 186, 0) 78%);
  filter: blur(18px);
}

.search::after {
  z-index: 0;
  width: 72px;
  height: 30px;
  right: 22px;
  bottom: 8px;
  background: radial-gradient(ellipse at 30% 66%, rgba(255, 255, 255, .34), rgba(255, 255, 255, 0) 72%);
  filter: blur(12px);
}

.search input {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding-left: 34px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 17px;
  font-weight: 400;
}

.search input::placeholder {
  color: #8b95a4;
}

.search button {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 100%;
  justify-self: end;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: rgba(0, 111, 186, .92);
  font-size: 0;
  line-height: 0;
  font-weight: 650;
  cursor: pointer;
  box-shadow: none;
}

.search button::before,
.search button::after {
  content: "";
  position: absolute;
  z-index: 3;
  display: block;
  pointer-events: none;
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(0, 111, 186, .22));
}

.search button::before {
  width: 18px;
  height: 18px;
  top: 19px;
  left: 15px;
  border: 3px solid currentColor;
  border-radius: 999px;
  background: transparent;
}

.search button::after {
  width: 12px;
  height: 3px;
  top: 39px;
  left: 33px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.search button svg {
  display: none;
}

.search:focus-within::before,
.search:hover::before {
  background: radial-gradient(ellipse at 68% 50%, rgba(0, 111, 186, .34), rgba(0, 111, 186, .14) 45%, rgba(0, 111, 186, 0) 78%);
  filter: blur(17px);
}

.search:focus-within button svg,
.search:hover button svg {
  filter: none;
}

.search:focus-within button::before,
.search:hover button::before,
.search:focus-within button::after,
.search:hover button::after {
  filter: drop-shadow(0 0 12px rgba(0, 111, 186, .34));
}

.header-actions {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.mobile-header-actions {
  display: none;
}

.icon-button,
.cart-button {
  height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(0, 111, 186, .16);
  background: var(--surface);
  color: var(--blue);
  box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
  cursor: pointer;
}

.cart-button {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .70),
    0 16px 40px rgba(0, 111, 186, .10),
    0 4px 16px rgba(15, 23, 42, .04);
}

.icon-button {
  position: relative;
  width: 56px;
  display: grid;
  place-items: center;
}

.icon-button.is-account-trigger-active {
  position: relative;
  z-index: 92;
}

.icon-button.is-compare-hidden {
  display: none;
}

.icon-button.is-guest {
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .70),
    0 18px 46px rgba(234, 88, 12, .16),
    0 6px 22px rgba(234, 88, 12, .09),
    0 4px 16px rgba(15, 23, 42, .04);
}

.icon-button.is-authenticated {
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .70),
    0 18px 46px rgba(53, 185, 87, .17),
    0 6px 22px rgba(53, 185, 87, .10),
    0 4px 16px rgba(15, 23, 42, .04);
}

.auth-cached-guest .icon-button[data-auth-open],
.auth-cached-auth .icon-button[data-auth-open] {
  overflow: hidden;
}

.auth-cached-guest .icon-button[data-auth-open] {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .70),
    0 18px 46px rgba(234, 88, 12, .16),
    0 6px 22px rgba(234, 88, 12, .09),
    0 4px 16px rgba(15, 23, 42, .04);
}

.auth-cached-auth .icon-button[data-auth-open] {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .70),
    0 18px 46px rgba(53, 185, 87, .17),
    0 6px 22px rgba(53, 185, 87, .10),
    0 4px 16px rgba(15, 23, 42, .04);
}

.icon-button.is-guest::before,
.icon-button.is-authenticated::before,
.auth-cached-guest .icon-button[data-auth-open]::before,
.auth-cached-auth .icon-button[data-auth-open]::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 11px;
  pointer-events: none;
  opacity: 1;
  filter: blur(1px);
}

.icon-button.is-guest::before {
  background:
    radial-gradient(ellipse 74% 34% at 72% 35%, rgba(234, 88, 12, .30), rgba(234, 88, 12, .16) 42%, rgba(234, 88, 12, 0) 80%),
    radial-gradient(ellipse 48% 22% at 32% 78%, rgba(234, 88, 12, .13), rgba(234, 88, 12, 0) 74%);
}

.icon-button.is-authenticated::before,
.auth-cached-auth .icon-button[data-auth-open]::before {
  background:
    radial-gradient(ellipse 74% 34% at 72% 35%, rgba(53, 185, 87, .30), rgba(53, 185, 87, .16) 42%, rgba(53, 185, 87, 0) 80%),
    radial-gradient(ellipse 48% 22% at 32% 78%, rgba(53, 185, 87, .13), rgba(53, 185, 87, 0) 74%);
}

.auth-cached-guest .icon-button[data-auth-open]::before {
  background:
    radial-gradient(ellipse 74% 34% at 72% 35%, rgba(234, 88, 12, .30), rgba(234, 88, 12, .16) 42%, rgba(234, 88, 12, 0) 80%),
    radial-gradient(ellipse 48% 22% at 32% 78%, rgba(234, 88, 12, .13), rgba(234, 88, 12, 0) 74%);
}

.icon-button svg {
  position: relative;
  z-index: 1;
}

.icon-button span {
  position: absolute;
  top: -8px;
  right: -6px;
  z-index: 2;
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.account-popover.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.is-account-menu-open .topline,
body.is-account-menu-open .brand,
body.is-account-menu-open .search,
body.is-account-menu-open .category-nav,
body.is-account-menu-open .cart-button,
body.is-account-menu-open .header-actions > :not(.is-account-trigger-active):not(.account-popover) {
  opacity: 1;
  filter: none;
  pointer-events: auto;
}

body.is-account-menu-open .header-actions,
.icon-button.is-account-trigger-active {
  z-index: auto;
}

.account-popover.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.account-popover.is-open .account-popover__panel {
  transform: translateX(0) scale(1);
}

.cart-button {
  min-width: 150px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 450;
}

.cart-button span {
  display: grid;
  gap: 2px;
  justify-items: end;
  min-width: 104px;
  text-align: right;
  line-height: 1.05;
}

.cart-button strong {
  color: var(--blue);
  font-size: 19px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.cart-button small {
  color: #7a8798;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.cart-button svg {
  color: var(--blue);
  width: 32px;
  height: 32px;
}

.cart-button.is-filled {
  border-color: rgba(0, 111, 186, .24);
  color: var(--blue);
  font-weight: 720;
}

.cart-drawer[hidden] {
  display: none;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(0, 111, 186, .22), transparent 34rem),
    rgba(15, 23, 42, .34);
  backdrop-filter: blur(10px) saturate(1.04);
  -webkit-backdrop-filter: blur(10px) saturate(1.04);
}

.cart-drawer__panel {
  position: absolute;
  top: 8px;
  right: 10px;
  bottom: 8px;
  width: min(86vw, calc(100vw - 20px));
  min-width: min(1080px, calc(100vw - 20px));
  max-width: calc(100vw - 20px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, .82);
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, .92), transparent 18rem),
    radial-gradient(circle at 96% 12%, rgba(0, 111, 186, .07), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(247, 251, 253, .68));
  box-shadow:
    0 38px 96px rgba(15, 23, 42, .28),
    0 10px 28px rgba(0, 111, 186, .12);
  backdrop-filter: blur(30px) saturate(1.16);
  -webkit-backdrop-filter: blur(30px) saturate(1.16);
  transition:
    width 320ms ease,
    min-width 320ms ease,
    right 320ms ease,
    left 320ms ease,
    border-radius 320ms ease,
    grid-template-rows 320ms ease;
}

.cart-drawer.is-checkout .cart-drawer__panel {
  left: 10px;
  right: 10px;
  width: auto;
  min-width: 0;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.cart-drawer__head {
  min-height: 54px;
  padding: 0 16px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(226, 232, 240, .68);
  background: rgba(255, 255, 255, .42);
}

.cart-drawer__head h2 {
  margin: 0;
  color: #111827;
  font-size: 23px;
  line-height: 1;
  font-weight: 780;
}

.cart-drawer__head button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 41, 55, .08);
  border-radius: 13px;
  background:
    radial-gradient(ellipse at 28% 18%, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0) 62%),
    rgba(255, 255, 255, .82);
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .74),
    0 12px 28px rgba(15, 23, 42, .055);
}

.cart-drawer__head button[data-cart-close] {
  position: relative;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 28% 14%, rgba(255, 255, 255, .98), rgba(255, 255, 255, 0) 64%),
    linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(246, 249, 252, .68));
  color: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .96),
    inset 0 -1px 0 rgba(148, 163, 184, .08),
    0 14px 30px rgba(15, 23, 42, .10);
  backdrop-filter: blur(20px) saturate(1.12);
  -webkit-backdrop-filter: blur(20px) saturate(1.12);
}

.cart-drawer__head button[data-cart-close]::before,
.cart-drawer__head button[data-cart-close]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
  transform-origin: center;
}

.cart-drawer__head button[data-cart-close]::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cart-drawer__head button[data-cart-close]::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.cart-drawer__head button[data-cart-close]:hover,
.cart-drawer__head button[data-cart-close]:focus-visible {
  border-color: rgba(255, 255, 255, .92);
  transform: translateY(-1px);
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(148, 163, 184, .08),
    0 18px 38px rgba(15, 23, 42, .13);
}

.cart-drawer__scroll {
  padding: 10px 14px 10px;
  min-height: 0;
  display: grid;
  align-content: start;
  grid-auto-rows: max-content;
  overflow: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scrollbar-color: rgba(0, 111, 186, .28) transparent;
  overscroll-behavior: contain;
}

.cart-drawer__items {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 7px;
}

.cart-drawer.is-checkout .cart-drawer__scroll {
  padding-bottom: 6px;
}

.cart-empty {
  min-height: 150px;
  display: grid;
  place-items: center;
  color: #6b7280;
  font-size: 15px;
  text-align: center;
}

.cart-line {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(520px, 1fr) 132px 112px 136px;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 8px 32px 8px 8px;
  border: 1px solid rgba(226, 232, 240, .72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 6% 0%, rgba(255, 255, 255, .86), transparent 8rem),
    radial-gradient(circle at 100% 20%, rgba(0, 111, 186, .035), transparent 9rem),
    rgba(255, 255, 255, .54);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .72),
    0 10px 24px rgba(15, 23, 42, .038);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.cart-line__remove {
  position: absolute;
  top: 9px;
  right: 10px;
  z-index: 2;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(220, 72, 72, .64);
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
}

.cart-line__remove::before,
.cart-line__remove::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}

.cart-line__remove::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cart-line__remove::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.cart-line__remove:hover,
.cart-line__remove:focus-visible {
  color: rgba(190, 24, 24, .78);
  outline: none;
}

.cart-line__image {
  width: 66px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, .72);
  border-radius: 15px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .82), transparent 6.2rem),
    var(--image-surface);
}

.cart-line__image img {
  max-width: 56px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(1.02) contrast(1.015);
}

.cart-line__body {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.cart-line__body a {
  min-width: 0;
  display: grid;
  gap: 3px;
  color: inherit;
  text-decoration: none;
}

.cart-line__body strong,
.cart-line__body span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-line__body strong {
  color: var(--blue);
  font-size: 17px;
  line-height: 1.05;
  font-weight: 800;
}

.cart-line__body span {
  color: #64748b;
  font-size: 13px;
  line-height: 1.28;
}

.cart-line__stock {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  min-height: 18px;
}

.cart-line__stock-label {
  color: #8a97a8;
  font-size: 10px;
  line-height: 1;
  font-weight: 760;
  white-space: nowrap;
}

.cart-line__body .cart-stock-chip {
  position: relative;
  isolation: isolate;
  min-width: 0;
  height: 20px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, .76);
  border-radius: 999px;
  background: rgba(255, 255, 255, .50);
  color: #64748b;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .90),
    0 6px 16px rgba(15, 23, 42, .035);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-overflow: clip;
}

.cart-line__body .cart-stock-chip::before {
  content: "";
  position: absolute;
  inset: -2px -12px;
  z-index: -1;
  opacity: .88;
  pointer-events: none;
}

.cart-line__body .cart-stock-chip i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 14%, transparent);
}

.cart-line__body .cart-stock-chip span {
  color: #111827;
  font-size: 10px;
  line-height: 1;
  font-weight: 850;
  overflow: visible;
  text-overflow: clip;
}

.cart-line__body .cart-stock-chip em {
  color: #8a97a8;
  font-style: normal;
  font-size: 10px;
  line-height: 1;
  font-weight: 760;
}

.cart-line__body .cart-stock-chip em::before {
  content: "-";
  margin-right: 4px;
  color: #a8b2c0;
}

.cart-line__body .cart-stock-chip--ua {
  color: #2dbf58;
}

.cart-line__body .cart-stock-chip--ua::before {
  background: radial-gradient(ellipse at 54% 50%, rgba(47, 199, 93, .16), rgba(47, 199, 93, .08) 48%, transparent 76%);
}

.cart-line__body .cart-stock-chip--supplier {
  color: var(--blue);
}

.cart-line__body .cart-stock-chip--supplier::before {
  background: radial-gradient(ellipse at 54% 50%, rgba(0, 111, 186, .15), rgba(0, 111, 186, .075) 48%, transparent 76%);
}

.cart-line__body .cart-stock-chip--eu {
  color: #7a8798;
}

.cart-line__body .cart-stock-chip--eu::before {
  background: radial-gradient(ellipse at 54% 50%, rgba(148, 163, 184, .16), rgba(148, 163, 184, .08) 48%, transparent 76%);
}

.cart-line__body .cart-stock-chip--empty,
.cart-line__body .cart-stock-chip--warning {
  background: rgba(255, 255, 255, .58);
}

.cart-line__body .cart-stock-chip--empty {
  color: #c22f2f;
  border-color: rgba(220, 38, 38, .28);
}

.cart-line__body .cart-stock-chip--empty::before {
  inset: -4px -16px;
  opacity: .98;
  background:
    radial-gradient(ellipse at 28% 48%, rgba(220, 38, 38, .26), rgba(220, 38, 38, .11) 42%, transparent 72%),
    radial-gradient(ellipse at 82% 18%, rgba(248, 113, 113, .17), rgba(248, 113, 113, 0) 62%);
}

.cart-line__body .cart-stock-chip--warning {
  color: #b45309;
  border-color: rgba(245, 158, 11, .30);
}

.cart-line__body .cart-stock-chip--warning::before {
  inset: -4px -16px;
  opacity: .98;
  background:
    radial-gradient(ellipse at 32% 50%, rgba(245, 158, 11, .28), rgba(245, 158, 11, .11) 44%, transparent 74%),
    radial-gradient(ellipse at 88% 20%, rgba(251, 191, 36, .16), rgba(251, 191, 36, 0) 62%);
}

.cart-line__price,
.cart-line__sum {
  display: grid;
  gap: 4px;
  align-content: center;
  min-width: 0;
  justify-items: start;
}

.cart-line__price span,
.cart-line__sum span {
  color: #8a97a8;
  font-size: 10px;
  line-height: 1;
  font-weight: 760;
  text-transform: none;
}

.cart-line__price strong,
.cart-line__sum strong {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  min-width: 0;
  white-space: nowrap;
  color: #111827;
  font-size: 13px;
  line-height: 1.12;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
}

.cart-line__sum strong {
  color: var(--blue);
  font-size: 14px;
  font-weight: 820;
}

.cart-line__price strong small,
.cart-line__sum strong small {
  color: #8a97a8;
  font-size: .72em;
  line-height: 1;
  font-weight: 720;
}

.cart-line__sum strong small {
  color: #93a0b1;
}

.cart-line__qty {
  display: grid;
  grid-template-columns: 30px 42px 30px;
  height: 38px;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 55, .08);
  border-radius: 13px;
  background: rgba(255, 255, 255, .64);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .72),
    0 10px 24px rgba(15, 23, 42, .05);
}

.cart-line__qty button,
.cart-line__qty span {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-weight: 760;
}

.cart-line__qty span {
  color: #111827;
  font-size: 16px;
}

.cart-line__qty input,
.variant-qty__control input,
.qty-control input,
.search-result__actions input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111827;
  text-align: center;
  font: inherit;
  font-weight: 780;
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
}

.cart-line__qty input::-webkit-outer-spin-button,
.cart-line__qty input::-webkit-inner-spin-button,
.variant-qty__control input::-webkit-outer-spin-button,
.variant-qty__control input::-webkit-inner-spin-button,
.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button,
.search-result__actions input::-webkit-outer-spin-button,
.search-result__actions input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.cart-drawer__foot {
  padding: 14px 18px 18px;
  display: grid;
  gap: 7px;
  overflow: hidden;
  border-top: 1px solid rgba(226, 232, 240, .68);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 111, 186, .06), transparent 16rem),
    rgba(255, 255, 255, .54);
  backdrop-filter: blur(20px) saturate(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
}

.cart-drawer__total {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2px 16px;
  align-items: baseline;
  color: #111827;
}

.cart-drawer__foot span {
  grid-row: 1 / span 2;
  color: #64748b;
  font-size: 15px;
}

.cart-drawer__foot strong {
  justify-self: end;
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
  font-weight: 820;
  font-variant-numeric: tabular-nums;
}

.cart-drawer__foot strong small {
  color: var(--blue);
  font-size: 15px;
  font-weight: 760;
}

.cart-drawer__total > small {
  grid-column: 2;
  justify-self: end;
  color: #7a8798;
  font-size: 13px;
  font-weight: 650;
}

.cart-drawer__checkout {
  position: relative;
  isolation: isolate;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: min(360px, 50%);
  min-width: min(240px, 100%);
  max-width: 360px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 14px;
  background: transparent;
  text-decoration: none;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0;
  transition:
    transform 160ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
  color 180ms ease;
}

.cart-drawer__continue {
  min-height: 38px;
  border: 1px solid rgba(226, 232, 240, .72);
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 28% 18%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 58%),
    rgba(255, 255, 255, .44);
  color: #64748b;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .88),
    0 10px 22px rgba(15, 23, 42, .045);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
}

.cart-drawer__continue[hidden] {
  display: none;
}

.cart-drawer__checkout[hidden] {
  display: none;
}

.cart-drawer.is-checkout .cart-drawer__continue,
.cart-drawer.is-checkout .cart-drawer__checkout {
  display: none;
}

.cart-drawer__continue:hover,
.cart-drawer__continue:focus-visible {
  transform: translateY(-1px);
  outline: none;
  border-color: rgba(0, 111, 186, .16);
  color: var(--blue);
}

.cart-drawer__checkout::before {
  content: "";
  position: absolute;
  inset: -18px -28px -22px -32px;
  z-index: -1;
  border-radius: 999px;
  opacity: .62;
  background:
    radial-gradient(ellipse at 13% 70%, rgba(0, 111, 186, .24), rgba(0, 111, 186, 0) 52%),
    radial-gradient(ellipse at 78% 18%, rgba(0, 111, 186, .12), rgba(0, 111, 186, 0) 46%),
    radial-gradient(ellipse at 56% 110%, rgba(0, 111, 186, .08), rgba(0, 111, 186, 0) 44%);
  filter: blur(18px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.cart-drawer__checkout:hover,
.cart-drawer__checkout:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.cart-drawer__checkout:hover::before,
.cart-drawer__checkout:focus-visible::before {
  opacity: .38;
  transform: translateY(1px) scale(.985);
}

.cart-drawer__checkout:active {
  transform: translateY(0) scale(.992);
}

.cart-drawer__checkout {
  background: transparent;
  color: var(--blue);
  box-shadow: none;
}

.cart-drawer__checkout:hover,
.cart-drawer__checkout:focus-visible {
  background: transparent;
  box-shadow: none;
}

.cart-drawer__checkout-label {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(0, 111, 186, .34);
  border-radius: inherit;
  background: #fff;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, .045),
    0 1px 2px rgba(15, 23, 42, .05);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.cart-drawer__checkout:hover .cart-drawer__checkout-label,
.cart-drawer__checkout:focus-visible .cart-drawer__checkout-label {
  border-color: rgba(0, 111, 186, .24);
  box-shadow:
    0 8px 20px rgba(15, 23, 42, .04),
    0 1px 2px rgba(15, 23, 42, .05);
}

.cart-checkout-flow[hidden] {
  display: none;
}

.cart-checkout-flow {
  padding: 8px 4px 12px;
  display: grid;
  gap: 10px;
  align-content: start;
  animation: cartCheckoutReveal 320ms ease both;
}

@keyframes cartCheckoutReveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.992);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cart-checkout-divider {
  display: grid;
  grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
  align-items: center;
  gap: 12px;
  color: #64748b;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 2px;
}

.cart-checkout-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 111, 186, .20), transparent);
}

.cart-checkout-divider strong {
  color: #64748b;
  font: inherit;
  font-weight: 820;
}

.cart-drawer.is-checkout .cart-checkout-section--delivery .cart-checkout-section__head,
.cart-drawer.is-checkout .cart-checkout-route--auth .cart-checkout-route__head {
  display: none;
}

.cart-checkout-stock-alert {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 8px;
  margin: 10px 6px 20px;
  padding: 22px 28px 24px;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, .74);
  border-radius: 22px;
  background:
    radial-gradient(ellipse at 42% 12%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 58%),
    rgba(255, 255, 255, .58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .96),
    inset 0 0 0 1px rgba(255, 255, 255, .40),
    0 18px 46px rgba(15, 23, 42, .055),
    0 8px 24px rgba(15, 23, 42, .055);
  backdrop-filter: blur(22px) saturate(1.16);
  -webkit-backdrop-filter: blur(22px) saturate(1.16);
}

.cart-drawer__stock-alert {
  min-height: 0;
  margin: 10px 2px 4px;
}

.cart-drawer__stock-alert[hidden] {
  display: none !important;
}

.cart-drawer__stock-alert .cart-checkout-stock-alert {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 14px 18px;
  border-radius: 18px;
  border-color: rgba(239, 198, 181, .58);
  background:
    radial-gradient(ellipse at 18% 0%, rgba(255, 255, 255, .96), rgba(255, 255, 255, 0) 58%),
    rgba(252, 248, 246, .92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .88),
    0 8px 20px rgba(15, 23, 42, .045);
  backdrop-filter: blur(10px) saturate(1.04);
  -webkit-backdrop-filter: blur(10px) saturate(1.04);
}

.cart-drawer__stock-alert .cart-checkout-stock-alert::before {
  width: 24%;
  height: 44%;
  filter: blur(22px);
  opacity: .14;
}

.cart-drawer__stock-alert .cart-checkout-stock-alert strong {
  color: #8a3b25;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 650;
}

.cart-drawer__stock-alert .cart-checkout-stock-alert span {
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
}

.cart-checkout-stock-alert::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34%;
  height: 46%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(220, 38, 38, .08);
  filter: blur(66px);
  opacity: .42;
  transform: translate(-50%, -50%);
}

.cart-checkout-stock-alert::after {
  content: none;
}

.cart-checkout-stock-alert strong {
  color: #80331c;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.18;
  font-weight: 560;
  letter-spacing: 0;
}

.cart-checkout-stock-alert span {
  max-width: 980px;
  color: #536174;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 430;
  line-height: 1.5;
}

.cart-checkout-loading,
.cart-checkout-section,
.cart-checkout-route {
  border: 1px solid rgba(226, 232, 240, .72);
  border-radius: 20px;
  background:
    radial-gradient(ellipse at 14% 0%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 58%),
    radial-gradient(ellipse at 98% 10%, rgba(0, 111, 186, .055), rgba(0, 111, 186, 0) 54%),
    rgba(255, 255, 255, .50);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .88),
    0 12px 30px rgba(15, 23, 42, .055);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.cart-checkout-loading {
  min-height: 120px;
  display: grid;
  place-items: center;
  color: #64748b;
  font-weight: 780;
}

.cart-checkout-section,
.cart-checkout-route {
  position: relative;
  z-index: 1;
  padding: 14px;
}

.cart-checkout-section--delivery {
  z-index: 40;
  overflow: visible;
}

.cart-checkout-route {
  z-index: 2;
}

.cart-checkout-route--guest {
  margin-inline: 0;
  padding: 28px 34px 40px;
  overflow: visible;
  border-bottom-color: rgba(226, 232, 240, .40);
  background:
    radial-gradient(ellipse at 26% 44%, rgba(0, 111, 186, .09), rgba(0, 111, 186, 0) 44%),
    radial-gradient(ellipse at 78% 34%, rgba(47, 184, 95, .105), rgba(47, 184, 95, 0) 48%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 111, 186, .045), rgba(0, 111, 186, 0) 48%),
    rgba(255, 255, 255, .50);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .78),
    0 12px 30px rgba(15, 23, 42, .04);
}

.cart-checkout-section__head,
.cart-checkout-route__head {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.cart-checkout-section__head span,
.cart-checkout-route__head span {
  color: var(--green);
  font-size: 11px;
  font-weight: 840;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cart-checkout-section__head strong,
.cart-checkout-route__head strong {
  color: #111827;
  font-size: 18px;
  line-height: 1.1;
}

.cart-checkout-route__head small {
  color: #64748b;
  font-size: 12px;
  font-weight: 720;
}

.cart-checkout__delivery,
.cart-checkout__fields,
.cart-checkout-person-type {
  display: grid;
  gap: 10px;
}

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

.cart-checkout__fields--delivery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
}

.cart-checkout__fields--buyer {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: 14px 16px;
}

.cart-checkout__fields--buyer > label {
  grid-column: span 3;
}

.cart-checkout__fields--buyer .cart-checkout-company {
  grid-column: span 6;
}

.cart-checkout-choice,
.cart-checkout-person-type label {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 86px;
  padding: 13px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, .74);
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 24% 14%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 62%),
    rgba(255, 255, 255, .48);
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .88),
    0 10px 22px rgba(15, 23, 42, .04);
}

.cart-checkout-choice input,
.cart-checkout-person-type input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cart-checkout-choice.is-selected,
.cart-checkout-person-type label.is-selected {
  border-color: rgba(0, 111, 186, .28);
  background:
    radial-gradient(ellipse at 9% 50%, rgba(0, 111, 186, .14), rgba(0, 111, 186, 0) 48%),
    rgba(255, 255, 255, .58);
  box-shadow:
    inset 3px 0 0 rgba(0, 111, 186, .64),
    inset 0 1px 0 rgba(255, 255, 255, .92),
    0 14px 30px rgba(0, 111, 186, .08);
}

.cart-checkout-choice span,
.cart-checkout-person-type span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 840;
}

.cart-checkout-choice strong {
  color: #111827;
  font-size: 16px;
}

.cart-checkout-choice small {
  color: #64748b;
  font-size: 12px;
  line-height: 1.35;
}

.cart-checkout-person-type {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 10px;
}

.cart-checkout-guest-gate {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: clamp(24px, 4vw, 54px);
  width: min(960px, 100%);
  padding: 24px 26px 34px;
  margin-inline: auto;
  overflow: visible;
}

.cart-checkout-guest-gate[hidden],
.cart-checkout-guest-form[hidden] {
  display: none;
}

.cart-checkout-auth-action {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  overflow: visible;
  border: 1px solid rgba(47, 184, 95, .30);
  border-radius: 16px;
  background: #fff;
  color: #0f172a;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 520;
  box-shadow:
    0 8px 18px rgba(15, 23, 42, .032);
  transition:
    transform 160ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.cart-checkout-auth-action::before,
.cart-checkout-auth-action::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.cart-checkout-auth-action::before {
  inset: -42px -84px -78px -92px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 18% 50%, rgba(0, 111, 186, .18), rgba(0, 111, 186, 0) 54%),
    radial-gradient(ellipse at 78% 48%, rgba(0, 111, 186, .10), rgba(0, 111, 186, 0) 56%);
  filter: blur(30px);
  opacity: .82;
  transition: opacity 180ms ease, transform 180ms ease;
}

.cart-checkout-auth-action::after {
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: #fff;
  opacity: 1;
}

.cart-checkout-auth-action--primary {
  border-color: rgba(0, 111, 186, .34);
  background: #fff;
  color: var(--blue);
}

.cart-checkout-auth-action:not(.cart-checkout-auth-action--primary)::before {
  background:
    radial-gradient(ellipse at 74% 34%, rgba(47, 184, 95, .20), rgba(47, 184, 95, 0) 56%),
    radial-gradient(ellipse at 16% 78%, rgba(47, 184, 95, .10), rgba(47, 184, 95, 0) 58%);
}

.cart-checkout-auth-action__icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: currentColor;
  position: relative;
  z-index: 1;
}

.cart-checkout-auth-action > span {
  position: relative;
  z-index: 1;
}

.cart-checkout-auth-action__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cart-checkout-auth-action:hover,
.cart-checkout-auth-action:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(47, 184, 95, .22);
  background: #fff;
  outline: none;
  box-shadow:
    0 8px 20px rgba(15, 23, 42, .035);
}

.cart-checkout-auth-action--primary:hover,
.cart-checkout-auth-action--primary:focus-visible {
  border-color: rgba(0, 111, 186, .24);
}

.cart-checkout-auth-action:hover::before,
.cart-checkout-auth-action:focus-visible::before {
  opacity: .54;
  transform: translateY(1px) scale(.985);
}

.cart-checkout-person-type label {
  min-height: 48px;
  align-content: center;
}

.cart-checkout__fields label {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  gap: 6px;
  overflow: visible;
  color: #64748b;
  font-size: 12px;
  font-weight: 760;
}

.cart-checkout__fields label:focus-within {
  z-index: 300;
}

.cart-checkout__fields input,
.cart-checkout__fields textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(190, 215, 231, .66);
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, .88), rgba(255, 255, 255, 0) 56%),
    rgba(255, 255, 255, .58);
  color: #111827;
  font: inherit;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .84),
    0 8px 18px rgba(15, 23, 42, .035);
}

.cart-checkout__fields textarea {
  min-height: 66px;
  max-height: 118px;
  padding-block: 12px;
  resize: none;
  overflow: auto;
  line-height: 1.28;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.cart-checkout__fields input:focus,
.cart-checkout__fields textarea:focus {
  border-color: rgba(0, 111, 186, .38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .92),
    0 0 0 4px rgba(0, 111, 186, .08),
    0 12px 26px rgba(15, 23, 42, .06);
}

.cart-checkout__fields input[readonly],
.cart-checkout__fields textarea[readonly] {
  color: #475569;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, .82), rgba(255, 255, 255, 0) 56%),
    rgba(241, 245, 249, .58);
}

.cart-checkout-company textarea:not(:placeholder-shown) {
  color: #0f172a;
  border-color: rgba(47, 184, 95, .24);
  background:
    radial-gradient(ellipse at 20% 8%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 58%),
    radial-gradient(ellipse at 82% 20%, rgba(47, 184, 95, .075), rgba(47, 184, 95, 0) 60%),
    rgba(255, 255, 255, .62);
}

.cart-checkout-edr-status {
  min-height: 20px;
  width: fit-content;
  max-width: 100%;
  padding: 3px 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, .40);
  color: #64748b;
  font-size: 11px;
  font-weight: 520;
  line-height: 1.25;
  overflow-wrap: anywhere;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.cart-checkout-edr-status:empty {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.cart-checkout-route--guest.is-edr-loading .cart-checkout-edr-status {
  color: #64748b;
  border-color: rgba(148, 163, 184, .22);
}

.cart-checkout-route--guest.is-edr-valid .cart-checkout-edr-status {
  color: #15803d;
  border-color: rgba(47, 184, 95, .22);
  background:
    radial-gradient(ellipse at 82% 44%, rgba(47, 184, 95, .14), rgba(47, 184, 95, 0) 62%),
    rgba(255, 255, 255, .58);
}

.cart-checkout-route--guest.is-edr-error .cart-checkout-edr-status,
.cart-checkout-route--guest.is-edr-terminated .cart-checkout-edr-status {
  color: #b91c1c;
  border-color: rgba(185, 28, 28, .20);
  background:
    radial-gradient(ellipse at 18% 52%, rgba(248, 113, 113, .16), rgba(248, 113, 113, 0) 60%),
    rgba(255, 255, 255, .58);
}

.cart-checkout-route--guest.is-edr-terminated .cart-checkout-edrpou input,
.cart-checkout-route--guest.is-edr-terminated .cart-checkout-company textarea,
.cart-checkout-route--guest.is-edr-error .cart-checkout-edrpou input {
  border-color: rgba(185, 28, 28, .44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .86),
    0 0 0 4px rgba(185, 28, 28, .08);
}

.cart-np-suggest {
  position: absolute;
  z-index: 500;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: grid;
  max-height: 260px;
  padding: 7px;
  overflow: auto;
  border: 1px solid rgba(190, 215, 231, .72);
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(255, 255, 255, .94), rgba(255, 255, 255, 0) 58%),
    rgba(255, 255, 255, .82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .94),
    0 18px 46px rgba(15, 23, 42, .18);
  backdrop-filter: blur(18px);
}

.cart-np-suggest[hidden] {
  display: none;
}

.cart-np-suggest button,
.cart-np-suggest__empty {
  width: 100%;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #475569;
  font: inherit;
  text-align: left;
}

.cart-np-suggest button {
  display: grid;
  gap: 2px;
  padding: 9px 10px;
  cursor: pointer;
}

.cart-np-suggest button:hover,
.cart-np-suggest button:focus-visible {
  background: rgba(0, 111, 186, .08);
  outline: none;
}

.cart-np-suggest strong {
  color: #111827;
  font-size: 13px;
  font-weight: 820;
  line-height: 1.25;
}

.cart-np-suggest span,
.cart-np-suggest__empty {
  color: #64748b;
  font-size: 11px;
  font-weight: 720;
  line-height: 1.25;
}

.cart-np-suggest__empty {
  padding: 10px;
}

.cart-checkout-route--guest.is-person .cart-checkout-edrpou,
.cart-checkout-route--guest.is-person .cart-checkout-company {
  display: none;
}

.cart-checkout-profile {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.cart-checkout-profile div {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(226, 232, 240, .60);
  border-radius: 14px;
  background: rgba(255, 255, 255, .42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .74);
}

.cart-checkout-profile dt {
  color: #8a97a8;
  font-size: 11px;
  font-weight: 760;
}

.cart-checkout-profile dd {
  margin: 4px 0 0;
  overflow: hidden;
  color: #111827;
  font-size: 13px;
  font-weight: 820;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-checkout-status {
  min-height: 20px;
  margin: 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 740;
}

.cart-checkout-actions {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 26px 18px 10px;
  overflow: visible;
}

.cart-checkout-actions[hidden] {
  display: none;
}

.cart-checkout-submit {
  position: relative;
  isolation: isolate;
  width: min(360px, 46vw);
  min-height: 42px;
  border: 0;
  border-radius: 15px;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-size: 16px;
  font-weight: 760;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease;
}

.cart-checkout-submit::before {
  content: "";
  position: absolute;
  inset: -20px -44px -24px -38px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 17% 72%, rgba(0, 111, 186, .24), rgba(0, 111, 186, 0) 54%),
    radial-gradient(ellipse at 82% 16%, rgba(45, 212, 191, .13), rgba(45, 212, 191, 0) 48%),
    radial-gradient(ellipse at 52% 116%, rgba(0, 111, 186, .09), rgba(0, 111, 186, 0) 44%);
  filter: blur(18px);
  opacity: .64;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.cart-checkout-submit > span {
  position: relative;
  z-index: 1;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 22px;
  border: 1px solid rgba(0, 111, 186, .34);
  border-radius: inherit;
  background: #fff;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, .045),
    0 1px 2px rgba(15, 23, 42, .05);
}

.cart-checkout-submit:hover,
.cart-checkout-submit:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.cart-checkout-submit:hover::before,
.cart-checkout-submit:focus-visible::before {
  opacity: .38;
  transform: translateY(1px) scale(.985);
}

.cart-checkout-submit:disabled {
  cursor: wait;
  opacity: .68;
}

.cart-pending-modal {
  position: fixed;
  inset: 0;
  z-index: 10040;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: auto;
}

.cart-pending-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 42, .22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cart-pending-modal__panel {
  position: relative;
  width: min(680px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(201, 212, 224, .88);
  border-radius: 30px;
  background:
    radial-gradient(ellipse 58% 48% at 74% 16%, rgba(185, 226, 204, .34), rgba(185, 226, 204, 0) 72%),
    radial-gradient(ellipse 52% 42% at 18% 92%, rgba(181, 220, 244, .30), rgba(181, 220, 244, 0) 70%),
    rgba(255, 255, 255, .90);
  box-shadow:
    0 30px 90px rgba(14, 38, 60, .24),
    inset 0 1px 0 rgba(255, 255, 255, .94);
  padding: 34px;
  transform: translateY(12px) scale(.985);
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;
}

.cart-pending-modal.is-open .cart-pending-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.cart-pending-modal__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  border-radius: 24px;
  border: 1px solid rgba(77, 194, 126, .42);
  background:
    radial-gradient(ellipse 70% 60% at 68% 18%, rgba(119, 221, 160, .32), rgba(119, 221, 160, 0) 74%),
    #fff;
  box-shadow:
    0 20px 58px rgba(76, 181, 121, .24),
    inset 0 1px 0 rgba(255, 255, 255, .98);
}

.cart-pending-modal__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #129a55;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-pending-modal--success .cart-pending-modal__panel {
  background:
    radial-gradient(ellipse 48% 40% at 72% 14%, rgba(165, 230, 194, .34), rgba(165, 230, 194, 0) 74%),
    radial-gradient(ellipse 52% 44% at 18% 90%, rgba(178, 222, 246, .24), rgba(178, 222, 246, 0) 72%),
    rgba(255, 255, 255, .92);
}

.cart-pending-modal h2 {
  position: relative;
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: 0;
}

.cart-pending-modal p {
  position: relative;
  margin: 0;
  max-width: 58ch;
  color: #5f7189;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.42;
  font-weight: 300;
}

.cart-pending-modal__actions {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.cart-pending-modal__primary,
.cart-pending-modal__secondary {
  min-width: 168px;
  min-height: 54px;
  border-radius: 20px;
  border: 1px solid rgba(134, 199, 239, .74);
  background: #fff;
  color: var(--blue);
  font-size: 18px;
  font-weight: 400;
  box-shadow:
    0 18px 42px rgba(0, 117, 190, .13),
    inset 0 1px 0 rgba(255, 255, 255, .94);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.cart-pending-modal__secondary {
  color: #607187;
  border-color: rgba(195, 207, 220, .82);
  box-shadow:
    0 16px 36px rgba(67, 84, 102, .11),
    inset 0 1px 0 rgba(255, 255, 255, .94);
}

.cart-pending-modal__primary:hover,
.cart-pending-modal__primary:focus-visible,
.cart-pending-modal__secondary:hover,
.cart-pending-modal__secondary:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 10px 28px rgba(0, 117, 190, .10),
    inset 0 1px 0 rgba(255, 255, 255, .96);
  outline: none;
}

.clean-notice-modal.is-open .clean-notice-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

@media (max-width: 1180px) {
.cart-drawer__panel {
    width: min(860px, calc(100vw - 28px));
    min-width: 0;
  }

.cart-line {
    grid-template-columns: 72px minmax(0, 1fr) 112px;
    grid-template-areas:
      "image body qty"
      "image price sum";
    min-height: 88px;
    padding-right: 34px;
  }

.cart-line__image { grid-area: image; width: 72px; }

.cart-line__body { grid-area: body; }

.cart-line__price { grid-area: price; }

.cart-line__qty { grid-area: qty; }

.cart-line__sum { grid-area: sum; }

.cart-line__image img {
    max-width: 60px;
    max-height: 60px;
  }

.cart-line__price,
.cart-line__sum {
    grid-auto-flow: column;
    justify-content: start;
    align-items: baseline;
    gap: 7px;
  }

.cart-line__price strong,
.cart-line__sum strong {
    font-size: 13px;
  }

.cart-line__sum strong {
    font-size: 14px;
  }

.cart-checkout__delivery,
.cart-checkout-profile {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
.cart-drawer__panel {
    inset: 8px;
    top: 8px;
    bottom: calc(var(--mobile-bottom-nav-h, 84px) + env(safe-area-inset-bottom, 0px) + 12px);
    height: calc(100dvh - var(--mobile-bottom-nav-h, 84px) - env(safe-area-inset-bottom, 0px) - 28px);
    width: auto;
    min-width: 0;
    max-width: none;
    max-height: none;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    overflow: hidden;
    border-radius: 22px;
  }

.cart-drawer__head {
    min-height: 58px;
    padding: 0 16px 0 18px;
  }

.cart-drawer__head h2 {
    font-size: 24px;
  }

.cart-drawer__items {
    padding: 6px 10px 8px;
    gap: 8px;
    flex: 0 0 auto;
    min-height: max-content;
  }

.cart-drawer__scroll {
    min-height: 0;
    height: 100%;
    padding: 8px 8px 6px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    overscroll-behavior: contain;
  }

.cart-drawer__scroll > * {
    flex: 0 0 auto;
  }

.cart-line {
    min-height: 0;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    grid-template-areas:
      "image body body"
      "image price price"
      "qty qty sum";
    gap: 9px;
    padding: 10px;
  }

.cart-line__image {
    width: 64px;
    border-radius: 14px;
  }

.cart-line__image img {
    max-width: 54px;
    max-height: 54px;
  }

.cart-line__body strong {
    font-size: 16px;
  }

.cart-line__body span {
    font-size: 13px;
  }

.cart-line__stock {
    gap: 4px;
  }

.cart-line__qty {
    width: 112px;
  }

.cart-line__sum {
    justify-self: end;
    text-align: right;
  }

.cart-drawer__foot {
    padding: 10px 12px 12px;
    gap: 8px;
  }

.cart-drawer__stock-alert {
    flex: 0 0 auto;
    margin: 4px 10px 2px;
  }

.cart-drawer__stock-alert .cart-checkout-stock-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 9px 12px;
    border-radius: 14px;
    border-color: rgba(239, 198, 181, .58);
    background:
      radial-gradient(ellipse at 18% 0%, rgba(255, 255, 255, .96), rgba(255, 255, 255, 0) 58%),
      rgba(252, 248, 246, .94);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .88),
      0 6px 16px rgba(15, 23, 42, .04);
    backdrop-filter: blur(10px) saturate(1.04);
    -webkit-backdrop-filter: blur(10px) saturate(1.04);
  }

.cart-drawer__stock-alert .cart-checkout-stock-alert::before {
    width: 24%;
    height: 44%;
    filter: blur(22px);
    opacity: .14;
  }

.cart-drawer__stock-alert .cart-checkout-stock-alert strong {
    color: #8a3b25;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 740;
  }

.cart-drawer__stock-alert .cart-checkout-stock-alert span {
    display: none;
  }

.cart-drawer__foot strong {
    font-size: 25px;
  }

.cart-drawer__foot strong small {
    font-size: 15px;
  }

.cart-drawer__total > small {
    font-size: 14px;
  }

.cart-drawer.is-checkout .cart-drawer__panel {
    left: 8px;
    right: 8px;
    grid-template-rows: auto minmax(0, 1fr) auto;
  }

.cart-checkout-flow {
    padding: 8px 0 10px;
  }

.cart-checkout-divider {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    text-align: center;
  }

.cart-checkout-divider span {
    width: 100%;
  }

.cart-checkout__delivery,
.cart-checkout-guest-gate,
.cart-checkout__fields--delivery,
.cart-checkout__fields--buyer,
.cart-checkout-person-type,
.cart-checkout-profile {
    grid-template-columns: 1fr;
  }

.cart-checkout-choice {
    min-height: 74px;
  }
}

:where(.icon-button, .cart-button, .primary-action, .secondary-action, .search-result__actions button, .search-result__actions span, .search-result__actions a, .variant-actions button, .variant-actions span, .variant-actions a, .variant-actions--contact button, .qty-control, .product-cart, .search-drawer__more, .filter-block button, .product-tabs button, .copy-button, .review-rating button, .auth-modal__submit) {
  border: 1px solid rgba(31, 41, 55, .08);
  background:
    radial-gradient(ellipse at 24% 18%, rgba(255, 255, 255, .90), rgba(255, 255, 255, 0) 58%),
    linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(246, 249, 252, .58));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .72),
    0 10px 24px rgba(15, 23, 42, .045);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
}

:where(.icon-button, .cart-button, .primary-action, .secondary-action, .search-result__actions button, .search-result__actions a, .variant-actions button, .variant-actions a, .variant-actions--contact button, .qty-control button, .product-cart, .search-drawer__more, .filter-block button, .product-tabs button, .copy-button, .review-rating button, .auth-modal__submit) {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

:where(.icon-button, .cart-button, .primary-action, .secondary-action, .search-result__actions button, .search-result__actions a, .variant-actions button, .variant-actions a, .variant-actions--contact button, .qty-control button, .product-cart, .search-drawer__more, .filter-block button, .product-tabs button, .copy-button, .review-rating button, .auth-modal__submit):hover {
  transform: translateY(-1px);
  border-color: rgba(0, 111, 186, .18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .78),
    0 14px 30px rgba(15, 23, 42, .07);
}

.category-nav {
  position: relative;
  z-index: 30;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(226, 232, 240, .72);
  white-space: nowrap;
  overflow: visible;
  transition: height 180ms ease, box-shadow 180ms ease;
}

.category-nav::before {
  content: none;
}

.category-nav a,
.category-nav button {
  position: relative;
  z-index: 2;
  color: #263241;
  font-size: 15px;
  font-weight: 500;
}

.category-nav__catalog {
  position: relative;
  isolation: isolate;
  height: 34px;
  min-width: 176px;
  padding: 0;
  overflow: visible;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  border-radius: 13px;
  background: transparent;
  color: var(--blue) !important;
  font-size: 13px;
  box-shadow: none;
  cursor: pointer;
  transform: none;
  transition:
    transform 160ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.category-nav__catalog::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.category-nav__catalog::before {
  inset: -16px -22px -20px -28px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 12% 78%, rgba(0, 111, 186, .24), rgba(0, 111, 186, 0) 52%),
    radial-gradient(ellipse at 78% 12%, rgba(0, 111, 186, .12), rgba(0, 111, 186, 0) 46%);
  filter: blur(18px);
  opacity: .62;
}

.category-nav__catalog:hover,
.category-nav__catalog:focus-visible,
body.is-catalog-open .category-nav__catalog {
  transform: translateY(-1px);
  outline: none;
  background: transparent;
  box-shadow: none;
}

.category-nav__catalog:hover::before,
.category-nav__catalog:focus-visible::before,
body.is-catalog-open .category-nav__catalog::before {
  opacity: .30;
}

.category-nav__catalog span {
  position: relative;
  z-index: 1;
}

.category-nav__catalog svg {
  position: relative;
  z-index: 2;
  margin-left: 16px;
  width: 22px;
  height: 22px;
}

.category-nav__catalog span {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px 0 48px;
  border: 1px solid rgba(214, 228, 237, .46);
  border-radius: inherit;
  background: #fff;
  box-shadow:
    0 8px 18px rgba(15, 23, 42, .035),
    0 1px 2px rgba(15, 23, 42, .035);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.category-nav__catalog:hover span,
.category-nav__catalog:focus-visible span,
body.is-catalog-open .category-nav__catalog span {
  border-color: rgba(202, 225, 239, .42);
  box-shadow:
    0 10px 24px rgba(15, 23, 42, .045),
    0 4px 16px rgba(15, 23, 42, .04);
}

.category-nav::after {
  content: "";
  position: absolute;
  left: -28px;
  right: -28px;
  inset-block: -1px 0;
  z-index: 0;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
  backdrop-filter: blur(24px) saturate(1.08);
  -webkit-backdrop-filter: blur(24px) saturate(1.08);
  opacity: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 42px, #000 calc(100% - 42px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 42px, #000 calc(100% - 42px), transparent 100%);
  transition: opacity 180ms ease;
}

.category-nav > a:not(.category-nav__catalog) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 180ms ease, visibility 0s linear 180ms;
}

body.is-catalog-open .category-nav {
  z-index: 60;
  border-top-color: transparent;
}

body.is-catalog-open .category-nav::after {
  opacity: 1;
}

body.is-catalog-open .category-nav__catalog {
  border-radius: 13px;
  transform: none;
}

body.is-catalog-open .category-nav > a:not(.category-nav__catalog) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
}

.catalog-popover {
  position: absolute;
  left: 50%;
  right: auto;
  top: calc(100% + 12px);
  z-index: 3;
  width: min(1460px, calc(100vw - 72px));
  min-height: 346px;
  max-height: min(70vh, 680px);
  padding: 0;
  border: 1px solid rgba(226, 232, 240, .78);
  border-radius: 28px;
  background: rgba(255, 255, 255, .82);
  box-shadow:
    0 24px 70px rgba(15, 23, 42, .16),
    0 8px 24px rgba(15, 23, 42, .08);
  backdrop-filter: blur(24px) saturate(1.08);
  -webkit-backdrop-filter: blur(24px) saturate(1.08);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 14px) scale(.985);
  transform-origin: 50% 0;
  transition: opacity 220ms cubic-bezier(.2, .8, .2, 1), transform 220ms cubic-bezier(.2, .8, .2, 1), visibility 0s linear 220ms;
}

.catalog-popover::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: -18px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .30);
  filter: blur(18px);
  pointer-events: none;
}

body.is-catalog-open .catalog-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
  transition-delay: 0s;
  animation: premiumModalIn 220ms cubic-bezier(.2, .8, .2, 1);
}

.catalog-popover__head {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 14px;
  padding: 18px 22px 8px;
  background: transparent;
  border-bottom: 0;
}

.catalog-popover__head span {
  color: #0f172a;
  font-size: 17px;
  font-weight: 520;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.catalog-popover__head strong {
  margin-left: auto;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
}

.catalog-popover__close {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 14px;
  background: rgba(255, 255, 255, .66);
  color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 8px 24px rgba(0, 0, 0, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.catalog-popover__close::before,
.catalog-popover__close::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
}

.catalog-popover__close::before {
  transform: rotate(45deg);
}

.catalog-popover__close::after {
  transform: rotate(-45deg);
}

.catalog-popover__close:hover,
.catalog-popover__close:focus-visible {
  background: rgba(241, 245, 249, .95);
  transform: scale(1.04);
  outline: 0;
}

.catalog-popover__grid {
  min-height: 252px;
  padding: 8px 22px 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-content: start;
}

.catalog-popover__utility {
  display: none;
}

.catalog-popover__grid.is-loading {
  pointer-events: none;
}

.catalog-popover__grid.is-loading::before {
  content: "";
  grid-column: 1 / -1;
  min-height: 252px;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(226, 232, 240, .48), rgba(255, 255, 255, .78), rgba(226, 232, 240, .48)) 0 0 / 220% 100%,
    rgba(247, 250, 252, .72);
  animation: catalogSkeleton 1200ms ease-in-out infinite;
}

@keyframes catalogSkeleton {
  from { background-position: 120% 0, 0 0; }
  to { background-position: -120% 0, 0 0; }
}

.catalog-popover__grid a {
  height: 42px;
  padding: 7px 9px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(226, 232, 240, .72);
  border-radius: 14px;
  background: rgba(255, 255, 255, .58);
  color: #0f172a;
  white-space: normal;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.catalog-popover__grid a:hover,
.catalog-popover__grid a:focus-visible {
  border-color: rgba(148, 163, 184, .78);
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
  transform: translateY(-2px);
  outline: 0;
}

.catalog-popover__grid span {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #64748b;
  font-size: 11px;
  font-weight: 500;
}

.catalog-popover__grid strong {
  min-width: 0;
  color: inherit;
  display: -webkit-box;
  overflow: hidden;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.16;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@keyframes premiumModalIn {
  from {
    opacity: 0;
    transform: translate(-50%, 14px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 0s linear 180ms;
}

.auth-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 36%, rgba(255, 255, 255, .30), transparent 34rem),
    rgba(15, 23, 42, .32);
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
}

.auth-modal__panel {
  position: relative;
  width: min(520px, calc(100vw - 48px));
  padding: 18px 22px 22px;
  border: 1px solid rgba(226, 232, 240, .78);
  border-radius: 28px;
  background: rgba(255, 255, 255, .84);
  box-shadow:
    0 24px 70px rgba(15, 23, 42, .18),
    0 8px 24px rgba(15, 23, 42, .08);
  backdrop-filter: blur(24px) saturate(1.08);
  -webkit-backdrop-filter: blur(24px) saturate(1.08);
  overflow: hidden;
  transform: translateY(14px) scale(.985);
  transition: transform 220ms cubic-bezier(.2, .8, .2, 1);
}

.auth-modal__panel::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: -18px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .30);
  filter: blur(18px);
  pointer-events: none;
}

.auth-modal.is-open .auth-modal__panel {
  transform: translateY(0) scale(1);
}

.auth-modal:has([data-auth-form="register"]) .auth-modal__panel {
  width: min(960px, calc(100vw - 48px));
  max-height: min(88vh, 860px);
  overflow: auto;
}

.auth-modal__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 18px;
}

.auth-modal__head div {
  min-width: 0;
}

.auth-modal__head span {
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.auth-modal__head h2 {
  margin: 4px 0 0;
  color: #0f172a;
  font-family: var(--accent-font);
  font-size: 30px;
  line-height: 1.05;
  font-weight: 650;
  letter-spacing: 0;
}

.auth-modal__close {
  position: relative;
  width: 42px;
  height: 42px;
  margin-left: auto;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 14px;
  background: rgba(255, 255, 255, .66);
  color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 8px 24px rgba(0, 0, 0, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.auth-modal__close::before,
.auth-modal__close::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
}

.auth-modal__close::before {
  transform: rotate(45deg);
}

.auth-modal__close::after {
  transform: rotate(-45deg);
}

.auth-modal__close:hover,
.auth-modal__close:focus-visible {
  background: rgba(241, 245, 249, .95);
  transform: scale(1.04);
  outline: 0;
}

.auth-modal__form {
  display: grid;
  gap: 14px;
}

.auth-modal__form label {
  display: grid;
  gap: 7px;
}

.auth-modal__form label > span:not(.auth-modal__password),
.auth-modal__remember span {
  color: #475569;
  font-size: 13px;
  font-weight: 600;
}

.auth-modal__form input[type="text"],
.auth-modal__form input[type="email"],
.auth-modal__form input[type="tel"],
.auth-modal__form input[type="password"],
.auth-modal__form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(148, 163, 184, .42);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  padding: 0 15px;
  font-size: 16px;
  outline: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .54);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.auth-modal__form textarea {
  min-height: 72px;
  padding-block: 12px;
  line-height: 1.3;
  resize: vertical;
}

.auth-modal__form input[type="text"]:focus,
.auth-modal__form input[type="email"]:focus,
.auth-modal__form input[type="tel"]:focus,
.auth-modal__form input[type="password"]:focus,
.auth-modal__form textarea:focus {
  border-color: rgba(0, 111, 186, .55);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 0 0 4px rgba(0, 111, 186, .10);
}

.auth-modal__form--register {
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.auth-modal__section {
  display: grid;
  gap: 10px;
}

.auth-modal__form--register .cart-checkout__delivery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.auth-modal__form--register .cart-checkout__fields--delivery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.auth-modal__form--register .cart-checkout-person-type {
  margin-bottom: 0;
}

.auth-modal__form--register.is-person .cart-checkout-edrpou,
.auth-modal__form--register.is-person .cart-checkout-company {
  display: none;
}

.auth-modal__password {
  position: relative;
  display: block;
}

.auth-modal__password input {
  padding-right: 58px;
}

.auth-modal__password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  border: 1px solid rgba(125, 211, 252, .34);
  border-radius: 12px;
  background:
    radial-gradient(circle at 68% 22%, rgba(113, 236, 183, .26), transparent 45%),
    rgba(255, 255, 255, .64);
  color: #0071bb;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .10), inset 0 0 0 1px rgba(255, 255, 255, .58);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.auth-modal__password-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-modal__password-toggle .auth-modal__eye-closed {
  opacity: 0;
  transition: opacity 140ms ease;
}

.auth-modal__password-toggle:hover,
.auth-modal__password-toggle:focus-visible {
  transform: translateY(-50%) scale(1.03);
  border-color: rgba(0, 111, 186, .52);
  background:
    radial-gradient(circle at 70% 18%, rgba(113, 236, 183, .36), transparent 48%),
    rgba(255, 255, 255, .82);
  box-shadow: 0 14px 30px rgba(0, 111, 186, .16), inset 0 0 0 1px rgba(255, 255, 255, .72);
  outline: 0;
}

.auth-modal__password-toggle.is-visible .auth-modal__eye-closed {
  opacity: 1;
}

.auth-modal__options,
.auth-modal__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.auth-modal__options {
  margin-top: 2px;
}

.auth-modal__remember {
  display: inline-flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 9px !important;
  cursor: pointer;
}

.auth-modal__remember input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.auth-modal__link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 650;
  font-family: inherit;
  line-height: 1.3;
  cursor: pointer;
}

.auth-modal__link:hover,
.auth-modal__link:focus-visible {
  color: #005f9f;
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: 0;
}

.auth-modal__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.auth-modal__consent {
  align-items: flex-start;
  margin-top: 2px;
}

.auth-modal__consent input {
  margin-top: 2px;
}

.auth-modal__hint {
  margin: -2px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 560;
}

.auth-modal__status {
  min-height: 20px;
  margin: -2px 0 0;
  color: #0c6fae;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.auth-modal__submit {
  position: relative;
  isolation: isolate;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(420px, 100%);
  height: 54px;
  margin-top: 2px;
  overflow: visible;
  border-radius: 14px;
  border-color: rgba(190, 215, 231, .78);
  background: #fff;
  color: var(--blue);
  font-size: 16px;
  font-weight: 560;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .96),
    0 12px 24px rgba(15, 23, 42, .06);
}

.auth-modal__submit:hover,
.auth-modal__submit:focus-visible {
  transform: translateY(-2px);
  background: #fff;
  outline: none;
  border-color: rgba(0, 111, 186, .24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .96),
    0 10px 22px rgba(15, 23, 42, .055);
}

.auth-modal__submit:hover::before,
.auth-modal__submit:focus-visible::before {
  opacity: .42;
  transform: translateY(1px) scale(.985);
}

.auth-modal__submit::before,
.auth-modal__submit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.auth-modal__submit::before {
  inset: -18px -20px -20px -28px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 13% 78%, rgba(0, 111, 186, .42), rgba(0, 111, 186, 0) 48%),
    radial-gradient(ellipse at 82% 14%, rgba(0, 111, 186, .22), rgba(0, 111, 186, 0) 42%);
  filter: blur(16px);
  opacity: .92;
  transition: opacity 180ms ease, transform 180ms ease;
}

.auth-modal__submit::after {
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: #fff;
  opacity: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .96);
}

.auth-modal__submit-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: currentColor;
  position: relative;
  z-index: 1;
}

.auth-modal__submit > span {
  position: relative;
  z-index: 1;
}

.auth-modal__submit-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.auth-modal__foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 232, 240, .72);
  color: #64748b;
  font-size: 14px;
}

@keyframes home-scroll-cue-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes home-scroll-cue-arrow {
  0%, 100% { transform: translateY(-1px); opacity: .55; }
  50% { transform: translateY(3px); opacity: 1; }
}

.category-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tech-blog-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: #526173;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.tech-blog-tabs button.is-active {
  border-color: rgba(0, 111, 186, .16);
  background: rgba(0, 111, 186, .10);
  color: var(--blue);
}

@keyframes tech-blog-loading {
  from { background-position: 100% 0; }
  to { background-position: -100% 0; }
}

@media (max-width: 760px) {
.tech-blog-hero p:not(.eyebrow) {
    font-size: 15px;
  }
}

.files-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: #526173;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

@media (max-width: 760px) {
.files-hero p:not(.eyebrow) {
    font-size: 15px;
  }
}

.hero-slider__dots button.is-active {
  background: rgba(53, 185, 87, .82);
  transform: scale(1.25);
}

.catalog-section {
  margin-top: 54px;
}

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

.category-card {
  min-height: 258px;
  padding: 18px 14px 18px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 22%, var(--image-surface-glow), transparent 13rem),
    rgba(255, 255, 255, .94);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.category-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.category-card__meta {
  margin-top: auto;
  min-height: 58px;
  width: 100%;
  padding-top: 6px;
  display: grid;
  grid-template-columns: 19px 1px minmax(0, 1fr);
  gap: 5px;
  align-items: start;
  justify-content: center;
}

.category-card__meta::before {
  content: "";
  grid-column: 2;
  width: 1px;
  height: 46px;
  background: rgba(17, 24, 39, .12);
}

.category-card__meta span {
  grid-column: 1;
  grid-row: 1;
  color: var(--green);
  font-size: 12px;
  line-height: 1.15;
  font-weight: 560;
  letter-spacing: .04em;
  text-align: center;
  justify-self: stretch;
  padding-top: 2px;
}

.category-card__meta strong {
  grid-column: 3;
  grid-row: 1;
  max-width: 100%;
  color: #17202c;
  font-size: 13px;
  line-height: 1.32;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
}

.search-drawer {
  position: fixed;
  top: calc(192px + var(--admin-toolbar-offset, 0px));
  left: 0;
  right: 0;
  z-index: 91;
  margin: 0;
  pointer-events: none;
}

.home-page .search-drawer {
  top: calc(140px + var(--admin-toolbar-offset, 0px));
}

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

.search-drawer__panel {
  width: 90vw;
  max-width: var(--container);
  margin: 0 auto 22px;
  overflow: hidden;
  border: 1px solid rgba(63, 145, 194, .18);
  border-top-color: rgba(255, 255, 255, .52);
  border-radius: 0 0 24px 24px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 111, 186, .09), rgba(0, 111, 186, 0) 54%),
    rgba(255, 255, 255, .86);
  box-shadow:
    0 28px 76px rgba(15, 23, 42, .15),
    0 12px 42px rgba(0, 111, 186, .08),
    inset 0 1px 0 rgba(255, 255, 255, .72);
  backdrop-filter: blur(24px) saturate(1.12);
  -webkit-backdrop-filter: blur(24px) saturate(1.12);
  pointer-events: auto;
}

.search-drawer__bar {
  min-height: 62px;
  padding: 10px 18px 10px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 46px;
  align-items: center;
  gap: 16px;
  background:
    radial-gradient(ellipse at 74% 20%, rgba(0, 111, 186, .08), rgba(0, 111, 186, 0) 48%),
    rgba(244, 248, 251, .70);
  border-bottom: 1px solid rgba(226, 232, 240, .52);
}

.search-availability {
  min-height: 42px;
  padding: 0 16px 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #253241;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.search-availability input {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 42px;
  height: 24px;
  flex: 0 0 42px;
  margin: 0;
  border: 1px solid rgba(148, 163, 184, .42);
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 32% 50%, rgba(255, 255, 255, .98), rgba(255, 255, 255, 0) 62%),
    rgba(226, 235, 242, .72);
  box-shadow:
    inset 0 1px 2px rgba(15, 23, 42, .08),
    0 8px 18px rgba(15, 23, 42, .06);
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.search-availability input::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 4px 10px rgba(15, 23, 42, .12);
  transform: translateY(-50%);
  transition: transform .18s ease, background .18s ease;
}

.search-availability input:checked {
  border-color: rgba(55, 189, 101, .46);
  background:
    radial-gradient(ellipse at 70% 36%, rgba(255, 255, 255, .82), rgba(255, 255, 255, 0) 58%),
    rgba(55, 189, 101, .34);
  box-shadow:
    0 0 26px rgba(55, 189, 101, .18),
    inset 0 1px 2px rgba(15, 23, 42, .04);
}

.search-availability input:checked::before {
  background: var(--green);
  transform: translate(18px, -50%);
}

.search-drawer__close {
  position: relative;
  width: 46px;
  height: 46px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 28% 14%, rgba(255, 255, 255, .98), rgba(255, 255, 255, 0) 64%),
    linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(246, 249, 252, .68));
  color: transparent;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .96),
    inset 0 -1px 0 rgba(148, 163, 184, .08),
    0 14px 30px rgba(15, 23, 42, .10);
  backdrop-filter: blur(20px) saturate(1.12);
  -webkit-backdrop-filter: blur(20px) saturate(1.12);
}

.search-drawer__close::before,
.search-drawer__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
  transform-origin: center;
}

.search-drawer__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.search-drawer__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.search-drawer__close:hover,
.search-drawer__close:focus-visible {
  border-color: rgba(255, 255, 255, .92);
  transform: translateY(-1px);
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(148, 163, 184, .08),
    0 18px 38px rgba(15, 23, 42, .13);
}

.search-result__actions svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-drawer__status {
  min-width: 0;
  padding: 0;
  color: #26364a;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  border-bottom: 0;
}

.search-progress {
  height: 3px;
  overflow: hidden;
  background: #edf4f8;
}

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

.search-progress span {
  width: 42%;
  height: 100%;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--green), transparent);
  animation: search-progress-slide 1.05s ease-in-out infinite;
}

@keyframes search-progress-slide {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(260%);
  }
}

.search-results {
  max-height: min(62vh, 680px);
  overflow: auto;
}

.search-result {
  position: relative;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 92px minmax(240px, 1fr) 238px 154px;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, .50);
  border-bottom: 1px solid rgba(226, 232, 240, .58);
}

.search-result.is-exact {
  overflow: hidden;
  background:
    radial-gradient(ellipse 42% 88% at 16% 50%, rgba(57, 181, 74, .15) 0%, rgba(57, 181, 74, .085) 35%, rgba(57, 181, 74, .028) 58%, rgba(57, 181, 74, 0) 82%),
    radial-gradient(ellipse 32% 74% at 43% 50%, rgba(0, 111, 186, .035) 0%, rgba(0, 111, 186, .014) 46%, rgba(0, 111, 186, 0) 84%),
    linear-gradient(90deg, rgba(255, 255, 255, .68), rgba(255, 255, 255, .46));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .78),
    inset 0 -1px 0 rgba(226, 232, 240, .62);
}

.search-result.is-exact::before {
  content: none;
}

.search-result.is-exact > * {
  position: relative;
  z-index: 1;
}

.search-result--loading {
  pointer-events: none;
}

.search-skeleton,
.search-skeleton-stack span {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #eef3f6;
}

.search-skeleton::after,
.search-skeleton-stack span::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .82), transparent);
  animation: search-shimmer 1.2s ease-in-out infinite;
}

.search-skeleton--image {
  width: 92px;
  height: 92px;
}

.search-skeleton--button {
  width: 46px;
  height: 46px;
  justify-self: end;
  border-radius: 999px;
}

.search-skeleton-stack {
  display: grid;
  gap: 10px;
}

.search-skeleton-stack span {
  height: 14px;
}

.search-skeleton-stack span:first-child {
  width: 120px;
}

.search-skeleton-stack span:nth-child(2) {
  width: 92%;
}

.search-skeleton-stack span:nth-child(3) {
  width: 62%;
}

.search-skeleton-stack--short span:first-child {
  width: 110px;
}

.search-skeleton-stack--short span:nth-child(2) {
  width: 170px;
}

@keyframes search-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.search-result__image {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .82), transparent 5.4rem),
    var(--image-surface);
}

.search-result__image img {
  max-width: 78px;
  max-height: 78px;
  object-fit: contain;
}

.search-result__body {
  min-width: 0;
}

.search-result__head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.search-result__code {
  color: #101827;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.search-copy {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #9aa7b7;
  cursor: copy;
  transition: color 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.search-copy:hover,
.search-copy:focus-visible,
.search-copy.is-copied {
  color: var(--blue);
  background: rgba(0, 111, 186, .07);
  outline: none;
  transform: translateY(-1px);
}

.search-copy.is-copied {
  color: var(--green);
}

.search-copy svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

.exact-badge {
  padding: 0;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  background: transparent;
  color: #24843d;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.search-result__body p,
.search-result__title {
  margin: 5px 0 0;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.45;
}

.search-result__title {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.search-result__meta {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
}

.search-result__meta strong {
  width: fit-content;
  color: #101827;
  font-size: 18px;
  font-weight: 700;
}

.search-result__meta > small {
  width: fit-content;
  margin-top: -7px;
  color: #7b8794;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.search-copy-price {
  position: relative;
  cursor: copy;
  transform-origin: left center;
  transition: transform 160ms ease;
}

.search-copy-price--net {
  font-size: 75%;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: 0;
}

.search-copy-price:hover,
.search-copy-price:focus-visible {
  color: var(--blue);
  outline: none;
  transform: translateY(-2px);
}

.search-copy-price.is-copied {
  color: var(--green);
  transform: translateY(-2px);
}

.search-copy-price[data-copy-hint]::after {
  content: attr(data-copy-hint);
  position: absolute;
  left: min(var(--copy-hint-x, 50%), calc(100% - 12px));
  bottom: calc(100% + 7px);
  width: max-content;
  max-width: 230px;
  padding: 5px 8px;
  border: 1px solid rgba(0, 111, 186, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  color: var(--blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .07);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.search-copy-price[data-copy-hint]:hover::after,
.search-copy-price[data-copy-hint]:focus-visible::after,
.search-copy-price.is-copied::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.search-copy-price.is-copied::after {
  content: "Скопійовано";
  color: var(--green);
}

.stock-list {
  width: 258px;
  min-height: 50px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 55, .07);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(246, 249, 252, .86)),
    rgba(248, 251, 253, .92);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .72),
    0 10px 22px rgba(15, 23, 42, .045);
}

.stock-chip {
  position: relative;
  width: auto;
  min-width: 0;
  min-height: 50px;
  padding: 7px 9px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  justify-items: center;
  gap: 3px;
  border: 0;
  border-radius: 0;
  background: #f6f9fb;
  color: #596574;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.stock-chip::before {
  content: "";
  position: absolute;
  inset: -1px -18px;
  z-index: 0;
  opacity: .92;
  pointer-events: none;
}

.stock-chip > * {
  position: relative;
  z-index: 1;
}

.stock-chip svg {
  display: none;
}

.stock-chip span {
  color: #142033;
  max-width: 100%;
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1;
  font-weight: 760;
  white-space: nowrap;
}

.stock-chip small {
  color: #6b7684;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 650;
  white-space: nowrap;
}

.search-result .stock-list {
  width: 218px;
  min-height: 44px;
  border-radius: 15px;
}

.search-result .stock-chip {
  min-height: 44px;
  padding: 6px 6px;
}

.search-result .stock-chip span {
  font-size: clamp(11px, .78vw, 13px);
}

.search-result .stock-chip small {
  font-size: 10px;
}

.search-result .stock-empty {
  width: 218px;
  min-height: 44px;
  border-radius: 15px;
  font-size: 13px;
}

.stock-chip--ua {
  background: transparent;
  color: #39b54a;
}

.stock-chip--ua::before {
  background: radial-gradient(ellipse at 42% 50%, rgba(57, 181, 74, .16) 0%, rgba(57, 181, 74, .10) 48%, rgba(57, 181, 74, 0) 76%);
}

.stock-chip--supplier {
  background: transparent;
  color: var(--blue);
}

.stock-chip--supplier::before {
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 111, 186, .15) 0%, rgba(0, 111, 186, .09) 48%, rgba(0, 111, 186, 0) 76%);
}

.stock-chip--eu {
  background: transparent;
  color: #78716c;
}

.stock-chip--eu::before {
  background: radial-gradient(ellipse at 58% 50%, rgba(120, 113, 108, .14) 0%, rgba(120, 113, 108, .08) 48%, rgba(120, 113, 108, 0) 76%);
}

.stock-empty {
  position: relative;
  width: 258px;
  max-width: 100%;
  min-height: 50px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(192, 38, 38, .10);
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 28% 50%, rgba(220, 38, 38, .105) 0%, rgba(220, 38, 38, .052) 42%, rgba(220, 38, 38, 0) 72%),
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(252, 246, 246, .88));
  color: #c02626;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 720;
  font-variant-numeric: tabular-nums;
  text-align: center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .72),
    0 10px 22px rgba(15, 23, 42, .04);
}

.search-result__actions {
  display: grid;
  grid-template-columns: minmax(104px, 118px) 56px;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.search-result__qty.qty-control {
  width: 100%;
  height: 46px;
  grid-template-columns: 32px 1fr 32px;
  border: 1px solid rgba(0, 111, 186, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .94);
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .74),
    0 12px 26px rgba(0, 111, 186, .07);
}

.search-result__qty.qty-control button,
.search-result__qty.qty-control input {
  height: 100%;
  border: 0;
  background: transparent;
}

.search-result__qty.qty-control button {
  color: var(--blue);
  font-size: 18px;
  font-weight: 650;
  cursor: pointer;
}

.search-result__qty.qty-control input {
  color: #101827;
  font-size: 16px;
  font-weight: 760;
}

.search-result__actions .search-cart {
  width: 56px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 111, 186, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .94);
  color: var(--blue);
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .74),
    0 12px 26px rgba(0, 111, 186, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.search-result__actions .search-cart:hover,
.search-result__actions .search-cart:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 111, 186, .24);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .82),
    0 8px 18px rgba(0, 111, 186, .055);
}

.search-result__actions .search-cart svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.9;
}

.search-drawer__more {
  margin: 16px 24px 22px auto;
  width: max-content;
  min-height: 42px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  background: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.group-page {
  background:
    radial-gradient(circle at 16% 8%, rgba(0, 111, 186, .07), transparent 28rem),
    linear-gradient(180deg, #fff 0, #f3f7fa 34rem, #f6f8fb 100%);
}

.group-main {
  padding-bottom: 72px;
}

.group-breadcrumbs {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: #8a95a3;
  font-size: 11.5px;
  line-height: 1.25;
  font-weight: 500;
}

.group-breadcrumbs__compact {
  display: none;
}

.group-breadcrumbs__full {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.group-breadcrumbs a,
.group-breadcrumbs strong,
.group-breadcrumbs__toggle {
  color: #7a8796;
  font-weight: 500;
  text-decoration: none;
}

.group-breadcrumbs strong {
  color: #657384;
  font-weight: 560;
}

.group-breadcrumbs__separator {
  color: #94c7a1;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.group-breadcrumbs__toggle {
  width: 30px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(204, 220, 231, .70);
  border-radius: 999px;
  background: rgba(255, 255, 255, .70);
  color: var(--blue);
  font: inherit;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.group-back-link {
  min-height: 30px;
  padding: 0 11px;
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(204, 220, 231, .70);
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 36% 0%, rgba(255, 255, 255, .88), rgba(255, 255, 255, 0) 64%),
    rgba(236, 247, 253, .66);
  color: var(--blue);
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
  text-decoration: none;
  box-shadow:
    0 10px 24px rgba(0, 111, 186, .08),
    inset 0 1px 0 rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
}

.group-back-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.group-hero {
  position: sticky;
  top: 176px;
  z-index: 8;
  margin-top: 16px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(178, 202, 218, .62);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .76), rgba(245, 250, 253, .52)),
    rgba(255, 255, 255, .58);
  box-shadow:
    0 18px 44px rgba(15, 23, 42, .10),
    inset 0 1px 0 rgba(255, 255, 255, .86),
    inset 0 -1px 0 rgba(148, 163, 184, .14);
  backdrop-filter: blur(24px) saturate(1.14);
  -webkit-backdrop-filter: blur(24px) saturate(1.14);
}

.group-hero h1 {
  font-family: var(--accent-font);
  margin: 0;
  max-width: 100%;
  color: #111827;
  font-size: clamp(24px, 1.95vw, 34px);
  line-height: 1.16;
  font-weight: 360;
  letter-spacing: 0;
  text-shadow:
    0 0 18px rgba(0, 111, 186, .23),
    0 0 36px rgba(0, 111, 186, .10);
}

.group-hero p {
  display: none;
}

.group-hero__copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.group-hero .eyebrow {
  display: none;
}

.group-hero__count {
  justify-self: end;
  color: #7d8999;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 450;
  white-space: nowrap;
  text-shadow:
    0 0 16px rgba(57, 181, 74, .31),
    0 0 34px rgba(57, 181, 74, .16);
}

.group-hero__metrics {
  display: none;
}

@media (min-width: 1181px) {
.group-hero {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

.group-hero__copy {
    display: grid;
  }

.group-hero__copy .eyebrow,
.group-hero__copy h1 {
    grid-column: auto;
  }

.group-hero__copy p {
    display: none;
  }

.group-hero__metrics {
    display: none;
  }
}

.group-hero__metrics div {
  min-height: 92px;
  padding: 14px 16px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(205, 224, 236, .78);
  border-radius: 18px;
  background: rgba(239, 247, 252, .78);
}

.group-hero__metrics strong {
  font-family: var(--accent-font);
  color: #111827;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 650;
}

.group-hero__metrics span {
  margin-top: 5px;
  color: #748195;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.category-view-switch {
  position: relative;
  width: fit-content;
  margin: 14px 0 0 auto;
  padding: 4px;
  display: none;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(226, 232, 240, .74);
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(255, 255, 255, .96), rgba(255, 255, 255, 0) 68%),
    rgba(255, 255, 255, .72);
  box-shadow:
    0 12px 28px rgba(15, 23, 42, .07),
    inset 0 1px 0 rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
}

.category-view-switch:not([hidden])::after {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: 23px;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse 72% 48% at 68% 46%, rgba(0, 111, 186, .28), rgba(0, 111, 186, .10) 48%, rgba(0, 111, 186, 0) 76%),
    radial-gradient(ellipse 58% 36% at 30% 82%, rgba(53, 185, 87, .18), rgba(53, 185, 87, 0) 72%),
    radial-gradient(ellipse 70% 42% at 54% 0%, rgba(255, 255, 255, .90), rgba(255, 255, 255, 0) 76%);
  box-shadow: 0 18px 42px rgba(0, 111, 186, .16);
  animation: categoryViewSwitchBeacon 3.6s cubic-bezier(.22, .78, .26, 1) .45s 1 both;
}

.category-view-switch[hidden] {
  display: none;
}

.category-view-switch button {
  position: relative;
  min-width: 42px;
  height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #64748b;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.category-view-switch:not([hidden]) button[data-category-view="grid"] {
  animation: categoryGridButtonBeacon 3.6s cubic-bezier(.22, .78, .26, 1) .45s 1 both;
}

.category-view-switch:not([hidden]) button[data-category-view="grid"]::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: 14px;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse 72% 52% at 50% 38%, rgba(255, 255, 255, .96), rgba(255, 255, 255, .22) 50%, rgba(255, 255, 255, 0) 74%),
    radial-gradient(ellipse 76% 56% at 55% 64%, rgba(0, 111, 186, .42), rgba(0, 111, 186, .14) 48%, rgba(0, 111, 186, 0) 78%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .92),
    0 12px 26px rgba(0, 111, 186, .18);
  animation: categoryGridGlowBeacon 3.6s cubic-bezier(.22, .78, .26, 1) .45s 1 both;
}

.category-view-switch button[aria-pressed="true"] {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 111, 186, .20), rgba(0, 111, 186, 0) 70%),
    rgba(0, 111, 186, .09);
  color: var(--blue);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .90);
}

.category-view-switch svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes categoryViewSwitchBeacon {
  0%,
  100% {
    opacity: 0;
    transform: scale(.96);
  }
  12%,
  42%,
  72% {
    opacity: .82;
    transform: scale(1.04);
  }
  26%,
  58% {
    opacity: .20;
    transform: scale(.99);
  }
}

@keyframes categoryGridGlowBeacon {
  0%,
  100% {
    opacity: 0;
    transform: scale(.92);
  }
  12%,
  42%,
  72% {
    opacity: .96;
    transform: scale(1.03);
  }
  26%,
  58% {
    opacity: .22;
    transform: scale(.96);
  }
}

@keyframes categoryGridButtonBeacon {
  0%,
  100% {
    color: #64748b;
    transform: scale(1);
  }
  12%,
  42%,
  72% {
    color: var(--blue);
    transform: scale(1.08);
  }
  26%,
  58% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
.category-view-switch:not([hidden])::after,
.category-view-switch:not([hidden]) button[data-category-view="grid"],
.category-view-switch:not([hidden]) button[data-category-view="grid"]::after {
    animation: none;
  }
}

.group-series-strip {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.series-mini-card {
  min-height: 286px;
  padding: 22px 22px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(154px, 1fr) auto;
  column-gap: 14px;
  row-gap: 14px;
  align-items: end;
  border: 1px solid rgba(226, 232, 240, .74);
  border-radius: 26px;
  background: rgba(255, 255, 255, .90);
  color: #16202d;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.series-mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(63, 145, 194, .28);
  box-shadow: 0 20px 44px rgba(15, 23, 42, .10);
}

.series-mini-card img {
  grid-row: 2;
  align-self: center;
  justify-self: center;
  width: 100%;
  height: 164px;
  object-fit: contain;
}

.series-mini-card span {
  grid-row: 1;
  align-self: start;
  justify-self: start;
  color: #7b8794;
  font-size: 9px;
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.series-mini-card span::after {
  content: none;
}

.series-mini-card strong {
  grid-row: 3;
  position: relative;
  width: min(100%, 230px);
  padding-left: 14px;
  justify-self: end;
  color: #111827;
  font-size: 14px;
  line-height: 1.32;
  font-weight: 450;
  letter-spacing: 0;
}

.series-mini-card strong::before {
  content: "";
  position: absolute;
  top: .12em;
  left: 0;
  width: 1px;
  height: min(3.6em, 100%);
  border-radius: 999px;
  background: rgba(148, 163, 184, .32);
}

.group-workspace {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.is-category-page .group-series-strip {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.is-category-page .category-link-card {
  min-height: 226px;
  padding: 18px 18px 20px;
  grid-template-rows: auto minmax(112px, 1fr) auto;
  row-gap: 10px;
}

.is-category-page .category-link-card span {
  color: #7b8794;
  font-size: 8px;
}

.is-category-page .category-link-card strong {
  width: min(100%, 210px);
  justify-self: start;
  font-size: 13px;
  line-height: 1.26;
}

.is-category-page .category-link-card img {
  height: 124px;
}

.is-category-page .category-link-card strong::before {
  background: rgba(57, 181, 74, .42);
}

.is-category-page .group-workspace {
  display: none;
}

.is-category-page .group-faq {
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 30px;
}

.is-category-page .group-faq > h2 {
  margin: 0;
  font-size: 30px;
}

.is-category-page .group-faq__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.is-category-page .group-faq {
  align-items: start;
}

.is-category-page .group-faq details {
  border-radius: 18px;
  background: rgba(248, 251, 253, .72);
}

.is-category-page .group-faq details[open] {
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .045);
}

.is-category-page .group-faq summary {
  min-height: 56px;
  padding: 16px 54px 16px 18px;
  font-size: 14px;
}

.is-category-page .group-faq details p {
  padding: 0 18px 18px;
  font-size: 13.5px;
  line-height: 1.56;
}

.category-content {
  margin-top: 30px;
  padding: 28px;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 28px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(1.04);
  -webkit-backdrop-filter: blur(18px) saturate(1.04);
}

.category-content[hidden] {
  display: none;
}

.category-content__head {
  margin-bottom: 18px;
  display: grid;
  gap: 8px;
}

.category-content__head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1.16;
  font-weight: 560;
  letter-spacing: 0;
}

.category-content__body {
  display: grid;
  gap: 22px;
}

.category-content__article {
  width: 100%;
  max-width: none;
  overflow: hidden;
}

.category-content__article > *:first-child {
  margin-top: 0;
}

.category-content__body h1,
.category-content__body h2,
.category-content__body h3,
.category-content__body h4 {
  margin: 12px 0 2px;
  color: #111827;
  line-height: 1.18;
  font-weight: 560;
  letter-spacing: 0;
}

.category-content__body h1,
.category-content__body h2 {
  font-size: clamp(22px, 1.7vw, 30px);
}

.category-content__body h3 {
  font-size: clamp(19px, 1.35vw, 24px);
}

.category-content__body h4 {
  font-size: 17px;
}

.category-content__body p {
  margin: 0;
}

.category-content__body ul,
.category-content__body ol {
  margin: 0;
  padding-left: 1.2em;
}

.category-content__body li + li {
  margin-top: 6px;
}

.category-content__body a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 560;
}

.category-content__body table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.category-content__body th,
.category-content__body td {
  padding: 14px 16px;
  border: 1px solid rgba(226, 232, 240, .78);
  background: rgba(248, 251, 253, .82);
  text-align: left;
}

.category-content__body th:first-child,
.category-content__body td:first-child {
  border-radius: 16px 0 0 16px;
}

.category-content__body th:last-child,
.category-content__body td:last-child {
  border-radius: 0 16px 16px 0;
}

.category-content__body img {
  max-width: 100%;
  height: auto;
  border-radius: 22px;
}

.category-gallery {
  margin-top: 30px;
  padding: 30px;
  border: 1px solid rgba(226, 232, 240, .78);
  border-radius: 30px;
  background: rgba(255, 255, 255, .90);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(1.04);
  -webkit-backdrop-filter: blur(18px) saturate(1.04);
}

.category-gallery[hidden] {
  display: none;
}

.category-gallery__head {
  margin-bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.category-gallery__head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(26px, 2vw, 36px);
  line-height: 1.08;
  font-weight: 520;
}

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

.category-gallery__item {
  margin: 0;
  min-height: 220px;
  padding: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226, 232, 240, .72);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, .98) 0 50%, rgba(244, 250, 253, .84) 72%, rgba(237, 244, 248, .78) 100%);
  overflow: hidden;
}

.category-gallery__item img {
  width: 100%;
  height: 188px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.category-video {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, .66);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .84), rgba(247, 251, 253, .68)),
    rgba(255, 255, 255, .72);
  box-shadow:
    0 28px 74px rgba(15, 23, 42, .08),
    inset 0 1px 0 rgba(255, 255, 255, .86);
  backdrop-filter: blur(24px) saturate(1.08);
  -webkit-backdrop-filter: blur(24px) saturate(1.08);
}

.category-video__head {
  margin-bottom: 16px;
}

.category-video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 16%, var(--image-surface-glow), transparent 28rem),
    linear-gradient(180deg, #fbfdfe 0%, var(--image-surface) 100%);
}

.category-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.category-video__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  color: #fff;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 20%, rgba(5, 128, 190, .26), transparent 36rem),
    linear-gradient(135deg, rgba(15, 23, 42, .84), rgba(15, 23, 42, .58));
}

.category-video__placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(.96);
}

.category-video__placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, .08), rgba(15, 23, 42, .42));
}

.category-video__play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 127, 191, .94);
  box-shadow: 0 22px 54px rgba(0, 105, 180, .28);
  transition: transform .18s ease, background .18s ease;
}

.category-video__play svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  transform: translateX(2px);
}

.category-video__label {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 18px;
  max-width: calc(100% - 44px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
}

.category-video__placeholder:hover .category-video__play {
  transform: scale(1.05);
  background: #008bd2;
}

.category-related {
  margin-top: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.category-related[hidden] {
  display: none;
}

.category-related__head {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.category-related__head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(20px, 1.28vw, 24px);
  line-height: 1.16;
  font-weight: 650;
  letter-spacing: 0;
}

.category-related__nav {
  display: flex;
  gap: 8px;
  opacity: .34;
  transition: opacity .18s ease;
}

.category-related:hover .category-related__nav,
.category-related:focus-within .category-related__nav {
  opacity: .78;
}

.category-related__arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 139, 203, .10);
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
  color: var(--blue);
  box-shadow: none;
  backdrop-filter: blur(12px) saturate(1.04);
  -webkit-backdrop-filter: blur(12px) saturate(1.04);
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.category-related__arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.category-related__arrow:hover,
.category-related__arrow:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(47, 139, 203, .22);
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 12px 24px rgba(47, 139, 203, .10);
}

.category-related__arrow:disabled {
  opacity: .24;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.category-related__viewport {
  margin: -44px -18px -34px;
  padding: 44px 18px 34px;
  overflow-x: visible;
  overflow-y: visible;
  background: transparent;
}

.category-related__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(232px, calc((100% - 60px) / 4));
  gap: 20px;
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 18px;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
  padding-top: 22px;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-top: -22px;
  transition: scrollbar-color .18s ease;
}

.category-related:hover .category-related__track,
.category-related:focus-within .category-related__track,
.category-related.is-scrolling .category-related__track {
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 139, 203, .26) transparent;
}

.category-related__track::-webkit-scrollbar {
  height: 0;
  background: transparent;
  display: none;
}

.category-related:hover .category-related__track::-webkit-scrollbar,
.category-related:focus-within .category-related__track::-webkit-scrollbar,
.category-related.is-scrolling .category-related__track::-webkit-scrollbar {
  display: block;
  height: 6px;
}

.category-related__track::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: transparent;
  transition: background .18s ease;
}

.category-related:hover .category-related__track::-webkit-scrollbar-thumb,
.category-related:focus-within .category-related__track::-webkit-scrollbar-thumb,
.category-related.is-scrolling .category-related__track::-webkit-scrollbar-thumb {
  background: rgba(47, 139, 203, .24);
}

.category-related-card {
  min-height: 404px;
  padding: 14px;
  display: grid;
  grid-template-rows: 174px 1fr auto;
  gap: 12px;
  scroll-snap-align: start;
  border: 1px solid rgba(148, 163, 184, .34);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, .10)),
    rgba(244, 249, 252, .14);
  box-shadow:
    0 10px 28px rgba(15, 23, 42, .038),
    inset 0 1px 0 rgba(255, 255, 255, .58),
    inset 0 -1px 0 rgba(100, 116, 139, .10);
  backdrop-filter: blur(28px) saturate(1.04);
  -webkit-backdrop-filter: blur(28px) saturate(1.04);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.category-related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(100, 116, 139, .42);
  box-shadow:
    0 14px 36px rgba(15, 23, 42, .05),
    0 8px 22px rgba(47, 139, 203, .035),
    inset 0 1px 0 rgba(255, 255, 255, .68);
}

.category-related-card__image {
  position: relative;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 16%, var(--image-surface-glow), transparent 13rem),
    linear-gradient(180deg, #fbfdfe 0%, var(--image-surface) 100%);
  overflow: hidden;
}

.category-related-card__image::before {
  content: none;
}

.category-related-card__image img {
  position: relative;
  width: 100%;
  height: 150px;
  display: block;
  object-fit: contain;
}

.category-related-card__body {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 9px;
}

.category-related-card__code,
.category-related-card__title {
  color: inherit;
  text-decoration: none;
}

.category-related-card__code {
  color: #111827;
  font-size: 14px;
  line-height: 1.18;
  font-weight: 760;
}

.category-related-card__title {
  min-height: 56px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.48;
  font-weight: 450;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-related-card__price {
  padding-top: 0;
  display: grid;
  gap: 2px;
}

.category-related-card__price strong {
  color: #111827;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 760;
}

.category-related-card__price small {
  color: #7a8795;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 520;
}

.category-related-stock {
  min-height: 42px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.category-related-stock__chip,
.category-related-stock__empty {
  min-height: 34px;
  padding: 6px 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 11px;
  border: 1px solid rgba(226, 232, 240, .78);
  background: rgba(248, 251, 253, .78);
  color: #475569;
  font-size: 12px;
  font-weight: 650;
}

.category-related-stock__chip b {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.category-related-stock__chip small {
  color: #64748b;
  font-size: 11px;
  font-weight: 560;
}

.category-related-stock__chip--ua {
  border-color: rgba(106, 186, 117, .34);
  background: rgba(236, 250, 240, .82);
}

.category-related-stock__chip--pl {
  border-color: rgba(47, 139, 203, .28);
  background: rgba(239, 248, 254, .86);
}

.category-related-stock__chip--eu {
  border-color: rgba(148, 163, 184, .34);
  background: rgba(248, 250, 252, .9);
}

.category-related-stock__empty {
  color: #b45309;
  border-color: rgba(251, 191, 36, .35);
  background: rgba(255, 251, 235, .86);
}

.category-related-card__actions {
  min-height: 34px;
  display: grid;
  justify-items: end;
  align-items: center;
}

.category-related-qty {
  height: 42px;
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  border: 1px solid rgba(226, 232, 240, .88);
  border-radius: 13px;
  background: rgba(248, 251, 253, .82);
  overflow: hidden;
}

.category-related-qty button {
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.category-related-qty span {
  text-align: center;
  color: #111827;
  font-size: 13px;
  font-weight: 760;
}

.category-related-cart,
.category-related-request {
  min-height: 30px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 720;
}

.category-related-cart {
  position: relative;
  z-index: 0;
  width: 42px;
  height: 30px;
  min-width: 42px;
  color: rgba(28, 150, 65, .94);
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.category-related-cart::before,
.category-related-cart::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
}

.category-related-cart::before {
  width: 58px;
  height: 28px;
  right: -7px;
  top: -1px;
  background: radial-gradient(ellipse at 72% 45%, rgba(70, 202, 107, .48), rgba(70, 202, 107, .15) 44%, rgba(70, 202, 107, 0) 72%);
  filter: blur(11px);
}

.category-related-cart::after {
  width: 34px;
  height: 18px;
  left: 2px;
  bottom: -3px;
  background: radial-gradient(ellipse at 24% 62%, rgba(255, 255, 255, .30), rgba(255, 255, 255, 0) 68%);
  filter: blur(9px);
}

.category-related-cart svg {
  width: 38px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(53, 185, 87, .28));
}

.category-related-cart:hover,
.category-related-cart:focus-visible {
  color: rgba(20, 134, 55, 1);
}

.category-related-cart:hover::before,
.category-related-cart:focus-visible::before {
  background: radial-gradient(ellipse at 72% 45%, rgba(70, 202, 107, .76), rgba(70, 202, 107, .28) 44%, rgba(70, 202, 107, 0) 72%);
  filter: blur(10px);
}

.category-related-cart:hover svg,
.category-related-cart:focus-visible svg {
  filter: drop-shadow(0 0 16px rgba(53, 185, 87, .48));
}

.category-related-request {
  grid-column: 1 / -1;
  color: var(--blue);
  border: 1px solid rgba(47, 139, 203, .24);
  background: rgba(255, 255, 255, .86);
}

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

.group-filter {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: min(390px, calc(100vw - 28px));
  height: 100vh;
  padding: 22px;
  overflow-y: auto;
  border: 1px solid rgba(226, 232, 240, .78);
  border-radius: 0 28px 28px 0;
  background: rgba(255, 255, 255, .82);
  box-shadow: 24px 0 70px rgba(15, 23, 42, .16);
  backdrop-filter: blur(24px) saturate(1.08);
  -webkit-backdrop-filter: blur(24px) saturate(1.08);
  transform: translateX(calc(-100% - 28px));
  transition:
    background .2s ease,
    box-shadow .2s ease,
    transform .24s ease;
}

.group-filter__head {
  margin-bottom: 18px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.group-filter__head strong {
  color: #111827;
  font-size: 22px;
  font-weight: 560;
}

.group-filter__head span,
.filter-block > span {
  color: #7b8794;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.group-filter__close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 14px;
  background: rgba(255, 255, 255, .66);
  color: var(--blue);
  cursor: pointer;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, .04),
    0 8px 24px rgba(0, 0, 0, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    background .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.group-filter__close:hover,
.group-filter__close:focus-visible {
  outline: none;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .84);
}

.group-filter-trigger {
  width: max-content;
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 16px;
  background: rgba(255, 255, 255, .68);
  color: var(--blue);
  font: inherit;
  font-size: 14px;
  font-weight: 760;
  cursor: pointer;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, .04),
    0 8px 24px rgba(0, 0, 0, .08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition:
    background .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.group-filter-trigger:hover,
.group-filter-trigger:focus-visible {
  outline: none;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .86);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, .06),
    0 12px 32px rgba(0, 0, 0, .10);
}

.group-filter-trigger svg {
  width: 20px;
  height: 20px;
}

.group-filter-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(10, 28, 38, .18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

body.is-filter-open .group-filter {
  transform: translateX(0);
}

body.is-filter-open .group-filter-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.is-category-page .group-filter-trigger,
.is-category-page .group-filter-backdrop {
  display: none;
}

.filter-check {
  min-height: 44px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(246, 249, 252, .74);
  color: #1f2937;
  font-size: 13px;
  font-weight: 560;
}

.filter-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
}

.filter-block {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.filter-block button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 12px;
  background: rgba(255, 255, 255, .82);
  color: #344255;
  font: inherit;
  font-size: 13px;
  font-weight: 560;
  text-align: left;
  cursor: pointer;
}

.filter-block button.is-active,
.filter-block button:hover {
  border-color: rgba(0, 111, 186, .24);
  background: rgba(237, 245, 251, .92);
  color: var(--blue);
}

.group-list {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.group-series {
  scroll-margin-top: 212px;
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, .78);
  border-radius: 28px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
}

.group-series__summary {
  padding: 16px 22px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.group-series__footer {
  position: relative;
  z-index: 2;
  padding: 18px 22px 8px;
  display: flex;
  justify-content: center;
}

.group-series::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -34px;
  height: 172px;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(241, 248, 252, .2) 38%, rgba(232, 243, 250, .58) 72%, rgba(255, 255, 255, .74) 100%),
    radial-gradient(ellipse at 50% 94%, rgba(0, 113, 188, .13), rgba(186, 212, 231, .08) 34%, transparent 76%);
  transition: opacity 180ms ease;
}

.group-series:not(.is-open)::after {
  opacity: 1;
}

.group-series:not(.is-open) .variant-list {
  display: none;
}

.group-series__toggle {
  width: auto;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: none;
  transition:
    transform .2s ease;
}

.group-series__toggle:hover,
.group-series__toggle:focus-visible {
  outline: none;
  transform: translateY(-1px);
  color: #045f9d;
  background: transparent;
}

.group-series__toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.group-series.is-open .group-series__toggle svg {
  transform: rotate(180deg);
}

.group-series.is-open .group-series__footer {
  border-bottom: 1px solid rgba(226, 232, 240, .68);
}

.group-series__image {
  height: 118px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 22%, var(--image-surface-glow), transparent 9rem),
    var(--image-surface);
}

.group-series__image img {
  max-width: 90%;
  max-height: 96px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.group-series h2 {
  margin: 3px 0 10px;
  color: #111827;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 520;
}

.group-series h2[data-toggle-group-title] {
  cursor: pointer;
}

.group-series h2[data-toggle-group-title]:focus-visible {
  outline: 2px solid rgba(0, 111, 186, .44);
  outline-offset: 6px;
  border-radius: 10px;
}

.series-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.series-specs span {
  min-height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f2f6fa;
  color: #596574;
  font-size: 11px;
  font-weight: 600;
}

.variant-list {
  display: grid;
  min-width: 0;
}

.variant-row {
  min-height: 92px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: minmax(340px, 1fr) 150px 172px 260px;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid rgba(226, 232, 240, .68);
}

.variant-row:last-child {
  border-bottom: 0;
}

.variant-code,
.variant-title {
  position: relative;
  width: fit-content;
  max-width: 100%;
  color: #111827;
  text-decoration: none;
  cursor: pointer;
  transition:
    background .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.variant-code {
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.variant-title {
  font-size: 13px;
  line-height: 1.38;
  font-weight: 450;
}

.variant-title:hover,
.variant-title:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.variant-code:hover,
.variant-code:focus-visible {
  color: var(--blue);
  outline: none;
  transform: translateY(-1px);
}

.variant-code:hover,
.variant-code:focus-visible,
.variant-code.is-copied {
  font-weight: 620;
}

.variant-code::after,
.variant-title::after {
  content: attr(data-copy-hint);
  position: absolute;
  left: var(--copy-hint-x, 50%);
  bottom: calc(100% + 6px);
  width: max-content;
  max-width: 210px;
  padding: 5px 8px;
  border: 1px solid rgba(0, 111, 186, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  color: var(--blue);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .07);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.variant-code:hover::after,
.variant-code:focus-visible::after,
.variant-title:hover::after,
.variant-title:focus-visible::after,
.variant-code.is-copied::after,
.variant-title.is-copied::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.variant-code.is-copied,
.variant-title.is-copied {
  color: var(--green);
}

.variant-code.is-copied::after,
.variant-title.is-copied::after {
  content: "Скопійовано";
  color: var(--green);
}

.variant-info {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.variant-info .variant-code::after,
.variant-info .variant-title::after {
  content: none;
}

.variant-info__line {
  min-width: 0;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.variant-info__line--code {
  grid-template-columns: 24px minmax(0, max-content);
}

.variant-info__copy {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #9aa7b7;
  cursor: copy;
  transition: color 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.variant-info__copy:hover,
.variant-info__copy:focus-visible,
.variant-info__copy.is-copied {
  color: var(--blue);
  background: rgba(0, 111, 186, .07);
  outline: none;
  transform: translateY(-1px);
}

.variant-info__copy.is-copied {
  color: var(--green);
}

.variant-info__copy svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

.variant-info__copy::after {
  content: attr(data-copy-hint);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 6px);
  width: max-content;
  max-width: 210px;
  padding: 5px 8px;
  border: 1px solid rgba(0, 111, 186, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  color: var(--blue);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .07);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.variant-info__copy:hover::after,
.variant-info__copy:focus-visible::after,
.variant-info__copy.is-copied::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.variant-info__copy.is-copied::after {
  content: "Скопійовано";
  color: var(--green);
}

.variant-title:hover,
.variant-title:focus-visible {
  color: #111827;
  font-weight: 450;
}

.variant-info .variant-title {
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  white-space: normal;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.variant-title.is-copied {
  color: #111827;
  font-weight: 450;
}

.variant-code.is-copied::after,
.variant-title.is-copied::after,
.variant-info__copy.is-copied::after {
  content: "Скопійовано";
}

.variant-code.is-copied::after,
.variant-title.is-copied::after,
.variant-info__copy.is-copied::after {
  content: "\0421\043A\043E\043F\0456\0439\043E\0432\0430\043D\043E";
}

.group-data-loading .group-hero,
.group-skeleton-panel,
.group-skeleton-card,
.category-skeleton-card,
.category-content__article--skeleton,
.category-gallery__item--skeleton,
.category-related-card--skeleton,
.category-faq-skeleton,
.category-metric-skeleton,
.category-skeleton-line,
.category-skeleton-media,
.group-product-loader {
  position: relative;
  overflow: hidden;
}

.group-data-loading .group-hero::after,
.group-skeleton-panel::after,
.group-skeleton-card::after,
.category-skeleton-card::after,
.category-content__article--skeleton::after,
.category-gallery__item--skeleton::after,
.category-related-card--skeleton::after,
.category-faq-skeleton::after,
.category-metric-skeleton::after,
.category-skeleton-line::after,
.category-skeleton-media::after,
.group-product-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, .72) 48%, transparent 100%);
  animation: skeleton-sheen 1.15s ease-in-out infinite;
}

.group-skeleton-card {
  min-height: 180px;
  border-radius: 28px;
  background: rgba(236, 244, 250, .72);
  box-shadow: inset 0 0 0 1px rgba(186, 212, 231, .28);
}

.group-data-loading.is-category-page .group-series-strip > .series-mini-card:not(.category-skeleton-card),
.group-data-loading.is-category-page .group-workspace,
.group-data-loading.is-category-page .category-flow,
.group-data-loading.is-category-page .group-faq {
  display: none;
}

.group-data-loading.is-product-group-page .group-series-strip > .series-mini-card:not(.group-skeleton-card),
.group-data-loading.is-product-group-page .group-list > .group-series:not(.group-skeleton-panel),
.group-data-loading.is-product-group-page .group-faq {
  display: none;
}

.group-data-loading.is-category-page .group-main {
  min-height: calc(100vh + 180px);
}

.group-data-loading.is-category-page .group-hero {
  position: relative;
  top: auto;
  z-index: 1;
  margin-top: 16px;
}

.group-data-loading.is-category-page .category-link-card {
  min-height: 226px;
  height: 226px;
  grid-template-rows: 18px 124px minmax(36px, auto);
}

.category-skeleton-line {
  display: block;
  width: min(100%, 420px);
  height: 18px;
  border-radius: 999px;
  background: rgba(230, 240, 247, .86);
}

.category-skeleton-line--eyebrow {
  width: 118px;
  height: 14px;
}

.category-skeleton-line--title {
  width: min(100%, 360px);
  height: 28px;
}

.category-skeleton-line--wide {
  width: min(100%, 720px);
}

.category-skeleton-line--short {
  width: min(70%, 440px);
}

.category-skeleton-line--breadcrumb {
  width: 104px;
  height: 14px;
}

.category-skeleton-line--breadcrumb-short {
  width: 176px;
  height: 14px;
}

.category-skeleton-line--hero {
  width: min(100%, 680px);
  height: clamp(28px, 1.95vw, 40px);
}

.category-skeleton-line--hero-short {
  width: min(72%, 480px);
  height: clamp(28px, 1.95vw, 40px);
}

.category-skeleton-line--copy {
  width: min(100%, 620px);
}

.category-skeleton-line--copy-short {
  width: min(72%, 420px);
  margin-top: 10px;
}

.category-skeleton-line--count {
  width: 116px;
  height: 18px;
}

.category-skeleton-line--metric-number {
  width: 72px;
  height: 42px;
}

.category-skeleton-line--metric-label {
  width: 128px;
  height: 16px;
}

.category-skeleton-line--faq-title {
  width: 92px;
  height: 34px;
}

.category-skeleton-card {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 20px 48px rgba(15, 23, 42, .07), inset 0 0 0 1px rgba(186, 212, 231, .34);
}

.category-skeleton-card__number {
  display: block;
  grid-row: 1;
  align-self: center;
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: rgba(230, 240, 247, .86);
}

.category-skeleton-card__image {
  display: block;
  grid-row: 2;
  width: 78%;
  height: 124px;
  justify-self: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .92), transparent 48%),
    rgba(230, 240, 247, .72);
}

.category-skeleton-card strong {
  display: grid;
  grid-row: 3;
  gap: 10px;
  align-content: center;
}

.category-skeleton-card strong i {
  display: block;
  height: 16px;
  border-radius: 999px;
  background: rgba(230, 240, 247, .86);
}

.category-skeleton-card strong i:last-child {
  width: 72%;
}

.category-content__head--skeleton,
.category-gallery__head--skeleton {
  pointer-events: none;
}

.category-content__article--skeleton {
  display: grid;
  gap: 14px;
  min-height: 360px;
}

.category-skeleton-media {
  display: block;
  width: min(100%, 620px);
  height: 220px;
  margin-top: 8px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 45% 36%, rgba(255, 255, 255, .92), transparent 46%),
    rgba(230, 240, 247, .76);
}

.category-gallery__item--skeleton {
  display: block;
  min-height: 220px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .92), transparent 48%),
    rgba(230, 240, 247, .76);
}

.category-faq-skeleton {
  min-height: 56px;
  padding: 16px 54px 16px 18px;
  border: 1px solid rgba(17, 24, 39, .07);
  border-radius: 18px;
  background: rgba(248, 251, 253, .72);
}

.category-faq-skeleton .category-skeleton-line {
  width: min(82%, 480px);
}

.category-skeleton-plus {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border-radius: 12px;
  background: rgba(230, 240, 247, .86);
}

.category-metric-skeleton {
  min-height: 118px;
  padding: 24px 26px;
  display: grid;
  align-content: center;
  gap: 14px;
  border: 1px solid rgba(186, 212, 231, .74);
  border-radius: 24px;
  background: rgba(238, 247, 252, .82);
}

.group-skeleton-panel {
  min-height: 250px;
  border-radius: 30px;
  background: #fff;
}

.group-skeleton-panel .group-series__summary div:first-child,
.group-skeleton-panel .group-series__summary span {
  display: block;
  border-radius: 22px;
  background: rgba(230, 240, 247, .78);
}

.group-skeleton-panel .group-series__summary div:first-child {
  height: 190px;
}

.group-skeleton-panel .group-series__summary span {
  width: min(520px, 80%);
  height: 24px;
  margin: 18px 0;
}

.group-product-loader {
  min-height: 116px;
  border-top: 1px solid rgba(15, 23, 42, .08);
  background:
    radial-gradient(circle at 20% 50%, rgba(227, 243, 255, .82), transparent 34%),
    rgba(255, 255, 255, .88);
}

.group-empty {
  margin: 0;
  padding: 28px;
  color: var(--muted);
}

@keyframes skeleton-sheen {
  to {
    transform: translateX(100%);
  }
}

.variant-price {
  display: grid;
  gap: 2px;
  justify-items: start;
  min-width: 0;
}

.variant-price strong {
  color: #111827;
  font-size: 15px;
  font-weight: 760;
}

.variant-price small {
  color: #7b8794;
  font-size: 11px;
  font-weight: 560;
}

.variant-stock {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 0;
}

.variant-stock:has(> .stock-chip) {
  width: 172px;
  height: 48px;
  box-sizing: border-box;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 55, .07);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(246, 249, 252, .62)),
    rgba(255, 255, 255, .65);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, .04),
    0 8px 24px rgba(0, 0, 0, .08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.variant-stock .stock-list {
  width: 172px;
  height: 48px;
  box-sizing: border-box;
  border-radius: 16px;
}

.variant-stock .stock-chip {
  min-height: 48px;
  padding: 5px 7px;
  box-sizing: border-box;
}

.variant-stock .stock-chip svg {
  display: none;
  width: 16px;
  height: 16px;
}

.variant-stock .stock-chip span {
  font-size: clamp(11px, .9vw, 13px);
}

.variant-stock .stock-empty {
  width: 172px;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 16px;
  font-size: 12px;
}

.variant-actions {
  display: grid;
  grid-template-columns: 118px minmax(134px, 1fr);
  align-items: center;
  justify-content: end;
  gap: 8px;
  min-width: 0;
}

.variant-actions button,
.variant-actions span,
.variant-actions a {
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 41, 55, .08);
  border-radius: 13px;
  color: var(--blue);
  font: inherit;
  font-weight: 760;
  text-decoration: none;
}

.variant-qty {
  display: grid;
  min-width: 0;
}

.variant-qty__label {
  display: none !important;
}

.variant-qty__control {
  display: grid;
  grid-template-columns: 34px 50px 34px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, .65);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, .04),
    0 8px 24px rgba(0, 0, 0, .08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition:
    background .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.variant-qty__control button,
.variant-qty__control span {
  width: auto;
  height: 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.variant-qty__control:hover {
  background: rgba(255, 255, 255, .82);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, .06),
    0 12px 32px rgba(0, 0, 0, .10);
}

.variant-actions .variant-cart {
  min-width: 134px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 16px;
  background: rgba(255, 255, 255, .65);
  color: var(--blue);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, .04),
    0 8px 24px rgba(0, 0, 0, .08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition:
    background .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.variant-actions .variant-cart:hover,
.variant-actions .variant-cart:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .82);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, .06),
    0 12px 32px rgba(0, 0, 0, .10);
  outline: none;
}

.variant-actions .variant-cart:active {
  transform: scale(.98);
}

.variant-actions .variant-cart.is-added,
.search-result__actions .search-cart.is-added,
.product-cart.is-added {
  border-color: rgba(53, 185, 87, .28);
  color: #2f9e44;
  background:
    radial-gradient(ellipse at 28% 50%, rgba(53, 185, 87, .16) 0%, rgba(53, 185, 87, .07) 44%, rgba(53, 185, 87, 0) 74%),
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(246, 252, 247, .88));
}

.variant-actions .variant-cart span {
  height: auto;
  display: inline;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  box-shadow: none;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.variant-actions svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.variant-actions--contact {
  grid-template-columns: minmax(0, 1fr);
}

.variant-actions--contact button {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0 12px;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(57, 181, 74, .12);
  border-radius: 15px;
  background:
    radial-gradient(ellipse at 28% 50%, rgba(57, 181, 74, .13) 0%, rgba(57, 181, 74, .06) 44%, rgba(57, 181, 74, 0) 74%),
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(246, 252, 247, .88));
  color: #2fb34b;
  font-size: 12px;
  line-height: 1.12;
  font-weight: 720;
  text-align: center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .72),
    0 10px 22px rgba(15, 23, 42, .04);
}

.group-faq {
  margin-top: 34px;
  padding: 28px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  border: 1px solid rgba(226, 232, 240, .78);
  border-radius: 28px;
  background: rgba(255, 255, 255, .90);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(1.06);
  -webkit-backdrop-filter: blur(18px) saturate(1.06);
}

.group-faq h2 {
  margin: 8px 0 10px;
  color: #111827;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 520;
}

.group-faq p {
  margin: 0;
  color: #657386;
  font-size: 14px;
  line-height: 1.58;
}

.group-faq__list {
  display: grid;
  gap: 12px;
}

.group-faq details {
  border: 1px solid rgba(226, 232, 240, .78);
  border-radius: 18px;
  background: rgba(248, 251, 253, .78);
  overflow: hidden;
}

.group-faq summary {
  min-height: 62px;
  padding: 18px 54px 18px 20px;
  position: relative;
  display: flex;
  align-items: center;
  color: #17202c;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 620;
  cursor: pointer;
  list-style: none;
}

.group-faq summary::-webkit-details-marker {
  display: none;
}

.group-faq summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(237, 245, 251, .96);
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
  font-weight: 560;
  transform: translateY(-50%);
}

.group-faq details[open] summary::after {
  content: "−";
}

.group-faq details p {
  padding: 0 20px 20px;
  color: #536174;
  font-size: 14px;
}

.product-main {
  padding-top: 16px;
  padding-bottom: 72px;
}

.product-breadcrumbs {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  color: #8a95a3;
  font-size: 11.5px;
  line-height: 1.25;
  font-weight: 500;
}

.product-breadcrumbs a {
  color: #7a8796;
}

.product-back-link {
  min-width: 108px;
  height: 38px;
  flex: 0 0 auto;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(0, 111, 186, .12);
  border-radius: 13px;
  background: rgba(237, 245, 251, .78);
  color: var(--blue);
  box-shadow: 0 8px 20px rgba(15, 23, 42, .04);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  transition: transform .16s ease, background-color .18s ease, border-color .18s ease;
}

.product-back-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-back-link span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.product-back-link:hover {
  border-color: rgba(0, 111, 186, .18);
  background-color: rgba(237, 245, 251, .86);
}

.product-back-link:active {
  transform: scale(.96);
}

.product-breadcrumbs strong {
  color: #657384;
  font-weight: 560;
}

.product-breadcrumbs__separator {
  color: #94c7a1;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.product-breadcrumbs__compact {
  display: none;
}

.product-breadcrumbs__full {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  white-space: nowrap;
}

.product-breadcrumbs__full a,
.product-breadcrumbs__full strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-breadcrumbs__toggle {
  width: 30px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(204, 220, 231, .70);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.product-skeleton {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 999px;
  background: #eaf2f7;
  color: transparent;
  font-size: 0;
  line-height: 0;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
}

.product-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .86), transparent);
  animation: search-shimmer 1.15s ease-in-out infinite;
}

.product-skeleton--crumb {
  width: 110px;
  height: 18px;
}

.product-skeleton--crumb-mid {
  width: 180px;
}

.product-skeleton--crumb-long {
  width: min(420px, 46vw);
}

.product-skeleton--code {
  width: 170px;
  height: 24px;
}

.product-skeleton--title {
  width: min(860px, 64vw);
  height: 30px;
  border-radius: 18px;
}

.product-skeleton--thumb {
  width: 100%;
  height: 78px;
  border-radius: 16px;
}

.product-skeleton--price {
  width: 210px;
  height: 38px;
  border-radius: 14px;
}

.product-skeleton--net-price {
  width: 150px;
  height: 14px;
  border-radius: 10px;
}

.product-skeleton--stock {
  width: 100%;
  height: 64px;
  border-radius: 16px;
}

.product-skeleton--text-line {
  width: min(780px, 88%);
  height: 18px;
  margin-bottom: 10px;
  display: block;
  border-radius: 10px;
}

.product-skeleton--text-line-short {
  width: min(520px, 62%);
}

.product-skeleton--description-card {
  width: min(460px, 100%);
  height: 88px;
  border-radius: 18px;
}

.product-skeleton--spec-label,
.product-skeleton--spec-value {
  width: 42%;
  height: 16px;
  border-radius: 10px;
}

.product-skeleton--file-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.product-skeleton--file-title {
  width: 240px;
  height: 20px;
  display: block;
  border-radius: 10px;
}

.product-skeleton--file-link {
  width: 145px;
  height: 16px;
  margin-top: 10px;
  display: block;
  border-radius: 10px;
}

.product-skeleton--review-name,
.product-skeleton--review-text,
.product-skeleton--review-stars {
  display: block;
  border-radius: 10px;
}

.product-skeleton--review-name {
  width: 140px;
  height: 20px;
}

.product-skeleton--review-text {
  width: min(520px, 62vw);
  height: 18px;
  margin-top: 24px;
}

.product-skeleton--review-stars {
  width: 150px;
  height: 22px;
}

.product-skeleton--builder-title {
  width: min(380px, 72%);
  height: 24px;
  margin-bottom: 18px;
  display: block;
  border-radius: 12px;
}

.product-skeleton--builder-image {
  width: 100%;
  height: 132px;
  border-radius: 16px;
}

.product-skeleton--builder-code {
  width: 80px;
  height: 16px;
  margin-top: 16px;
  display: block;
  border-radius: 10px;
}

.product-skeleton--builder-text {
  width: 82%;
  height: 18px;
  margin-top: 12px;
  display: block;
  border-radius: 10px;
}

.product-gallery-skeleton {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  place-items: center;
}

.product-gallery-skeleton span {
  position: relative;
  width: min(64%, 540px);
  height: min(52%, 280px);
  overflow: hidden;
  border-radius: 26px;
  background: #eaf2f7;
}

.product-gallery-skeleton span::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .86), transparent);
  animation: search-shimmer 1.15s ease-in-out infinite;
}

.product-is-loading .copy-button {
  opacity: 0;
  pointer-events: none;
}

.product-is-loading .product-code--hero {
  min-width: 220px;
}

.product-is-loading .product-gallery-skeleton {
  display: grid;
}

.product-is-loading #product-main-image {
  opacity: 0;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(620px, 1fr) 440px;
  gap: 24px;
  align-items: start;
}

.product-gallery,
.product-summary,
.product-card,
.product-hero-title,
.product-tabs-card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.product-hero-title {
  position: sticky;
  top: 176px;
  z-index: 9;
  margin-bottom: 18px;
  padding: 16px 86px 18px 22px;
  border-radius: 24px;
  backdrop-filter: blur(20px) saturate(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
}

.product-hero-title__badges {
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-title-line {
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-hero-title h1 {
  font-family: var(--accent-font);
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: #101827;
  font-size: clamp(17px, 1.08vw, 21px);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.product-gallery {
  padding: 18px;
  display: grid;
  grid-template-rows: minmax(0, auto) auto;
  overflow: hidden;
}

.product-gallery__stage {
  position: relative;
  height: clamp(400px, 29vw, 520px);
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 16%, var(--image-surface-glow), transparent 30rem),
    linear-gradient(180deg, #fbfdfe 0%, var(--image-surface) 100%);
}

.product-gallery__stage img {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  max-width: 94%;
  max-height: 94%;
  margin: auto;
  display: block;
  object-fit: contain;
}

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

.product-gallery__thumbs button {
  height: 78px;
  padding: 7px;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .82), transparent 4.8rem),
    var(--image-surface);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-gallery__thumbs button:hover,
.product-gallery__thumbs button.is-active {
  border-color: rgba(0, 111, 186, .42);
  box-shadow: 0 10px 24px rgba(0, 111, 186, .10);
  transform: translateY(-1px);
}

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

.product-summary {
  position: sticky;
  top: 248px;
  padding: 30px;
}

.product-summary__top {
  display: none;
  margin-bottom: 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-code,
.product-state {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-code {
  background: #edf5fb;
  color: var(--blue);
}

.product-code--hero {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(0, 111, 186, .12);
  border-radius: 13px;
  background: rgba(237, 245, 251, .78);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .04);
}

.product-code--hero span {
  font-weight: 500;
}

.product-code--hero:not(:empty) {
  font-weight: 800;
}

.product-summary__label {
  color: #748091;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-lead {
  margin: 0 0 24px;
  color: #687586;
  font-size: 14px;
  line-height: 1.55;
}

.product-price {
  padding: 20px;
  display: grid;
  gap: 4px;
  border-radius: 22px;
  background: #f5f9fc;
}

.product-price > span,
.product-block-title {
  color: #748091;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-price strong {
  color: #101827;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 650;
}

.product-price small {
  color: #7b8794;
  font-size: 12px;
  font-weight: 600;
}

.product-stock {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.product-stock .stock-chip {
  min-width: 0;
  min-height: 64px;
  padding: 10px 14px;
  justify-content: center;
}

.product-stock .stock-chip svg {
  width: 25px;
  height: 25px;
  justify-self: center;
}

.product-stock .stock-chip span {
  font-size: 19px;
  white-space: nowrap;
}

.product-stock .stock-chip small {
  font-size: 12px;
}

.product-stock .stock-list {
  display: grid;
  gap: 10px;
  width: 100%;
  min-height: 66px;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 0;
}

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

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

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

.product-stock .stock-empty {
  width: 100%;
  max-width: 100%;
  min-height: 64px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 19px;
}

.product-buy {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 12px;
}

.qty-control {
  height: 58px;
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  border: 1px solid rgba(31, 41, 55, .08);
  border-radius: 16px;
  overflow: hidden;
}

.qty-control button {
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 20px;
  font-weight: 650;
  cursor: pointer;
}

.qty-control span {
  text-align: center;
  color: #101827;
  font-weight: 700;
}

.product-cart {
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(0, 111, 186, .16);
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 28% 50%, rgba(0, 111, 186, .14) 0%, rgba(0, 111, 186, .06) 44%, rgba(0, 111, 186, 0) 74%),
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(242, 248, 252, .88));
  color: var(--blue);
  font-size: 15px;
  font-weight: 760;
  cursor: pointer;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .74),
    0 14px 30px rgba(0, 111, 186, .08);
}

.product-cart svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.9;
}

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

.product-service div {
  min-height: 78px;
  padding: 14px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(17, 24, 39, .07);
  border-radius: 18px;
  background: #fff;
}

.product-service strong {
  color: #101827;
  font-size: 13px;
  font-weight: 700;
}

.product-service span {
  color: #748091;
  font-size: 12px;
  line-height: 1.3;
}

.product-tabs-card {
  margin-top: 24px;
  padding: 18px;
}

.product-tabs {
  min-height: 54px;
  padding: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-radius: 18px;
  background: #f3f7fb;
}

.product-tabs button {
  border: 0;
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 14px;
  background: transparent;
  color: #6f7d8d;
  font-size: 13px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.product-tabs button.is-active {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 8px 20px rgba(15, 23, 42, .07);
}

.product-tab-count,
.product-tab-rating {
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  letter-spacing: 0;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.product-tab-count {
  background: rgba(0, 111, 186, .10);
  color: var(--blue);
}

.product-tab-rating {
  background: rgba(53, 185, 87, .12);
  color: var(--green);
}

.product-tab-panel {
  display: none;
  padding: 34px 10px 8px;
  background: transparent;
}

.product-tab-panel.is-active {
  display: block;
}

.product-description {
  max-width: none;
}

.product-description h2 {
  margin: 0 0 16px;
  color: #101827;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
}

.product-description p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

.product-spec-toolbar {
  margin-bottom: 22px;
  display: flex;
  align-items: end;
}

.product-spec-toolbar h2 {
  margin: 4px 0 0;
  color: #101827;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
}

.product-card {
  padding: 28px;
}

.product-delivery-card {
  margin-top: 24px;
}

.review-rating button.is-active {
  color: var(--green);
}

.product-accessories-block {
  display: none !important;
}

.product-accessories-block {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 28px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
}

.product-builder-block {
  margin-top: 24px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-builder-block .section-heading--compact {
  min-height: 48px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.product-builder-block .section-heading--compact h2 {
  margin: 0;
}

.product-builder-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-builder-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 139, 203, .10);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 255, 255, .28);
  box-shadow: none;
  backdrop-filter: blur(12px) saturate(1.04);
  -webkit-backdrop-filter: blur(12px) saturate(1.04);
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.product-builder-arrow:hover,
.product-builder-arrow:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(47, 139, 203, .22);
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 12px 24px rgba(47, 139, 203, .10);
}

.product-builder-arrow[hidden] {
  display: none;
}

.product-builder-arrow:disabled {
  opacity: .24;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.product-builder-arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

.product-content-builder {
  min-width: 0;
  max-width: 100%;
  margin-top: 24px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 28px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
}

.product-content-builder[hidden] {
  display: none;
}

.product-content-builder__body {
  min-width: 0;
  max-width: 100%;
  display: grid;
  gap: 22px;
}

.legacy-content-card {
  min-width: 0;
  max-width: 100%;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, .07);
  border-radius: 22px;
  background: #fff;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: normal;
}

.legacy-content-card :where(div, section, article, header, footer, aside, figure, figcaption, p, ul, ol, li, dl, dt, dd, blockquote) {
  min-width: 0;
  max-width: 100%;
}

.legacy-content-card :where([style], [width], [height]) {
  max-width: 100% !important;
}

.legacy-content-card :where(table) {
  width: 100%;
  max-width: 100%;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
}

.legacy-content-card :where(thead, tbody, tr) {
  max-width: 100%;
}

.legacy-content-card :where(th, td) {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.legacy-content-card :where(picture, video, canvas, svg) {
  max-width: 100%;
  height: auto;
  display: block;
}

.legacy-content-card h2,
.legacy-content-card h3 {
  margin: 0 0 14px;
  color: #101827;
  font-weight: 650;
  line-height: 1.18;
}

.legacy-content-card h2 {
  font-size: 24px;
}

.legacy-content-card h3 {
  font-size: 20px;
}

.legacy-content-card p {
  margin: 0 0 14px;
}

.legacy-content-card p:last-child {
  margin-bottom: 0;
}

.legacy-content-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.legacy-content-card img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
  margin-inline: auto;
  border-radius: 18px;
  background: #f7fafc;
}

.product-builder-block[hidden] {
  display: none;
}

.product-builder-viewport {
  margin: -44px -18px -34px;
  padding: 44px 18px 34px;
  overflow-x: visible;
  overflow-y: visible;
  background: transparent;
}

.product-builder-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(232px, calc((100% - 60px) / 4));
  grid-template-columns: none;
  gap: 20px;
  padding-top: 22px;
  padding-bottom: 0;
  margin-top: -22px;
  margin-bottom: 0;
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 18px;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
  transition: scrollbar-color .18s ease;
}

.product-builder-grid::-webkit-scrollbar {
  display: none;
}

.product-builder-block:hover .product-builder-grid,
.product-builder-block:focus-within .product-builder-grid,
.product-builder-block.is-scrolling .product-builder-grid {
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 139, 203, .26) transparent;
}

.product-builder-block:hover .product-builder-grid::-webkit-scrollbar,
.product-builder-block:focus-within .product-builder-grid::-webkit-scrollbar,
.product-builder-block.is-scrolling .product-builder-grid::-webkit-scrollbar {
  display: block;
  height: 6px;
}

.product-builder-grid::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: transparent;
  transition: background .18s ease;
}

.product-builder-block:hover .product-builder-grid::-webkit-scrollbar-thumb,
.product-builder-block:focus-within .product-builder-grid::-webkit-scrollbar-thumb,
.product-builder-block.is-scrolling .product-builder-grid::-webkit-scrollbar-thumb {
  background: rgba(47, 139, 203, .24);
}

@media (max-width: 1500px) {
:root {
    --container: 1320px;
    --gutter: 28px;
  }

.header-main {
    grid-template-columns: 310px minmax(520px, 1fr) 350px;
    gap: 24px;
  }

.brand__logo {
    width: 250px;
  }

.brand__tagline {
    font-size: 13px;
  }

.category-card {
    min-height: 234px;
  }

.category-card img {
    height: 132px;
  }
}

@media (max-width: 1380px) {
:root {
    --container: 1280px;
    --gutter: 24px;
  }

.header-main {
    grid-template-columns: 280px minmax(500px, 1fr) 320px;
    gap: 20px;
  }

.brand__logo {
    width: 225px;
  }

.brand__tagline {
    font-size: 12px;
    letter-spacing: .13em;
  }

.category-grid {
    gap: 18px;
  }

.category-card {
    min-height: 208px;
    padding: 14px 10px 14px;
  }

.category-card img {
    height: 108px;
  }

.category-card__meta {
    min-height: 56px;
    padding-top: 5px;
    grid-template-columns: 17px 1px minmax(0, 1fr);
    gap: 5px;
  }

.category-card__meta span {
    font-size: 11px;
  }

.category-card__meta strong {
    font-size: 11.75px;
  }

.search-result {
    grid-template-columns: 78px minmax(220px, 1fr) 245px 142px;
    gap: 16px;
    padding: 16px 20px;
  }

.search-result__image {
    width: 78px;
    height: 78px;
  }

.search-result__image img {
    max-width: 66px;
    max-height: 66px;
  }

.search-result__code,
.search-result__meta strong {
    font-size: 16px;
  }

.search-result__body p {
    font-size: 13.5px;
  }

.stock-chip {
    min-width: 66px;
    min-height: 38px;
    padding: 5px 8px;
    column-gap: 6px;
  }

.search-result__actions {
    grid-template-columns: minmax(96px, 112px) 52px;
    gap: 8px;
  }

.search-result__qty.qty-control {
    height: 42px;
    grid-template-columns: 30px 1fr 30px;
  }

.search-result__actions .search-cart {
    width: 52px;
    height: 42px;
  }

.product-hero-title {
    padding: 16px 22px 18px;
  }

.product-hero-title h1 {
    font-size: 18px;
  }

.product-hero-title__badges {
    margin-bottom: 10px;
  }

.product-code--hero {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

.product-layout {
    grid-template-columns: minmax(620px, 1fr) 390px;
    gap: 18px;
  }

.product-gallery__stage {
    height: clamp(380px, 33vw, 450px);
  }

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

.product-summary {
    top: 230px;
    padding: 24px;
  }

.product-tabs {
    min-height: 52px;
  }

.product-tabs button {
    font-size: 12px;
  }

.product-tab-panel {
    padding: 28px 8px 6px;
  }

.product-price strong {
    font-size: 30px;
  }

.catalog-popover {
    width: min(1320px, calc(100vw - 40px));
  }

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

@media (max-width: 1180px) {
.product-hero-title {
    top: 166px;
  }

.group-hero,
.group-workspace,
.group-series__summary {
    grid-template-columns: 1fr;
  }

.group-hero {
    top: 166px;
    padding: 16px 20px;
  }

.group-series__toggle {
    width: 100%;
  }

.group-hero__metrics,
.group-series-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

.category-related__track {
    grid-auto-columns: minmax(238px, calc((100% - 36px) / 3));
  }

.group-filter {
    position: static;
  }

.variant-row {
    grid-template-columns: minmax(0, 1fr) 150px minmax(160px, 220px);
  }

.variant-info {
    grid-column: 1;
  }

.variant-price {
    grid-column: 2;
  }

.variant-stock {
    grid-column: 3;
  }

.variant-actions {
    grid-column: 1 / -1;
  }

.variant-actions {
    justify-content: end;
  }

.group-faq {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
.product-hero-title {
    top: 118px;
  }

.group-hero {
    top: 118px;
    padding: 14px 16px;
    border-radius: 18px;
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

.group-hero h1 {
    font-size: 22px;
  }

.group-hero__count {
    justify-self: start;
    font-size: 13px;
  }

.group-hero__metrics,
.group-series-strip {
    grid-template-columns: 1fr;
  }

.series-mini-card {
    min-height: 220px;
    padding: 18px;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 116px auto;
  }

.series-mini-card img {
    grid-row: 2;
    height: 116px;
  }

.series-mini-card strong {
    width: min(100%, 260px);
    font-size: 14px;
  }

.is-category-page .category-link-card {
    min-height: 184px;
    height: 184px;
    padding: 16px;
    grid-template-rows: auto 92px auto;
    row-gap: 9px;
  }

.is-category-page .category-link-card img {
    height: 92px;
  }

.is-category-page .category-skeleton-card__image {
    height: 92px;
  }

.is-category-page .category-link-card strong {
    width: min(100%, 240px);
    font-size: 13px;
  }

.category-content,
.category-gallery {
    padding: 22px 18px;
    border-radius: 24px;
  }

.category-gallery__head {
    display: grid;
    gap: 8px;
  }

.category-gallery__grid {
    grid-template-columns: 1fr;
  }

.category-gallery__item {
    min-height: 190px;
  }

.category-gallery__item img {
    height: 160px;
  }

.category-related {
    padding: 0;
    border-radius: 0;
  }

.category-related__head {
    display: grid;
    align-items: start;
  }

.category-related__head h2 {
    font-size: 21px;
  }

.category-related__nav {
    justify-self: start;
  }

.category-related__viewport {
    margin: -38px -12px -30px;
    padding: 38px 12px 30px;
  }

.category-related__track {
    grid-auto-columns: minmax(238px, 82vw);
    scroll-padding-inline: 12px;
    padding-top: 20px;
    padding-bottom: 0;
    margin-top: -20px;
  }

.category-related-card {
    min-height: 392px;
    border-radius: 20px;
  }

.category-related-card__actions {
    grid-template-columns: 1fr;
  }

.catalog-popover {
    top: calc(100% + 10px);
    width: calc(100vw - 24px);
    max-height: min(72vh, 620px);
    border-radius: 24px;
    overflow-y: auto;
  }

.catalog-popover__head {
    padding: 24px 20px 18px;
  }

.catalog-popover__grid {
    padding: 24px 20px 28px;
  }

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

.group-series__summary {
    padding: 16px;
  }

.group-series h2 {
    font-size: 22px;
  }

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

.variant-info {
    grid-column: 1 / -1;
  }

.variant-price {
    grid-column: 1;
    align-self: center;
  }

.variant-stock {
    grid-column: 2;
    align-self: center;
    justify-self: end;
  }

.variant-actions {
    grid-column: 1 / -1;
  }

.variant-actions {
    grid-template-columns: 118px minmax(134px, 1fr);
    justify-content: stretch;
  }

.group-faq {
    padding: 20px;
    border-radius: 22px;
  }

.is-category-page .group-faq {
    padding: 22px 18px;
  }

.is-category-page .group-faq__list {
    grid-template-columns: 1fr;
  }

.group-faq h2 {
    font-size: 24px;
  }

.group-faq summary {
    padding: 16px 48px 16px 16px;
    font-size: 14px;
  }
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 28px;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(0, 111, 186, .18), rgba(0, 111, 186, 0) 34rem),
    rgba(13, 25, 35, .50);
  backdrop-filter: blur(20px) saturate(1.04);
  -webkit-backdrop-filter: blur(20px) saturate(1.04);
}

.contact-modal__panel {
  width: min(1120px, calc(100vw - 56px));
  max-height: min(860px, calc(100vh - 56px));
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(203, 224, 236, .86);
  border-radius: 34px;
  background:
    radial-gradient(ellipse at 84% 10%, rgba(57, 181, 74, .16), rgba(57, 181, 74, 0) 38%),
    radial-gradient(ellipse at 16% 86%, rgba(0, 111, 186, .12), rgba(0, 111, 186, 0) 42%),
    linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(238, 247, 251, .88));
  box-shadow:
    0 44px 96px rgba(9, 23, 35, .36),
    inset 0 1px 0 rgba(255, 255, 255, .92);
  transform: translateY(12px) scale(.985);
  opacity: 0;
  transition: transform 200ms ease, opacity 200ms ease;
}

.contact-modal.is-open .contact-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.contact-modal__head {
  min-height: 112px;
  padding: 30px 36px 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(202, 217, 226, .58);
  background:
    radial-gradient(ellipse at 78% 0%, rgba(57, 181, 74, .10), rgba(57, 181, 74, 0) 42%),
    rgba(255, 255, 255, .26);
}

.contact-modal__head span,
.contact-modal__hero-copy span,
.contact-modal__form > div > span {
  display: block;
  color: #6d7c90;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-modal__head h2 {
  margin: 7px 0 0;
  color: #101827;
  font-family: var(--accent-font);
  font-size: clamp(36px, 4.3vw, 62px);
  line-height: .98;
  font-weight: 600;
  letter-spacing: 0;
}

.contact-modal__close {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(202, 217, 226, .75);
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 35% 18%, rgba(255, 255, 255, .94), rgba(255, 255, 255, 0) 62%),
    rgba(255, 255, 255, .82);
  color: var(--blue);
  font-size: 0;
  box-shadow: 0 20px 42px rgba(15, 23, 42, .14);
  cursor: pointer;
}

.contact-modal__close::before,
.contact-modal__close::after {
  content: "";
  width: 30px;
  height: 5px;
  grid-area: 1 / 1;
  border-radius: 999px;
  background: currentColor;
}

.contact-modal__close::before {
  transform: rotate(45deg);
}

.contact-modal__close::after {
  transform: rotate(-45deg);
}

.contact-modal__body {
  max-height: calc(min(860px, 100vh - 56px) - 112px);
  overflow: auto;
  padding: 28px 36px 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
  gap: 18px;
}

.contact-modal__hero,
.contact-modal__details,
.contact-modal__people,
.contact-modal__social,
.contact-modal__form {
  border: 1px solid rgba(190, 215, 231, .66);
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 26% 6%, rgba(255, 255, 255, .88), rgba(255, 255, 255, 0) 58%),
    rgba(255, 255, 255, .62);
  box-shadow:
    0 18px 44px rgba(15, 23, 42, .07),
    inset 0 1px 0 rgba(255, 255, 255, .66);
  backdrop-filter: blur(18px) saturate(1.06);
  -webkit-backdrop-filter: blur(18px) saturate(1.06);
}

.contact-modal__hero {
  grid-column: 1 / -1;
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: end;
}

.contact-modal__hero-copy h3 {
  max-width: 760px;
  margin: 10px 0 0;
  color: #101827;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.08;
  font-weight: 650;
  letter-spacing: 0;
}

.contact-modal__hero-copy p {
  max-width: 660px;
  margin: 14px 0 0;
  color: #66758a;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.45;
  font-weight: 450;
}

.contact-modal__primary {
  display: grid;
  gap: 12px;
}

.contact-modal__primary a,
.contact-modal__social a,
.contact-modal__form button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  font-weight: 760;
}

.contact-modal__primary a {
  justify-content: flex-start;
  padding: 0 16px;
  border: 1px solid rgba(0, 111, 186, .14);
  background:
    radial-gradient(ellipse at 18% 20%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 60%),
    rgba(238, 247, 252, .70);
  color: var(--blue);
  box-shadow: 0 14px 34px rgba(0, 111, 186, .08);
}

.contact-modal__primary a:first-child {
  border-color: rgba(57, 181, 74, .32);
  color: #188347;
  box-shadow:
    0 16px 38px rgba(57, 181, 74, .16),
    inset 0 1px 0 rgba(255, 255, 255, .78);
}

.contact-modal svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  stroke-width: 2.1;
}

.contact-modal__details,
.contact-modal__people,
.contact-modal__social {
  padding: 18px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.contact-detail,
.contact-person {
  min-height: 76px;
  padding: 14px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(202, 217, 226, .48);
  border-radius: 18px;
  background: rgba(255, 255, 255, .54);
}

.contact-detail > span,
.contact-person > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue);
  background:
    radial-gradient(ellipse at 30% 16%, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0) 58%),
    rgba(232, 245, 251, .72);
}

.contact-detail small,
.contact-person small {
  display: block;
  color: #7b8aa0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.contact-detail strong,
.contact-person strong {
  display: block;
  margin-top: 4px;
  color: #101827;
  font-size: 17px;
  line-height: 1.22;
  font-weight: 780;
}

.contact-person {
  grid-template-columns: 42px minmax(0, 1fr) auto;
}

.contact-person em {
  color: rgba(104, 119, 137, .72);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.contact-modal__social a {
  justify-content: space-between;
  padding: 0 16px;
  border: 1px solid rgba(0, 111, 186, .12);
  background:
    radial-gradient(ellipse at 28% 10%, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0) 62%),
    rgba(238, 247, 252, .68);
  color: var(--blue);
}

.contact-modal__social svg {
  width: 18px;
  height: 18px;
}

.contact-modal__form {
  grid-column: 1 / -1;
  padding: 22px;
}

.contact-modal__form > div > strong {
  display: block;
  margin-top: 7px;
  color: #101827;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 760;
}

.contact-modal__form-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-modal__form label {
  display: grid;
  gap: 8px;
}

.contact-modal__form label + label,
.contact-modal__form-grid + label {
  margin-top: 14px;
}

.contact-modal__form label > span {
  color: #7b8aa0;
  font-size: 13px;
  font-weight: 800;
}

.contact-modal__form input,
.contact-modal__form textarea {
  width: 100%;
  border: 1px solid rgba(190, 215, 231, .72);
  border-radius: 16px;
  background: rgba(255, 255, 255, .76);
  color: #101827;
  font: inherit;
  outline: none;
}

.contact-modal__form input {
  min-height: 52px;
  padding: 0 16px;
}

.contact-modal__form textarea {
  resize: vertical;
  min-height: 96px;
  padding: 14px 16px;
}

.contact-modal__form input:focus,
.contact-modal__form textarea:focus {
  border-color: rgba(0, 111, 186, .42);
  box-shadow: 0 0 0 4px rgba(0, 111, 186, .08);
}

.contact-modal__captcha {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: end;
}

.contact-modal__captcha-question {
  min-width: 92px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(190, 215, 231, .64);
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 22% 16%, rgba(255, 255, 255, .62), rgba(255, 255, 255, 0) 62%),
    rgba(255, 255, 255, .54);
  color: #006fba;
  font-size: 18px;
  font-weight: 820;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .72),
    0 12px 28px rgba(0, 111, 186, .08);
}

.contact-modal__form .contact-modal__captcha-refresh {
  width: 52px;
  min-height: 52px;
  padding: 0;
  border-color: rgba(190, 215, 231, .64);
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 35% 18%, rgba(255, 255, 255, .76), rgba(255, 255, 255, 0) 68%),
    rgba(255, 255, 255, .54);
  color: #006fba;
  font-size: 22px;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .72),
    0 12px 28px rgba(0, 111, 186, .08);
}

.contact-modal__status {
  min-height: 22px;
  margin: 12px 0;
  color: #66758a;
  font-size: 13px;
  font-weight: 650;
}

.contact-modal__form button {
  width: 100%;
  border: 1px solid rgba(57, 181, 74, .30);
  background:
    radial-gradient(ellipse at 24% 14%, rgba(255, 255, 255, .34), rgba(255, 255, 255, 0) 62%),
    linear-gradient(135deg, rgba(57, 181, 74, .86), rgba(26, 148, 78, .92));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(57, 181, 74, .20);
}

.contact-modal__form .contact-modal__captcha-refresh {
  width: 52px;
  color: #006fba;
  border-color: rgba(190, 215, 231, .64);
  background:
    radial-gradient(ellipse at 35% 18%, rgba(255, 255, 255, .76), rgba(255, 255, 255, 0) 68%),
    rgba(255, 255, 255, .54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .72),
    0 12px 28px rgba(0, 111, 186, .08);
}

@media (max-width: 860px) {
.contact-modal {
    padding: 12px;
  }

.contact-modal__panel {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    border-radius: 24px;
  }

.contact-modal__head {
    min-height: 96px;
    padding: 22px;
  }

.contact-modal__head h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

.contact-modal__close {
    width: 58px;
    height: 58px;
    border-radius: 20px;
  }

.contact-modal__body,
.contact-modal__hero,
.contact-modal__form-grid {
    grid-template-columns: 1fr;
  }

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

.contact-modal__captcha-question {
    min-width: 78px;
  }

.contact-modal__body {
    max-height: calc(100vh - 120px);
    padding: 18px;
  }
}

.checkout-steps .is-active {
  border-color: rgba(0, 111, 186, .20);
  background:
    radial-gradient(ellipse at 52% 50%, rgba(0, 111, 186, .12), rgba(0, 111, 186, 0) 72%),
    rgba(255, 255, 255, .58);
  color: #101827;
}

@media (max-width: 820px) {
:root {
    --mobile-shell-pad: 12px;
    --mobile-bottom-nav-h: 84px;
    --mobile-glass: rgba(255, 255, 255, .72);
    --mobile-glass-strong: rgba(255, 255, 255, .86);
    --mobile-logo-left: var(--mobile-shell-pad);
    --mobile-logo-top: max(6px, env(safe-area-inset-top, 0px));
    --mobile-logo-shell-width: calc(100vw - 24px);
    --mobile-logo-shell-height: 62px;
    --mobile-logo-brand-height: 50px;
    --mobile-logo-pad-x: 24px;
    --mobile-logo-radius: 22px;
    --mobile-logo-width: min(189px, 58vw);
    --mobile-logo-reserved-space: 90px;
    --mobile-logo-reserved-space-compact: 52px;
  }

* {
    -webkit-tap-highlight-color: transparent;
  }

@keyframes mobile-press-pulse {
    0% { opacity: 1; filter: none; }
    45% { opacity: .72; filter: brightness(1.04); }
    100% { opacity: 1; filter: none; }
  }

html,
body {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
    scroll-padding-top: 132px;
    background:
      linear-gradient(180deg, #eef5f9 0%, #f8fbfd 46%, #edf5f9 100%);
  }

body {
    padding-bottom: calc(var(--mobile-bottom-nav-h) + env(safe-area-inset-bottom, 0px) + 14px);
    padding-top: calc(var(--admin-toolbar-offset, 0px) + var(--mobile-logo-reserved-space));
    transition: padding-top .22s ease;
  }

.app-shell {
    width: 100%;
    min-width: 0;
  }

.site-header {
    position: fixed;
    top: calc(var(--admin-toolbar-offset, 0px) + var(--mobile-logo-top));
    left: var(--mobile-logo-left);
    right: auto;
    width: var(--mobile-logo-shell-width);
    height: var(--mobile-logo-shell-height);
    min-height: 0;
    max-height: none;
    z-index: 165;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
    pointer-events: none;
    transition: opacity .16s ease, visibility .16s ease;
  }

body.is-clean-modal-open .site-header {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

body.is-mobile-search-open .site-header,
body:has(.search-drawer:not([hidden])) .site-header {
    z-index: 130;
  }

.topline {
    display: none;
  }

.header-main {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "brand";
    justify-items: center;
    align-items: center;
    gap: 0;
    padding: 0;
    transition: justify-items .18s ease;
    pointer-events: none;
  }

.brand {
    grid-area: brand;
    min-width: 0;
    position: relative;
    height: var(--mobile-logo-brand-height);
    width: 100%;
    padding: 0 var(--mobile-logo-pad-x);
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    justify-self: center;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: var(--mobile-logo-radius);
    background:
      radial-gradient(ellipse at 48% 0%, rgba(255, 255, 255, .96), rgba(255, 255, 255, 0) 66%),
      rgba(245, 251, 255, .62);
    box-shadow:
      0 14px 36px rgba(20, 45, 72, .10),
      inset 0 1px 0 rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px) saturate(1.08);
    -webkit-backdrop-filter: blur(18px) saturate(1.08);
    transition:
      background .18s ease,
      box-shadow .18s ease,
      backdrop-filter .18s ease;
    pointer-events: auto;
  }

.brand::before {
    content: "";
    position: absolute;
    inset: -12px -20px;
    z-index: -1;
    border-radius: 28px;
    pointer-events: none;
    filter: blur(24px);
    background:
      radial-gradient(ellipse 70% 44% at 66% 35%, rgba(0, 111, 186, .18), rgba(0, 111, 186, 0) 76%),
      radial-gradient(ellipse 58% 36% at 28% 76%, rgba(53, 185, 87, .12), rgba(53, 185, 87, 0) 74%);
  }

.brand__logo {
    position: relative;
    z-index: 1;
    width: var(--mobile-logo-width);
    max-width: 58vw;
    max-height: 40px;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition:
      max-height .22s ease;
  }

.brand__tagline {
    display: none;
  }

.mobile-language-switch {
    display: none;
  }

.mobile-language-switch .language-switch {
    min-width: 36px;
    height: 30px;
    padding: 0 8px;
    color: #607184;
    font-size: 11px;
    letter-spacing: 0;
  }

.mobile-language-switch .language-switch.is-active {
    color: var(--blue);
    background:
      radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 70%),
      rgba(222, 242, 253, .72);
    box-shadow:
      0 8px 20px rgba(0, 111, 186, .10),
      inset 0 1px 0 rgba(255, 255, 255, .90);
  }

body.is-mobile-header-compact .mobile-language-switch {
    transform: none;
  }

body.is-clean-modal-open .mobile-language-switch {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

.header-actions {
    display: none;
  }

.mobile-header-actions {
    display: none;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }

.mobile-header-action[hidden] {
    display: none;
  }

.mobile-header-action {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 16px;
    color: var(--blue);
    background:
      radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 68%),
      rgba(255, 255, 255, .62);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .86),
      0 12px 28px rgba(0, 111, 186, .10);
    backdrop-filter: blur(16px) saturate(1.08);
    -webkit-backdrop-filter: blur(16px) saturate(1.08);
    text-decoration: none;
  }

.mobile-header-action::before {
    content: "";
    position: absolute;
    inset: 5px;
    z-index: -1;
    border-radius: 13px;
    background:
      radial-gradient(ellipse 80% 34% at 70% 34%, rgba(0, 111, 186, .22), rgba(0, 111, 186, .10) 44%, rgba(0, 111, 186, 0) 82%),
      radial-gradient(ellipse 48% 26% at 30% 82%, rgba(53, 185, 87, .14), rgba(53, 185, 87, 0) 76%);
  }

.mobile-header-action svg {
    position: relative;
    z-index: 1;
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

.brand,
.brand__logo {
    max-height: 52px;
  }

body.is-mobile-header-compact .site-header {
    overflow: visible;
  }

body.is-mobile-header-compact .header-main {
    justify-items: start;
  }

body.is-mobile-header-compact .brand {
    background:
      radial-gradient(ellipse at 48% 0%, rgba(255, 255, 255, .94), rgba(255, 255, 255, 0) 66%),
      rgba(246, 252, 255, .70);
    box-shadow:
      0 10px 24px rgba(20, 45, 72, .14),
      0 0 34px rgba(0, 111, 186, .10),
      inset 0 1px 0 rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px) saturate(1.08);
    -webkit-backdrop-filter: blur(18px) saturate(1.08);
  }

body.is-mobile-header-compact .brand__logo {
    max-width: 29vw;
    max-height: 22px;
  }

.mobile-header-actions {
    display: none;
    height: 0;
  }

.header-actions .is-compare-hidden,
.header-actions .icon-button[aria-label*="Порів"],
.header-actions .icon-button[aria-label*="Срав"] {
    display: none;
  }

.icon-button,
.cart-button {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 16px;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, .86), rgba(255, 255, 255, 0) 70%),
      rgba(255, 255, 255, .64);
    box-shadow:
      0 10px 24px rgba(20, 45, 72, .08),
      inset 0 1px 0 rgba(255, 255, 255, .82);
  }

.cart-button span {
    display: none;
  }

.search {
    position: fixed;
    top: calc(58px + var(--admin-toolbar-offset, 0px));
    left: var(--mobile-shell-pad);
    right: var(--mobile-shell-pad);
    z-index: 124;
    width: auto;
    height: 54px;
    min-width: 0;
    border-radius: 20px;
    background:
      radial-gradient(ellipse at 30% 0%, rgba(255, 255, 255, .90), rgba(255, 255, 255, 0) 68%),
      rgba(255, 255, 255, .68);
    box-shadow:
      0 14px 34px rgba(0, 111, 186, .10),
      inset 0 1px 0 rgba(255, 255, 255, .86);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

body.is-mobile-search-open .search,
body:has(.search-drawer:not([hidden])) .search {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

.search input {
    min-width: 0;
    padding-left: 18px;
    font-size: 15px;
  }

.search__submit {
    width: 54px;
  }

.search-drawer {
    top: auto;
    left: 8px;
    right: 8px;
    bottom: calc(var(--mobile-bottom-nav-h) + env(safe-area-inset-bottom, 0px) + 10px);
    z-index: 119;
  }

.search-drawer__panel {
    width: auto;
    max-width: none;
    max-height: min(70dvh, calc(100dvh - var(--mobile-bottom-nav-h) - 136px));
    margin: 0;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 26px;
    background:
      radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0) 58%),
      radial-gradient(circle at 86% 14%, rgba(0, 111, 186, .14), rgba(0, 111, 186, 0) 34%),
      rgba(246, 251, 253, .86);
    box-shadow:
      0 28px 80px rgba(20, 45, 72, .23),
      0 8px 28px rgba(0, 111, 186, .10),
      inset 0 1px 0 rgba(255, 255, 255, .90);
    backdrop-filter: blur(24px) saturate(1.16);
    -webkit-backdrop-filter: blur(24px) saturate(1.16);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

.search-drawer__bar {
    position: sticky;
    top: 0;
    z-index: 2;
    min-height: 0;
    padding: 12px 12px 10px;
    grid-template-columns: minmax(0, 1fr) 40px;
    grid-template-areas:
      "status close"
      "available available";
    gap: 10px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .26)),
      rgba(244, 250, 253, .62);
    border-bottom: 1px solid rgba(211, 225, 234, .66);
  }

.search-drawer__status {
    grid-area: status;
    align-self: center;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.22;
    color: #1d2c3f;
  }

.search-availability {
    grid-area: available;
    width: 100%;
    min-height: 38px;
    justify-content: space-between;
    padding: 0 12px;
    font-size: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .62);
  }

.search-drawer__close {
    grid-area: close;
    width: 40px;
    height: 40px;
    border-radius: 16px;
  }

.search-drawer__close::before,
.search-drawer__close::after {
    width: 20px;
    height: 3px;
  }

.search-results {
    max-height: none;
    min-height: 0;
    flex: 1 1 auto;
    display: grid;
    gap: 8px;
    padding: 8px;
    overflow: auto;
  }

.search-result,
.search-result--loading {
    min-width: 0;
    padding: 10px;
    grid-template-columns: 82px minmax(0, 1fr);
    grid-template-areas:
      "image body"
      "image meta"
      "actions actions";
    gap: 9px 10px;
    border-radius: 18px;
    background:
      radial-gradient(circle at 0% 0%, rgba(81, 184, 112, .10), rgba(81, 184, 112, 0) 34%),
      rgba(255, 255, 255, .74);
    box-shadow:
      0 12px 28px rgba(28, 49, 68, .09),
      inset 0 1px 0 rgba(255, 255, 255, .86);
  }

.search-result__image,
.search-skeleton--image {
    grid-area: image;
    width: 82px;
    height: 82px;
    border-radius: 16px;
  }

.search-result__image img {
    max-width: 70px;
    max-height: 70px;
  }

.search-result__body {
    grid-area: body;
    min-width: 0;
  }

.search-result__head {
    gap: 6px;
    align-items: flex-start;
  }

.search-copy {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
  }

.search-result__code {
    min-width: 0;
    font-size: 17px;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

.exact-badge {
    align-self: center;
    font-size: 10px;
    line-height: 1;
    white-space: normal;
  }

.search-result__title {
    margin-top: 4px;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 6px;
    font-size: 13px;
    line-height: 1.28;
  }

.search-result__title span {
    min-width: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

.search-result__meta {
    grid-area: meta;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 8px;
  }

.search-result__meta strong {
    font-size: 16px;
    line-height: 1.15;
    white-space: normal;
  }

.search-result__meta > small {
    margin: 0;
    font-size: 11px;
  }

.search-result .stock-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }

.search-result .stock-chip {
    min-width: 0;
    padding: 4px 6px;
    font-size: 10px;
  }

.search-result__actions {
    grid-area: actions;
    display: grid;
    grid-template-columns: minmax(108px, 1fr) 52px;
    justify-content: stretch;
    gap: 8px;
    padding-top: 2px;
  }

.search-result__qty.qty-control {
    width: 100%;
    min-width: 0;
    height: 44px;
  }

.search-result__qty.qty-control button,
.search-result__qty.qty-control input {
    height: 44px;
  }

.search-result__actions .search-cart,
.search-skeleton--button {
    width: 52px;
    min-width: 52px;
    height: 44px;
    border-radius: 16px;
    justify-self: end;
  }

.search-skeleton-stack {
    min-width: 0;
  }

.search-result--loading .search-skeleton-stack:not(.search-skeleton-stack--short) {
    grid-area: body;
  }

.search-skeleton-stack--short {
    grid-area: meta;
  }

.search-skeleton--button {
    grid-area: actions;
  }

.search-drawer__more {
    flex: 0 0 auto;
    width: calc(100% - 24px);
    min-height: 48px;
    margin: 0 12px 12px auto;
    border-radius: 18px;
    position: relative;
    z-index: 3;
  }

.category-nav {
    display: contents;
  }

.category-nav > a,
.category-nav__catalog {
    display: none;
  }

.catalog-popover,
.auth-modal__panel,
.contact-modal__panel,
.cart-drawer__panel {
    position: fixed;
    z-index: 118;
    left: 8px;
    right: 8px;
    top: auto;
    bottom: calc(var(--mobile-bottom-nav-h) + env(safe-area-inset-bottom, 0px) + 8px);
    width: auto;
    max-width: none;
    max-height: min(78vh, 720px);
    border-radius: 26px;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 62%),
      rgba(248, 252, 253, .84);
    box-shadow:
      0 28px 80px rgba(20, 45, 72, .20),
      inset 0 1px 0 rgba(255, 255, 255, .88);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    overflow: auto;
  }

.cart-drawer__panel {
    top: 8px;
    bottom: calc(var(--mobile-bottom-nav-h) + env(safe-area-inset-bottom, 0px) + 12px);
    height: calc(100dvh - var(--mobile-bottom-nav-h) - env(safe-area-inset-bottom, 0px) - 28px);
    min-height: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    max-height: none;
    overflow: hidden;
  }

.cart-drawer__scroll {
    min-height: 0;
    height: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }

.catalog-popover {
    padding: 8px 0 10px;
    z-index: 132;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px) scale(.98);
  }

body.is-catalog-open .catalog-popover {
    left: 8px;
    right: 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1) !important;
    animation: none;
  }

body.is-catalog-open .header-main {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

body.is-catalog-open .mobile-language-switch {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

body.is-catalog-open .mobile-app-nav {
    z-index: 116;
  }

.catalog-popover__grid {
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: min(42dvh, 360px);
    min-height: 0;
    margin: 8px 14px 0;
    padding: 10px 0 0;
    border-top: 1px solid rgba(203, 213, 225, .68);
    overflow-y: auto;
  }

.catalog-popover.is-mobile-catalog-grid-open .catalog-popover__grid {
    display: grid;
  }

.catalog-popover__head {
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px 8px;
  }

.catalog-popover__head span,
.catalog-popover__head strong {
    display: none;
  }

.catalog-popover__utility {
    display: flex;
    flex-direction: column;
    padding-top: 0;
  }

.catalog-popover__utility-link {
    min-height: 56px;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 0 22px;
    color: #1f2937;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

.catalog-popover__utility-link + .catalog-popover__utility-link {
    border-top: 1px solid rgba(203, 213, 225, .68);
  }

.catalog-popover__utility-link span {
    color: #1f2937;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 500;
  }

.catalog-popover__utility-link svg {
    width: 24px;
    height: 24px;
    color: var(--blue);
  }

.catalog-popover__language {
    position: static;
    width: fit-content;
    margin: 0;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    background:
      radial-gradient(ellipse at 48% 0%, rgba(255, 255, 255, .96), rgba(255, 255, 255, 0) 68%),
      rgba(245, 251, 255, .66);
    box-shadow:
      0 12px 30px rgba(20, 45, 72, .10),
      inset 0 1px 0 rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px) saturate(1.08);
    -webkit-backdrop-filter: blur(18px) saturate(1.08);
  }

.catalog-popover__language .language-switch {
    min-width: 36px;
    height: 30px;
    padding: 0 8px;
    color: #607184;
    font-size: 11px;
    letter-spacing: 0;
  }

.catalog-popover__language .language-switch.is-active {
    color: var(--blue);
    background:
      radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 70%),
      rgba(222, 242, 253, .72);
    box-shadow:
      0 8px 20px rgba(0, 111, 186, .10),
      inset 0 1px 0 rgba(255, 255, 255, .90);
  }

.catalog-popover__utility-toggle {
    font: inherit;
    text-align: left;
  }

.catalog-popover__grid a {
    min-height: 58px;
    border-radius: 16px;
  }

.mobile-app-nav {
    position: fixed;
    z-index: 120;
    left: 12px;
    right: 12px;
    bottom: max(8px, env(safe-area-inset-bottom, 0px));
    min-height: 72px;
    display: grid;
    grid-template-columns: 1fr 1fr 82px 1fr 1fr;
    gap: 4px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 24px;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 62%),
      rgba(255, 255, 255, .72);
    box-shadow:
      0 18px 54px rgba(20, 45, 72, .16),
      inset 0 1px 0 rgba(255, 255, 255, .86);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
  }

body.is-mobile-search-modal-open .mobile-app-nav {
    z-index: 210;
  }

.mobile-app-nav :is(a, button) {
    position: relative;
    min-width: 0;
    min-height: 58px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    border-radius: 18px;
    color: #5f6d7d;
    font-size: 10.5px;
    font-weight: 850;
    font-family: inherit;
    text-decoration: none;
    border: 0;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    box-shadow: none;
  }

.mobile-app-nav :is(a, button)[data-mobile-action="catalog"] {
    grid-column: 1;
    overflow: hidden;
    isolation: isolate;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

.mobile-app-nav :is(a, button)[data-mobile-action="catalog"]::before {
    content: none;
  }

.mobile-app-nav :is(a, button)[data-mobile-action="cart"] {
    grid-column: 2;
    isolation: isolate;
    background: transparent;
    box-shadow: none;
  }

.mobile-app-nav :is(a, button)[data-mobile-action="cart"].has-items {
    color: #5f6d7d;
  }

.mobile-app-nav :is(a, button)[data-mobile-action="cart"].has-items::before {
    content: "";
    position: absolute;
    inset: 7px 4px 1px;
    z-index: -1;
    border-radius: 20px;
    pointer-events: none;
    opacity: .92;
    filter: blur(13px);
    background:
      radial-gradient(ellipse 82% 42% at 58% 26%, rgba(53, 185, 87, .50), rgba(53, 185, 87, .18) 48%, rgba(53, 185, 87, 0) 82%),
      radial-gradient(ellipse 70% 30% at 36% 82%, rgba(0, 111, 186, .24), rgba(0, 111, 186, 0) 74%);
  }

.mobile-app-nav :is(a, button)[data-mobile-action="account"] {
    grid-column: 4;
    overflow: hidden;
    isolation: isolate;
    color: #5f6d7d;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

.mobile-app-nav :is(a, button)[data-mobile-action="account"]::before {
    content: "";
    position: absolute;
    inset: -4px -16px -10px;
    z-index: -1;
    border-radius: 999px;
    pointer-events: none;
    opacity: .78;
    filter: blur(24px);
    background:
      radial-gradient(ellipse 62% 34% at 72% 30%, rgba(234, 88, 12, .34), rgba(234, 88, 12, .16) 42%, rgba(234, 88, 12, 0) 76%),
      radial-gradient(ellipse 66% 36% at 34% 78%, rgba(53, 185, 87, .18), rgba(53, 185, 87, .08) 44%, rgba(53, 185, 87, 0) 78%),
      radial-gradient(ellipse 58% 32% at 54% 78%, rgba(255, 255, 255, .56), rgba(255, 255, 255, 0) 76%);
  }

.is-authenticated-user .mobile-app-nav :is(a, button)[data-mobile-action="account"] {
    color: #5f6d7d;
    box-shadow: none;
  }

.is-authenticated-user .mobile-app-nav :is(a, button)[data-mobile-action="account"]::before {
    background:
      radial-gradient(ellipse 62% 34% at 72% 30%, rgba(53, 185, 87, .30), rgba(53, 185, 87, .13) 42%, rgba(53, 185, 87, 0) 76%),
      radial-gradient(ellipse 66% 36% at 34% 78%, rgba(0, 111, 186, .18), rgba(0, 111, 186, .08) 44%, rgba(0, 111, 186, 0) 78%),
      radial-gradient(ellipse 58% 32% at 54% 78%, rgba(255, 255, 255, .56), rgba(255, 255, 255, 0) 76%);
  }

.mobile-app-nav :is(a, button)[data-mobile-action="account"] svg,
.mobile-app-nav :is(a, button)[data-mobile-action="account"] span {
    position: relative;
    z-index: 1;
  }

.mobile-app-nav :is(a, button)[data-mobile-action="operator"] {
    grid-column: 5;
    overflow: hidden;
    isolation: isolate;
    color: #5f6d7d;
    background: transparent;
    box-shadow: none;
  }

.mobile-app-nav :is(a, button)[data-mobile-action="operator"]::before {
    content: "";
    position: absolute;
    inset: 8px -12px -10px;
    z-index: -1;
    border-radius: 26px;
    pointer-events: none;
    opacity: 0;
    filter: blur(24px);
    background:
      radial-gradient(ellipse 94% 52% at 58% 34%, rgba(53, 185, 87, .46), rgba(53, 185, 87, .18) 48%, rgba(53, 185, 87, 0) 84%),
      radial-gradient(ellipse 72% 36% at 30% 84%, rgba(0, 111, 186, .20), rgba(0, 111, 186, 0) 76%);
    transition: opacity .18s ease;
  }

.mobile-app-nav :is(a, button)[data-mobile-action="operator"].is-contact-open {
    color: #5f6d7d;
  }

.mobile-app-nav :is(a, button)[data-mobile-action="operator"].is-contact-open::before {
    opacity: .42;
  }

.mobile-contact-flyout {
    position: absolute;
    right: 10px;
    bottom: calc(100% + 12px);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .74);
    border-radius: 24px;
    background:
      radial-gradient(ellipse at 46% 0%, rgba(255, 255, 255, .94), rgba(255, 255, 255, 0) 68%),
      rgba(245, 251, 255, .70);
    box-shadow:
      0 18px 42px rgba(20, 45, 72, .17),
      inset 0 1px 0 rgba(255, 255, 255, .88);
    backdrop-filter: blur(20px) saturate(1.08);
    -webkit-backdrop-filter: blur(20px) saturate(1.08);
  }

.mobile-contact-flyout[hidden] {
    display: none;
  }

.mobile-contact-flyout::before {
    content: "";
    position: absolute;
    inset: -14px -16px -18px;
    z-index: -1;
    border-radius: 32px;
    pointer-events: none;
    filter: blur(24px);
    background:
      radial-gradient(ellipse 70% 40% at 72% 80%, rgba(53, 185, 87, .28), rgba(53, 185, 87, 0) 78%),
      radial-gradient(ellipse 72% 44% at 35% 16%, rgba(0, 111, 186, .22), rgba(0, 111, 186, 0) 80%);
  }

.mobile-contact-flyout::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: -7px;
    width: 16px;
    height: 16px;
    border-radius: 5px;
    background: rgba(245, 251, 255, .72);
    border-right: 1px solid rgba(255, 255, 255, .70);
    border-bottom: 1px solid rgba(255, 255, 255, .70);
    transform: rotate(45deg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

.mobile-contact-flyout a {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    border-radius: 16px;
    color: var(--blue);
    background:
      radial-gradient(ellipse at 52% 12%, rgba(255, 255, 255, .98), rgba(255, 255, 255, 0) 66%),
      rgba(255, 255, 255, .64);
    box-shadow:
      0 10px 24px rgba(20, 45, 72, .09),
      inset 0 1px 0 rgba(255, 255, 255, .88);
  }

.mobile-contact-flyout a:nth-child(3) {
    color: #7360f2;
  }

.mobile-contact-flyout span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

.mobile-contact-flyout svg {
    width: 23px;
    height: 23px;
  }

.mobile-app-nav :is(a, button)[data-mobile-action="search"] {
    position: absolute;
    left: 50%;
    top: -18px;
    width: 78px;
    height: 78px;
    min-height: 78px;
    border: 1px solid rgba(255, 255, 255, .68);
    border-radius: 999px;
    background:
      radial-gradient(ellipse 72% 56% at 56% 50%, rgba(0, 111, 186, .18), rgba(0, 111, 186, .08) 42%, rgba(0, 111, 186, 0) 72%),
      radial-gradient(ellipse at 42% 14%, rgba(255, 255, 255, .96), rgba(255, 255, 255, 0) 66%),
      rgba(239, 248, 253, .78);
    color: var(--blue);
    isolation: isolate;
    box-shadow:
      0 22px 54px rgba(0, 111, 186, .18),
      inset 0 1px 0 rgba(255, 255, 255, .86);
    transform: translateX(-50%);
    backdrop-filter: blur(18px) saturate(1.08);
    -webkit-backdrop-filter: blur(18px) saturate(1.08);
  }

.mobile-app-nav :is(a, button)[data-mobile-action="search"]::before {
    content: "";
    position: absolute;
    inset: 8px;
    z-index: -1;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(24px);
    background:
      radial-gradient(circle at 54% 50%, rgba(0, 111, 186, .32), rgba(0, 111, 186, .12) 46%, rgba(0, 111, 186, 0) 76%),
      radial-gradient(circle at 32% 74%, rgba(255, 255, 255, .58), rgba(255, 255, 255, 0) 72%);
  }

.mobile-app-nav :is(a, button)[data-mobile-action="search"] span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

.mobile-app-nav :is(a, button)[data-mobile-action="search"] svg {
    width: 36px;
    height: 36px;
    stroke-width: 2.25;
  }

.mobile-app-nav :is(a, button).is-active {
    background: transparent;
    color: #5f6d7d;
  }

.mobile-app-nav :is(a, button)[data-mobile-action="catalog"].is-active {
    background: transparent;
    color: #5f6d7d;
  }

.mobile-app-nav :is(a, button)[data-mobile-action="catalog"].is-active::before {
    content: none;
  }

.mobile-app-nav :is(a, button)[data-mobile-action="catalog"]::after {
    content: "";
    position: absolute;
    inset: 3px 1px -1px;
    z-index: -1;
    border-radius: 22px;
    pointer-events: none;
    opacity: 0;
    background:
      radial-gradient(ellipse 72% 48% at 50% 35%, rgba(255, 255, 255, .94), rgba(255, 255, 255, .24) 46%, rgba(255, 255, 255, 0) 74%),
      radial-gradient(ellipse 74% 50% at 58% 62%, rgba(0, 111, 186, .34), rgba(0, 111, 186, .13) 46%, rgba(0, 111, 186, 0) 78%),
      radial-gradient(ellipse 62% 36% at 32% 82%, rgba(53, 185, 87, .20), rgba(53, 185, 87, 0) 72%);
    box-shadow:
      0 14px 30px rgba(0, 111, 186, .16),
      0 0 0 1px rgba(154, 210, 242, .26),
      inset 0 1px 0 rgba(255, 255, 255, .86);
    transform: scale(.86);
    filter: blur(.2px);
  }

.mobile-app-nav :is(a, button)[data-mobile-action="account"].is-active {
    background: transparent;
    color: #5f6d7d;
  }

.mobile-app-nav .icon-button.mobile-account-icon-button[data-mobile-action="account"] {
    grid-column: 4;
    align-self: center;
    justify-self: center;
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0;
    overflow: hidden;
    isolation: isolate;
    border-radius: 18px;
    border: 0;
    background: transparent;
    color: var(--blue);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

.mobile-app-nav .icon-button.mobile-account-icon-button[data-mobile-action="account"]::before {
    content: "";
    position: absolute;
    inset: 4px;
    z-index: 0;
    border-radius: 11px;
    pointer-events: none;
    opacity: 1;
    filter: blur(1px);
    background:
      radial-gradient(ellipse 74% 34% at 72% 35%, rgba(234, 88, 12, .30), rgba(234, 88, 12, .16) 42%, rgba(234, 88, 12, 0) 80%),
      radial-gradient(ellipse 48% 22% at 32% 78%, rgba(234, 88, 12, .13), rgba(234, 88, 12, 0) 74%);
  }

.is-authenticated-user .mobile-app-nav .icon-button.mobile-account-icon-button[data-mobile-action="account"],
.auth-cached-auth .mobile-app-nav .icon-button.mobile-account-icon-button[data-mobile-action="account"] {
    box-shadow: none;
  }

.is-authenticated-user .mobile-app-nav .icon-button.mobile-account-icon-button[data-mobile-action="account"]::before,
.auth-cached-auth .mobile-app-nav .icon-button.mobile-account-icon-button[data-mobile-action="account"]::before {
    background:
      radial-gradient(ellipse 74% 34% at 72% 35%, rgba(53, 185, 87, .30), rgba(53, 185, 87, .16) 42%, rgba(53, 185, 87, 0) 80%),
      radial-gradient(ellipse 48% 22% at 32% 78%, rgba(53, 185, 87, .13), rgba(53, 185, 87, 0) 74%);
  }

.mobile-app-nav .icon-button.mobile-account-icon-button[data-mobile-action="account"] svg {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

.mobile-app-nav .icon-button.mobile-account-icon-button[data-mobile-action="account"] > span {
    display: none;
  }

.mobile-app-nav :is(a, button)[data-mobile-action="search"],
.mobile-app-nav :is(a, button)[data-mobile-action="search"].is-active {
    color: var(--blue);
  }

.mobile-app-nav svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

.mobile-app-nav :is(a, button).is-cart-receive svg {
    transform: scale(1.2);
    color: var(--blue);
    transition: transform .2s ease, color .2s ease;
  }

.mobile-cart-fly-item {
    position: fixed;
    z-index: 1400;
    pointer-events: none;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 20px;
    background:
      radial-gradient(circle at 30% 24%, rgba(255, 255, 255, .98), rgba(255, 255, 255, .36) 46%, rgba(255, 255, 255, 0) 72%),
      radial-gradient(circle at 72% 76%, rgba(53, 185, 87, .32), rgba(53, 185, 87, 0) 64%),
      rgba(244, 250, 254, .9);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    backdrop-filter: blur(18px) saturate(145%);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, .74),
      0 14px 34px rgba(0, 111, 186, .22),
      0 22px 54px rgba(53, 185, 87, .18);
    transform: translate(-50%, -50%) scale(1);
    will-change: transform, opacity, filter;
  }

.mobile-cart-fly-item.is-flying {
    transform: translate(calc(-50% + var(--fly-x, 0px)), calc(-50% + var(--fly-y, 0px))) scale(.22);
    opacity: 0;
    filter: blur(1px);
    transition:
      transform .72s cubic-bezier(.18, .86, .24, 1),
      opacity .42s ease .18s,
      filter .42s ease .18s;
  }

.mobile-cart-fly-item--remove {
    background:
      radial-gradient(circle at 30% 24%, rgba(255, 255, 255, .96), rgba(255, 255, 255, .28) 46%, rgba(255, 255, 255, 0) 72%),
      radial-gradient(circle at 72% 76%, rgba(220, 38, 38, .24), rgba(220, 38, 38, 0) 64%),
      rgba(248, 250, 252, .9);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, .72),
      0 14px 34px rgba(100, 116, 139, .18),
      0 18px 44px rgba(220, 38, 38, .12);
  }

.mobile-cart-fly-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 9px;
    background: rgba(255, 255, 255, .76);
  }

.mobile-cart-fly-item svg {
    width: 58%;
    height: 58%;
    color: var(--blue);
    stroke-width: 2.2;
  }

.mobile-app-nav :is(a, button)[data-mobile-action="catalog"] svg {
    position: relative;
    z-index: 1;
    fill: currentColor;
    stroke: none;
    width: 29px;
    height: 29px;
  }

.mobile-app-nav :is(a, button)[data-mobile-action="operator"] svg {
    width: 31px;
    height: 31px;
    stroke-width: 1.55;
  }

.mobile-app-nav :is(a, button)[data-mobile-action="operator"] svg circle {
    fill: currentColor;
    stroke: none;
  }

.mobile-app-nav :is(a, button)[data-mobile-action="account"] svg {
    width: 30px;
    height: 30px;
    stroke-width: 2.2;
  }

.mobile-app-nav :is(a, button) > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

.mobile-app-nav b {
    position: absolute;
    top: 6px;
    right: 10px;
    box-sizing: border-box;
    min-width: 18px;
    height: 18px;
    padding: 0 5px 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .92);
    background:
      radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .66), rgba(255, 255, 255, 0) 48%),
      var(--green);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    line-height: 18px;
    text-align: center;
    box-shadow:
      0 8px 18px rgba(53, 185, 87, .34),
      0 0 0 4px rgba(53, 185, 87, .12);
    transform: translateZ(0);
  }

.mobile-app-nav b[hidden] {
    display: none;
  }

.mobile-search-modal {
    position: fixed;
    inset: 0;
    z-index: 190;
    display: grid;
    align-items: stretch;
    padding: max(10px, env(safe-area-inset-top, 0px)) 10px calc(var(--mobile-bottom-nav-h) + env(safe-area-inset-bottom, 0px) + 10px);
  }

.mobile-search-modal[hidden] {
    display: none;
  }

.mobile-search-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 50% 12%, rgba(0, 111, 186, .22), rgba(0, 111, 186, 0) 20rem),
      radial-gradient(circle at 86% 84%, rgba(53, 185, 87, .18), rgba(53, 185, 87, 0) 18rem),
      rgba(229, 238, 244, .72);
    backdrop-filter: blur(18px) saturate(1.08);
    -webkit-backdrop-filter: blur(18px) saturate(1.08);
  }

.mobile-search-modal__panel {
    position: relative;
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-rows: auto auto auto minmax(0, 1fr) auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 28px;
    background:
      radial-gradient(ellipse 82% 26% at 50% 0%, rgba(255, 255, 255, .96), rgba(255, 255, 255, 0) 70%),
      radial-gradient(ellipse 54% 22% at 78% 18%, rgba(0, 111, 186, .13), rgba(0, 111, 186, 0) 78%),
      rgba(247, 252, 255, .82);
    box-shadow:
      0 28px 78px rgba(20, 45, 72, .24),
      inset 0 1px 0 rgba(255, 255, 255, .92);
    backdrop-filter: blur(24px) saturate(1.1);
    -webkit-backdrop-filter: blur(24px) saturate(1.1);
  }

.mobile-search-modal__head {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 8px;
    padding: 12px;
  }

.mobile-search-form {
    min-width: 0;
    height: 52px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    padding: 0 8px 0 12px;
    border: 1px solid rgba(0, 111, 186, .18);
    border-radius: 18px;
    background:
      radial-gradient(ellipse 76% 42% at 86% 44%, rgba(0, 111, 186, .15), rgba(0, 111, 186, 0) 74%),
      rgba(255, 255, 255, .82);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .94),
      0 12px 28px rgba(0, 111, 186, .08);
  }

.mobile-search-form svg {
    width: 26px;
    height: 26px;
    color: var(--blue);
    stroke-width: 2.25;
  }

.mobile-search-form input {
    min-width: 0;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111827;
    font-size: 16px;
    font-weight: 600;
  }

.mobile-search-form input::placeholder {
    color: #8a95a4;
    font-weight: 500;
  }

.mobile-search-clear,
.mobile-search-close {
    position: relative;
    border: 0;
    color: var(--blue);
  }

.mobile-search-clear[hidden] {
    display: none;
  }

.mobile-search-close::before,
.mobile-search-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 19px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
  }

.mobile-search-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

.mobile-search-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

.mobile-search-clear {
    min-width: 0;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .58);
    color: rgba(13, 42, 69, .58);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
  }

.mobile-search-close {
    width: 46px;
    height: 52px;
    border-radius: 18px;
    background:
      radial-gradient(ellipse at 44% 12%, rgba(255, 255, 255, .96), rgba(255, 255, 255, 0) 68%),
      rgba(255, 255, 255, .72);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .90),
      0 14px 32px rgba(20, 45, 72, .10);
  }

.mobile-search-filter {
    width: max-content;
    max-width: calc(100% - 24px);
    margin: 0 12px 8px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .60);
    color: #5f6d7d;
    font-size: 13px;
    font-weight: 800;
  }

.mobile-search-filter input {
    width: 18px;
    height: 18px;
    accent-color: var(--green);
  }

.mobile-search-status {
    min-height: 28px;
    padding: 0 16px 10px;
    color: #607084;
    font-size: 13px;
    font-weight: 800;
  }

.mobile-search-results {
    min-height: 0;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 2px 10px 12px;
    overflow: auto;
    overscroll-behavior: contain;
  }

.mobile-search-card {
    min-width: 0;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 22px;
    background:
      radial-gradient(ellipse 80% 34% at 72% 0%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 68%),
      rgba(255, 255, 255, .70);
    box-shadow:
      0 14px 36px rgba(20, 45, 72, .10),
      inset 0 1px 0 rgba(255, 255, 255, .86);
  }

.mobile-search-card.is-exact {
    background:
      radial-gradient(ellipse 72% 44% at 20% 50%, rgba(53, 185, 87, .16), rgba(53, 185, 87, 0) 76%),
      rgba(255, 255, 255, .76);
  }

.mobile-search-card__image {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, .88), rgba(255, 255, 255, 0) 66%),
      rgba(244, 249, 252, .86);
  }

.mobile-search-card__image img {
    max-width: 78px;
    max-height: 78px;
    object-fit: contain;
    mix-blend-mode: multiply;
  }

.mobile-search-card__main {
    min-width: 0;
    display: grid;
    gap: 6px;
  }

.mobile-search-card__top {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 7px;
  }

.mobile-search-card__code {
    min-width: 0;
    color: #111827;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.1;
    text-decoration: none;
    overflow-wrap: anywhere;
  }

.mobile-search-card__top span {
    flex: 0 0 auto;
    padding: 3px 7px;
    border-radius: 999px;
    background: rgba(53, 185, 87, .13);
    color: #229646;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
  }

.mobile-search-card__title {
    min-width: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #273344;
    font-size: 13px;
    line-height: 1.28;
    text-decoration: none;
  }

.mobile-search-card__price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    flex-wrap: wrap;
  }

.mobile-search-card__price strong {
    color: #111827;
    font-size: 17px;
    font-weight: 900;
  }

.mobile-search-card__price small {
    color: #7a8796;
    font-size: 11px;
    font-weight: 700;
  }

.mobile-search-stock {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
  }

.mobile-search-stock span,
.mobile-search-empty-stock {
    min-height: 25px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(237, 246, 241, .88);
    color: #2a7b3f;
    font-size: 11px;
    font-weight: 800;
  }

.mobile-search-stock b {
    color: #6e7b8c;
    font-size: 10px;
  }

.mobile-search-stock small {
    color: #6e7b8c;
    font-size: 10px;
  }

.mobile-search-empty-stock {
    width: max-content;
    background: rgba(245, 238, 232, .86);
    color: #8a5b3e;
  }

.mobile-search-card__actions {
    display: grid;
    grid-template-columns: minmax(116px, 1fr) 48px;
    gap: 8px;
    align-items: center;
  }

.mobile-search-card__qty {
    height: 42px;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    border-radius: 16px;
  }

.mobile-search-card__qty button,
.mobile-search-card__qty input {
    height: 100%;
    border: 0;
    background: transparent;
  }

.mobile-search-card__qty button {
    color: var(--blue);
    font-size: 18px;
    font-weight: 800;
  }

.mobile-search-card__qty input {
    color: #111827;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
  }

.mobile-search-cart {
    width: 48px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--blue);
  }

.mobile-search-cart svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
  }

.mobile-search-more {
    min-height: 46px;
    margin: 0 10px 10px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, .76);
    color: var(--blue);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
  }

.mobile-search-empty {
    min-height: 120px;
    display: grid;
    place-items: center;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .62);
    color: #607084;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
  }

.mobile-search-card--loading {
    pointer-events: none;
  }

.mobile-search-card--loading > div,
.mobile-search-card--loading i {
    display: block;
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(226, 235, 241, .75), rgba(255, 255, 255, .86), rgba(226, 235, 241, .75));
    background-size: 200% 100%;
    animation: search-skeleton 1.1s ease-in-out infinite;
  }

.mobile-search-card--loading > div {
    width: 92px;
    height: 92px;
  }

.mobile-search-card--loading section {
    display: grid;
    gap: 10px;
  }

.mobile-search-card--loading i {
    height: 14px;
  }

.hero,
.category-section,
.group-main,
.product-main {
    width: min(100% - 24px, 720px);
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
  }

.category-grid,
.group-hero,
.group-workspace,
.product-shell,
.product-layout {
    grid-template-columns: 1fr;
  }

.product-title {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.04;
  }

.category-section {
    padding-top: 18px;
  }

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

.category-card {
    min-height: 192px;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(96px, 1fr) auto;
    align-items: stretch;
    padding: 12px;
    border-radius: 20px;
  }

.category-card img {
    width: 100%;
    height: 104px;
    object-fit: contain;
    align-self: center;
    justify-self: center;
  }

.category-card__meta {
    min-height: 0;
    grid-template-columns: 22px 1px minmax(0, 1fr);
    align-self: end;
  }

.category-card__meta strong {
    font-size: 12px;
    line-height: 1.25;
  }

.is-category-page .group-series-strip {
    width: calc(100vw - 24px);
    margin: 18px calc(50% - 50vw) 0;
    padding: 2px 12px 18px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(244px, 78vw);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

.is-category-page .group-series-strip::-webkit-scrollbar {
    display: none;
  }

.is-category-page .category-link-card {
    min-height: 252px;
    height: 252px;
    width: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 16px 16px 18px;
    grid-template-rows: auto minmax(122px, 1fr) auto;
    border-radius: 24px;
  }

.is-category-page .category-link-card img {
    height: 126px;
  }

.is-category-page .category-skeleton-card__image {
    height: 126px;
  }

.is-category-page .category-link-card strong {
    width: min(100%, 230px);
    min-height: 2.5em;
    font-size: 18px;
    line-height: 1.18;
  }

.is-product-group-page .group-series-strip {
    display: none;
  }

.is-product-group-page .group-list {
    gap: 12px;
  }

.is-product-group-page .group-series {
    border-radius: 22px;
  }

.is-product-group-page .group-series__summary {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
  }

.is-product-group-page .group-series__image {
    height: 76px;
    border-radius: 16px;
  }

.is-product-group-page .group-series__image img {
    max-height: 60px;
  }

.is-product-group-page .group-series h2 {
    margin-bottom: 6px;
    font-size: 17px;
    line-height: 1.18;
  }

.is-product-group-page .series-specs {
    display: none;
  }

.is-product-group-page .group-series__footer {
    padding: 0 16px 14px;
    justify-content: flex-start;
  }

.is-product-group-page .group-series__toggle {
    min-height: 32px;
    justify-content: flex-start;
    font-size: 11px;
  }

.is-product-group-page .variant-row {
    padding: 14px 14px 16px;
  }

.is-product-group-page .variant-price strong {
    font-size: 18px;
  }

.is-product-group-page .variant-price small {
    font-size: 12px;
  }

.is-product-group-page .variant-stock:has(> .stock-chip),
.is-product-group-page .variant-stock .stock-list,
.is-product-group-page .variant-stock .stock-empty {
    width: min(168px, 42vw);
  }

.is-category-page .group-hero {
    position: relative;
    top: auto;
    z-index: 1;
    margin-bottom: 0;
  }

.category-view-switch {
    position: relative;
    z-index: 2;
    width: max-content;
    margin: 28px 0 0 auto;
    padding: 4px;
    display: flex;
    flex: 0 0 auto;
    clear: both;
    border-radius: 18px;
  }

.category-view-switch[hidden] {
    display: none;
  }

.category-view-switch button {
    width: 42px;
    min-width: 42px;
    height: 38px;
    padding: 0;
  }

.category-view-switch span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

.is-category-page.category-view-grid .group-series-strip {
    width: 100%;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    scroll-padding-inline: 0;
    scroll-snap-type: none;
  }

.is-category-page.category-view-grid .category-link-card {
    min-height: 192px;
    height: 192px;
    padding: 12px;
    grid-template-rows: auto minmax(92px, 1fr) auto;
    row-gap: 8px;
    border-radius: 20px;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

.is-category-page.category-view-grid .category-link-card img {
    height: 96px;
  }

.is-category-page.category-view-grid .category-skeleton-card__image {
    height: 96px;
  }

.is-category-page.category-view-grid .category-link-card strong {
    width: 100%;
    min-height: 0;
    font-size: 12px;
    line-height: 1.22;
  }

.is-category-page .group-main {
    padding-bottom: calc(var(--mobile-bottom-nav-h) + env(safe-area-inset-bottom, 0px) + 34px);
  }

.group-main,
.product-main {
    padding-top: 14px;
  }

.group-breadcrumbs {
    margin-top: 6px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    font-size: 11px;
  }

.group-back-link {
    width: 44px;
    min-width: 44px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    display: grid;
    place-items: center;
    grid-column: 1;
    grid-row: 1;
    border-radius: 18px;
  }

.group-back-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

.group-back-link svg {
    display: block;
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

.group-breadcrumbs__compact {
    grid-column: 2;
    min-width: 0;
    max-width: 100%;
    min-height: 36px;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(226, 232, 240, .66);
    border-radius: 18px;
    background:
      radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 66%),
      rgba(255, 255, 255, .58);
    box-shadow:
      0 10px 24px rgba(15, 23, 42, .06),
      inset 0 1px 0 rgba(255, 255, 255, .84);
    backdrop-filter: blur(14px) saturate(1.10);
    -webkit-backdrop-filter: blur(14px) saturate(1.10);
  }

.group-breadcrumbs__compact a,
.group-breadcrumbs__compact strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

.group-breadcrumbs__compact strong {
    flex: 1 1 auto;
  }

.group-breadcrumbs__full {
    grid-column: 2;
    margin-top: 6px;
    padding: 8px 10px;
    display: flex;
    gap: 5px 6px;
    border: 1px solid rgba(226, 232, 240, .66);
    border-radius: 16px;
    background: rgba(255, 255, 255, .62);
  }

.group-breadcrumbs__full[hidden] {
    display: none;
  }

.group-breadcrumbs__full a,
.group-breadcrumbs__full strong {
    line-height: 1.28;
  }

.group-breadcrumbs__toggle {
    flex: 0 0 30px;
    background:
      radial-gradient(circle at 34% 22%, rgba(255, 255, 255, .76), rgba(255, 255, 255, 0) 52%),
      rgba(232, 245, 252, .78);
    box-shadow: 0 6px 16px rgba(0, 111, 186, .10);
  }

.product-breadcrumbs {
    margin: 6px 0 10px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    font-size: 11px;
  }

.product-back-link {
    width: 44px;
    min-width: 44px;
    height: 36px;
    padding: 0;
    grid-column: 1;
    grid-row: 1;
    border-radius: 13px;
  }

.product-back-link svg {
    width: 17px;
    height: 17px;
  }

.product-back-link span {
    display: none;
  }

.product-breadcrumbs__compact {
    min-width: 0;
    max-width: 100%;
    min-height: 36px;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(226, 232, 240, .66);
    border-radius: 18px;
    background:
      radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 66%),
      rgba(255, 255, 255, .58);
    box-shadow:
      0 10px 24px rgba(15, 23, 42, .06),
      inset 0 1px 0 rgba(255, 255, 255, .84);
    backdrop-filter: blur(14px) saturate(1.10);
    -webkit-backdrop-filter: blur(14px) saturate(1.10);
  }

.product-back-link + .product-breadcrumbs__compact,
.product-back-link + .product-breadcrumbs__full {
    grid-column: 2;
    grid-row: 1;
  }

.product-breadcrumbs__compact a,
.product-breadcrumbs__compact strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

.product-breadcrumbs__compact strong {
    flex: 1 1 auto;
  }

.product-breadcrumbs__full {
    grid-column: 1 / -1;
    margin-top: 6px;
    padding: 8px 10px;
    display: flex;
    gap: 5px 6px;
    border: 1px solid rgba(226, 232, 240, .66);
    border-radius: 16px;
    background: rgba(255, 255, 255, .62);
  }

.product-back-link + .product-breadcrumbs__full {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
  }

.product-breadcrumbs__full[hidden] {
    display: none;
  }

.product-breadcrumbs:not(.is-expanded) .product-breadcrumbs__full {
    display: none;
  }

.product-breadcrumbs__full a,
.product-breadcrumbs__full strong {
    line-height: 1.28;
  }

.product-breadcrumbs__toggle {
    flex: 0 0 30px;
    background:
      radial-gradient(circle at 34% 22%, rgba(255, 255, 255, .76), rgba(255, 255, 255, 0) 52%),
      rgba(232, 245, 252, .78);
    box-shadow: 0 6px 16px rgba(0, 111, 186, .10);
  }

.product-main {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

.product-layout {
    display: contents;
  }

.product-breadcrumbs {
    order: 1;
  }

.product-gallery {
    order: 2;
  }

.product-hero-title {
    order: 3;
    position: relative;
    top: auto;
    z-index: 8;
    margin: 0;
    padding: 14px 14px 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "badges review"
      "title title";
    align-items: center;
    gap: 12px 10px;
    border-radius: 22px;
  }

.product-hero-title__badges {
    grid-area: badges;
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 36px;
    align-items: center;
    gap: 8px;
  }

.product-code--hero {
    min-width: 0;
    min-height: 36px;
    padding: 0 10px;
    justify-content: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
  }

.product-title-line {
    grid-area: title;
    min-width: 0;
    display: block;
  }

.product-hero-title h1 {
    width: 100%;
    min-width: 0;
    font-size: clamp(20px, 5.6vw, 28px);
    line-height: 1.14;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

.product-summary {
    order: 4;
    position: static;
    padding: 14px;
    display: grid;
    gap: 14px;
  }

.group-hero,
.product-card,
.product-gallery,
.product-summary {
    border-radius: 22px;
    background:
      radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, .86), rgba(255, 255, 255, 0) 62%),
      rgba(255, 255, 255, .70);
    box-shadow:
      0 16px 42px rgba(20, 45, 72, .09),
      inset 0 1px 0 rgba(255, 255, 255, .82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

.variant-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

.variant-actions {
    justify-content: start;
  }

.product-gallery {
    position: static;
    padding: 12px;
  }

.product-gallery__stage {
    height: clamp(240px, 64vw, 380px);
    min-height: 0;
    border-radius: 20px;
  }

.product-gallery__thumbs {
    margin-top: 10px;
    grid-auto-flow: column;
    grid-auto-columns: 52px;
    grid-template-columns: none;
    overflow-x: auto;
    scrollbar-width: none;
  }

.product-gallery__thumbs::-webkit-scrollbar {
    display: none;
  }

.product-gallery__thumbs button {
    height: 52px;
    border-radius: 12px;
  }

.product-price {
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

.product-price > span {
    display: none;
  }

.product-price strong {
    font-size: clamp(28px, 8vw, 40px);
  }

.product-price small {
    font-size: 14px;
  }

.is-product-group-page .group-main {
    padding-top: 8px;
  }

.is-product-group-page .group-breadcrumbs {
    margin: 4px 0 8px;
  }

.is-product-group-page .group-breadcrumbs__full {
    max-height: 38vh;
    overflow: auto;
  }

.is-product-group-page .group-breadcrumbs:not(.is-expanded) .group-breadcrumbs__full {
    display: none;
  }

.is-product-group-page .group-hero {
    position: relative;
    top: auto;
    z-index: 1;
    margin: 8px 0 6px;
    padding: 14px 16px;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

.is-product-group-page .group-hero h1 {
    font-size: clamp(22px, 6.2vw, 28px);
    line-height: 1.14;
    letter-spacing: 0;
  }

.is-product-group-page .group-hero p,
.is-product-group-page .group-hero__metrics {
    display: none;
  }

.is-product-group-page .group-workspace {
    margin-top: 4px;
    gap: 6px;
  }

.is-product-group-page .group-filter-trigger {
    min-height: 42px;
    margin: 0;
    padding: 0 14px;
    gap: 8px;
    border-radius: 16px;
    font-size: 13px;
  }

.is-product-group-page .group-filter {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 81;
    width: min(390px, calc(100vw - 28px));
    height: 100dvh;
    max-height: none;
    overflow: auto;
    transform: translateX(calc(-100% - 28px));
  }

.is-product-group-page .group-filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
  }

.is-product-group-page .group-filter-trigger svg {
    width: 18px;
    height: 18px;
  }

.is-product-group-page .group-list {
    gap: 10px;
  }

.is-product-group-page .variant-row {
    grid-template-columns: minmax(0, 1fr) minmax(126px, auto);
    gap: 10px 12px;
    align-items: center;
    padding: 14px 14px 16px;
  }

.is-product-group-page .variant-info {
    grid-column: 1 / -1;
    display: grid;
    gap: 6px;
  }

.is-product-group-page .variant-info .variant-title {
    -webkit-line-clamp: 2;
  }

.is-product-group-page .variant-price {
    grid-column: 1;
    align-self: center;
    justify-self: start;
  }

.is-product-group-page .variant-stock {
    grid-column: 2;
    align-self: center;
    justify-self: end;
  }

.is-product-group-page .variant-stock:has(> .stock-chip),
.is-product-group-page .variant-stock .stock-list,
.is-product-group-page .variant-stock .stock-empty {
    width: min(168px, 42vw);
  }

.is-product-group-page .variant-actions {
    grid-column: 1 / -1;
    grid-template-columns: minmax(118px, 1fr) minmax(138px, 1.15fr);
    justify-content: stretch;
  }

.product-stock {
    margin-top: 0;
  }

.product-block-title {
    display: none;
  }

.product-stock .stock-list {
    min-height: 0;
    border: 1px solid rgba(226, 232, 240, .70);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, .54);
  }

.product-stock .stock-chip {
    min-height: 74px;
    padding: 10px 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

.product-stock .stock-chip + .stock-chip {
    border-left: 1px solid rgba(226, 232, 240, .72);
  }

.product-stock .stock-chip span {
    font-size: 16px;
  }

.product-stock .stock-chip small {
    font-size: 11px;
  }

.product-buy {
    margin-top: 0;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 10px;
  }

.product-buy .qty-control,
.product-cart {
    height: 54px;
  }

.product-cart {
    min-width: 0;
    padding-inline: 10px;
    white-space: nowrap;
  }

.product-service {
    display: none;
  }

.product-tabs-card {
    order: 5;
    margin-top: 18px;
    padding: 12px;
    overflow: hidden;
  }

.product-builder-block {
    order: 6;
    margin-top: 10px;
    padding: 14px;
    border-radius: 22px;
  }

.product-builder-block .section-heading--compact {
    min-height: 40px;
    margin-bottom: 12px;
    gap: 10px;
  }

.product-builder-block .section-heading--compact h2 {
    font-size: 20px;
  }

.product-builder-arrow {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

.product-builder-arrow svg {
    width: 19px;
    height: 19px;
  }

.product-builder-grid {
    grid-auto-columns: minmax(218px, 78%);
    gap: 10px;
    padding-bottom: 8px;
  }

.product-accessories-block {
    order: 7;
    margin-top: 10px;
    padding: 14px;
    border-radius: 22px;
  }

.product-content-builder {
    order: 8;
    margin-top: 10px;
    padding: 14px;
    border-radius: 22px;
  }

.product-content-builder__body {
    gap: 12px;
  }

.legacy-content-card {
    padding: 14px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.55;
  }

.legacy-content-card h2 {
    font-size: 20px;
  }

.legacy-content-card h3 {
    font-size: 18px;
  }

.legacy-content-card img {
    max-height: 340px;
    border-radius: 14px;
  }

.product-tabs {
    min-height: 54px;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

.product-tabs::-webkit-scrollbar {
    display: none;
  }

.product-tabs button {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 16px;
    scroll-snap-align: start;
    white-space: nowrap;
    font-size: 12px;
    letter-spacing: .055em;
  }

.product-tab-count,
.product-tab-rating {
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
  }

.product-tab-panel {
    padding: 24px 4px 6px;
  }

.product-sticky-buy,
.product-buy {
    position: sticky;
    bottom: calc(var(--mobile-bottom-nav-h) + env(safe-area-inset-bottom, 0px) + 16px);
    z-index: 70;
  }

.product-buy {
    position: static;
    bottom: auto;
    z-index: auto;
  }

.account-hero p:not(.eyebrow) {
    color: #637184;
  }

.account-hero .eyebrow {
    color: var(--blue);
  }
}

@media (min-width: 821px) {
.mobile-app-nav {
    display: none;
  }
}

@media (max-width: 1040px) {
.topline__contacts {
    display: none;
  }

.site-footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

.site-footer__contacts {
    flex-wrap: wrap;
    white-space: normal;
  }

.site-footer__links {
    justify-items: start;
  }

.site-footer__social {
    justify-content: flex-start;
    flex-wrap: wrap;
    white-space: normal;
  }

.site-footer__pages {
    justify-content: flex-start;
    white-space: normal;
  }
}

.tracking-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: #627184;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}
