/* source: component-cart-drawer.css */
.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__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__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__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__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);
}

/* source: component-search-results.css */
.search-result__actions svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.search-results {
  max-height: min(62vh, 680px);
  overflow: auto;
}
.search-results--navigation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  align-items: stretch;
}
.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.is-analog-match {
  overflow: hidden;
  background:
    radial-gradient(ellipse 42% 88% at 16% 50%, rgba(245, 141, 35, .17) 0%, rgba(245, 141, 35, .095) 35%, rgba(245, 141, 35, .032) 58%, rgba(245, 141, 35, 0) 82%),
    radial-gradient(ellipse 32% 74% at 43% 50%, rgba(154, 91, 19, .045) 0%, rgba(154, 91, 19, .018) 46%, rgba(154, 91, 19, 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-analog-match > * {
  position: relative;
  z-index: 1;
}
.search-result--navigation {
  grid-template-columns: 92px minmax(0, 1fr) 170px;
  border: 1px solid rgba(0, 111, 186, .20);
  border-left: 4px solid #0b7fc3;
  background:
    radial-gradient(ellipse 42% 86% at 15% 50%, rgba(0, 111, 186, .10), rgba(0, 111, 186, 0) 76%),
    linear-gradient(90deg, rgba(255, 255, 255, .76), rgba(255, 255, 255, .50));
}
.search-results--navigation-grid .search-result--navigation {
  min-width: 0;
  min-height: 132px;
  padding: 14px;
  grid-template-columns: 74px minmax(0, 1fr) 40px;
  gap: 12px;
  border: 1px solid rgba(0, 111, 186, .24);
  border-left-width: 4px;
  border-radius: 18px;
  box-shadow:
    0 12px 28px rgba(28, 49, 68, .08),
    inset 0 1px 0 rgba(255, 255, 255, .82);
}
.search-results--navigation-grid > .search-result:not(.search-result--navigation) {
  grid-column: 1 / -1;
}
.search-result--group {
  background:
    radial-gradient(ellipse 48% 92% at 13% 50%, rgba(0, 111, 186, .16), rgba(0, 111, 186, .02) 62%, rgba(0, 111, 186, 0) 82%),
    linear-gradient(90deg, rgba(248, 252, 255, .90), rgba(255, 255, 255, .58));
}
.search-results--navigation-grid .search-result--group {
  border-color: rgba(0, 111, 186, .34);
  border-left-color: #0b7fc3;
}
.search-result--category {
  border-color: rgba(22, 163, 74, .32);
  border-left-color: #16a34a;
  background:
    radial-gradient(ellipse 48% 92% at 13% 50%, rgba(53, 185, 87, .18), rgba(53, 185, 87, .025) 62%, rgba(53, 185, 87, 0) 82%),
    linear-gradient(90deg, rgba(248, 255, 250, .92), rgba(255, 255, 255, .58));
}
.search-results--navigation-grid .search-result--category {
  border-color: rgba(22, 163, 74, .38);
  border-left-color: #16a34a;
}
.search-result__type-icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 111, 186, .18);
  border-radius: 16px;
  background: rgba(234, 246, 253, .74);
  color: var(--blue);
}
.search-results--navigation-grid .search-result__type-icon,
.search-results--navigation-grid .search-result__image--entity {
  width: 74px;
  height: 74px;
  border-radius: 14px;
}
.search-results--navigation-grid .search-result__image--entity img {
  max-width: 66px;
  max-height: 66px;
}
.search-result--category .search-result__type-icon {
  border-color: rgba(53, 185, 87, .22);
  background: rgba(236, 253, 243, .76);
  color: #16823a;
}
.search-result__type-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.search-results--navigation-grid .entity-badge {
  border: 1px solid rgba(0, 111, 186, .28);
  border-radius: 999px;
  background: #e7f2ff;
  color: #064d80;
  font-weight: 900;
  text-transform: uppercase;
  min-height: 18px;
  padding: 2px 7px;
  font-size: 10px;
  letter-spacing: .02em;
}
.search-results--navigation-grid .entity-badge--group {
  border-color: rgba(0, 111, 186, .42);
  background: #dff0ff;
  color: #064d80;
}
.search-results--navigation-grid .entity-badge--category {
  border-color: rgba(22, 163, 74, .46);
  background: #ddf8e7;
  color: #125f30;
}
.search-result__nav-hint {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}
.search-result__nav-action {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(0, 111, 186, .24);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.search-result__nav-action--arrow {
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  border-color: rgba(22, 163, 74, .42);
  background: #dcfce7;
  color: #15803d;
}
.search-result__nav-action--arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.search-results--navigation-grid .search-result__nav-action--arrow {
  align-self: center;
}
.search-results--navigation-grid .search-result__title {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.28;
}
.search-result__nav-action:hover,
.search-result__nav-action:focus-visible {
  background: rgba(0, 111, 186, .07);
  outline: none;
}
.search-result__nav-action--arrow:hover,
.search-result__nav-action--arrow:focus-visible {
  background: #bbf7d0;
  border-color: rgba(22, 163, 74, .58);
  color: #166534;
}
.search-result--loading {
  pointer-events: none;
}
.search-result__image {
  position: relative;
  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__kit-icon {
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 111, 186, .18);
  border-radius: 999px;
  background: rgba(239, 248, 255, .96);
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(0, 111, 186, .16);
}
.search-result__kit-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.search-result.is-kit-analog .search-result__image::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 111, 186, .18);
  border-radius: 999px;
  background-color: rgba(239, 248, 255, .96);
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23006fba' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 4 7l8 4 8-4-8-4Z'/%3E%3Cpath d='M4 12l8 4 8-4'/%3E%3Cpath d='M4 17l8 4 8-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 10px 24px rgba(0, 111, 186, .16);
}
.search-result__image-fallback {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.search-result__body {
  min-width: 0;
}
.search-result__head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.search-result__head--analog-context {
  align-items: baseline;
}
.search-result__analog-context {
  margin: 0;
  color: #101827;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.search-result__code {
  color: #101827;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}
.search-result__sticker {
  position: relative;
  max-width: 100%;
  min-height: 23px;
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border: 1px solid rgba(96, 113, 132, .16);
  border-radius: 999px;
  background: rgba(248, 250, 252, .92);
  color: #475569;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(15, 23, 42, .06);
  transition: margin-left .18s ease, transform .18s ease, box-shadow .18s ease;
}
.search-result__sticker + .search-result__sticker {
  margin-left: -10px;
}
.search-result__sticker:nth-child(1) {
  z-index: 4;
}
.search-result__sticker:nth-child(2) {
  z-index: 3;
  transform: translateY(1px);
}
.search-result__sticker:nth-child(3) {
  z-index: 2;
  transform: translateY(2px);
}
.search-result__sticker:nth-child(n + 4) {
  z-index: 1;
  transform: translateY(3px);
}
.search-result:hover .search-result__sticker + .search-result__sticker,
.search-result:focus-within .search-result__sticker + .search-result__sticker {
  margin-left: 6px;
}
.search-result:hover .search-result__sticker,
.search-result:focus-within .search-result__sticker {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
}
.search-result__sticker--kit {
  border-color: rgba(0, 111, 186, .28);
  background: rgba(224, 242, 254, .92);
  color: #075f9e;
}
.search-result__sticker--main {
  border-color: rgba(53, 185, 87, .24);
  background: rgba(220, 252, 231, .90);
  color: #166534;
}
.search-result__sticker--accessory {
  border-color: rgba(245, 141, 35, .26);
  background: rgba(255, 247, 237, .94);
  color: #9a5b13;
}
.search-result__sticker--stainless {
  border-color: rgba(100, 116, 139, .28);
  background: rgba(241, 245, 249, .96);
  color: #334155;
}
.search-result__sticker--partial,
.search-result__sticker--manager {
  border-color: rgba(220, 38, 38, .24);
  background: rgba(254, 242, 242, .94);
  color: #b4232d;
}
.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__title a {
  color: inherit;
  text-decoration: none;
}
.search-result__title a:hover,
.search-result__title a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.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-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;
}
.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;
}

/* source: component-topline-messengers.css */
.topline__contacts {
  display: flex;
  align-items: center;
  gap: 14px;
  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;
}
.topline__messengers {
  position: relative;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: -4px;
  isolation: isolate;
}
.topline__contacts .topline__messenger {
  --messenger-accent: #fff;
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--messenger-accent) 54%, rgba(255, 255, 255, .72));
  border-radius: 999px;
  color: var(--messenger-accent);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(241, 248, 252, .9)),
    color-mix(in srgb, var(--messenger-accent) 18%, #fff);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--messenger-accent) 14%, transparent),
    0 4px 10px rgba(0, 0, 0, .12);
  transform-origin: 50% 0;
  z-index: 1;
  transition: color 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}
.topline__contacts .topline__messenger--viber {
  --messenger-accent: #8f5cff;
}
.topline__contacts .topline__messenger--telegram {
  --messenger-accent: #35a9e8;
}
.topline__contacts .topline__messenger svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.topline__contacts .topline__messenger::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  padding: 4px 8px;
  border-radius: 999px;
  color: #0f2330;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 24px rgba(5, 24, 35, .18), inset 0 0 0 1px rgba(0, 111, 186, .12);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  transform: translate(-50%, -4px) scale(.92);
  transition: opacity 150ms ease, transform 150ms ease;
}
.topline__contacts .topline__messenger:hover,
.topline__contacts .topline__messenger:focus-visible {
  color: #fff;
  border-color: color-mix(in srgb, var(--messenger-accent) 82%, #fff);
  background: var(--messenger-accent);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--messenger-accent) 34%, transparent), 0 3px 10px rgba(0, 0, 0, .14);
  transform: translateY(5px) scale(1.42);
  z-index: 5;
}
.topline__contacts .topline__messenger:hover::after,
.topline__contacts .topline__messenger:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0) scale(.72);
}

/* source: component-site-footer.css */
.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);
}

/* source: component-account-popover.css */
.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__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.has-account-alert {
  border-color: rgba(53, 185, 87, .18);
  background: rgba(53, 185, 87, .08);
}
.account-popover__nav a.has-account-alert::after {
  display: none;
}
.account-popover__dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-left: auto;
  border-radius: 999px;
  background: #17a24a;
  box-shadow: 0 0 0 5px rgba(53, 185, 87, .12), 0 0 18px rgba(53, 185, 87, .32);
}
.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;
}
.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;
}

/* source: component-auth-modal.css */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 0s linear 180ms;
}
.auth-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.auth-modal[hidden] {
  display: none;
}
.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 36%, rgba(255, 255, 255, .30), transparent 34rem),
    rgba(15, 23, 42, .32);
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
}
.auth-modal__panel {
  position: relative;
  width: min(520px, calc(100vw - 48px));
  padding: 18px 22px 22px;
  border: 1px solid rgba(226, 232, 240, .78);
  border-radius: 28px;
  background: rgba(255, 255, 255, .84);
  box-shadow:
    0 24px 70px rgba(15, 23, 42, .18),
    0 8px 24px rgba(15, 23, 42, .08);
  backdrop-filter: blur(24px) saturate(1.08);
  -webkit-backdrop-filter: blur(24px) saturate(1.08);
  overflow: hidden;
  transform: translateY(14px) scale(.985);
  transition: transform 220ms cubic-bezier(.2, .8, .2, 1);
}
.auth-modal__panel::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: -18px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .30);
  filter: blur(18px);
  pointer-events: none;
}
.auth-modal.is-open .auth-modal__panel {
  transform: translateY(0) scale(1);
}
.auth-modal:has([data-auth-form="register"]) .auth-modal__panel {
  width: min(960px, calc(100vw - 48px));
  max-height: min(88vh, 860px);
  overflow: auto;
}
.auth-modal__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 18px;
}
.auth-modal__head div {
  min-width: 0;
}
.auth-modal__head span {
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.auth-modal__head h2 {
  margin: 4px 0 0;
  color: #0f172a;
  font-family: var(--accent-font);
  font-size: 30px;
  line-height: 1.05;
  font-weight: 650;
  letter-spacing: 0;
}
.auth-modal__close {
  position: relative;
  width: 42px;
  height: 42px;
  margin-left: auto;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 14px;
  background: rgba(255, 255, 255, .66);
  color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 8px 24px rgba(0, 0, 0, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}
.auth-modal__close::before,
.auth-modal__close::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
}
.auth-modal__close::before {
  transform: rotate(45deg);
}
.auth-modal__close::after {
  transform: rotate(-45deg);
}
.auth-modal__close:hover,
.auth-modal__close:focus-visible {
  background: rgba(241, 245, 249, .95);
  transform: scale(1.04);
  outline: 0;
}
.auth-modal__form {
  display: grid;
  gap: 14px;
}
.auth-modal__form label {
  display: grid;
  gap: 7px;
}
.auth-modal__form label > span:not(.auth-modal__password),
.auth-modal__remember span {
  color: #475569;
  font-size: 13px;
  font-weight: 600;
}
.auth-modal__form input[type="text"],
.auth-modal__form input[type="email"],
.auth-modal__form input[type="tel"],
.auth-modal__form input[type="password"],
.auth-modal__form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(148, 163, 184, .42);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  padding: 0 15px;
  font-size: 16px;
  outline: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .54);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.auth-modal__form textarea {
  min-height: 72px;
  padding-block: 12px;
  line-height: 1.3;
  resize: vertical;
}
.auth-modal__form input[type="text"]:focus,
.auth-modal__form input[type="email"]:focus,
.auth-modal__form input[type="tel"]:focus,
.auth-modal__form input[type="password"]:focus,
.auth-modal__form textarea:focus {
  border-color: rgba(0, 111, 186, .55);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 0 0 4px rgba(0, 111, 186, .10);
}
.auth-modal__form--register {
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.auth-modal__section {
  display: grid;
  gap: 10px;
}
.auth-modal__form--register .cart-checkout__delivery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.auth-modal__form--register .cart-checkout__fields--delivery {
  position: relative;
  z-index: 4;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
  overflow: visible;
}
.auth-modal__form--register .cart-checkout__fields--delivery label {
  position: relative;
}
.auth-modal__form--register .cart-checkout__fields--delivery label:focus-within {
  z-index: 5;
}
.auth-modal__form--register .cart-np-suggest {
  z-index: 10090;
}
.auth-modal__form--register .cart-checkout-person-type {
  margin-bottom: 0;
}
.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;
}

/* source: component-cart-checkout.css */
.cart-checkout-flow[hidden] {
  display: none;
}
.cart-checkout-flow {
  position: relative;
  z-index: 2200;
  padding: 8px 4px 12px;
  display: grid;
  gap: 10px;
  align-content: start;
  animation: cartCheckoutReveal 320ms ease both;
}
.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-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-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: 2300;
  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-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-checkout-password {
  position: relative;
  display: block;
}

/* source: component-cart-lines.css */
.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;
}

/* source: component-contact-modal.css */
.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-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);
}

/* source: component-search-drawer.css */
.search-drawer {
  position: fixed;
  top: var(--search-drawer-shell-top);
  left: var(--search-drawer-shell-left);
  right: auto;
  z-index: 91;
  width: var(--search-drawer-shell-width);
  margin: 0;
  pointer-events: none;
  transform: var(--search-drawer-shell-transform);
}
.search-drawer[hidden] {
  display: none;
}
.search-drawer__panel {
  width: 100%;
  max-width: 100%;
  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 {
  position: relative;
  min-height: 62px;
  padding: 10px 18px 10px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 46px;
  grid-template-areas: "status ai close";
  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-drawer__close {
  grid-area: 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-drawer__status {
  grid-area: status;
  min-width: 0;
  padding: 0;
  color: #26364a;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  border-bottom: 0;
}
.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;
}
.search-drawer__more[hidden] {
  display: none !important;
}

/* source: component-cart-pending-modal.css */
.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__icon--pending {
  border-color: rgba(217, 119, 6, .42);
  background: rgba(255, 251, 235, .92);
  box-shadow:
    0 18px 48px rgba(180, 83, 9, .16),
    inset 0 1px 0 rgba(255, 255, 255, .98);
}
.cart-pending-modal__icon--pending svg {
  stroke: #b45309;
}
.cart-pending-modal--pending .cart-pending-modal__panel {
  border-color: rgba(217, 119, 6, .30);
  background: rgba(255, 255, 255, .96);
}
.cart-pending-modal__eyebrow {
  position: relative;
  display: block;
  margin: 0 0 8px;
  color: #a44708;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.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__lead {
  position: relative;
  display: block;
  max-width: 58ch;
  margin: 0 0 12px;
  color: #8f3418;
  font-size: clamp(18px, 1.65vw, 23px);
  font-weight: 700;
  line-height: 1.38;
}
.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;
}

/* source: component-search-history.css */
.search-history {
  position: absolute;
  z-index: 8;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  padding: 8px;
  border: 1px solid rgba(190, 215, 231, .72);
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 22% 0%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 62%),
    rgba(248, 252, 253, .94);
  box-shadow:
    0 18px 44px rgba(15, 23, 42, .13),
    inset 0 1px 0 rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}
.search-history[hidden] {
  display: none;
}
.search-history__list {
  display: grid;
  gap: 2px;
}
.search-history__item {
  width: 100%;
  min-height: 28px;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #7b8798;
  font: inherit;
  font-size: 10px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
}
.search-history__item:hover,
.search-history__item:focus-visible {
  border-color: rgba(0, 111, 186, .18);
  background: rgba(239, 248, 255, .84);
  color: #475569;
  outline: none;
}
.search-history__item svg {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .72;
}
.search-history__item span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* source: component-catalog-popover.css */
.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;
}
.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;
}
.catalog-popover__grid a {
  height: 48px;
  padding: 6px 9px;
  display: grid;
  grid-template-columns: 26px 38px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(226, 232, 240, .72);
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  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: #fff;
  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 .catalog-popover__thumb {
  width: 38px;
  height: 32px;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, .72);
  border-radius: 9px;
  background: linear-gradient(145deg, #f8fafc, #e9f2f7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92);
}
.catalog-popover__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.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;
}

/* source: component-group-filter.css */
.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__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;
}
.group-filter__body {
  display: grid;
  gap: 14px;
}
.group-filter__lazy,
.group-filter__empty {
  min-height: 132px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 7px;
  border: 1px solid rgba(186, 212, 231, .44);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(239, 249, 252, .64)),
    rgba(255, 255, 255, .72);
  color: #6b7788;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78);
}
.group-filter__lazy span {
  color: #1f2937;
  font-size: 15px;
  font-weight: 650;
}
.group-filter__lazy small {
  color: #7b8794;
  font-size: 12px;
  line-height: 1.45;
}
.group-filter.is-loading .group-filter__lazy {
  position: relative;
  overflow: hidden;
}
.group-filter.is-loading .group-filter__lazy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, .72) 48%, transparent 64% 100%);
  transform: translateX(-100%);
  animation: groupFilterShimmer 1.15s ease-in-out infinite;
}
.group-filter__search {
  display: grid;
  gap: 8px;
}
.group-filter__guide {
  padding: 14px 16px;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(186, 212, 231, .48);
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(53, 185, 87, .12), transparent 48%),
    rgba(255, 255, 255, .72);
  color: #6b7788;
}
.group-filter__guide strong {
  color: #172233;
  font-size: 15px;
  font-weight: 650;
}
.group-filter__guide span {
  max-width: 31ch;
  color: #738094;
  font-size: 12px;
  line-height: 1.45;
}
.group-filter__search span,
.group-filter__suggestions > span {
  color: #7b8794;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.group-filter__search input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(186, 212, 231, .74);
  border-radius: 15px;
  background: rgba(255, 255, 255, .86);
  color: #1f2937;
  font: inherit;
  font-size: 14px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86);
}
.group-filter__search input:focus {
  border-color: rgba(0, 111, 186, .42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .86),
    0 0 0 4px rgba(0, 111, 186, .10);
}
.group-filter__suggestions {
  display: grid;
  gap: 8px;
}
.group-filter__suggestion-groups {
  display: grid;
  gap: 12px;
}
.group-filter__suggestion-groups .group-filter__suggestions {
  padding: 11px;
  border: 1px solid rgba(186, 212, 231, .38);
  border-radius: 17px;
  background: rgba(255, 255, 255, .46);
}
.group-filter__suggestions > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.group-filter__suggestions button {
  min-height: 36px;
  max-width: 100%;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(186, 212, 231, .58);
  border-radius: 999px;
  background: rgba(255, 255, 255, .68);
  color: #344255;
  font: inherit;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .74);
  transition:
    background .2s ease,
    border-color .2s ease,
    color .2s ease,
    transform .2s ease;
}
.group-filter__suggestions button:hover,
.group-filter__suggestions button:focus-visible,
.group-filter__suggestions button.is-active {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(0, 111, 186, .28);
  background: rgba(237, 245, 251, .9);
  color: var(--blue);
}
.group-filter__suggestions strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 650;
}
.group-filter__suggestions small {
  color: #7b8794;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.group-filter__suggestions[data-suggestion-group="groups"] button {
  width: 100%;
  justify-content: space-between;
  border-radius: 14px;
}
.group-filter__suggestions[data-suggestion-group="groups"] strong {
  white-space: normal;
  line-height: 1.22;
}
.group-filter__suggestions[data-suggestion-group="params"] small:last-child,
.group-filter__suggestions[data-suggestion-group="brands"] small,
.group-filter__suggestions[data-suggestion-group="groups"] small {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(228, 240, 249, .82);
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 0;
}
.group-filter__status {
  margin: 6px 0 0;
  color: #6b7788;
  font-size: 12px;
  font-weight: 560;
}
.group-filter__actions {
  position: sticky;
  bottom: -22px;
  margin: 4px -22px -22px;
  padding: 14px 22px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .38), rgba(255, 255, 255, .94) 44%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.group-filter__actions button {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(186, 212, 231, .78);
  border-radius: 14px;
  background: rgba(255, 255, 255, .84);
  color: var(--blue);
  font: inherit;
  font-size: 14px;
  font-weight: 720;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .07);
}

/* source: component-category-view-switch.css */
.category-view-switch {
  position: relative;
  width: fit-content;
  margin: 14px 0 0 auto;
  padding: 4px;
  display: none;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(226, 232, 240, .74);
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(255, 255, 255, .96), rgba(255, 255, 255, 0) 68%),
    rgba(255, 255, 255, .72);
  box-shadow:
    0 12px 28px rgba(15, 23, 42, .07),
    inset 0 1px 0 rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
}
.category-view-switch:not([hidden])::after {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: 23px;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse 72% 48% at 68% 46%, rgba(0, 111, 186, .28), rgba(0, 111, 186, .10) 48%, rgba(0, 111, 186, 0) 76%),
    radial-gradient(ellipse 58% 36% at 30% 82%, rgba(53, 185, 87, .18), rgba(53, 185, 87, 0) 72%),
    radial-gradient(ellipse 70% 42% at 54% 0%, rgba(255, 255, 255, .90), rgba(255, 255, 255, 0) 76%);
  box-shadow: 0 18px 42px rgba(0, 111, 186, .16);
  animation: categoryViewSwitchBeacon 3.6s cubic-bezier(.22, .78, .26, 1) .45s 1 both;
}
.category-view-switch[hidden] {
  display: none;
}
.category-view-switch button {
  position: relative;
  min-width: 42px;
  height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #64748b;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.category-view-switch:not([hidden]) button[data-category-view="grid"] {
  animation: categoryGridButtonBeacon 3.6s cubic-bezier(.22, .78, .26, 1) .45s 1 both;
}
.category-view-switch:not([hidden]) button[data-category-view="grid"]::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: 14px;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse 72% 52% at 50% 38%, rgba(255, 255, 255, .96), rgba(255, 255, 255, .22) 50%, rgba(255, 255, 255, 0) 74%),
    radial-gradient(ellipse 76% 56% at 55% 64%, rgba(0, 111, 186, .42), rgba(0, 111, 186, .14) 48%, rgba(0, 111, 186, 0) 78%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .92),
    0 12px 26px rgba(0, 111, 186, .18);
  animation: categoryGridGlowBeacon 3.6s cubic-bezier(.22, .78, .26, 1) .45s 1 both;
}
.category-view-switch button[aria-pressed="true"] {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 111, 186, .20), rgba(0, 111, 186, 0) 70%),
    rgba(0, 111, 186, .09);
  color: var(--blue);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .90);
}
.category-view-switch svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* source: component-product-variants.css */
.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";
}
.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-stock .stock-empty--backorder {
  min-height: 46px;
  padding: 7px 10px;
  text-align: left;
}
.variant-stock .stock-empty--backorder b,
.variant-stock .stock-empty--backorder strong {
  font-size: 12px;
}
.variant-stock .stock-empty--backorder small {
  font-size: 10px;
}
.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);
}

/* source: component-stock-empty.css */
.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, .16);
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, .84), rgba(255, 255, 255, 0) 58%),
    radial-gradient(ellipse at 82% 100%, rgba(220, 38, 38, .16), rgba(220, 38, 38, 0) 62%),
    rgba(254, 242, 242, .58);
  color: #c02626;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 720;
  font-variant-numeric: tabular-nums;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .86),
    inset 0 0 0 1px rgba(255, 255, 255, .34),
    0 12px 30px rgba(127, 29, 29, .08),
    0 2px 8px rgba(15, 23, 42, .05);
  backdrop-filter: blur(18px) saturate(1.16);
  -webkit-backdrop-filter: blur(18px) saturate(1.16);
}
.stock-empty--backorder {
  width: auto;
  min-width: 150px;
  min-height: 44px;
  padding: 7px 14px;
  flex-direction: column;
  gap: 2px;
  border-color: rgba(31, 41, 55, .07);
  background:
    radial-gradient(ellipse at 50% 52%, rgba(245, 158, 11, .14) 0%, rgba(245, 158, 11, .08) 48%, rgba(245, 158, 11, 0) 76%),
    linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(246, 249, 252, .62)),
    rgba(255, 255, 255, .65);
  color: #92400e;
  line-height: 1.1;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .72),
    0 1px 2px rgba(0, 0, 0, .04),
    0 8px 24px rgba(0, 0, 0, .08);
  backdrop-filter: blur(20px) saturate(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
}
.stock-empty--backorder strong,
.stock-empty--backorder b {
  display: block;
  color: #92400e;
  font-size: 13px;
  font-weight: 700;
}
.stock-empty--backorder small {
  display: block;
  color: #8a6a42;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: lowercase;
}
