: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);
}

.account-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  padding: 34px 0 68px;
  align-items: start;
}

.account-nav {
  position: sticky;
  top: 178px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 22px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 22px 54px rgba(15, 23, 42, .10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.account-nav__identity {
  padding: 18px 18px 20px;
  margin-bottom: 6px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(0, 111, 186, .12), rgba(53, 185, 87, .10)), rgba(255, 255, 255, .62);
  border: 1px solid rgba(0, 111, 186, .12);
}

.account-nav__identity span,
.account-panel__head span,
.account-row span {
  display: block;
  color: #738091;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.account-nav__identity strong {
  display: block;
  margin-top: 8px;
  color: var(--blue-dark);
  font-size: 21px;
  line-height: 1.15;
}

.account-nav__identity small {
  display: block;
  margin-top: 6px;
  color: #647083;
  font-size: 14px;
  line-height: 1.35;
}

.account-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border-radius: 14px;
  color: #263443;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.account-nav a[hidden],
.account-nav [hidden] {
  display: none !important;
}

.account-nav a span {
  color: #8fa0b2;
  font-family: var(--accent-font);
  font-size: 13px;
  font-weight: 800;
}

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

.account-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.account-content {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.account-hero {
  min-height: 186px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(14, 51, 66, .92), rgba(0, 111, 186, .88)), #0e3342;
  color: #fff;
  box-shadow: 0 26px 68px rgba(14, 51, 66, .24);
}

.account-hero h1 {
  margin: 8px 0 10px;
  max-width: 760px;
  font-family: var(--accent-font);
  font-size: 42px;
  line-height: 1.04;
  letter-spacing: 0;
}

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

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

.superuser-plaque {
  width: fit-content;
  max-width: min(100%, 520px);
  display: grid;
  gap: 3px;
  margin-top: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(134, 234, 166, .42);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08)),
    rgba(8, 35, 45, .24);
  box-shadow:
    0 18px 46px rgba(26, 181, 92, .22),
    inset 0 1px 0 rgba(255, 255, 255, .22);
  backdrop-filter: blur(18px) saturate(1.35);
}

.superuser-plaque[hidden] {
  display: none !important;
}

.superuser-plaque span {
  color: #9ee8b0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.superuser-plaque strong {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.superuser-plaque small {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 600;
}

.account-hero__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.account-hero__actions a,
.account-panel__head a,
.account-actions a,
.account-actions button,
.account-row a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(0, 111, 186, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.account-hero__actions a {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.account-hero__actions a:hover,
.account-panel__head a:hover,
.account-actions a:hover,
.account-actions button:hover,
.account-row a:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 111, 186, .14);
}

.account-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1.6fr;
  gap: 16px;
}

.account-metrics div,
.account-panel {
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.account-metrics div {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
}

.account-metrics span {
  color: #6d7c8d;
  font-size: 14px;
  font-weight: 700;
}

.account-metrics strong {
  color: var(--blue-dark);
  font-family: var(--accent-font);
  font-size: 31px;
  line-height: 1;
}

.account-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 18px;
}

.account-panel {
  padding: 22px;
}

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

.account-panel__head h2 {
  margin: 6px 0 0;
  color: var(--blue-dark);
  font-family: var(--accent-font);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: 0;
}

.account-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.account-details div {
  min-height: 82px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(237, 243, 247, .75);
  border: 1px solid rgba(0, 111, 186, .08);
}

.account-details dt {
  color: #788697;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.account-details dd {
  margin: 8px 0 0;
  color: #182633;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.account-actions {
  display: grid;
  gap: 10px;
}

.account-actions a,
.account-actions button {
  width: 100%;
  justify-content: space-between;
  min-height: 50px;
  border-radius: 16px;
  background: rgba(237, 243, 247, .76);
}

.account-actions button {
  font: inherit;
}

.account-list {
  display: grid;
  gap: 10px;
}

.account-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 111, 186, .08);
  border-radius: 18px;
  background: rgba(247, 250, 252, .82);
}

.account-row--bill {
  grid-template-columns: 1fr 1fr 1fr auto auto;
}

.account-row--wish {
  grid-template-columns: minmax(0, 1.4fr) minmax(160px, .6fr) auto auto;
}

.account-row strong {
  display: block;
  margin-top: 5px;
  color: #1b2936;
  font-size: 15px;
  line-height: 1.2;
}

.account-row mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(53, 185, 87, .12);
  color: #187535;
  font-size: 13px;
  font-weight: 900;
}

.account-row a {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
}

.manager-workspace {
  display: grid;
  gap: 18px;
}

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

.manager-kpis div,
.manager-queue-row,
.manager-api-list code {
  border: 1px solid rgba(0, 111, 186, .10);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, .82), rgba(255, 255, 255, 0) 58%),
    rgba(247, 250, 252, .78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.manager-kpis div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border-radius: 20px;
}

.manager-kpis span,
.manager-queue-row span,
.manager-queue-row time {
  color: #6d7c8d;
  font-size: 13px;
  font-weight: 800;
}

.manager-kpis strong {
  color: var(--blue-dark);
  font-family: var(--accent-font);
  font-size: 32px;
  line-height: 1;
}

.manager-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .75fr);
  gap: 18px;
  align-items: start;
}

.manager-queue,
.manager-api-list {
  display: grid;
  gap: 10px;
}

.manager-queue-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
}

.manager-queue-row strong {
  display: block;
  color: #1b2936;
  font-size: 15px;
}

.manager-queue-row mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(0, 111, 186, .10);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.manager-api-list code {
  display: block;
  padding: 13px 14px;
  border-radius: 14px;
  color: #213140;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .manager-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .manager-kpis,
  .manager-queue-row {
    grid-template-columns: 1fr;
  }

  .manager-queue-row {
    align-items: start;
  }
}

.account-empty {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: 18px;
  background: rgba(237, 243, 247, .72);
  color: #657386;
  font-weight: 750;
}

.crm-body {
  min-width: 1024px;
  background: #eef3f6;
}

.crm-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr);
  color: #162331;
}

.crm-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 18px;
  background: #0f2d3a;
  color: #fff;
  box-shadow: 18px 0 60px rgba(15, 45, 58, .18);
}

.crm-brand {
  display: grid;
  gap: 8px;
  color: #fff;
  font-family: var(--accent-font);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.crm-brand img {
  width: 126px;
  height: auto;
  padding: 10px 12px;
  border-radius: 16px;
  background: #fff;
}

.crm-nav {
  display: grid;
  align-content: start;
  gap: 6px;
}

.crm-nav a {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  border-radius: 14px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
}

.crm-nav a span:not(.crm-nav-lead-counters) {
  min-width: 0;
}

.crm-nav-lead-counters {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}

.crm-nav-lead-counters i {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .38), 0 6px 14px rgba(0, 0, 0, .14);
}

.crm-nav-lead-counters .is-new {
  background: #2b8ed8;
}

.crm-nav-lead-counters .is-progress {
  background: #d8a84f;
}

.crm-nav-lead-counters .is-processed {
  background: #35b957;
}

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

.crm-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.crm-main {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px;
  min-width: 0;
}

.crm-topbar {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 42px rgba(15, 23, 42, .08);
}

.crm-topbar span,
.crm-panel__head span,
.crm-kpis span,
.crm-order-row span,
.crm-access__panel span {
  display: block;
  color: #687789;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.crm-topbar h1 {
  margin: 3px 0 0;
  color: #0f2d3a;
  font-family: var(--accent-font);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
}

.crm-user {
  min-width: 176px;
  max-width: 280px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #eef5f8;
  text-align: right;
}

.crm-user strong {
  display: block;
  margin-top: 5px;
  color: #132636;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crm-global-loading {
  position: fixed;
  inset: 16px 16px 16px 244px;
  z-index: 180;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .48), rgba(232, 246, 255, .68)),
    rgba(238, 245, 248, .58);
  box-shadow: 0 28px 80px rgba(15, 45, 58, .22);
  backdrop-filter: blur(12px) saturate(1.16);
  -webkit-backdrop-filter: blur(12px) saturate(1.16);
}

.crm-global-loading[hidden] {
  display: none !important;
}

.crm-global-loading > div {
  width: min(420px, 80%);
  min-height: 168px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 11px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 10px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, .78), transparent),
    rgba(255, 255, 255, .82);
  background-size: 220px 100%, 100% 100%;
  color: #0f2d3a;
  text-align: center;
  box-shadow:
    0 22px 62px rgba(0, 111, 186, .14),
    inset 0 1px 0 rgba(255, 255, 255, .88);
  animation: crm-loading-sweep 1.08s ease-in-out infinite;
}

.crm-global-loading i {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 999px;
  border: 4px solid rgba(0, 111, 186, .16);
  border-top-color: var(--blue);
  animation: crm-refresh-spin .78s linear infinite;
}

.crm-global-loading strong {
  color: #0f2d3a;
  font-family: var(--accent-font);
  font-size: 20px;
  line-height: 1.1;
}

.crm-global-loading span {
  color: #687789;
  font-size: 13px;
  font-weight: 750;
}

.crm-access {
  min-height: calc(100vh - 112px);
  display: grid;
  place-items: center;
}

.crm-access[hidden],
.crm-dashboard[hidden] {
  display: none !important;
}

.crm-section[hidden],
.crm-lead-editor[hidden],
.crm-lead-viewer[hidden],
.crm-task-editor[hidden] {
  display: none !important;
}

.crm-access__panel {
  width: min(100%, 520px);
  display: grid;
  gap: 14px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(15, 23, 42, .11);
}

.crm-access__panel h2 {
  margin: 0;
  color: #0f2d3a;
  font-family: var(--accent-font);
  font-size: 30px;
}

.crm-access__panel p {
  margin: 0;
  color: #647386;
  line-height: 1.55;
}

.crm-access__panel button,
.crm-panel__head a,
.crm-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.crm-dashboard {
  display: grid;
  gap: 18px;
}

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

.crm-kpis article,
.crm-panel,
.crm-order-row {
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 42px rgba(15, 23, 42, .07);
}

.crm-kpis article {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px;
}

.crm-kpis strong {
  color: #0f2d3a;
  font-family: var(--accent-font);
  font-size: 24px;
  line-height: 1;
}

.crm-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
  gap: 12px;
  align-items: start;
}

.crm-panel {
  padding: 14px;
}

.crm-panel__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.crm-panel__head h2 {
  margin: 5px 0 0;
  color: #0f2d3a;
  font-family: var(--accent-font);
  font-size: 18px;
  letter-spacing: 0;
}

.crm-panel__head a {
  background: #eef5f8;
  color: var(--blue);
}

.crm-order-list,
.crm-actions {
  display: grid;
  gap: 10px;
}

.crm-order-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  box-shadow: none;
}

.crm-order-row small {
  display: block;
  margin-top: 3px;
  color: #6d7d8c;
  font-size: 11px;
  font-weight: 700;
}

.crm-order-row strong {
  display: block;
  margin-top: 5px;
  color: #172838;
  font-size: 14px;
}

.crm-order-row mark {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(53, 185, 87, .12);
  color: #187535;
  font-size: 12px;
  font-weight: 900;
}

.crm-order-pagination {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 2px 0;
  color: #5d6d7c;
  font-size: 13px;
  font-weight: 700;
}

.crm-order-pagination div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.crm-order-pagination button {
  min-height: 34px;
  padding: 0 14px;
}

.crm-order-view-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.crm-order-view-card div {
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .7);
}

.crm-order-view-card span {
  display: block;
  color: #6d7d8c;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.crm-order-view-card strong {
  display: block;
  margin-top: 6px;
  color: #0b2c3a;
  font-size: 16px;
  line-height: 1.35;
  word-break: break-word;
}

.crm-order-view-card__wide {
  grid-column: 1 / -1;
}

.crm-actions a {
  justify-content: space-between;
  background: #eef5f8;
  color: #153142;
}

.crm-empty {
  margin: 0;
  padding: 18px;
  border-radius: 8px;
  background: #eef5f8;
  color: #647386;
  font-weight: 800;
}

.crm-leads-head,
.crm-tasks-head,
.crm-clients-head,
.crm-lead-toolbar,
.crm-task-toolbar,
.crm-client-toolbar,
.crm-lead-summary,
.crm-task-summary,
.crm-client-summary,
.crm-lead-board,
.crm-task-board {
  margin-bottom: 12px;
}

.crm-leads-head,
.crm-tasks-head,
.crm-clients-head,
.crm-lead-toolbar,
.crm-task-toolbar,
.crm-client-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 42px rgba(15, 23, 42, .07);
}

.crm-leads-head span,
.crm-tasks-head span,
.crm-clients-head span,
.crm-lead-toolbar span,
.crm-task-toolbar span,
.crm-client-toolbar span,
.crm-lead-summary span,
.crm-task-summary span,
.crm-client-summary span,
.crm-lead-column header span,
.crm-task-column header span,
.crm-lead-card span,
.crm-task-card span,
.crm-lead-row span,
.crm-task-row span,
.crm-client-row span,
.crm-lead-editor span,
.crm-task-editor span {
  display: block;
  color: #687789;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.crm-leads-head h2,
.crm-tasks-head h2,
.crm-clients-head h2,
.crm-lead-editor h2,
.crm-task-editor h2 {
  margin: 3px 0 0;
  color: #0f2d3a;
  font-family: var(--accent-font);
  font-size: 22px;
  letter-spacing: 0;
}

.crm-leads-head__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.crm-leads-head button,
.crm-tasks-head button,
.crm-clients-head button,
.crm-lead-editor footer button[type="submit"],
.crm-task-editor footer button[type="submit"] {
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.crm-leads-head .crm-lead-refresh {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(0, 111, 186, .18);
  background: rgba(232, 246, 255, .82);
  color: var(--blue);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.crm-lead-refresh svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.crm-lead-refresh[aria-busy="true"] svg {
  animation: crm-refresh-spin .8s linear infinite;
}

.crm-lead-refresh:disabled {
  cursor: wait;
  opacity: .72;
}

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

.crm-lead-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 150px 170px 140px;
  align-items: end;
}

.crm-task-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 150px 140px 130px;
  align-items: end;
}

.crm-client-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 170px;
  align-items: end;
}

.crm-lead-toolbar label,
.crm-task-toolbar label,
.crm-client-toolbar label,
.crm-lead-form-grid label,
.crm-task-form-grid label {
  display: grid;
  gap: 7px;
}

.crm-lead-toolbar input,
.crm-lead-toolbar select,
.crm-task-toolbar input,
.crm-task-toolbar select,
.crm-client-toolbar input,
.crm-client-toolbar select,
.crm-lead-form-grid input,
.crm-lead-form-grid select,
.crm-lead-form-grid textarea,
.crm-task-form-grid input,
.crm-task-form-grid select,
.crm-task-form-grid textarea,
.crm-lead-row select,
.crm-task-row select {
  width: 100%;
  min-height: 36px;
  border: 1px solid rgba(15, 45, 58, .12);
  border-radius: 8px;
  background: #fff;
  color: #132636;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

.crm-lead-toolbar input,
.crm-lead-toolbar select,
.crm-task-toolbar input,
.crm-task-toolbar select,
.crm-client-toolbar input,
.crm-client-toolbar select,
.crm-lead-form-grid input,
.crm-lead-form-grid select,
.crm-lead-form-grid textarea,
.crm-task-form-grid input,
.crm-task-form-grid select,
.crm-task-form-grid textarea {
  padding: 0 10px;
}

.crm-lead-form-grid textarea,
.crm-task-form-grid textarea {
  min-height: 86px;
  padding-top: 10px;
  resize: vertical;
}

.crm-task-form-grid select[multiple] {
  min-height: 148px;
  padding: 8px 10px;
}

.crm-edr-hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 111, 186, .24);
  border-radius: 8px;
  background: rgba(225, 243, 255, .68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.crm-edr-hint span,
.crm-edr-hint small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.crm-edr-hint strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
}

.crm-edr-hint button {
  flex: 0 0 auto;
  width: auto;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: rgba(0, 111, 186, .11);
  color: var(--blue);
  font-weight: 760;
  cursor: pointer;
}

.crm-lead-summary,
.crm-task-summary,
.crm-client-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.crm-lead-summary article,
.crm-task-summary article,
.crm-client-summary article {
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 42px rgba(15, 23, 42, .07);
}

.crm-lead-summary strong,
.crm-task-summary strong,
.crm-client-summary strong,
.crm-lead-column header strong,
.crm-task-column header strong {
  color: #0f2d3a;
  font-family: var(--accent-font);
  font-size: 22px;
  line-height: 1;
}

.crm-lead-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  overflow: visible;
  padding-bottom: 0;
}

.crm-lead-table {
  position: relative;
}

.crm-lead-board.is-loading,
.crm-lead-table.is-loading {
  min-height: 156px;
}

.crm-lead-board.is-loading::before,
.crm-lead-table.is-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, .82), transparent),
    rgba(231, 242, 247, .58);
  background-size: 220px 100%, 100% 100%;
  box-shadow: 0 18px 54px rgba(15, 23, 42, .12);
  backdrop-filter: blur(8px);
  animation: crm-loading-sweep 1.08s ease-in-out infinite;
}

.crm-lead-board.is-loading::after,
.crm-lead-table.is-loading::after {
  content: "Оновлення...";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 16px 0 42px;
  border: 1px solid rgba(0, 111, 186, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 46px rgba(0, 111, 186, .16);
}

.crm-leads-loading .crm-lead-board.is-loading::after,
.crm-leads-loading .crm-lead-table.is-loading::after {
  background-image: radial-gradient(circle at 22px 50%, currentColor 0 4px, transparent 4.5px);
}

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

.crm-task-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  overflow: visible;
  padding-bottom: 0;
}

.crm-lead-column,
.crm-task-column {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(15, 45, 58, .08);
  border-radius: 8px;
  background: rgba(236, 244, 248, .74);
}

.crm-lead-column header,
.crm-task-column header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 6px;
  align-items: center;
}

.crm-lead-column header small,
.crm-task-column header small {
  grid-column: 1 / -1;
  color: #647386;
  font-weight: 800;
}

.crm-lead-card,
.crm-task-card {
  min-width: 0;
  overflow: hidden;
  position: relative;
  display: grid;
  gap: 6px;
  margin-top: 8px;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

.crm-lead-card {
  border-left: 5px solid rgba(100, 116, 139, .36);
}

.crm-lead-card--email-in {
  border-left-color: #0077c8;
  background: linear-gradient(90deg, rgba(218, 240, 255, .92), #fff 34%);
}

.crm-lead-card--email-out {
  border-left-color: #38a3d1;
  background: linear-gradient(90deg, rgba(225, 246, 255, .92), #fff 34%);
}

.crm-lead-card--call-in {
  border-left-color: #13a06f;
  background: linear-gradient(90deg, rgba(217, 249, 236, .92), #fff 34%);
}

.crm-lead-card--call-out {
  border-left-color: #86a51d;
  background: linear-gradient(90deg, rgba(242, 247, 213, .92), #fff 34%);
}

.crm-lead-card--call-missed {
  border-left-color: #d92d20;
  background: linear-gradient(90deg, rgba(254, 226, 226, .94), #fff 36%);
}

.crm-lead-card--manual {
  border-left-color: #8b5cf6;
  background: linear-gradient(90deg, rgba(237, 233, 254, .9), #fff 34%);
}

.crm-lead-card__channel {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 22px;
}

.crm-lead-card__channel .crm-source-badge {
  width: 24px;
  height: 24px;
}

.crm-lead-column__dropzone {
  min-height: 56px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.crm-lead-column[data-lead-drop-zone] {
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.crm-lead-card[draggable="true"] {
  cursor: grab;
}

.crm-lead-card.is-dragging {
  opacity: .46;
  transform: scale(.985);
}

.crm-lead-column.is-drag-over {
  border-color: rgba(0, 119, 200, .38);
  background:
    linear-gradient(180deg, rgba(232, 247, 255, .72), rgba(234, 244, 249, .38)),
    rgba(211, 236, 248, .56);
}

.crm-lead-card__top,
.crm-task-card__top {
  min-width: 0;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 6px;
}

.crm-lead-card__tools {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex: 0 0 auto;
}

.crm-lead-card strong,
.crm-task-card strong,
.crm-lead-row strong,
.crm-task-row strong {
  color: #172838;
  font-size: 12px;
  line-height: 1.25;
}

.crm-lead-card__top > strong {
  min-width: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.crm-lead-card p,
.crm-task-card p {
  margin: 0;
  color: #536273;
  font-size: 11px;
  line-height: 1.3;
}

.crm-lead-card p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.crm-lead-card footer,
.crm-task-card footer {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.crm-lead-card small,
.crm-task-card small,
.crm-lead-row small,
.crm-task-row small {
  color: #647386;
  font-size: 11px;
  font-weight: 800;
}

.crm-lead-card span,
.crm-lead-card small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crm-lead-card footer small {
  flex: 1 1 auto;
}

.crm-lead-card footer small {
  display: grid;
  gap: 1px;
}

.crm-lead-card footer time {
  color: #102333;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.15;
}

.crm-lead-card footer small span {
  min-width: 0;
  overflow: hidden;
  color: #6a7888;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crm-lead-card mark,
.crm-task-card mark {
  min-height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(0, 111, 186, .10);
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.crm-lead-card mark.is-high,
.crm-task-card mark.is-high {
  background: rgba(232, 84, 62, .12);
  color: #b73825;
}

.crm-lead-card mark.is-low,
.crm-task-card mark.is-low {
  background: rgba(53, 185, 87, .12);
  color: #187535;
}

.crm-lead-card button,
.crm-lead-row button,
.crm-lead-table__head button,
.crm-task-card button,
.crm-task-row button,
.crm-client-row button,
.crm-lead-editor footer button,
.crm-lead-viewer footer button,
.crm-task-editor footer button {
  min-height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: #eef5f8;
  color: var(--blue);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.crm-lead-table,
.crm-task-table,
.crm-client-table {
  display: grid;
  gap: 6px;
}

.crm-lead-table__head {
  min-height: 48px;
  display: grid;
  grid-template-columns: 1.05fr .82fr 1.25fr .72fr .9fr 118px 156px;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(15, 45, 58, .10);
}

.crm-lead-table__head label {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.crm-lead-table__head span {
  color: #687789;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.crm-lead-table__head input,
.crm-lead-table__head select {
  width: 100%;
  min-height: 30px;
  border: 1px solid rgba(15, 45, 58, .10);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  color: #132636;
  font: inherit;
  font-size: 11px;
  font-weight: 650;
  padding: 0 8px;
}

.crm-lead-row {
  min-height: 46px;
  display: grid;
  grid-template-columns: 1.05fr .82fr 1.25fr .72fr .9fr 118px 156px;
  gap: 8px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(15, 45, 58, .08);
  border-radius: 8px;
  background: #fff;
}

.crm-lead-table__pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 8px 10px 2px;
}

.crm-lead-table__pager span {
  color: #607083;
  font-size: 11px;
  font-weight: 750;
}

.crm-lead-table__pager button {
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(0, 111, 186, .16);
  border-radius: 8px;
  background: rgba(232, 243, 250, .84);
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
}

.crm-lead-table__pager button:disabled {
  cursor: default;
  opacity: .45;
}

.crm-task-row {
  min-height: 62px;
  display: grid;
  grid-template-columns: 1.15fr 1fr .9fr .9fr 128px auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(15, 45, 58, .08);
  border-radius: 8px;
  background: #fff;
}

.crm-lead-row > div,
.crm-task-row > div {
  min-width: 0;
}

.crm-lead-row__actions {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: nowrap;
}

.crm-lead-source-cell {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-width: 0;
}

.crm-source-badge {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 0 7px;
  border-radius: 999px;
  border: 1px solid rgba(0, 111, 186, .12);
  background: rgba(0, 111, 186, .08);
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.crm-source-badge--icon {
  width: 30px;
  height: 30px;
  min-height: 30px;
  padding: 0;
}

.crm-source-badge--icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.crm-source-badge.is-email {
  border-color: rgba(0, 111, 186, .16);
  background: rgba(0, 111, 186, .10);
  color: #0068ad;
}

.crm-source-badge.is-email.is-in {
  border-color: rgba(0, 111, 186, .22);
  background: rgba(221, 240, 252, .92);
  color: #0068ad;
}

.crm-source-badge.is-email.is-out {
  border-color: rgba(219, 122, 18, .26);
  background: rgba(255, 236, 205, .94);
  color: #a84f00;
}

.crm-source-badge.is-call.is-in {
  border-color: rgba(53, 185, 87, .22);
  background: rgba(219, 248, 226, .90);
  color: #187535;
}

.crm-source-badge.is-call.is-out {
  border-color: rgba(94, 111, 208, .24);
  background: rgba(229, 233, 255, .92);
  color: #3e4eb0;
}

.crm-source-badge.is-call {
  border-color: rgba(53, 185, 87, .18);
  background: rgba(53, 185, 87, .12);
  color: #187535;
}

.crm-source-badge.is-call.is-missed {
  border-color: rgba(220, 38, 38, .30);
  background: rgba(255, 228, 230, .94);
  color: #b4232d;
}

.crm-source-badge.is-manual {
  border-color: rgba(96, 113, 132, .18);
  background: rgba(96, 113, 132, .10);
  color: #536273;
}

.crm-lead-row strong,
.crm-lead-row small,
.crm-task-row strong,
.crm-task-row small,
.crm-client-row strong,
.crm-client-row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crm-lead-row strong {
  color: #172838;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.22;
}

.crm-lead-row small {
  margin-top: 2px;
  color: #687789;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}

.crm-lead-row select {
  min-height: 32px;
  font-size: 12px;
  font-weight: 650;
}

.crm-lead-row button {
  min-height: 28px;
  padding: 0 9px;
  font-size: 11px;
  font-weight: 700;
}

.crm-icon-action {
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
}

.crm-lead-row .crm-icon-action {
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  padding: 0;
}

.crm-icon-action svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.crm-lead-card .crm-icon-action {
  width: 28px;
  min-width: 28px;
  height: 28px;
  min-height: 28px;
  padding: 0;
}

.crm-lead-card .crm-lead-action--view,
.crm-lead-row .crm-lead-action--view,
.crm-lead-card .crm-lead-action--archive,
.crm-lead-row .crm-lead-action--archive {
  color: var(--blue);
}

.crm-lead-card .crm-lead-action--edit,
.crm-lead-row .crm-lead-action--edit {
  color: #3e4eb0;
}

.crm-lead-card .crm-lead-action--convert,
.crm-lead-row .crm-lead-action--convert {
  color: #187535;
}

.crm-lead-card .crm-lead-action--delete,
.crm-lead-row .crm-lead-action--delete {
  color: #b73825;
}

.crm-lead-card .crm-lead-card__delete,
.crm-lead-card .crm-lead-card__archive {
  width: 28px;
  min-width: 28px;
  height: 28px;
  min-height: 28px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.crm-lead-card .crm-lead-card__delete {
  color: #b73825;
}

.crm-lead-card .crm-lead-card__archive {
  color: var(--blue);
}

.crm-lead-card__delete svg,
.crm-lead-card__archive svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.crm-lead-card .crm-lead-card__delete:hover {
  background: rgba(232, 84, 62, .16);
  color: #9f2f1f;
}

.crm-lead-card .crm-lead-card__archive:hover {
  background: rgba(0, 111, 186, .14);
  color: #005d9d;
}

.crm-clients-head__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.crm-client-table__head {
  min-height: 34px;
  display: grid;
  gap: 8px;
  align-items: center;
  padding: 0 10px;
  border-bottom: 1px solid rgba(15, 45, 58, .10);
}

.crm-client-table__head--people {
  grid-template-columns: 1.15fr .85fr 1.05fr 1.15fr 112px;
}

.crm-client-table__head--companies {
  grid-template-columns: 1.5fr .7fr .55fr 112px;
}

.crm-client-table__head span {
  color: #687789;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.crm-client-row {
  min-height: 46px;
  display: grid;
  gap: 8px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(15, 45, 58, .08);
  border-radius: 8px;
  background: #fff;
}

.crm-client-row--person {
  grid-template-columns: 1.15fr .85fr 1.05fr 1.15fr 112px;
}

.crm-client-row--company {
  grid-template-columns: 1.5fr .7fr .55fr 112px;
}

.crm-client-row > div {
  min-width: 0;
}

.crm-client-row strong {
  color: #172838;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.22;
}

.crm-client-row small {
  margin-top: 2px;
  color: #687789;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}

.crm-client-row button {
  min-height: 28px;
  padding: 0 9px;
  font-size: 11px;
  font-weight: 700;
}

.crm-client-row {
  cursor: pointer;
}

.crm-client-row button {
  cursor: pointer;
}

.crm-client-timeline {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(238, 246, 250, .62));
}

.crm-client-timeline header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.crm-client-timeline header span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.crm-client-timeline header strong {
  color: #082b3a;
  font-size: 18px;
  font-weight: 750;
}

.crm-client-timeline__list {
  display: grid;
  gap: 8px;
}

.crm-client-timeline__item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 96px;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid rgba(15, 45, 58, .08);
  border-radius: 9px;
  background: rgba(255, 255, 255, .78);
}

.crm-client-timeline__item > div {
  min-width: 0;
}

.crm-client-timeline__item strong {
  display: block;
  color: #102333;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.crm-client-timeline__item small,
.crm-client-timeline__item p {
  display: block;
  margin: 3px 0 0;
  color: #617184;
  font-size: 11px;
  font-weight: 560;
  line-height: 1.35;
}

.crm-client-timeline__item > span,
.crm-client-timeline__mark {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 999px;
  color: #0b5f95;
  background: rgba(209, 236, 253, .78);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.crm-client-timeline__item > span {
  color: #506174;
  background: rgba(226, 232, 240, .74);
}

.crm-client-timeline__item.is-email .crm-client-timeline__mark {
  color: #006da8;
  background: rgba(199, 232, 252, .82);
}

.crm-client-timeline__item.is-call .crm-client-timeline__mark {
  color: #087451;
  background: rgba(199, 245, 226, .82);
}

.crm-client-timeline__item.is-missed .crm-client-timeline__mark,
.crm-client-timeline__item.is-missed > span {
  color: #b42318;
  background: rgba(254, 226, 226, .9);
}

.crm-client-timeline__empty {
  margin: 0;
  padding: 18px;
  border-radius: 8px;
  color: #64748b;
  background: rgba(255, 255, 255, .58);
  font-size: 13px;
  font-weight: 650;
}

.crm-lead-editor,
.crm-lead-viewer,
.crm-task-editor {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  justify-items: end;
  background: rgba(15, 23, 42, .34);
  opacity: 0;
  transition: opacity 160ms ease;
}

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

.crm-lead-editor__panel,
.crm-lead-viewer__panel,
.crm-task-editor__panel {
  width: min(720px, 100vw);
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 22px;
  background: #fff;
  box-shadow: -22px 0 70px rgba(15, 23, 42, .18);
  transform: translateX(18px);
  transition: transform 160ms ease;
  overflow: auto;
}

.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-lead-editor header,
.crm-lead-editor footer,
.crm-lead-viewer header,
.crm-lead-viewer footer,
.crm-task-editor header,
.crm-task-editor footer {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.crm-lead-editor header button,
.crm-lead-viewer header button,
.crm-task-editor header button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: #eef5f8;
  color: #153142;
  font-size: 24px;
  cursor: pointer;
}

.crm-lead-form-grid,
.crm-task-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.crm-lead-form-grid__wide,
.crm-task-form-grid__wide {
  grid-column: 1 / -1;
}

.crm-lead-editor footer button:first-child,
.crm-lead-viewer footer button:first-child,
.crm-task-editor footer button:first-child {
  background: rgba(232, 84, 62, .10);
  color: #b73825;
}

.crm-lead-viewer__body {
  display: grid;
  align-content: start;
  gap: 12px;
}

.crm-lead-viewer__hero,
.crm-lead-viewer__section,
.crm-lead-call,
.crm-lead-email,
.crm-lead-task {
  border: 1px solid rgba(15, 45, 58, .08);
  border-radius: 8px;
  background: #f7fafc;
}

.crm-lead-viewer__hero {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
}

.crm-lead-viewer__hero span,
.crm-lead-viewer__section-head span,
.crm-lead-call span,
.crm-lead-email span,
.crm-lead-task span {
  display: block;
  color: #687789;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.crm-lead-viewer__hero h2 {
  margin: 4px 0 6px;
  color: #0f2d3a;
  font-family: var(--accent-font);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: 0;
}

.crm-lead-viewer__hero p,
.crm-lead-viewer__notes {
  margin: 0;
  color: #536273;
  font-size: 14px;
  line-height: 1.55;
}

.crm-lead-viewer__hero mark {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 111, 186, .10);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.crm-lead-viewer__hero mark.is-high {
  background: rgba(232, 84, 62, .12);
  color: #b73825;
}

.crm-lead-viewer__hero mark.is-low {
  background: rgba(53, 185, 87, .12);
  color: #187535;
}

.crm-lead-viewer__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.crm-lead-viewer__metrics article {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(15, 45, 58, .08);
  border-radius: 8px;
  background: #fff;
}

.crm-lead-viewer__metrics span {
  color: #687789;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.crm-lead-viewer__metrics strong {
  color: #0f2d3a;
  font-family: var(--accent-font);
  font-size: 18px;
  line-height: 1.1;
}

.crm-lead-viewer__metrics small {
  color: #647386;
  font-size: 12px;
  font-weight: 800;
}

.crm-lead-viewer__section {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: #fff;
}

.crm-lead-viewer__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.crm-lead-viewer__section-head strong {
  color: #172838;
  font-size: 14px;
}

.crm-lead-viewer__contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.crm-lead-viewer__contact a,
.crm-lead-call a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 8px;
  background: #eef5f8;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.crm-lead-call-list,
.crm-lead-email-list,
.crm-lead-task-list {
  display: grid;
  gap: 8px;
}

.crm-lead-call,
.crm-lead-email,
.crm-lead-task {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: #f7fafc;
}

.crm-lead-task {
  grid-template-columns: minmax(0, 1fr) auto;
}

.crm-lead-email {
  grid-template-columns: minmax(0, .68fr) minmax(0, 1fr);
}

.crm-lead-email__body {
  grid-column: 1 / -1;
  max-height: 240px;
  overflow: auto;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff;
  color: #536273;
  font-size: 12px;
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.crm-lead-call strong,
.crm-lead-email strong,
.crm-lead-task strong {
  display: block;
  color: #172838;
  font-size: 13px;
}

.crm-lead-call small,
.crm-lead-email small,
.crm-lead-task small {
  color: #647386;
  font-size: 12px;
  font-weight: 800;
}

.crm-task-card.is-overdue {
  border: 1px solid rgba(232, 84, 62, .22);
}

/* CRM premium glass theme */
.crm-body {
  --crm-glass-strong: rgba(255, 255, 255, .72);
  --crm-glass: rgba(255, 255, 255, .56);
  --crm-glass-soft: rgba(255, 255, 255, .38);
  --crm-glass-line: rgba(255, 255, 255, .54);
  --crm-ink: #102433;
  --crm-muted: #607184;
  --crm-deep: #0a2431;
  --crm-blue: #0077c8;
  --crm-cyan: #58bfe7;
  --crm-green: #35b957;
  --crm-warm: #d8a84f;
  --crm-shadow: 0 22px 70px rgba(8, 26, 38, .16);
  --crm-shadow-soft: 0 12px 34px rgba(8, 26, 38, .10);
  min-width: 1024px;
  color: var(--crm-ink);
  background:
    linear-gradient(145deg, rgba(7, 29, 40, .96) 0%, rgba(19, 61, 78, .72) 34%, rgba(236, 245, 249, .90) 76%, rgba(247, 250, 252, .96) 100%),
    linear-gradient(90deg, #071d28, #eef5f8);
}

.crm-shell {
  color: var(--crm-ink);
}

.crm-sidebar {
  border-right: 1px solid rgba(255, 255, 255, .14);
  background:
    linear-gradient(180deg, rgba(8, 33, 45, .92), rgba(8, 26, 38, .84)),
    rgba(8, 30, 42, .80);
  box-shadow: 20px 0 80px rgba(2, 14, 22, .30);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
}

.crm-brand {
  color: rgba(255, 255, 255, .94);
}

.crm-brand img {
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .18);
}

.crm-nav a {
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(232, 244, 250, .70);
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.crm-nav a:hover,
.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);
}

.crm-main {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
    rgba(242, 247, 250, .18);
}

.crm-topbar,
.crm-access__panel,
.crm-kpis article,
.crm-panel,
.crm-order-row,
.crm-leads-head,
.crm-tasks-head,
.crm-clients-head,
.crm-lead-toolbar,
.crm-task-toolbar,
.crm-client-toolbar,
.crm-lead-summary article,
.crm-task-summary article,
.crm-client-summary article {
  border: 1px solid var(--crm-glass-line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .44)),
    var(--crm-glass);
  box-shadow: var(--crm-shadow-soft), inset 0 1px 0 rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.crm-topbar {
  min-height: 72px;
}

.crm-topbar h1,
.crm-access__panel h2,
.crm-panel__head h2,
.crm-leads-head h2,
.crm-tasks-head h2,
.crm-clients-head h2,
.crm-lead-summary strong,
.crm-task-summary strong,
.crm-client-summary strong,
.crm-kpis strong,
.crm-lead-column header strong,
.crm-task-column header strong {
  color: var(--crm-deep);
}

.crm-topbar span,
.crm-panel__head span,
.crm-kpis span,
.crm-order-row span,
.crm-access__panel span,
.crm-leads-head span,
.crm-tasks-head span,
.crm-clients-head span,
.crm-lead-toolbar span,
.crm-task-toolbar span,
.crm-client-toolbar span,
.crm-lead-summary span,
.crm-task-summary span,
.crm-client-summary span,
.crm-lead-column header span,
.crm-task-column header span,
.crm-lead-card span,
.crm-task-card span,
.crm-lead-row span,
.crm-task-row span,
.crm-client-row span,
.crm-lead-editor span,
.crm-task-editor span {
  color: rgba(65, 82, 99, .76);
  font-weight: 760;
  letter-spacing: .07em;
}

.crm-user,
.crm-panel__head a,
.crm-actions a,
.crm-empty {
  border: 1px solid rgba(255, 255, 255, .48);
  background: rgba(236, 246, 251, .56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .66);
}

.crm-user strong,
.crm-order-row strong,
.crm-lead-card strong,
.crm-task-card strong,
.crm-lead-row strong,
.crm-task-row strong,
.crm-client-row strong {
  color: var(--crm-ink);
}

.crm-access__panel button,
.crm-leads-head button,
.crm-tasks-head button,
.crm-clients-head button,
.crm-lead-editor footer button[type="submit"],
.crm-task-editor footer button[type="submit"] {
  background:
    linear-gradient(135deg, rgba(0, 119, 200, .98), rgba(21, 146, 199, .90)),
    var(--crm-blue);
  box-shadow: 0 12px 28px rgba(0, 111, 186, .24), inset 0 1px 0 rgba(255, 255, 255, .26);
}

.crm-lead-card button,
.crm-lead-row button,
.crm-lead-table__head button,
.crm-task-card button,
.crm-task-row button,
.crm-client-row button,
.crm-lead-viewer footer button,
.crm-lead-editor footer button,
.crm-task-editor footer button {
  border: 1px solid rgba(255, 255, 255, .50);
  background: rgba(236, 246, 251, .62);
  color: #0068ad;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.crm-lead-toolbar input,
.crm-lead-toolbar select,
.crm-lead-table__head input,
.crm-lead-table__head select,
.crm-task-toolbar input,
.crm-task-toolbar select,
.crm-client-toolbar input,
.crm-client-toolbar select,
.crm-lead-form-grid input,
.crm-lead-form-grid select,
.crm-lead-form-grid textarea,
.crm-task-form-grid input,
.crm-task-form-grid select,
.crm-task-form-grid textarea,
.crm-lead-row select,
.crm-task-row select {
  border-color: rgba(15, 45, 58, .10);
  background: rgba(255, 255, 255, .70);
  color: var(--crm-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.crm-lead-toolbar input:focus,
.crm-lead-toolbar select:focus,
.crm-lead-table__head input:focus,
.crm-lead-table__head select:focus,
.crm-task-toolbar input:focus,
.crm-task-toolbar select:focus,
.crm-client-toolbar input:focus,
.crm-client-toolbar select:focus,
.crm-lead-form-grid input:focus,
.crm-lead-form-grid select:focus,
.crm-lead-form-grid textarea:focus,
.crm-task-form-grid input:focus,
.crm-task-form-grid select:focus,
.crm-task-form-grid textarea:focus {
  outline: 2px solid rgba(0, 119, 200, .24);
  border-color: rgba(0, 119, 200, .34);
}

.crm-lead-column,
.crm-task-column {
  border: 1px solid rgba(255, 255, 255, .42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .34), rgba(234, 244, 249, .24)),
    rgba(226, 238, 244, .38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .52);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.crm-lead-card,
.crm-task-card,
.crm-lead-row,
.crm-task-row,
.crm-client-row {
  border: 1px solid rgba(255, 255, 255, .58);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .52)),
    rgba(255, 255, 255, .62);
  box-shadow: 0 10px 28px rgba(8, 26, 38, .07), inset 0 1px 0 rgba(255, 255, 255, .80);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.crm-lead-row:hover,
.crm-task-row:hover,
.crm-client-row:hover,
.crm-lead-card:hover,
.crm-task-card:hover {
  border-color: rgba(88, 191, 231, .42);
  box-shadow: 0 16px 38px rgba(8, 26, 38, .10), inset 0 1px 0 rgba(255, 255, 255, .88);
}

.crm-lead-card small,
.crm-task-card small,
.crm-lead-row small,
.crm-task-row small,
.crm-client-row small,
.crm-lead-card p,
.crm-task-card p,
.crm-empty {
  color: var(--crm-muted);
}

.crm-lead-card mark,
.crm-task-card mark {
  border: 1px solid rgba(0, 119, 200, .12);
  background: rgba(0, 119, 200, .10);
  color: #0068ad;
}

.crm-lead-card mark.is-high,
.crm-task-card mark.is-high {
  border-color: rgba(216, 86, 64, .14);
  background: rgba(232, 84, 62, .12);
  color: #b73825;
}

.crm-lead-card mark.is-low,
.crm-task-card mark.is-low {
  border-color: rgba(53, 185, 87, .16);
  background: rgba(53, 185, 87, .12);
  color: #187535;
}

.crm-lead-table__head,
.crm-client-table__head {
  border-bottom-color: rgba(15, 45, 58, .08);
}

.crm-lead-table__head span,
.crm-client-table__head span {
  color: rgba(65, 82, 99, .70);
  font-weight: 760;
}

.crm-source-badge {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .60);
}

.crm-lead-editor,
.crm-lead-viewer,
.crm-task-editor {
  background:
    linear-gradient(90deg, rgba(7, 29, 40, .44), rgba(7, 29, 40, .24)),
    rgba(5, 18, 27, .30);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.crm-lead-editor__panel,
.crm-lead-viewer__panel,
.crm-task-editor__panel {
  border-left: 1px solid rgba(255, 255, 255, .54);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(244, 249, 252, .70)),
    rgba(255, 255, 255, .76);
  box-shadow: -28px 0 88px rgba(5, 18, 27, .22), inset 1px 0 0 rgba(255, 255, 255, .80);
  backdrop-filter: blur(22px) saturate(1.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
}

.crm-lead-viewer__hero,
.crm-lead-viewer__section,
.crm-lead-call,
.crm-lead-email,
.crm-lead-task {
  border-color: rgba(255, 255, 255, .56);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(238, 247, 251, .48)),
    rgba(248, 251, 253, .58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .76);
}

@media (max-width: 1180px) {
  .crm-shell {
    grid-template-columns: 240px minmax(0, 1fr);
  }

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

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

@media (max-width: 760px) {
  .crm-body {
    min-width: 0;
  }

  .crm-shell {
    grid-template-columns: 1fr;
  }

  .crm-sidebar {
    position: static;
    height: auto;
  }

  .crm-main {
    padding: 14px;
  }

  .crm-topbar,
  .crm-order-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .crm-topbar {
    display: grid;
    padding: 18px;
  }

  .crm-user {
    width: 100%;
    text-align: left;
  }

  .crm-kpis {
    grid-template-columns: 1fr;
  }

}

/* B2B product photos often arrive as JPG/PNG on white. This surface keeps
   the UI softly tinted while letting embedded white backgrounds blend away. */
: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.is-catalog-open::before {
  opacity: 1;
  pointer-events: auto;
}

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);
}

body.is-account-menu-open::before {
  opacity: 0;
  pointer-events: none;
}

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;
}

body.has-admin-toolbar {
  --admin-toolbar-offset: 36px;
  padding-top: var(--admin-toolbar-offset);
}

@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;
  }

  body.has-admin-toolbar {
    --admin-toolbar-offset: 34px;
  }
}

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

.topline__inner,
.header-main,
.category-nav,
main {
  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 {
  position: absolute;
  top: calc(100% + 16px);
  right: 162px;
  z-index: 93;
  width: 300px;
  padding: 10px;
  border: 1px solid rgba(0, 111, 186, .13);
  border-radius: 18px;
  background:
    radial-gradient(ellipse 70% 30% at 76% 12%, rgba(53, 185, 87, .12), rgba(53, 185, 87, 0) 72%),
    radial-gradient(ellipse at 24% 14%, rgba(255, 255, 255, .94), rgba(255, 255, 255, 0) 58%),
    linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(246, 249, 252, .62));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .72),
    0 18px 48px rgba(15, 23, 42, .10),
    0 12px 38px rgba(53, 185, 87, .10);
  backdrop-filter: blur(22px) saturate(1.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
  opacity: 0;
  transform: translateY(8px) scale(.985);
  transform-origin: top right;
  transition: opacity 160ms ease, transform 180ms cubic-bezier(.2, .8, .2, 1);
}

.account-popover[hidden] {
  display: none;
}

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

.account-popover::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 54px;
  width: 16px;
  height: 16px;
  border-left: 1px solid rgba(0, 111, 186, .13);
  border-top: 1px solid rgba(0, 111, 186, .13);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(246, 249, 252, .70));
  transform: rotate(45deg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.account-popover__head {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 12px 13px;
  border-radius: 14px;
  background:
    radial-gradient(ellipse 86% 42% at 78% 24%, rgba(53, 185, 87, .18), rgba(53, 185, 87, .07) 48%, rgba(53, 185, 87, 0) 82%),
    rgba(255, 255, 255, .56);
  border: 1px solid rgba(0, 111, 186, .11);
}

.account-popover__head span {
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.account-popover__head strong {
  min-width: 0;
  color: var(--blue-dark);
  font-size: 17px;
  line-height: 1.18;
  font-weight: 850;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-popover__nav {
  display: grid;
  gap: 2px;
  padding: 8px 0;
}

.account-popover__nav a,
.account-popover__foot button {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0);
  color: #223142;
  font-size: 13px;
  font-weight: 760;
  text-align: left;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.account-popover__nav a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: .42;
  transform: rotate(45deg);
}

.account-popover__nav a:hover,
.account-popover__foot button:hover {
  border-color: rgba(0, 111, 186, .10);
  background:
    radial-gradient(ellipse 70% 30% at 80% 50%, rgba(0, 111, 186, .08), rgba(0, 111, 186, 0) 80%),
    rgba(255, 255, 255, .48);
  color: var(--blue);
  transform: translateX(2px);
}

.account-popover__foot {
  display: grid;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid rgba(17, 24, 39, .08);
}

.account-popover__foot button:last-child {
  color: #b42318;
}

.account-popover__foot button:last-child:hover {
  background: rgba(180, 35, 24, .08);
  color: #b42318;
}

body.is-account-menu-open::before {
  opacity: 0;
  pointer-events: none;
}

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 {
  position: fixed;
  inset: 0;
  z-index: 120;
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0;
  transform: none;
  pointer-events: none;
  transition: opacity 180ms ease;
}

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

.account-popover::before {
  content: none;
}

.account-popover__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(0, 111, 186, .18), transparent 34rem),
    radial-gradient(circle at 78% 16%, rgba(53, 185, 87, .10), transparent 24rem),
    rgba(15, 23, 42, .34);
  backdrop-filter: blur(10px) saturate(1.04);
  -webkit-backdrop-filter: blur(10px) saturate(1.04);
}

.account-popover__panel {
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  width: min(430px, calc(100vw - 28px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  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(53, 185, 87, .10), 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(53, 185, 87, .12);
  backdrop-filter: blur(30px) saturate(1.16);
  -webkit-backdrop-filter: blur(30px) saturate(1.16);
  transform: translateX(14px) scale(.985);
  transform-origin: right center;
  transition: transform 180ms cubic-bezier(.2, .8, .2, 1);
}

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

.account-popover__top {
  min-height: 62px;
  padding: 0 18px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(226, 232, 240, .68);
  background: rgba(255, 255, 255, .42);
}

.account-popover__top h2 {
  margin: 0;
  color: #111827;
  font-size: 25px;
  line-height: 1;
  font-weight: 780;
}

.account-popover__top button {
  position: relative;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  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;
  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);
}

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

.account-popover__top button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.account-popover__top button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.account-popover__body {
  min-height: 0;
  padding: 14px 18px 18px;
  overflow: auto;
  scrollbar-color: rgba(0, 111, 186, .28) transparent;
}

.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;
}

.checkout-line__qty input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  color: #111827;
  text-align: center;
  font: inherit;
  font-size: 16px;
  font-weight: 780;
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
}

.checkout-line__qty input::-webkit-outer-spin-button,
.checkout-line__qty 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;
}

@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);
  }
}

.sale { color: var(--green) !important; }

.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__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"] {
  width: 100%;
  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 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 {
  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__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;
}

main {
  padding: 18px 0 72px;
}

.hero-grid {
  --hero-panel-height: clamp(248px, calc((100vh - 362px) * .75), 294px);
  display: grid;
  grid-template-columns: 300px minmax(540px, 1fr) 300px;
  gap: 16px;
  align-items: stretch;
}

.control-panel,
.status-panel,
.hero-card,
.trust-strip,
.category-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
}

.control-panel,
.status-panel {
  min-height: var(--hero-panel-height);
  padding: 24px;
  border-radius: 18px;
}

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

.control-panel h2 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 560;
}

.control-panel a {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  color: #263241;
  font-weight: 500;
  letter-spacing: -.01em;
}

.control-panel svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.control-panel a:nth-of-type(2) svg {
  color: var(--green);
}

.tech-blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 18px;
  min-height: 350px;
  margin: 0 var(--gutter) 18px;
  align-items: stretch;
}

.tech-blog-hero__copy,
.tech-blog-hero__media,
.tech-blog-toolbar,
.tech-blog-tabs,
.tech-blog-section,
.tech-blog-empty {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
}

.tech-blog-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 58px);
  border-radius: 22px;
}

.tech-blog-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--accent-font);
  font-size: clamp(42px, 4.9vw, 82px);
  line-height: .98;
  font-weight: 650;
  letter-spacing: 0;
}

.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-hero__media {
  min-height: 350px;
  overflow: hidden;
  border-radius: 22px;
  background: #dcebf1;
}

.tech-blog-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tech-blog-toolbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 var(--gutter) 14px;
  padding: 14px 18px;
  border-radius: 18px;
}

.tech-blog-toolbar div {
  display: grid;
  gap: 4px;
}

.tech-blog-toolbar span,
.tech-blog-section__head span,
.tech-blog-card small,
.tech-blog-empty span {
  color: #6b7888;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.tech-blog-toolbar strong {
  color: var(--blue-dark);
  font-size: 20px;
  line-height: 1.15;
}

.tech-blog-toolbar label {
  min-width: min(420px, 100%);
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(0, 111, 186, .16);
  border-radius: 14px;
  background: rgba(244, 247, 249, .86);
}

.tech-blog-toolbar svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
}

.tech-blog-toolbar input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

.tech-blog-tabs {
  display: flex;
  gap: 8px;
  margin: 0 var(--gutter) 18px;
  padding: 10px;
  overflow-x: auto;
  border-radius: 18px;
  scrollbar-width: thin;
}

.tech-blog-tabs button {
  min-height: 40px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: #334155;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.tech-blog-tabs button span {
  color: #718096;
  font-size: 12px;
  font-weight: 800;
}

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

.tech-blog-sections {
  display: grid;
  gap: 18px;
  margin: 0 var(--gutter);
}

.tech-blog-section,
.tech-blog-empty {
  border-radius: 22px;
  padding: clamp(18px, 2.2vw, 30px);
}

.tech-blog-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.tech-blog-section h2 {
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--accent-font);
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
}

.tech-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.tech-blog-card {
  min-height: 264px;
  display: grid;
  grid-template-rows: 150px 1fr;
  overflow: hidden;
  border: 1px solid rgba(191, 213, 224, .56);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 64%),
    #f7fbfd;
  color: var(--ink);
  box-shadow:
    0 14px 34px rgba(25, 52, 70, .055),
    inset 0 1px 0 rgba(255, 255, 255, .78);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.tech-blog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(126, 178, 205, .58);
  box-shadow:
    0 18px 42px rgba(25, 52, 70, .085),
    inset 0 1px 0 rgba(255, 255, 255, .84);
}

.tech-blog-card__image {
  position: relative;
  z-index: 0;
  display: block;
  overflow: hidden;
  contain: paint;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 34%, rgba(226, 239, 245, .58), rgba(255, 255, 255, 0) 64%),
    #f7fbfd;
}

.tech-blog-card__image::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 1px;
  background: rgba(180, 202, 214, .54);
  pointer-events: none;
}

.tech-blog-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 12px;
  opacity: 0;
  filter: saturate(.96) brightness(.99) contrast(1.02);
  mix-blend-mode: multiply;
  transform: translateZ(0);
  transition: opacity 140ms ease;
}

.tech-blog-card__image img.is-loaded {
  opacity: 1;
}

.tech-blog-card__body {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
  align-content: stretch;
  min-height: 0;
  padding: 18px;
  background: #f7fbfd;
}

.tech-blog-card strong {
  color: #1d2938;
  font-size: 16px;
  line-height: 1.36;
  font-weight: 650;
  letter-spacing: 0;
}

.tech-blog-card small {
  align-self: end;
  color: rgba(87, 104, 118, .76);
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.tech-blog-empty {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 48px 20px;
  text-align: center;
}

.tech-blog-empty strong {
  color: var(--blue-dark);
  font-size: 22px;
}

.tech-blog-card--loading {
  min-height: 264px;
  background:
    linear-gradient(90deg, rgba(241, 245, 249, .72), rgba(255, 255, 255, .98), rgba(241, 245, 249, .72));
  background-size: 220% 100%;
  animation: tech-blog-loading 1.1s ease-in-out infinite;
}

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

@media (max-width: 760px) {
  .tech-blog-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    margin: 0 12px 12px;
  }

  .tech-blog-hero__copy {
    min-height: 286px;
    padding: 24px;
  }

  .tech-blog-hero h1 {
    font-size: clamp(34px, 13vw, 54px);
  }

  .tech-blog-hero p:not(.eyebrow) {
    font-size: 15px;
  }

  .tech-blog-hero__media {
    min-height: 220px;
  }

  .tech-blog-toolbar {
    display: grid;
    margin: 0 12px 10px;
  }

  .tech-blog-tabs,
  .tech-blog-sections {
    margin-left: 12px;
    margin-right: 12px;
  }

  .tech-blog-grid {
    grid-template-columns: 1fr;
  }

  .tech-blog-section__head {
    display: grid;
    align-items: start;
  }
}

.files-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 18px;
  min-height: 330px;
  margin: 0 var(--gutter) 18px;
  align-items: stretch;
}

.files-hero__copy,
.files-hero__media,
.files-toolbar,
.files-section,
.files-empty {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.files-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 58px);
  border-radius: 22px;
}

.files-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--accent-font);
  font-size: clamp(42px, 4.6vw, 76px);
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0;
}

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

.files-hero__media {
  min-height: 330px;
  overflow: hidden;
  border-radius: 22px;
  background: #e8f1f5;
}

.files-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.files-toolbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 var(--gutter) 18px;
  padding: 14px 18px;
  border-radius: 18px;
}

.files-toolbar div {
  display: grid;
  gap: 4px;
}

.files-toolbar span,
.files-section__head span,
.files-card small,
.files-empty span {
  color: #6b7888;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.files-toolbar strong {
  color: var(--blue-dark);
  font-size: 20px;
  line-height: 1.15;
}

.files-toolbar label {
  min-width: min(420px, 100%);
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(0, 111, 186, .16);
  border-radius: 14px;
  background: rgba(244, 247, 249, .86);
}

.files-toolbar svg,
.files-card__arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.files-toolbar svg {
  color: var(--blue);
}

.files-toolbar input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

.files-sections {
  display: grid;
  gap: 18px;
  margin: 0 var(--gutter) 42px;
}

.files-section,
.files-empty {
  border-radius: 22px;
  padding: clamp(18px, 2.2vw, 30px);
}

.files-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.files-section h2 {
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--accent-font);
  font-size: clamp(24px, 2.3vw, 36px);
  line-height: 1.08;
  letter-spacing: 0;
}

.files-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.files-card {
  min-height: 132px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 38px;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(17, 24, 39, .10);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.files-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 111, 186, .25);
  box-shadow: 0 18px 38px rgba(15, 23, 42, .12);
}

.files-card__icon {
  width: 62px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(0, 111, 186, .10);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.files-card__body {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.files-card strong {
  color: #172233;
  font-size: 17px;
  line-height: 1.28;
  font-weight: 850;
}

.files-card small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0;
}

.files-card__arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
}

.files-empty {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 48px 20px;
  text-align: center;
}

.files-empty strong {
  color: var(--blue-dark);
  font-size: 22px;
}

.files-card--loading {
  min-height: 132px;
  background:
    linear-gradient(90deg, rgba(241, 245, 249, .72), rgba(255, 255, 255, .98), rgba(241, 245, 249, .72));
  background-size: 220% 100%;
  animation: tech-blog-loading 1.1s ease-in-out infinite;
}

@media (max-width: 760px) {
  .files-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    margin: 0 12px 12px;
  }

  .files-hero__copy {
    min-height: 260px;
    padding: 24px;
  }

  .files-hero h1 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .files-hero p:not(.eyebrow) {
    font-size: 15px;
  }

  .files-hero__media {
    min-height: 210px;
  }

  .files-toolbar {
    display: grid;
    margin: 0 12px 12px;
  }

  .files-sections {
    margin-left: 12px;
    margin-right: 12px;
  }

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

  .files-card {
    grid-template-columns: 54px minmax(0, 1fr) 36px;
  }

  .files-card__icon {
    width: 54px;
    height: 64px;
  }
}

.template-page {
  margin: 0 var(--gutter) 42px;
}

.template-page-hero,
.template-page-layout,
.template-page-loading,
.template-page-empty,
.template-block {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.template-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 18px;
  min-height: 360px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 22px;
}

.template-page-hero--service {
  grid-template-columns: 1fr;
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(247, 251, 253, .9)),
    #fff;
}

.template-page-hero--service .template-page-hero__copy {
  justify-content: center;
}

.template-page-hero--service h1 {
  max-width: 920px;
  font-size: clamp(42px, 4vw, 68px);
}

.template-page-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: clamp(28px, 4vw, 58px);
}

.template-page-back {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.template-page-back::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
}

.template-page-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--accent-font);
  font-size: clamp(38px, 4.4vw, 74px);
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0;
}

.template-page-hero time {
  color: #64748b;
  font-size: 14px;
  font-weight: 800;
}

.template-page-hero__media {
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 22px;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255, 255, 255, .28), rgba(255, 255, 255, 0) 58%),
    #e8f1f5;
}

.template-page-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(1.02) contrast(1.015);
}

.template-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  margin-bottom: 18px;
  padding: clamp(22px, 3vw, 42px);
  border-radius: 22px;
}

.template-page-content {
  color: #243244;
  font-size: 18px;
  line-height: 1.72;
}

.template-page-content > *:first-child {
  margin-top: 0;
}

.template-page-content > *:last-child {
  margin-bottom: 0;
}

.template-page-content h2,
.template-page-content h3,
.template-page-content h1,
.template-block h2 {
  color: var(--blue-dark);
  font-family: var(--accent-font);
  line-height: 1.12;
  letter-spacing: 0;
}

.template-page-content h1 {
  margin: 0 0 22px;
  font-size: clamp(30px, 2.5vw, 44px);
  font-weight: 620;
}

.template-page-content h2 {
  margin: 34px 0 14px;
  font-size: clamp(26px, 2.2vw, 38px);
  font-weight: 600;
}

.template-page-content h3 {
  margin: 28px 0 12px;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 570;
}

.template-page-content small {
  font-size: inherit;
  font-weight: inherit;
}

.template-page-content p,
.template-page-content ul,
.template-page-content ol,
.template-page-content table {
  margin: 0 0 18px;
}

.template-page-content ul,
.template-page-content ol {
  padding-left: 1.25em;
}

.template-page-content li + li {
  margin-top: 8px;
}

.template-page-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 24px auto;
  border-radius: 8px;
}

.template-page-content a {
  color: var(--blue);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.template-page-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
}

.template-page-content th,
.template-page-content td {
  padding: 12px;
  border: 1px solid var(--line);
  vertical-align: top;
}

.template-page-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.template-page-actions a,
.template-page-actions button,
.template-cta button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(0, 111, 186, .16);
  border-radius: 8px;
  background: #fff;
  color: var(--blue-dark);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.template-page-actions button,
.template-cta button {
  background: var(--blue);
  color: #fff;
}

.template-block {
  margin-bottom: 18px;
  padding: clamp(22px, 2.6vw, 36px);
  border-radius: 22px;
}

.template-block h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.3vw, 36px);
}

.template-faq {
  display: grid;
  gap: 10px;
}

.template-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.template-faq summary {
  min-height: 50px;
  padding: 14px 16px;
  color: #172233;
  font-weight: 850;
  cursor: pointer;
}

.template-faq details div {
  padding: 0 16px 16px;
  color: #4b5b6d;
  line-height: 1.62;
}

.template-materials,
.template-contacts,
.template-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.template-material,
.template-contacts article,
.template-products a {
  min-height: 116px;
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 14px;
  border: 1px solid rgba(17, 24, 39, .10);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.template-material img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  background: #eef5f8;
  border-radius: 8px;
}

.template-material strong,
.template-contacts strong,
.template-products strong {
  color: #172233;
  font-size: 16px;
  line-height: 1.28;
}

.template-contacts span,
.template-products span {
  color: #64748b;
  font-size: 13px;
  font-weight: 750;
}

.template-contacts a {
  color: var(--blue);
  font-weight: 800;
}

.template-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.template-cta h2 {
  margin: 0;
}

.template-page-loading,
.template-page-empty {
  min-height: 320px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 850;
  text-align: center;
}

.template-page-empty {
  gap: 8px;
}

.template-page-empty span {
  max-width: 520px;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .template-page-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .template-page {
    margin: 0 12px 28px;
  }

  .template-page-hero {
    min-height: 0;
  }

  .template-page-hero__copy {
    padding: 24px;
  }

  .template-page-hero h1 {
    font-size: clamp(32px, 11vw, 50px);
  }

  .template-page-hero img {
    min-height: 220px;
  }

  .template-page-layout,
  .template-block {
    padding: 20px;
  }

  .template-page-actions {
    grid-template-columns: 1fr;
  }

  .template-page-content {
    font-size: 16px;
  }

  .template-cta {
    display: grid;
  }
}

.hero-card {
  min-height: var(--hero-panel-height);
  display: block;
  overflow: hidden;
  border-radius: 22px;
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .84), rgba(235, 246, 252, .78));
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12, 28, 43, .24), rgba(12, 28, 43, .04) 44%, rgba(255, 255, 255, .12)),
    radial-gradient(ellipse at 24% 28%, rgba(255, 255, 255, .28), transparent 36%),
    radial-gradient(ellipse at 74% 74%, rgba(0, 111, 186, .14), transparent 42%);
  z-index: 1;
}

.hero-banner__image-link {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-banner__image-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.012);
  transition: opacity .22s ease, transform .22s ease;
}

.hero-card__copy {
  width: auto;
  position: absolute;
  left: clamp(18px, 2vw, 28px);
  right: clamp(18px, 2vw, 28px);
  bottom: clamp(18px, 2vw, 28px);
  z-index: 2;
  padding: clamp(16px, 1.8vw, 22px) clamp(18px, 2.2vw, 28px);
  border: 1px solid rgba(214, 232, 242, .72);
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 22% 8%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 60%),
    rgba(255, 255, 255, .34);
  box-shadow:
    0 24px 56px rgba(6, 24, 38, .22),
    inset 0 1px 0 rgba(255, 255, 255, .76);
  backdrop-filter: blur(16px) saturate(1.08);
}

.hero-card h1 {
  font-family: var(--accent-font);
  max-width: min(520px, 62%);
  min-height: 0;
  margin: 0;
  color: #101827;
  font-size: clamp(23px, 1.9vw, 35px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 430;
  transition: opacity .2s ease, transform .2s ease;
}

.hero-card blockquote,
.company-section h1,
.company-section h2,
.about-section h1,
.about-section h2,
.client-quote,
.testimonial-quote {
  font-family: var(--accent-font);
  font-weight: 500;
}

.hero-actions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.primary-action,
.secondary-action {
  min-height: 46px;
  padding-inline: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: start;
  border-radius: 12px;
  font-weight: 650;
}

.primary-action {
  min-width: 0;
  min-height: 32px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(0, 111, 186, .82);
  text-shadow: none;
  box-shadow: none;
  font-size: 16px;
  font-weight: 430;
}

.primary-action::after {
  content: none;
}

.hero-card .primary-action,
.hero-card .primary-action:hover,
.hero-card .primary-action:focus-visible {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(0, 111, 186, .82);
  box-shadow: none;
  transform: none;
  text-shadow: none;
}

.hero-card .primary-action::before,
.hero-card .primary-action::after,
.hero-actions .primary-action::before,
.hero-actions .primary-action::after {
  content: none;
  display: none;
}

.hero-actions .primary-action {
  appearance: none;
  min-width: 0;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  box-shadow: none;
  outline-offset: 4px;
}

.hero-card .hero-slide-link,
.hero-card .hero-slide-link:hover,
.hero-card .hero-slide-link:focus-visible {
  position: relative;
  z-index: 0;
  width: 42px;
  height: 30px;
  min-width: 42px;
  min-height: 30px;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(28, 150, 65, .94);
  font-size: 0;
  line-height: 0;
  text-decoration: none;
  box-shadow: none;
  transform: none;
}

.hero-card .hero-slide-link::before,
.hero-card .hero-slide-link::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
}

.hero-card .hero-slide-link::before {
  width: 58px;
  height: 28px;
  right: -7px;
  top: -1px;
  background: radial-gradient(ellipse at 72% 45%, rgba(70, 202, 107, .50), rgba(70, 202, 107, .16) 44%, rgba(70, 202, 107, 0) 72%);
  filter: blur(11px);
}

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

.hero-card .hero-slide-link 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));
}

.hero-card .hero-slide-link:hover,
.hero-card .hero-slide-link:focus-visible {
  background: transparent;
  color: rgba(20, 134, 55, 1);
  box-shadow: none;
}

.hero-card .hero-slide-link:hover::before,
.hero-card .hero-slide-link:focus-visible::before {
  filter: blur(12px);
  opacity: 1.12;
}

.hero-card__copy:hover .hero-slide-link::before,
.hero-card__copy:focus-within .hero-slide-link::before {
  background: radial-gradient(ellipse at 72% 45%, rgba(70, 202, 107, .82), rgba(70, 202, 107, .32) 44%, rgba(70, 202, 107, 0) 72%);
  filter: blur(10px);
}

.hero-card__copy:hover .hero-slide-link svg,
.hero-card__copy:focus-within .hero-slide-link svg {
  filter: drop-shadow(0 0 16px rgba(53, 185, 87, .52));
}

.secondary-action {
  border: 1px solid rgba(0, 111, 186, .2);
  color: var(--blue);
}

.hero-slider.is-changing h1,
.hero-slider.is-changing .hero-banner__image-link img {
  opacity: .28;
  transform: scale(1.03);
}

.hero-slider__dots {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.hero-slider__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 111, 186, .28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .68),
    0 1px 0 rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
}

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

.status-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.metric strong {
  font-family: var(--accent-font);
  display: block;
  font-size: 27px;
  line-height: 1;
  font-weight: 600;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.35;
  font-weight: 400;
}

.status-panel a {
  margin-top: auto;
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  font-weight: 650;
}

.trust-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 18px;
  overflow: hidden;
}

.trust-strip div {
  min-height: 92px;
  padding: 22px 26px;
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-weight: 560;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.35;
  font-weight: 400;
}

.partners-carousel {
  display: block;
  position: relative;
  height: 180px;
  min-height: 180px;
  border: 0;
  border-radius: 16px;
  background: #e4eaec;
  box-shadow:
    0 18px 52px rgba(54, 84, 98, .06),
    inset 0 1px 0 rgba(255, 255, 255, .34);
  backdrop-filter: blur(16px) saturate(112%);
  -webkit-backdrop-filter: blur(16px) saturate(112%);
  overflow: hidden;
}

.partners-carousel__loading {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partners-carousel__viewport {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 0;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  touch-action: pan-y;
}

.trust-strip.partners-carousel .partners-carousel__viewport,
.trust-strip.partners-carousel .partners-carousel__track {
  min-height: 0;
  padding: 0;
}

.partners-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.partners-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.partners-carousel__viewport.is-dragging .partners-carousel__card {
  pointer-events: none;
}

.partners-carousel__track {
  min-height: 0;
  padding: 0;
}

.partners-carousel__viewport::before,
.partners-carousel__viewport::after {
  content: none;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 52px;
  pointer-events: none;
}

.partners-carousel__viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(225, 244, 252, .96), rgba(225, 244, 252, 0));
}

.partners-carousel__viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(225, 244, 252, .96), rgba(225, 244, 252, 0));
}

.partners-carousel__track {
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 100%;
  width: max-content;
}

.partners-carousel__card {
  width: auto;
  min-width: max-content;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 0;
  border-right: 0;
  background: transparent;
  color: #111827;
  user-select: none;
}

.trust-strip.partners-carousel .partners-carousel__card {
  min-height: 0;
  padding: 0;
}

.partners-carousel__card img {
  width: 240px;
  max-width: none;
  height: 180px;
  max-height: none;
  display: block;
  object-fit: contain;
  filter: saturate(.94) brightness(.99) contrast(1.01);
  opacity: .98;
  mix-blend-mode: multiply;
  transition: transform .28s ease, filter .28s ease, opacity .28s ease;
  -webkit-user-drag: none;
}

.partners-carousel__card:hover img,
.partners-carousel__card:focus-visible img {
  transform: scale(1.04);
  filter: saturate(.86) brightness(.94) contrast(1.07);
  opacity: .98;
}

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

.section-heading h2 {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 540;
}

.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;
}

.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 {
  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[hidden] {
  display: none;
}

.category-view-switch button {
  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 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;
}

.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-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 {
  overflow: hidden;
}

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;
}

.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);
}

.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--hero {
  width: min(100%, 680px);
  height: 52px;
  margin-bottom: 12px;
}

.category-skeleton-line--hero-short {
  width: min(72%, 480px);
  height: 52px;
}

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

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

.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: 3;
  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: 84%;
  height: 138px;
  justify-self: center;
  border-radius: 24px;
  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;
  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;
}

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

.spec-skeleton-row,
.file-skeleton-card,
.review-skeleton-card {
  border: 1px solid rgba(17, 24, 39, .08);
  background: #fff;
}

.spec-skeleton-row {
  min-height: 58px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
}

.file-skeleton-card {
  min-height: 92px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border-radius: 18px;
}

.review-skeleton-card {
  min-height: 132px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  border-radius: 20px;
}

.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);
}

.review-jump {
  position: absolute;
  top: 16px;
  right: 22px;
  min-width: 46px;
  height: 38px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(0, 111, 186, .14);
  border-radius: 13px;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.review-jump:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, .08);
}

.review-jump svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.9;
}

.review-jump__count,
.review-jump__rating {
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.review-jump__count {
  background: rgba(0, 111, 186, .10);
  color: var(--blue);
}

.review-jump__rating {
  background: rgba(53, 185, 87, .12);
  color: var(--green);
}

.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;
}

.copyable-title {
  position: relative;
  cursor: copy;
  border-radius: 12px;
  transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, padding-inline 160ms ease;
}

.copyable-title::after {
  content: "Скопіювати";
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  padding: 6px 10px;
  border: 1px solid rgba(0, 111, 186, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  color: var(--blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.copyable-title:hover,
.copyable-title:focus-visible {
  padding-inline: 8px;
  background: rgba(237, 245, 251, .72);
  color: var(--blue);
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(0, 111, 186, .10);
}

.copyable-title:hover::after,
.copyable-title:focus-visible::after,
.copyable-title.is-copied::after {
  opacity: 1;
  transform: translateY(0);
}

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

.copyable-title {
  flex: 0 1 auto;
  width: fit-content;
  max-width: 100%;
  transform-origin: left center;
  transition: color 160ms ease, font-weight 160ms ease, transform 160ms ease, letter-spacing 160ms ease;
}

.copyable-title::after {
  display: none;
}

.copyable-title[data-copy-hint]::after,
.copyable-value[data-copy-hint]::after {
  content: attr(data-copy-hint);
  position: absolute;
  left: 0;
  bottom: calc(100% + 7px);
  display: block;
  width: max-content;
  max-width: 260px;
  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;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .07);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.copyable-title[data-copy-hint]::after {
  left: min(var(--copy-hint-x, 100%), calc(100% - 12px));
  right: auto;
  transform: translate(-50%, 4px);
}

.copyable-title[data-copy-hint]:hover::after,
.copyable-title[data-copy-hint]:focus-visible::after {
  transform: translate(-50%, 0);
}

.copyable-title[data-copy-hint]:hover::after,
.copyable-title[data-copy-hint]:focus-visible::after,
.copyable-value[data-copy-hint]:hover::after,
.copyable-value[data-copy-hint]:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.copyable-title:hover,
.copyable-title:focus-visible {
  padding-inline: 0;
  background: transparent;
  color: var(--blue);
  font-weight: 470;
  outline: none;
  box-shadow: none;
  transform: translateY(-2px);
}

.copyable-title.is-copied {
  color: var(--green);
  font-weight: 520;
  transform: translateY(-2px);
}

.copyable-title.is-copied::after,
.copyable-value.is-copied::after {
  content: "Скопійовано";
  color: var(--green);
  opacity: 1;
  transform: translateY(0);
}

.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;
}

.copy-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 111, 186, .14);
  border-radius: 13px;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.copy-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.copy-button.is-copied {
  background: var(--green);
  color: #fff;
}

.copy-button--title {
  flex: 0 0 auto;
  margin-top: -2px;
}

.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;
}

.copyable-value {
  position: relative;
  width: fit-content;
  cursor: copy;
  transform-origin: left center;
  transition: color 160ms ease, font-weight 160ms ease, transform 160ms ease;
}

.copyable-value:hover,
.copyable-value:focus-visible {
  color: var(--blue);
  font-weight: 760;
  outline: none;
  transform: translateY(-2px);
}

.copyable-value--small:hover,
.copyable-value--small:focus-visible {
  font-weight: 750;
}

.copyable-value.is-copied {
  color: var(--green);
  font-weight: 780;
  transform: translateY(-2px);
}

.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,
.empty-tab h2 {
  margin: 0 0 16px;
  color: #101827;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
}

.product-description p,
.empty-tab p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

.description-specs {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.description-specs div {
  min-height: 74px;
  padding: 16px 18px;
  display: grid;
  align-content: center;
  gap: 6px;
  border: 1px solid rgba(17, 24, 39, .07);
  border-radius: 16px;
  background: #fff;
}

.description-specs span {
  color: #778394;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.description-specs strong {
  color: #101827;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
}

.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;
}

.spec-toggle {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(57, 181, 74, .18);
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.spec-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .08);
}

.spec-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  display: inline-block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.spec-toggle-wrap {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

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

.product-card {
  padding: 28px;
}

.product-delivery-card {
  margin-top: 24px;
}

.section-heading--compact {
  margin-bottom: 20px;
}

.section-heading--compact h2 {
  font-size: 28px;
}

.spec-row {
  min-height: 72px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, .07);
  border-radius: 16px;
  background: #fff;
}

.spec-row:nth-child(odd) span,
.spec-row:nth-child(odd) strong {
  background: #fff;
}

.spec-row.is-extra {
  display: none;
}

.spec-table.is-expanded .spec-row.is-extra {
  display: grid;
}

.spec-row span {
  color: #5c6878;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
}

.spec-row strong {
  color: #101827;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

.spec-row span,
.spec-row strong {
  min-height: 72px;
  padding: 15px 16px;
  display: flex;
  align-items: center;
}

.files-panel,
.reviews-panel {
  display: grid;
  gap: 18px;
}

.files-list {
  display: grid;
  gap: 18px;
}

.files-panel h2 {
  margin: 0 0 10px;
  color: #101827;
  font-size: 28px;
  font-weight: 500;
}

.file-card {
  min-height: 92px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.file-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .08);
}

.file-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #edf5fb;
  color: var(--blue);
}

.file-card__icon svg {
  width: 32px;
  height: 32px;
}

.file-card strong {
  display: block;
  color: #101827;
  font-size: 18px;
  font-weight: 700;
}

.file-card small {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-size: 15px;
  font-weight: 700;
}

.file-card small::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.files-empty {
  padding: 22px 24px;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 20px;
  background: #fff;
  color: #6b7687;
  font-size: 16px;
  font-weight: 500;
}

.reviews-summary {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: 18px;
  background: #fff;
}

.reviews-list {
  display: grid;
  gap: 14px;
}

.reviews-empty {
  padding: 22px 24px;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 20px;
  background: #fff;
  color: #6b7687;
  font-size: 16px;
  font-weight: 500;
}

.reviews-summary strong {
  color: #101827;
  font-size: 18px;
}

.stars {
  color: var(--green);
  font-size: 24px;
  letter-spacing: .04em;
}

.review-card {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 20px;
  background: #fff;
}

.review-card strong {
  color: var(--blue);
  font-size: 18px;
}

.review-card p {
  margin: 28px 0 0;
  color: #101827;
  font-size: 18px;
}

.review-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
}

.review-form {
  padding: 24px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 24px;
  background: #fff;
}

.review-form__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.review-form h3 {
  margin: 0;
  color: #101827;
  font-size: 22px;
  font-weight: 520;
}

.review-rating {
  display: inline-flex;
  gap: 4px;
}

.review-rating button {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #cfd8e3;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.review-rating button.is-active {
  color: var(--green);
}

.review-form label {
  display: grid;
  gap: 8px;
  color: #667386;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, .10);
  border-radius: 18px;
  background: #f8fafc;
  color: #101827;
  font: inherit;
  font-size: 16px;
  font-weight: 450;
  outline: none;
}

.review-form input {
  height: 52px;
  padding: 0 16px;
}

.review-form textarea {
  min-height: 132px;
  padding: 16px;
  resize: vertical;
}

.review-form input:focus,
.review-form textarea:focus {
  border-color: rgba(0, 113, 188, .45);
  box-shadow: 0 0 0 4px rgba(0, 113, 188, .08);
}

.review-form__submit {
  min-height: 54px;
  border: 0;
  border-radius: 18px;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 113, 188, .20);
}

.review-form.is-sending {
  opacity: .72;
  pointer-events: none;
}

.review-form__status {
  margin: 0;
  min-height: 20px;
  color: var(--green);
  font-size: 14px;
  font-weight: 650;
}

.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);
}

.builder-card {
  min-height: 404px;
  padding: 14px;
  display: grid;
  grid-template-rows: 174px 1fr auto;
  gap: 12px;
  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);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.builder-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);
}

.builder-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;
}

.builder-card__image img {
  position: relative;
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.builder-card__body {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
}

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

.builder-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;
}

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

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

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

.builder-card__action {
  position: relative;
  z-index: 0;
  width: 42px;
  height: 30px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border-radius: 999px;
  background: transparent;
  color: rgba(28, 150, 65, .94);
  box-shadow: none;
  overflow: visible;
}

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

.builder-card__action::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);
}

.builder-card__action::after {
  content: none;
}

.builder-card__action svg {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(53, 185, 87, .28));
}

.accessories-placeholder {
  min-height: 118px;
  padding: 22px;
  display: grid;
  align-content: center;
  border: 1px dashed rgba(0, 111, 186, .18);
  border-radius: 20px;
  background: #f7fafc;
}

.accessories-placeholder p {
  margin: 0;
  color: #5f6c7d;
  font-size: 16px;
  line-height: 1.55;
}

.delivery-panel {
  display: grid;
  gap: 10px;
}

.delivery-row {
  min-height: 80px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 14px;
  border: 1px solid rgba(17, 24, 39, .07);
  border-radius: 18px;
  background: #fff;
}

.delivery-row span {
  color: #687586;
  font-size: 13px;
  font-weight: 650;
}

.delivery-row strong {
  color: #101827;
  font-size: 20px;
  font-weight: 650;
}

.delivery-row small {
  grid-column: 1 / -1;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@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;
  }

  .hero-grid {
    grid-template-columns: 280px minmax(520px, 1fr) 280px;
  }

  .hero-card {
    min-height: 285px;
  }

  .hero-card h1 {
    font-size: 39px;
  }

  .hero-card__copy {
    width: auto;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 22px;
  }

  .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;
  }

  .hero-grid {
    grid-template-columns: 260px minmax(500px, 1fr) 260px;
    gap: 16px;
  }

  .control-panel,
  .status-panel {
    min-height: 263px;
    padding: 24px;
  }

  .hero-card {
    min-height: 263px;
  }

  .hero-card h1 {
    font-size: 35px;
  }

  .hero-card__copy {
    width: auto;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 20px;
  }

  .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;
  }

  .spec-row,
  .spec-row span,
  .spec-row strong {
    min-height: 66px;
  }

  .spec-row span,
  .spec-row strong {
    padding: 14px 15px;
    font-size: 13px;
  }

  .spec-row strong {
    font-size: 14px;
  }

  .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;
    padding: 16px;
    grid-template-rows: auto 92px auto;
    row-gap: 9px;
  }

  .is-category-page .category-link-card img {
    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 */
.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-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 12%, rgba(0, 111, 186, .13), rgba(0, 111, 186, 0) 30rem),
    radial-gradient(circle at 86% 20%, rgba(57, 181, 74, .10), rgba(57, 181, 74, 0) 26rem),
    linear-gradient(180deg, #f7fbfd 0%, #eef6fa 44rem, #f7fafc 100%);
}

.checkout-main {
  position: relative;
  isolation: isolate;
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.checkout-main::before {
  content: "";
  position: absolute;
  inset: 92px -28px auto;
  z-index: -1;
  height: 360px;
  border-radius: 34px;
  background:
    radial-gradient(ellipse at 18% 8%, rgba(255, 255, 255, .74), rgba(255, 255, 255, 0) 48%),
    radial-gradient(ellipse at 80% 18%, rgba(0, 111, 186, .075), rgba(0, 111, 186, 0) 52%),
    linear-gradient(135deg, rgba(255, 255, 255, .42), rgba(233, 244, 250, .22));
  pointer-events: none;
}

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

.checkout-breadcrumbs a {
  color: #7a8796;
  text-decoration: none;
}

.checkout-breadcrumbs a::after {
  content: "›";
  margin-left: 6px;
  color: #94c7a1;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.checkout-breadcrumbs span,
.checkout-breadcrumbs strong {
  color: #657384;
  font-weight: 560;
}

.checkout-title {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 18% 6%, rgba(255, 255, 255, .96), rgba(255, 255, 255, 0) 62%),
    radial-gradient(ellipse at 98% 0%, rgba(0, 111, 186, .105), rgba(0, 111, 186, 0) 58%),
    linear-gradient(135deg, rgba(255, 255, 255, .74), rgba(245, 250, 253, .54));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .94),
    inset 0 -1px 0 rgba(148, 163, 184, .08),
    0 26px 70px rgba(15, 23, 42, .10);
  backdrop-filter: blur(24px) saturate(1.12);
  -webkit-backdrop-filter: blur(24px) saturate(1.12);
}

.checkout-title span,
.checkout-panel__head span,
.checkout-summary__head span {
  color: var(--green);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.checkout-title h1 {
  margin: 6px 0 0;
  color: #101827;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: .96;
  letter-spacing: 0;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-steps li {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(226, 232, 240, .72);
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 24% 12%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 62%),
    rgba(255, 255, 255, .50);
  color: #66758a;
  font-size: 13px;
  font-weight: 760;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .86),
    0 10px 24px rgba(15, 23, 42, .045);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
}

.checkout-steps span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(238, 246, 251, .86);
  color: var(--blue);
  font-size: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .90);
}

.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;
}

.checkout-layout {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 372px;
  align-items: start;
  gap: 18px;
}

.checkout-flow {
  display: grid;
  gap: 14px;
}

.checkout-panel,
.checkout-summary,
.checkout-empty {
  border: 1px solid rgba(226, 232, 240, .76);
  border-radius: 26px;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 42%),
    radial-gradient(ellipse at 100% 6%, rgba(0, 111, 186, .055), rgba(0, 111, 186, 0) 44%),
    linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(247, 251, 253, .52));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .90),
    inset 0 -1px 0 rgba(148, 163, 184, .08),
    0 22px 58px rgba(15, 23, 42, .085);
  backdrop-filter: blur(24px) saturate(1.12);
  -webkit-backdrop-filter: blur(24px) saturate(1.12);
}

.checkout-panel {
  padding: 16px;
}

.checkout-panel__head {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(226, 232, 240, .56);
}

.checkout-panel__head h2 {
  margin: 4px 0 0;
  color: #101827;
  font-size: 23px;
  line-height: 1.08;
}

.checkout-panel__head > strong {
  padding: 8px 11px;
  border: 1px solid rgba(57, 181, 74, .16);
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 52% 50%, rgba(57, 181, 74, .14), rgba(57, 181, 74, 0) 74%),
    rgba(255, 255, 255, .54);
  color: #25783b;
  font-size: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .90);
}

.checkout-table {
  display: grid;
  gap: 8px;
}

.checkout-line {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) minmax(210px, 1fr) 116px 144px 32px;
  align-items: center;
  gap: 12px;
  padding: 11px;
  border: 1px solid rgba(226, 232, 240, .72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 6% 0%, rgba(255, 255, 255, .88), transparent 9rem),
    radial-gradient(circle at 100% 20%, rgba(0, 111, 186, .04), transparent 10rem),
    rgba(255, 255, 255, .52);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .70),
    0 10px 24px rgba(15, 23, 42, .04);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.checkout-line__title {
  min-width: 0;
  display: grid;
  gap: 4px;
  color: #101827;
  text-decoration: none;
}

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

.checkout-line__title strong {
  color: var(--blue);
  font-size: 17px;
  line-height: 1.05;
}

.checkout-line__title span {
  color: #64748b;
  font-size: 13px;
  line-height: 1.3;
}

.checkout-line__stock {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.checkout-stock {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border: 1px solid rgba(226, 232, 240, .76);
  border-radius: 999px;
  background: rgba(255, 255, 255, .50);
  color: #64748b;
  font-size: 11px;
  font-weight: 820;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .90),
    0 6px 16px rgba(15, 23, 42, .035);
}

.checkout-stock i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 14%, transparent);
}

.checkout-stock--ua {
  color: #2dbf58;
  background:
    radial-gradient(ellipse at 54% 50%, rgba(47, 199, 93, .15), rgba(47, 199, 93, 0) 72%),
    rgba(255, 255, 255, .50);
}

.checkout-stock--supplier {
  color: var(--blue);
  background:
    radial-gradient(ellipse at 54% 50%, rgba(0, 111, 186, .14), rgba(0, 111, 186, 0) 72%),
    rgba(255, 255, 255, .50);
}

.checkout-stock--eu {
  color: #7a8798;
}

.checkout-stock--empty {
  color: #9b6a16;
  background:
    radial-gradient(ellipse at 54% 50%, rgba(245, 158, 11, .13), rgba(245, 158, 11, 0) 72%),
    rgba(255, 255, 255, .50);
}

.checkout-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);
}

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

.checkout-line__qty button {
  cursor: pointer;
}

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

.checkout-line__price {
  display: grid;
  gap: 4px;
  text-align: right;
}

.checkout-line__price span {
  color: #8a97a8;
  font-size: 11px;
  font-weight: 760;
}

.checkout-line__price strong {
  color: var(--blue);
  font-size: 16px;
  font-weight: 820;
  font-variant-numeric: tabular-nums;
}

.checkout-line__remove {
  position: relative;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(220, 72, 72, .66);
  font-size: 0;
  cursor: pointer;
}

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

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

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

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

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

.checkout-profile-status {
  min-height: 36px;
  margin: -2px 0 12px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(226, 232, 240, .68);
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 12% 50%, rgba(0, 111, 186, .10), rgba(0, 111, 186, 0) 56%),
    rgba(255, 255, 255, .46);
  color: #64748b;
  font-size: 13px;
  font-weight: 760;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px) saturate(1.06);
  -webkit-backdrop-filter: blur(14px) saturate(1.06);
}

.checkout-profile-status[data-state="loaded"] {
  border-color: rgba(57, 181, 74, .18);
  color: #25783b;
  background:
    radial-gradient(ellipse at 12% 50%, rgba(57, 181, 74, .13), rgba(57, 181, 74, 0) 58%),
    rgba(255, 255, 255, .48);
}

.checkout-profile-status[data-state="guest"],
.checkout-profile-status[data-state="error"] {
  border-color: rgba(245, 158, 11, .18);
  color: #8a5b12;
  background:
    radial-gradient(ellipse at 12% 50%, rgba(245, 158, 11, .13), rgba(245, 158, 11, 0) 58%),
    rgba(255, 255, 255, .48);
}

.checkout-choice {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 5px;
  padding: 15px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, .74);
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 24% 14%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 62%),
    rgba(255, 255, 255, .50);
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .88),
    0 10px 26px rgba(15, 23, 42, .04);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
}

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

.checkout-choice.is-selected {
  border-color: rgba(0, 111, 186, .28);
  background:
    radial-gradient(ellipse at 8% 50%, rgba(0, 111, 186, .14), rgba(0, 111, 186, 0) 48%),
    radial-gradient(ellipse at 92% 18%, rgba(57, 181, 74, .10), rgba(57, 181, 74, 0) 52%),
    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 34px rgba(0, 111, 186, .08);
}

.checkout-choice span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 820;
}

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

.checkout-choice small {
  color: #66758a;
  line-height: 1.45;
}

.checkout-form-grid {
  margin-top: 12px;
}

.checkout-form-grid--buyer {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.checkout-form-grid label,
.checkout-comment {
  display: grid;
  gap: 7px;
  color: #4d5a6a;
  font-size: 13px;
  font-weight: 760;
}

.checkout-form-grid input,
.checkout-comment textarea {
  width: 100%;
  border: 1px solid rgba(190, 215, 231, .66);
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, .88), rgba(255, 255, 255, 0) 56%),
    rgba(255, 255, 255, .58);
  color: #101827;
  font: inherit;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .84),
    0 8px 22px rgba(15, 23, 42, .035);
  backdrop-filter: blur(12px) saturate(1.04);
  -webkit-backdrop-filter: blur(12px) saturate(1.04);
}

.checkout-form-grid input {
  min-height: 48px;
  padding: 0 14px;
}

.checkout-comment {
  margin-top: 12px;
}

.checkout-comment textarea {
  resize: vertical;
  padding: 13px 14px;
}

.checkout-form-grid input:focus,
.checkout-comment textarea:focus {
  border-color: rgba(0, 111, 186, .38);
  background: rgba(255, 255, 255, .68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .92),
    0 0 0 4px rgba(0, 111, 186, .08),
    0 12px 28px rgba(15, 23, 42, .06);
}

.checkout-summary {
  position: sticky;
  top: 16px;
  padding: 18px;
  border-color: rgba(255, 255, 255, .78);
  background:
    radial-gradient(ellipse at 18% 0%, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0) 58%),
    radial-gradient(ellipse at 100% 12%, rgba(57, 181, 74, .10), rgba(57, 181, 74, 0) 54%),
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(247, 251, 253, .56));
}

.checkout-summary__head {
  display: grid;
  gap: 5px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(226, 232, 240, .64);
}

.checkout-summary__head strong {
  color: var(--blue);
  font-size: 31px;
  line-height: 1;
  font-weight: 830;
  font-variant-numeric: tabular-nums;
}

.checkout-summary__head small {
  color: #7a8798;
  font-weight: 720;
}

.checkout-summary dl {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.checkout-summary dl div {
  min-height: 34px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(226, 232, 240, .60);
  border-radius: 13px;
  background: rgba(255, 255, 255, .42);
  color: #64748b;
  font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .74);
}

.checkout-summary dd {
  margin: 0;
  color: #101827;
  font-weight: 820;
}

.checkout-submit {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 24% 10%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 58%),
    linear-gradient(135deg, rgba(0, 126, 202, .78), rgba(34, 158, 84, .68));
  color: #fff;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .62),
    0 16px 34px rgba(0, 111, 186, .16);
  backdrop-filter: blur(18px) saturate(1.10);
  -webkit-backdrop-filter: blur(18px) saturate(1.10);
}

.checkout-submit::before {
  content: "";
  position: absolute;
  inset: -1px -22px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(ellipse at 64% 50%, rgba(57, 181, 74, .30), rgba(0, 111, 186, .12) 48%, rgba(0, 111, 186, 0) 76%);
}

.checkout-submit:hover,
.checkout-submit:focus-visible {
  transform: translateY(-1px);
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .70),
    0 20px 44px rgba(0, 111, 186, .20);
}

.checkout-submit svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-submit-status {
  min-height: 38px;
  margin: 12px 0 0;
  color: #25783b;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.45;
}

.checkout-empty {
  margin-top: 20px;
  padding: 34px;
  display: grid;
  justify-items: start;
  gap: 10px;
}

.checkout-empty strong {
  color: #101827;
  font-size: 28px;
}

.checkout-empty p {
  margin: 0;
  color: #66758a;
}

.checkout-empty a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(0, 111, 186, .16);
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0, 111, 186, .12), rgba(0, 111, 186, 0) 72%),
    rgba(255, 255, 255, .56);
  color: var(--blue);
  font-weight: 820;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .86),
    0 12px 28px rgba(15, 23, 42, .06);
}

@media (max-width: 1180px) {
  .checkout-title,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .checkout-line {
    grid-template-columns: minmax(0, 1fr) 116px 42px;
  }

  .checkout-line__stock,
  .checkout-line__price {
    grid-column: 1 / -1;
  }

  .checkout-line__price {
    text-align: left;
  }

  .checkout-summary {
    position: static;
  }

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

@media (max-width: 760px) {
  .checkout-main {
    width: min(100% - 24px, 1440px);
    padding-top: 18px;
  }

  .checkout-title h1 {
    font-size: 34px;
  }

  .checkout-steps,
  .checkout-choice-grid,
  .checkout-choice-grid--delivery,
  .checkout-form-grid,
  .checkout-form-grid--buyer {
    grid-template-columns: 1fr;
  }

  .checkout-line {
    grid-template-columns: 1fr;
  }

  .checkout-line__qty {
    justify-content: start;
  }

  .checkout-line__remove {
    width: 42px;
  }
}

.not-found-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 24%, rgba(0, 111, 186, .13), rgba(0, 111, 186, 0) 34%),
    radial-gradient(circle at 64% 72%, rgba(57, 181, 74, .12), rgba(57, 181, 74, 0) 30%),
    linear-gradient(135deg, #f6f9fc 0%, #eef5f9 48%, #f7fbfd 100%);
}

.not-found-shell {
  min-height: 100vh;
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 72px);
}

.not-found-logo {
  width: fit-content;
  display: inline-flex;
  align-items: center;
}

.not-found-logo img {
  width: clamp(210px, 28vw, 310px);
  height: auto;
  display: block;
}

.not-found-card {
  position: relative;
  isolation: isolate;
  width: min(860px, 100%);
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(0, 111, 186, .14);
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, .92), rgba(255, 255, 255, .46) 58%, rgba(255, 255, 255, .28)),
    rgba(255, 255, 255, .66);
  box-shadow:
    0 34px 90px rgba(20, 45, 72, .12),
    inset 0 1px 0 rgba(255, 255, 255, .86);
  overflow: hidden;
  text-align: center;
}

.not-found-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  left: 50%;
  top: -190px;
  border-radius: 999px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, rgba(0, 111, 186, .20), rgba(0, 111, 186, .07) 46%, rgba(0, 111, 186, 0) 72%);
  filter: blur(16px);
}

.not-found-code {
  margin: 0;
  color: rgba(0, 111, 186, .78);
  font-family: var(--accent-font);
  font-size: clamp(74px, 13vw, 144px);
  line-height: .78;
  font-weight: 800;
}

.not-found-card h1 {
  max-width: 720px;
  margin: 0;
  color: #101827;
  font-size: clamp(34px, 5.6vw, 68px);
  line-height: .98;
  font-weight: 800;
}

.not-found-copy {
  max-width: 620px;
  margin: 0;
  color: #66758a;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.55;
  font-weight: 500;
}

.not-found-search {
  width: min(690px, 100%);
  margin-top: 8px;
  text-align: left;
  box-shadow:
    0 24px 62px rgba(0, 111, 186, .16),
    inset 0 1px 0 rgba(255, 255, 255, .84);
}

.not-found-search input {
  font-size: clamp(16px, 2vw, 19px);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.not-found-actions a,
.not-found-actions button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(0, 111, 186, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  color: var(--blue);
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(20, 45, 72, .06);
}

.not-found-actions a:hover,
.not-found-actions a:focus-visible,
.not-found-actions button:hover,
.not-found-actions button:focus-visible {
  border-color: rgba(0, 111, 186, .28);
  background: rgba(238, 247, 252, .86);
}

@media (max-width: 640px) {
  .not-found-shell {
    width: min(100% - 24px, 1040px);
    padding: 22px 0;
    gap: 34px;
  }

  .not-found-card {
    padding: 28px 18px;
    border-radius: 22px;
  }

  .not-found-search {
    height: 58px;
    grid-template-columns: minmax(0, 1fr) 64px;
  }

  .not-found-search input {
    padding-left: 20px;
  }
}

/* Approved mobile app-shell layer.
   Desktop and tablet layouts remain governed by the existing clean-theme rules. */
@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;
  }

  :where(a, button, [role="button"], summary, input, select, textarea) {
    -webkit-tap-highlight-color: transparent;
  }

  :where(a, button, [role="button"], summary):focus,
  :where(a, button, [role="button"], summary):focus-visible {
    outline: none;
  }

  :where(a, button, [role="button"], summary).is-mobile-pressing {
    animation: mobile-press-pulse .18s ease-out;
  }

  @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;
  }

  body.is-mobile-header-compact {
    padding-top: calc(var(--admin-toolbar-offset, 0px) + var(--mobile-logo-reserved-space-compact));
  }

  .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,
  .account-popover__panel,
  .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 {
    overflow: hidden;
  }

  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 a {
    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;
    text-decoration: none;
    background: transparent;
    box-shadow: none;
  }

  .mobile-app-nav a[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 a[data-mobile-action="catalog"]::before {
    content: none;
  }

  .mobile-app-nav a[data-mobile-action="cart"] {
    grid-column: 2;
    isolation: isolate;
    background: transparent;
    box-shadow: none;
  }

  .mobile-app-nav a[data-mobile-action="cart"].has-items {
    color: #5f6d7d;
  }

  .mobile-app-nav a[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 a[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 a[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 a[data-mobile-action="account"] {
    color: #5f6d7d;
    box-shadow: none;
  }

  .is-authenticated-user .mobile-app-nav a[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 a[data-mobile-action="account"] svg,
  .mobile-app-nav a[data-mobile-action="account"] span {
    position: relative;
    z-index: 1;
  }

  .mobile-app-nav a[data-mobile-action="operator"] {
    grid-column: 5;
    overflow: hidden;
    isolation: isolate;
    color: #5f6d7d;
    background: transparent;
    box-shadow: none;
  }

  .mobile-app-nav a[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 a[data-mobile-action="operator"].is-contact-open {
    color: #5f6d7d;
  }

  .mobile-app-nav a[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 a[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 a[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 a[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 a[data-mobile-action="search"] svg {
    width: 36px;
    height: 36px;
    stroke-width: 2.25;
  }

  .mobile-app-nav a.is-active {
    background: transparent;
    color: #5f6d7d;
  }

  .mobile-app-nav a[data-mobile-action="catalog"].is-active {
    background: transparent;
    color: #5f6d7d;
  }

  .mobile-app-nav a[data-mobile-action="catalog"].is-active::before {
    content: none;
  }

  .mobile-app-nav a[data-mobile-action="account"].is-active {
    background: transparent;
    color: #5f6d7d;
  }

  .mobile-app-nav a[data-mobile-action="search"],
  .mobile-app-nav a[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 a.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 a[data-mobile-action="catalog"] svg {
    fill: currentColor;
    stroke: none;
    width: 29px;
    height: 29px;
  }

  .mobile-app-nav a[data-mobile-action="operator"] svg {
    width: 31px;
    height: 31px;
    stroke-width: 1.55;
  }

  .mobile-app-nav a[data-mobile-action="operator"] svg circle {
    fill: currentColor;
    stroke: none;
  }

  .mobile-app-nav a[data-mobile-action="account"] svg {
    width: 30px;
    height: 30px;
    stroke-width: 2.2;
  }

  .mobile-app-nav a > 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;
  }

  main,
  .hero,
  .category-section,
  .group-main,
  .product-main,
  .checkout-main,
  .account-shell {
    width: min(100% - 24px, 720px);
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-grid,
  .category-grid,
  .group-hero,
  .group-workspace,
  .product-shell,
  .product-layout,
  .checkout-layout,
  .checkout-title,
  .account-shell,
  .account-grid,
  .account-metrics,
  .manager-kpis,
  .manager-columns {
    grid-template-columns: 1fr;
  }

  main {
    padding-top: 6px;
  }

  .hero-grid {
    gap: 8px;
    padding-top: 0;
  }

  .control-panel,
  .status-panel {
    display: none;
  }

  .hero-card {
    min-height: 224px;
    border-radius: 22px;
  }

  .product-title,
  .checkout-title h1,
  .account-hero h1 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.04;
  }

  .hero-card h1 {
    max-width: 100%;
    font-size: clamp(23px, 7vw, 30px);
    line-height: 1.03;
  }

  .hero-card__copy {
    left: 12px;
    right: auto;
    bottom: 12px;
    width: min(72vw, 292px);
    min-height: 96px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "title title"
      "action dots";
    align-items: end;
    gap: 10px 12px;
    padding: 13px 14px 12px;
    border-radius: 18px;
    background:
      radial-gradient(ellipse at 18% 8%, rgba(255, 255, 255, .88), rgba(255, 255, 255, 0) 58%),
      radial-gradient(ellipse at 74% 72%, rgba(0, 111, 186, .18), rgba(0, 111, 186, 0) 62%),
      rgba(255, 255, 255, .42);
    box-shadow:
      0 16px 38px rgba(6, 24, 38, .18),
      inset 0 1px 0 rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px) saturate(1.16);
    -webkit-backdrop-filter: blur(18px) saturate(1.16);
  }

  .hero-card__copy h1 {
    grid-area: title;
  }

  .hero-card .hero-slide-link {
    grid-area: action;
  }

  .hero-slider__dots {
    grid-area: dots;
    gap: 8px;
  }

  .hero-slider__dots button {
    width: 7px;
    height: 7px;
  }

  .trust-strip {
    display: none;
  }

  .trust-strip.partners-carousel {
    display: block;
    height: 120px;
    min-height: 120px;
    margin-top: 12px;
    border-radius: 16px;
  }

  .partners-carousel__card {
    min-height: 0;
    padding: 0;
  }

  .partners-carousel__viewport::before,
  .partners-carousel__viewport::after {
    width: 34px;
  }

  .partners-carousel__card img {
    width: 160px;
    height: 120px;
    max-width: none;
    max-height: none;
  }

  .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;
    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-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;
    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-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,
  .checkout-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;
  }

  .copy-button {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .review-jump {
    grid-area: review;
    position: static;
    min-width: 0;
    height: 36px;
    padding: 0 8px;
    gap: 5px;
    border-radius: 12px;
    justify-self: end;
  }

  .review-jump svg {
    width: 17px;
    height: 17px;
  }

  .review-jump__count,
  .review-jump__rating {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 11px;
  }

  .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,
  .checkout-panel,
  .checkout-summary,
  .account-hero,
  .account-panel,
  .account-metrics div {
    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,
  .account-row,
  .account-row--bill,
  .account-row--wish,
  .checkout-line,
  .manager-queue-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .variant-actions,
  .checkout-line__qty,
  .checkout-line__remove {
    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;
  }

  .builder-card {
    min-height: 286px;
    padding: 12px;
    grid-template-rows: 112px 1fr auto;
    gap: 12px;
    border-radius: 18px;
  }

  .builder-card__image {
    border-radius: 14px;
  }

  .builder-card__image img {
    max-height: 98px;
  }

  .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,
  .checkout-submit {
    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;
  }

  .checkout-steps {
    grid-template-columns: 1fr;
  }

  .checkout-form-grid,
  .checkout-form-grid--buyer,
  .checkout-choice-grid,
  .checkout-choice-grid--delivery {
    grid-template-columns: 1fr;
  }

  .account-shell {
    padding-top: 14px;
    gap: 14px;
  }

  .account-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 10px;
    border-radius: 22px;
    scrollbar-width: none;
  }

  .account-nav::-webkit-scrollbar {
    display: none;
  }

  .account-nav__identity {
    display: none;
  }

  .account-nav a {
    flex: 0 0 auto;
    min-height: 42px;
    white-space: nowrap;
  }

  .account-hero {
    min-height: 0;
    display: grid;
    padding: 20px;
    color: var(--blue-dark);
  }

  .account-hero p:not(.eyebrow) {
    color: #637184;
  }

  .account-hero .eyebrow {
    color: var(--blue);
  }

  .account-hero__actions {
    justify-content: start;
  }

  .account-hero__actions a {
    background: rgba(0, 111, 186, .08);
    color: var(--blue);
    border-color: rgba(0, 111, 186, .14);
  }

  .account-details {
    grid-template-columns: 1fr;
  }

  .manager-kpis {
    gap: 10px;
  }

  .not-found-page {
    padding-bottom: calc(var(--mobile-bottom-nav-h) + env(safe-area-inset-bottom, 0px) + 20px);
  }
}

@media (min-width: 821px) {
  .mobile-app-nav {
    display: none;
  }
}

.email-confirm-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(ellipse at 74% 20%, rgba(57, 181, 74, .14), rgba(57, 181, 74, 0) 24rem),
    radial-gradient(ellipse at 18% 76%, rgba(0, 111, 186, .14), rgba(0, 111, 186, 0) 30rem),
    linear-gradient(180deg, #f8fbfd 0%, #edf6fb 52%, #f7fafc 100%);
  color: var(--ink);
  font-family: var(--font-main);
}

.email-confirm-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
}

.email-confirm-shell::before,
.email-confirm-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(22px);
  opacity: .74;
}

.email-confirm-shell::before {
  width: min(34vw, 520px);
  height: min(18vw, 260px);
  right: 9%;
  top: 12%;
  background: rgba(57, 181, 74, .18);
  transform: rotate(-9deg);
}

.email-confirm-shell::after {
  width: min(46vw, 680px);
  height: min(22vw, 330px);
  left: 6%;
  bottom: 10%;
  background: rgba(0, 111, 186, .13);
  transform: rotate(11deg);
}

.email-confirm-logo {
  position: absolute;
  top: clamp(18px, 3vw, 34px);
  left: clamp(18px, 3vw, 42px);
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  color: #6d7889;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .18em;
  text-decoration: none;
}

.email-confirm-logo img {
  width: min(240px, 42vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 26px rgba(0, 111, 186, .10));
}

.email-confirm-card {
  width: min(760px, 100%);
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(205, 226, 238, .82);
  border-radius: clamp(28px, 4vw, 46px);
  background:
    radial-gradient(ellipse at 78% 12%, rgba(57, 181, 74, .16), rgba(57, 181, 74, 0) 42%),
    radial-gradient(ellipse at 12% 86%, rgba(0, 111, 186, .10), rgba(0, 111, 186, 0) 48%),
    linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(239, 247, 251, .64)),
    rgba(255, 255, 255, .72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .82),
    0 34px 90px rgba(10, 36, 49, .18);
  backdrop-filter: blur(24px) saturate(1.08);
  -webkit-backdrop-filter: blur(24px) saturate(1.08);
}

.email-confirm-mark {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 66% 18%, rgba(57, 181, 74, .32), rgba(57, 181, 74, 0) 58%),
    rgba(255, 255, 255, .52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .82),
    0 18px 48px rgba(57, 181, 74, .20);
}

.email-confirm-mark svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #28a951;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.email-confirm-eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.email-confirm-card h1 {
  margin: 0;
  color: #101828;
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 820;
  line-height: .96;
}

.email-confirm-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: #66758a;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
}

.email-confirm-status {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(199, 224, 235, .82);
  border-radius: 22px;
  background:
    radial-gradient(ellipse at 80% 8%, rgba(57, 181, 74, .18), rgba(57, 181, 74, 0) 54%),
    rgba(255, 255, 255, .54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.email-confirm-status span {
  color: #6e7c8f;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.email-confirm-status strong {
  color: #123241;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.16;
}

.email-confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.email-confirm-actions a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 18px;
  font-size: 17px;
  font-weight: 780;
  text-decoration: none;
}

.email-confirm-primary {
  border: 1px solid rgba(57, 181, 74, .34);
  background:
    radial-gradient(ellipse at 28% 16%, 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;
  box-shadow: 0 18px 42px rgba(57, 181, 74, .20);
}

.email-confirm-secondary {
  border: 1px solid rgba(190, 215, 231, .72);
  background:
    radial-gradient(ellipse at 30% 18%, rgba(255, 255, 255, .80), rgba(255, 255, 255, 0) 66%),
    rgba(255, 255, 255, .56);
  color: var(--blue);
  box-shadow: 0 14px 34px rgba(0, 111, 186, .08);
}

@media (max-width: 720px) {
  .email-confirm-shell {
    place-items: end center;
    padding: 96px 16px 18px;
  }

  .email-confirm-logo {
    right: 18px;
  }

  .email-confirm-logo img {
    width: min(220px, 58vw);
  }

  .email-confirm-card {
    padding: 26px;
    border-radius: 28px;
  }

  .email-confirm-mark {
    width: 62px;
    height: 62px;
    border-radius: 20px;
  }

  .email-confirm-actions a {
    width: 100%;
  }
}

@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;
  }
}
