:root {
  --ink: #10131a;
  --muted: #5f6875;
  --line: #dfe5eb;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --blue: #005eb8;
  --blue-dark: #003d78;
  --yellow: #ffd22d;
  --teal: #17a39b;
  --green: #2f7d45;
  --shadow: 0 18px 48px rgba(10, 21, 38, 0.14);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--lake-sticky-header-height, 72px) + 16px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 1.6vw, 24px);
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(9, 17, 30, 0.94);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 198px;
  max-width: 52vw;
}

.brand-country {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  flex: 1 1 auto;
  min-width: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  white-space: nowrap;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
}

.shop-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
  min-width: 0;
}

.shop-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.shop-action:hover,
.shop-action:focus-visible {
  border-color: rgba(255, 210, 45, 0.65);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  outline: 0;
}

.shop-action svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.shop-action span,
.shop-action strong,
.shop-action em {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.shop-action-cart {
  border-color: rgba(255, 210, 45, 0.42);
  color: #ffffff;
}

.shop-action-cart strong {
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--yellow);
  color: #0b1422;
  font-size: 0.78rem;
  font-weight: 950;
}

.shop-action-cart em {
  color: var(--yellow);
  font-style: normal;
  font-weight: 950;
}

.shop-action-cart.is-cart-pulse {
  animation: lake-cart-accept 0.82s ease;
}

.account-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.account-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 60;
  display: grid;
  min-width: 270px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 94, 184, 0.16), transparent 52%),
    #07111f;
  color: #ffffff;
  box-shadow: 0 22px 50px rgba(3, 9, 18, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.account-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 24px;
  width: 18px;
  height: 18px;
  background: #07111f;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  transform: rotate(45deg);
}

.account-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.account-menu:hover .account-dropdown,
.account-menu:focus-within .account-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.account-dropdown a {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 850;
  transition: background-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.account-dropdown a:first-child {
  grid-template-columns: 34px minmax(0, 1fr);
  min-height: 58px;
  margin-bottom: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 210, 45, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 210, 45, 0.16), rgba(0, 94, 184, 0.14)),
    rgba(255, 255, 255, 0.045);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.18);
}

.account-dropdown a:first-child svg {
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 7px;
  background: rgba(255, 210, 45, 0.14);
  color: var(--yellow);
  box-sizing: border-box;
}

.account-dropdown a:first-child:hover,
.account-dropdown a:first-child:focus-visible {
  background:
    linear-gradient(135deg, rgba(255, 210, 45, 0.24), rgba(0, 94, 184, 0.18)),
    rgba(255, 255, 255, 0.07);
}

.account-dropdown a:first-child + a {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0 0 6px 6px;
}

.account-dropdown a:hover,
.account-dropdown a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  outline: 0;
  transform: translateX(2px);
}

.account-dropdown svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
}

.account-dropdown__logout {
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 210, 45, 0.46);
  color: #ffffff !important;
}

.account-dropdown__logout::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 10px;
  right: 10px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 210, 45, 0.92),
    rgba(255, 255, 255, 0.34),
    transparent
  );
  box-shadow: 0 0 10px rgba(255, 210, 45, 0.26);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.nav-toggle svg {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  min-height: min(780px, 78vh);
  overflow: hidden;
  display: grid;
  align-items: center;
  background: #0a111d;
  color: #fff;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background:
    linear-gradient(90deg, rgba(255, 210, 45, 0.92), rgba(23, 163, 155, 0.78) 44%, rgba(0, 94, 184, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 34px);
  transform: skewY(-4deg) translateY(38%);
  transform-origin: left bottom;
  z-index: -3;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-pad {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 26px 36px rgba(0, 0, 0, 0.34));
  user-select: none;
}

.hero-pad-one {
  right: clamp(18px, 11vw, 170px);
  top: clamp(72px, 12vh, 130px);
  width: clamp(260px, 38vw, 540px);
  transform: rotate(-6deg);
}

.hero-pad-two {
  right: clamp(-110px, -2vw, 24px);
  bottom: clamp(-70px, -2vh, 8px);
  width: clamp(320px, 44vw, 650px);
}

.hero-pad-three {
  right: clamp(180px, 33vw, 510px);
  bottom: clamp(18px, 9vh, 96px);
  width: clamp(280px, 36vw, 610px);
  transform: rotate(2deg);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 12, 20, 0.96), rgba(7, 12, 20, 0.78) 42%, rgba(7, 12, 20, 0.22) 74%, rgba(7, 12, 20, 0.55)),
    radial-gradient(circle at 72% 24%, rgba(0, 94, 184, 0.18), transparent 42%);
}

.hero-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 84px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 6vw, 5.9rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 900;
}

h3 {
  font-size: 1.16rem;
}

.hero-copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.hero-actions,
.contact-form .button {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--yellow);
  color: #111827;
  box-shadow: 0 16px 30px rgba(255, 210, 45, 0.22);
}

.button-secondary {
  margin-left: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.trust-strip {
  width: min(var(--max), calc(100% - 36px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 112px;
  padding: 22px;
  background: var(--paper);
}

.trust-strip strong {
  display: block;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 830px;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.catalog-tools {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
}

.advanced-filter {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(170px, 0.9fr);
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(0, 94, 184, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 94, 184, 0.08), rgba(255, 210, 45, 0.08)),
    #eef3f8;
}

.filter-select {
  position: relative;
  min-width: 0;
}

.filter-select-toggle,
.filter-submit,
.reset-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  cursor: pointer;
}

.filter-select-toggle svg,
.filter-submit svg,
.reset-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.filter-select.is-open .filter-select-toggle {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 94, 184, 0.12);
}

.filter-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 30;
  display: none;
  width: 100%;
  max-height: 300px;
  overflow: auto;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.filter-select.is-open .filter-menu {
  display: grid;
  gap: 2px;
}

.filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 34px;
  padding: 0 8px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.filter-option:hover,
.filter-option.is-selected {
  background: #e5e9ee;
}

.filter-option-count {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.filter-submit {
  justify-content: center;
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-secondary-tools {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(110px, 140px) auto;
  gap: 12px;
  align-items: center;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.search-box svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex: 0 0 auto;
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
}

.reset-button {
  justify-content: center;
  background: var(--paper);
  color: var(--blue-dark);
}

.filter-summary {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.filter-button,
.choice {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: #263142;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.is-active,
.choice.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  margin-top: 34px;
}

.catalog-main {
  min-width: 0;
}

.catalog-sidebar {
  position: sticky;
  top: 94px;
}

.sidebar-filter-toggle {
  display: none;
}

.catalog-sidebar-panel {
  display: grid;
  gap: 28px;
  padding: 4px 0 0;
}

.sidebar-filter-group h3 {
  margin: 0 0 14px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.sidebar-options {
  display: grid;
  gap: 10px;
}

.sidebar-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #263142;
  font-size: 0.95rem;
  line-height: 1.25;
  cursor: pointer;
}

.sidebar-check input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--blue);
}

.sidebar-check-count {
  color: var(--blue-dark);
  font-weight: 800;
}

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

.product-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: 230px 1fr;
  min-height: 500px;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(10, 21, 38, 0.07);
}

.product-card:hover,
.product-card:focus-within {
  z-index: 8;
}

.product-card:has(.catalog-variant-peek.is-popover-locked) {
  z-index: 16;
}

.product-image-frame {
  position: relative;
  min-height: 0;
  height: 230px;
  overflow: hidden;
  background: var(--soft);
}

.product-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  height: 230px;
  overflow: hidden;
  padding: 0;
  background: var(--soft);
}

.product-image-frame .product-image {
  height: 100%;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 180ms ease, filter 180ms ease;
}

.product-image.is-contain-image {
  padding: 14px 18px;
  background:
    linear-gradient(120deg, rgba(228, 239, 249, 0.95), rgba(247, 251, 253, 0.96) 55%, rgba(255, 246, 204, 0.72)),
    var(--soft);
}

.product-image.is-contain-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-image-link.is-contain-image:hover img,
.product-image-link.is-contain-image:focus-visible img {
  transform: scale(1.012);
}

.product-image-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.product-image-button {
  width: 100%;
  border: 0;
  font: inherit;
  appearance: none;
}

.product-image-link:hover img,
.product-image-link:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.02);
}

.product-image-link:focus-visible {
  outline: 3px solid rgba(0, 91, 170, 0.45);
  outline-offset: -3px;
}

.favorite-button {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(0, 94, 184, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(10, 21, 38, 0.14);
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.favorite-button--catalog {
  top: 12px;
  left: 12px;
}

.favorite-button--product {
  top: 14px;
  right: 14px;
}

.favorite-button--variant {
  position: static;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(10, 21, 38, 0.1);
}

.favorite-button svg {
  width: 22px;
  height: 22px;
  fill: transparent;
  stroke-width: 2.5;
  transition: fill 150ms ease, transform 150ms ease;
}

.favorite-button svg path {
  fill: transparent;
  transition: fill 150ms ease;
}

.favorite-button:hover,
.favorite-button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--blue);
  background: #ffffff;
  color: var(--blue-dark);
  box-shadow: 0 16px 32px rgba(0, 94, 184, 0.18);
  outline: 0;
}

.favorite-button.is-active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #071424;
  box-shadow: 0 14px 30px rgba(255, 210, 45, 0.34);
}

.favorite-button.is-active svg {
  fill: currentColor;
}

.favorite-button.is-active svg path {
  fill: currentColor;
}

.favorite-button.is-partial {
  border-color: var(--yellow);
  background: #fff9df;
  color: var(--blue);
  box-shadow: 0 14px 30px rgba(255, 210, 45, 0.24);
}

.favorite-button.is-partial::after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 9px;
  height: 9px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 4px 10px rgba(10, 21, 38, 0.16);
}

.favorite-button--variant svg {
  width: 18px;
  height: 18px;
}

.favorite-button.is-loading {
  cursor: wait;
  opacity: 0.78;
}

.favorite-button.is-added svg {
  transform: scale(1.08);
}

.favorite-button.is-error {
  border-color: rgba(202, 45, 45, 0.55);
  background: #fff5f5;
  color: #b42318;
}

.favorite-button:disabled {
  pointer-events: none;
}

.product-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--paper);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 4px;
  background: #eef6ff;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 850;
}

.tag.tag-yellow {
  background: #fff3ba;
  color: #6b5200;
}

.tag.tag-green {
  background: #e9f7ef;
  color: var(--green);
}

.product-card h3 {
  margin-bottom: 10px;
}

.product-page-hint {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  margin: -2px 0 10px;
  padding: 0 9px;
  border: 1px solid rgba(0, 94, 184, 0.18);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(0, 94, 184, 0.08), rgba(255, 210, 45, 0.16));
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 950;
}

.catalog-variant-peek {
  position: relative;
  z-index: 12;
  width: fit-content;
  margin: -2px 0 10px;
}

.catalog-variant-peek .product-page-hint {
  margin: 0;
}

.catalog-variant-trigger {
  border-color: rgba(0, 94, 184, 0.28);
  cursor: pointer;
}

.catalog-variant-trigger:hover,
.catalog-variant-trigger:focus-visible {
  border-color: var(--blue);
  background: linear-gradient(135deg, rgba(0, 94, 184, 0.12), rgba(255, 210, 45, 0.22));
  box-shadow: 0 0 0 3px rgba(0, 94, 184, 0.12);
  outline: 0;
}

.catalog-variant-popover {
  --peek-x: 0;
  position: absolute;
  top: calc(100% + 8px);
  right: auto;
  left: 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  width: min(560px, calc(100vw - 48px));
  max-width: calc(100vw - 48px);
  max-height: min(360px, calc(100vh - 112px));
  overflow: hidden;
  border: 1px solid #cbd9e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(10, 21, 38, 0.22);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate(var(--peek-x), -4px) scale(0.98);
  visibility: hidden;
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.product-card:nth-child(3n) .catalog-variant-popover {
  right: 0;
  left: auto;
  --peek-x: 0;
}

.product-card:nth-child(3n - 1) .catalog-variant-popover {
  right: auto;
  left: 50%;
  --peek-x: -50%;
}

.catalog-variant-peek:hover .catalog-variant-popover,
.catalog-variant-peek:focus-within .catalog-variant-popover,
.catalog-variant-peek.is-popover-locked .catalog-variant-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(var(--peek-x), 0) scale(1);
  visibility: visible;
}

.catalog-variant-popover__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  background: #071424;
  color: #fff;
}

.catalog-variant-popover__head strong {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-variant-popover__head span {
  color: #d8e3ef;
  font-size: 0.78rem;
  font-weight: 850;
}

.catalog-variant-popover__body {
  flex: 1 1 auto;
  display: grid;
  gap: 10px;
  min-height: 0;
  max-height: min(300px, calc(100vh - 174px));
  overflow-x: hidden;
  overflow-y: auto;
  padding: 10px;
}

.catalog-variant-loading {
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  background: #f7fafc;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.catalog-variant-diagram {
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid #e2ebf5;
  border-radius: 7px;
  background: #f8fbff;
}

.catalog-variant-axis {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 6px;
  align-items: start;
}

.catalog-variant-axis strong {
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 950;
}

.catalog-variant-axis div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.catalog-variant-chip {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 6px;
  border: 1px solid #dbe5ef;
  border-radius: 999px;
  background: #f5f9fd;
  color: #243447;
  font-size: 0.7rem;
  font-weight: 850;
}

.catalog-variant-chip--more {
  background: #fff6cc;
  color: #6b5200;
}

.catalog-variant-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.74rem;
  line-height: 1.28;
}

.catalog-variant-table th,
.catalog-variant-table td {
  padding: 7px 8px;
  border-bottom: 1px solid #e8eef5;
  text-align: left;
  vertical-align: middle;
}

.catalog-variant-table th {
  background: #f1f6fb;
  color: var(--blue-dark);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-variant-table td:first-child,
.catalog-variant-table td:last-child {
  white-space: nowrap;
  font-weight: 850;
}

.catalog-variant-table td:first-child {
  text-align: center;
}

.catalog-variant-table td:nth-child(2) {
  white-space: nowrap;
}

.catalog-variant-table td:nth-child(3) {
  min-width: 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.catalog-variant-table th:nth-child(1),
.catalog-variant-table td:nth-child(1) {
  width: 56px;
}

.catalog-variant-table th:nth-child(2),
.catalog-variant-table td:nth-child(2) {
  width: 112px;
}

.catalog-variant-table th:nth-child(4),
.catalog-variant-table td:nth-child(4) {
  width: 88px;
}

.catalog-variant-table th:nth-child(5),
.catalog-variant-table td:nth-child(5) {
  width: 122px;
}

.catalog-variant-table td:nth-child(4) {
  color: var(--blue-dark);
  font-weight: 950;
  white-space: nowrap;
}

.catalog-variant-table tr:last-child td {
  border-bottom: 0;
}

.catalog-variant-quick-list {
  display: grid;
  gap: 7px;
}

.catalog-variant-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) minmax(76px, auto) auto;
  gap: 9px;
  align-items: center;
  min-height: 58px;
  padding: 7px;
  border: 1px solid #e1eaf4;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(10, 21, 38, 0.045);
}

.catalog-variant-card:hover,
.catalog-variant-card:focus-within {
  border-color: rgba(0, 94, 184, 0.34);
  background: #fbfdff;
}

.catalog-variant-card__main {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.catalog-variant-card__sku {
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.catalog-variant-card__sku:hover,
.catalog-variant-card__sku:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  outline: 0;
}

.catalog-variant-card__main span {
  color: #344256;
  font-size: 0.74rem;
  font-weight: 760;
  line-height: 1.25;
}

.catalog-variant-card__price {
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 950;
  white-space: nowrap;
}

.catalog-variant-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.catalog-variant-footer > span {
  color: #697586;
  font-size: 0.72rem;
  font-weight: 850;
  white-space: nowrap;
}

.catalog-variant-more {
  display: inline-flex;
  width: fit-content;
  margin: -2px 0 0;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: underline;
}

.catalog-variant-unavailable {
  display: block;
  margin-top: 4px;
  color: #a32626;
  font-size: 0.7rem;
  font-weight: 900;
}

.catalog-variant-price-missing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  max-width: 100%;
  padding: 4px 8px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
}

.catalog-variant-buy {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  white-space: nowrap;
}

.catalog-variant-buy--missing-price {
  justify-content: center;
  width: auto;
  min-width: 104px;
  min-height: 32px;
  padding: 6px 9px;
  border: 1px dashed #fed7aa;
  border-radius: 8px;
  background: #fffaf0;
  color: #9a3412;
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
}

.catalog-variant-buy--missing-price span {
  display: block;
}

.catalog-variant-buy__qty {
  display: grid;
  grid-template-columns: 22px 32px 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

.catalog-variant-buy__qty button,
.catalog-variant-buy__cart {
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
}

.catalog-variant-buy__qty button {
  min-height: 30px;
  background: #f1f6fb;
  color: var(--blue-dark);
}

.catalog-variant-buy__qty button:hover,
.catalog-variant-buy__qty button:focus-visible {
  background: #e2eef9;
  outline: 0;
}

.catalog-variant-buy__qty input {
  width: 100%;
  min-height: 30px;
  padding: 0 4px;
  border: 0;
  border-inline: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  text-align: center;
  outline: 0;
  -moz-appearance: textfield;
}

.catalog-variant-buy__qty input::-webkit-outer-spin-button,
.catalog-variant-buy__qty input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.catalog-variant-buy__qty svg,
.catalog-variant-buy__cart svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.8;
}

.catalog-variant-buy__cart {
  width: 32px;
  min-height: 32px;
  border: 1px solid rgba(255, 210, 45, 0.88);
  border-radius: 6px;
  background: var(--yellow);
  color: #111827;
  box-shadow: 0 8px 18px rgba(255, 210, 45, 0.18);
}

.catalog-variant-buy__cart:hover,
.catalog-variant-buy__cart:focus-visible {
  filter: brightness(0.98);
  outline: 2px solid rgba(0, 94, 184, 0.18);
  outline-offset: 2px;
}

.catalog-variant-buy__cart:disabled {
  cursor: wait;
  opacity: 0.72;
}

.catalog-variant-buy__cart.is-loading svg {
  animation: lake-spin 0.8s linear infinite;
}

.catalog-variant-buy__cart.is-added {
  border-color: #15803d;
  background: #15803d;
  color: #fff;
  animation: lake-variant-accept 0.72s ease;
  box-shadow: 0 12px 24px rgba(21, 128, 61, 0.2);
}

.catalog-variant-buy__cart.is-error {
  border-color: #b91c1c;
  background: #b91c1c;
  color: #fff;
}

.catalog-variant-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 46px;
  height: 38px;
  overflow: hidden;
  border: 1px solid #d8e4ef;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(0, 94, 184, 0.06), rgba(255, 210, 45, 0.08)),
    #ffffff;
  box-shadow: 0 5px 12px rgba(3, 9, 18, 0.06);
}

.catalog-variant-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-variant-thumb svg {
  width: 20px;
  height: 20px;
  color: var(--blue-dark);
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.spec-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  color: #2c3747;
  font-size: 0.92rem;
}

.spec-list span {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 8px;
}

.spec-list b {
  color: var(--ink);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
}

.mini-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--blue-dark);
  font-weight: 850;
  cursor: pointer;
}

.mini-button svg {
  width: 16px;
  height: 16px;
}

.mini-button-buy {
  border-color: rgba(255, 210, 45, 0.78);
  background: var(--yellow);
  color: #111827;
  box-shadow: 0 10px 22px rgba(255, 210, 45, 0.18);
}

.mini-button-product-page {
  justify-content: center;
  min-width: 148px;
}

.purchase-control {
  display: inline-grid;
  gap: 8px;
  align-items: stretch;
  min-width: 130px;
  min-height: 40px;
}

.purchase-control--login {
  min-width: min(220px, 100%);
}

.purchase-control--login .mini-button-buy {
  justify-content: center;
  width: 100%;
}

.purchase-control__row {
  display: grid;
  grid-template-columns: minmax(78px, 1fr) 44px;
  gap: 8px;
  align-items: stretch;
}

.purchase-variant-slot[hidden] {
  display: none;
}

.purchase-variant-field {
  display: grid;
  gap: 4px;
  min-width: min(210px, 100%);
}

.purchase-variant-field span,
.purchase-variant-status {
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.purchase-variant-field select {
  width: 100%;
  min-height: 38px;
  padding: 0 34px 0 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(45deg, transparent 50%, var(--blue-dark) 50%) calc(100% - 17px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, var(--blue-dark) 50%, transparent 50%) calc(100% - 12px) 50% / 6px 6px no-repeat,
    var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  outline: 0;
  appearance: none;
}

.purchase-variant-field select:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 94, 184, 0.16);
}

.purchase-variant-status {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  background: #f7fafc;
  text-transform: none;
}

.purchase-qty-field {
  display: grid;
  grid-template-columns: minmax(48px, 1fr) 22px;
  overflow: hidden;
  min-width: 78px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.lake-product-page {
  min-height: 100vh;
  background:
    linear-gradient(105deg, rgba(6, 16, 30, 0.06) 0 18%, transparent 18% 100%),
    linear-gradient(116deg, transparent 0 58%, rgba(255, 210, 45, 0.22) 58.2% 59%, transparent 59.2% 100%),
    repeating-linear-gradient(0deg, rgba(13, 32, 55, 0.06) 0 1px, transparent 1px 46px),
    #f3f7fb;
  color: var(--ink);
}

.lake-product-main {
  width: min(1260px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 70px;
}

.lake-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 24px;
  color: #4a5870;
  font-size: 0.88rem;
  font-weight: 850;
}

.lake-breadcrumb a {
  color: var(--blue-dark);
  text-decoration: none;
}

.lake-breadcrumb a:hover {
  text-decoration: underline;
}

.lake-product-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: start;
}

.lake-product-shell--empty {
  grid-template-columns: minmax(0, 760px);
}

.lake-product-media,
.lake-product-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(10, 21, 38, 0.1);
}

.lake-product-media {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 14px;
  padding: 14px;
}

.lake-product-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(118deg, rgba(0, 94, 184, 0.08), transparent 36%),
    linear-gradient(105deg, transparent 0 68%, rgba(255, 210, 45, 0.18) 68.2% 72%, transparent 72.2% 100%),
    #f8fbff;
}

.lake-product-image img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
}

.lake-product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(0, 94, 184, 0.12);
  border-radius: 8px;
  background: #f7fbff;
}

.lake-product-gallery__thumb {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 64px;
  padding: 4px;
  border: 1px solid #d7e2ed;
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.lake-product-gallery__thumb:hover,
.lake-product-gallery__thumb:focus-visible,
.lake-product-gallery__thumb.is-active {
  border-color: var(--blue);
  box-shadow: inset 0 -3px 0 rgba(255, 210, 45, 0.92), 0 10px 22px rgba(0, 94, 184, 0.14);
  outline: 0;
  transform: translateY(-1px);
}

.lake-product-gallery__thumb img {
  width: 100%;
  height: 58px;
  object-fit: contain;
}

.lake-product-media > .button-secondary {
  justify-self: start;
  margin: 4px 0 0;
  border-color: rgba(0, 94, 184, 0.28);
  background: #fff;
  color: var(--blue-dark) !important;
  box-shadow: 0 12px 24px rgba(0, 94, 184, 0.1);
}

.lake-product-media > .button-secondary svg {
  color: currentColor;
}

.lake-product-media > .button-secondary:hover,
.lake-product-media > .button-secondary:focus-visible {
  border-color: var(--blue);
  background: #eaf4ff;
  color: var(--blue-dark) !important;
}

.lake-product-page .lake-product-panel a:not(.button),
.lake-product-page .lake-product-footer a:not(.button) {
  color: var(--blue-dark);
  text-decoration-color: rgba(0, 94, 184, 0.5);
}

.lake-product-page .lake-product-panel a:not(.button):hover,
.lake-product-page .lake-product-panel a:not(.button):focus-visible,
.lake-product-page .lake-product-footer a:not(.button):hover,
.lake-product-page .lake-product-footer a:not(.button):focus-visible {
  color: var(--blue);
  text-decoration-color: var(--blue);
}

.lake-product-panel {
  padding: clamp(22px, 3vw, 34px);
}

.lake-product-panel h1 {
  max-width: 820px;
  margin: 0 0 14px;
  color: #101620;
  font-size: clamp(2.2rem, 4.1vw, 3.85rem);
  line-height: 1;
}

.lake-product-lead {
  max-width: 760px;
  margin: 0;
  color: #344154;
  font-size: 1rem;
  line-height: 1.58;
}

.lake-product-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.lake-product-meta > span,
.lake-product-meta-card {
  display: grid;
  gap: 4px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fbff;
  color: #273445;
  font-weight: 850;
}

.lake-product-meta-card {
  position: relative;
}

.lake-product-meta-card--variants {
  cursor: help;
}

.lake-product-meta-card--variants:hover,
.lake-product-meta-card--variants:focus-within,
.lake-product-meta-card--variants:focus-visible {
  border-color: rgba(0, 94, 184, 0.42);
  background: linear-gradient(135deg, rgba(0, 94, 184, 0.07), rgba(255, 210, 45, 0.12)), #f8fbff;
  box-shadow: 0 0 0 3px rgba(0, 94, 184, 0.09);
  outline: 0;
}

.lake-product-meta > span > b,
.lake-product-meta-card > b {
  color: var(--blue-dark);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lake-product-meta-value {
  color: #273445;
  font-size: 1rem;
}

.lake-product-variant-popover {
  top: 50%;
  right: 0;
  left: auto;
  z-index: 70;
  width: min(820px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  cursor: default;
}

.lake-product-variant-popover .catalog-variant-popover__body {
  max-height: calc(100vh - 150px);
  overflow-x: auto;
  padding: 12px;
}

.lake-product-meta-card--variants:hover .lake-product-variant-popover,
.lake-product-meta-card--variants:focus-within .lake-product-variant-popover,
.lake-product-meta-card--variants:focus-visible .lake-product-variant-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.lake-product-variant-table {
  width: 100%;
  min-width: 760px;
  table-layout: fixed;
}

.lake-product-variant-table a {
  color: var(--blue-dark) !important;
  text-decoration: none !important;
}

.lake-product-variant-table a:hover,
.lake-product-variant-table a:focus-visible {
  color: var(--blue) !important;
  text-decoration: underline !important;
}

.lake-product-variant-table th:first-child,
.lake-product-variant-table td:first-child {
  width: 62px;
}

.lake-product-variant-table th:nth-child(2),
.lake-product-variant-table td:nth-child(2) {
  width: 118px;
}

.lake-product-variant-table th:nth-child(3),
.lake-product-variant-table td:nth-child(3) {
  min-width: 0;
  white-space: normal;
}

.lake-product-variant-table th:nth-child(4),
.lake-product-variant-table td:nth-child(4) {
  width: 128px;
}

.lake-product-variant-table th:nth-child(5),
.lake-product-variant-table td:nth-child(5) {
  width: 174px;
  text-align: right;
}

.lake-product-preview-buy {
  justify-content: flex-end;
  gap: 5px;
  width: 100%;
}

.lake-product-preview-buy .catalog-variant-buy__qty {
  grid-template-columns: 24px 34px 24px;
}

.lake-product-preview-buy .catalog-variant-buy__cart {
  width: 32px;
  min-height: 32px;
}

.lake-product-preview-buy .favorite-button--variant {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: none;
}

.lake-product-preview-buy .catalog-variant-buy__cart,
.lake-product-preview-login {
  color: #111827 !important;
  text-decoration: none !important;
}

.lake-product-preview-buy .catalog-variant-buy__cart svg,
.lake-product-preview-buy .favorite-button--variant svg,
.lake-product-preview-login svg {
  display: block;
  stroke: currentColor;
}

.lake-product-preview-buy .favorite-button--variant svg {
  width: 17px;
  height: 17px;
}

.lake-product-variant-table tr.is-selected td {
  background: #fff8dc;
}

.lake-product-variant-table tr:hover td {
  background: #f7fbff;
}

.lake-product-buybox {
  display: grid;
  gap: 16px;
  margin: 20px 0 24px;
  padding: 0;
  border: 0;
  background: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.lake-buy-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.lake-buy-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid rgba(0, 94, 184, 0.16);
  border-radius: 6px;
  background: #f8fbff;
  color: #304057;
  font-size: 0.82rem;
  font-weight: 950;
}

.lake-buy-steps b {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-size: 0.72rem;
}

.lake-variant-picker {
  display: grid;
  gap: 14px;
  padding: 4px 0 2px;
}

.lake-variant-option-group {
  display: grid;
  gap: 8px;
}

.lake-variant-option-label {
  margin: 0;
  color: #2d3748;
  font-size: 0.95rem;
  font-weight: 800;
}

.lake-variant-option-label strong {
  color: var(--ink);
  font-weight: 950;
}

.lake-variant-option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.lake-variant-option-separator {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  margin: 0 2px 0 8px;
  color: #647083;
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.lake-variant-option-separator::before {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, #a9b6c6 18%, #a9b6c6 82%, transparent);
}

.lake-variant-option-separator span {
  display: block;
  max-width: 48px;
}

.lake-variant-option {
  display: inline-grid;
  place-items: center;
  min-width: 64px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid #cfd7e3;
  border-radius: 5px;
  background: #ffffff;
  color: #2f3a4d;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}

.lake-variant-option:hover,
.lake-variant-option:focus-visible {
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 94, 184, 0.12);
}

.lake-variant-option.is-selected {
  border-color: #2f3546;
  background: #2f3546;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(47, 53, 70, 0.16);
}

.lake-variant-option.is-disabled,
.lake-variant-option:disabled {
  border-color: #e0e5ed;
  background: #f4f7fb;
  color: #98a2b3;
  cursor: not-allowed;
  box-shadow: none;
}

.lake-variant-option-group--color .lake-variant-option {
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  border-radius: 999px;
  background: #ffffff;
}

.lake-color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--swatch-color, #d9e4ef);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.16);
}

.lake-variant-option-group--color .lake-variant-option.is-selected {
  border-color: #2f3546;
  background: #ffffff;
  box-shadow: 0 0 0 3px #ffffff, 0 0 0 5px #2f3546, 0 10px 20px rgba(47, 53, 70, 0.16);
}

.lake-variant-option-group--color .lake-variant-option.is-disabled .lake-color-swatch {
  opacity: 0.3;
}

.lake-variant-clear {
  justify-self: start;
  min-height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8b95a6;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.lake-variant-clear:hover,
.lake-variant-clear:focus-visible {
  color: var(--blue-dark);
  outline: 0;
  text-decoration: underline;
}

.lake-variant-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.lake-variant-fieldset legend {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 950;
}

.lake-variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.lake-variant-tile {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 5px 14px;
  align-items: center;
  min-height: 120px;
  padding: 14px 14px 14px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 94, 184, 0.04), transparent 60%),
    #ffffff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(10, 21, 38, 0.06);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.lake-variant-tile:hover,
.lake-variant-tile:focus-visible {
  border-color: rgba(0, 94, 184, 0.7);
  outline: 0;
  transform: translateY(-1px);
  box-shadow: 0 0 0 3px rgba(0, 94, 184, 0.12), 0 12px 28px rgba(10, 21, 38, 0.08);
}

.lake-variant-tile.is-selected {
  border-color: var(--blue);
  background:
    linear-gradient(135deg, rgba(0, 94, 184, 0.14), transparent 52%),
    #ffffff;
  box-shadow: inset 0 -4px 0 var(--yellow), 0 14px 28px rgba(0, 94, 184, 0.12);
}

.lake-variant-tile.is-selected::after {
  content: "Wybrane";
  position: absolute;
  top: 10px;
  right: 10px;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 22px;
  text-transform: uppercase;
}

.lake-variant-tile img {
  grid-row: span 4;
  width: 64px;
  height: 64px;
  border-radius: 6px;
  object-fit: contain;
  background: #ffffff;
}

.lake-variant-tile span,
.lake-variant-tile em,
.lake-variant-tile strong,
.lake-variant-tile small {
  min-width: 0;
}

.lake-variant-tile span {
  padding-right: 68px;
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1.2;
}

.lake-variant-tile em {
  color: #536176;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
}

.lake-variant-tile strong {
  color: var(--blue-dark);
  font-size: 0.9rem;
}

.lake-variant-tile small {
  color: #2f7d47;
  font-size: 0.76rem;
  font-weight: 900;
}

.lake-selected-variant {
  display: grid;
  gap: 12px;
  padding: 16px 0 4px;
  border-top: 1px solid #d9e0ea;
  color: #2f3a4d;
}

.lake-selected-variant span {
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lake-selected-variant strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}

.lake-selected-variant em {
  color: #516074;
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 850;
}

.lake-selected-price {
  position: relative;
  z-index: 1;
  color: var(--blue-dark) !important;
  font-size: 1.72rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  text-align: center;
}

.lake-selected-price::after {
  content: none;
}

.lake-product-purchase {
  display: grid;
  grid-template-columns: minmax(180px, 0.68fr) minmax(320px, 1.52fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid #d8e1ec;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(247, 251, 255, 0.96), rgba(255, 252, 235, 0.74)),
    #ffffff;
  box-shadow: 0 14px 30px rgba(10, 21, 38, 0.06);
}

.lake-product-panel .lake-product-purchase,
.lake-product-panel .lake-product-status,
.lake-product-panel .lake-cart-success {
  display: none;
}

.lake-product-media .lake-product-purchase {
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  padding: 12px;
  border-color: rgba(0, 94, 184, 0.16);
  background:
    linear-gradient(135deg, rgba(247, 251, 255, 0.98), rgba(255, 252, 235, 0.82)),
    #ffffff;
  box-shadow: 0 16px 34px rgba(10, 21, 38, 0.08);
}

.lake-product-media .lake-product-price-card {
  min-height: 104px;
  padding: 12px 14px 16px;
}

.lake-product-media .lake-product-qty-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(118px, 0.72fr) minmax(164px, 0.9fr);
  gap: 10px;
  align-items: end;
  justify-content: stretch;
}

.lake-product-media .lake-product-qty {
  display: contents;
}

.lake-product-media .lake-product-qty-row .button {
  grid-column: 4;
  grid-row: 2;
  width: 100%;
  min-height: 50px;
}

.lake-product-media .lake-product-status {
  margin: -2px 0 0;
}

.lake-product-price-card {
  position: relative;
  display: grid;
  gap: 6px;
  justify-items: center;
  align-content: center;
  min-height: 118px;
  padding: 14px 18px 18px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(0, 94, 184, 0.18);
  background:
    linear-gradient(135deg, rgba(0, 94, 184, 0.08), rgba(255, 210, 45, 0.16)),
    #ffffff;
  color: var(--ink);
  text-align: center;
  box-shadow: inset 0 -3px 0 rgba(255, 210, 45, 0.8);
}

.lake-product-price-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  height: auto;
  border-radius: 999px;
  background: var(--blue);
}

.lake-product-price-card span {
  position: relative;
  z-index: 1;
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lake-product-regular-price {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 7px;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
  padding-bottom: 2px;
  color: #536174;
}

.lake-product-regular-price span {
  color: #647389;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.lake-product-regular-price strong {
  color: #2f3a4d;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1;
}

.lake-product-price-card small {
  position: relative;
  z-index: 1;
  color: #667386;
  font-size: 0.74rem;
  font-weight: 850;
}

.lake-product-price-card--locked {
  min-height: 102px;
  background:
    linear-gradient(135deg, rgba(0, 94, 184, 0.07), rgba(255, 210, 45, 0.13)),
    #f8fbff;
}

.lake-product-price-card--locked strong {
  position: relative;
  z-index: 1;
  color: var(--blue-dark);
  font-size: 1.22rem;
  font-weight: 950;
  line-height: 1.08;
}

.lake-selected-specs {
  display: grid;
  gap: 8px;
  margin: 0;
}

.lake-selected-specs div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: baseline;
}

.lake-selected-specs dt {
  color: #2f3a4d;
  font-weight: 950;
}

.lake-selected-specs dd {
  margin: 0;
  color: #3f4b5f;
}

.lake-product-qty-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(132px, 0.72fr) minmax(190px, 0.96fr);
  gap: 14px;
  align-items: end;
  justify-content: flex-end;
}

.lake-product-qty {
  display: contents;
  color: var(--ink);
  font-weight: 950;
}

.lake-product-qty > span:first-child {
  grid-column: 1;
  grid-row: 1;
  align-self: baseline;
  white-space: nowrap;
}

.lake-product-pack-hint {
  display: block;
  grid-column: 2 / -1;
  grid-row: 1;
  align-self: baseline;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #d21f1f;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: 0;
}

.lake-product-qty-control {
  display: grid;
  grid-column: 1 / span 3;
  grid-row: 2;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

.lake-product-qty-row .button {
  grid-column: 4;
  grid-row: 2;
}

.lake-product-qty-control button {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 0;
  background: #f1f6fb;
  color: var(--blue-dark);
  cursor: pointer;
}

.lake-product-qty-control button:hover,
.lake-product-qty-control button:focus-visible {
  background: #e2eef9;
  outline: 0;
}

.lake-product-qty-control svg {
  width: 16px;
  height: 16px;
}

.lake-product-qty input {
  width: 100%;
  min-height: 48px;
  padding: 0 8px;
  border: 0;
  border-inline: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 950;
  text-align: center;
}

.lake-product-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 900;
}

.lake-product-status.is-success {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(21, 128, 61, 0.24);
  border-radius: 999px;
  background: rgba(21, 128, 61, 0.08);
  color: #166534;
  animation: lake-product-added 0.9s ease;
}

.lake-product-status.is-error {
  color: #b91c1c;
}

.lake-cart-success {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(47, 125, 71, 0.26);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(47, 125, 71, 0.08), #ffffff 70%);
  color: #203047;
}

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

.lake-cart-success strong {
  color: #1f6a39;
  font-size: 1rem;
}

.lake-cart-success span {
  color: #526176;
}

.lake-cart-success div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 8, 15, 0.6);
  opacity: 0;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.cart-drawer__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(450px, 100vw);
  height: 100%;
  background: #ffffff;
  color: var(--ink);
  box-shadow: -24px 0 56px rgba(5, 10, 18, 0.3);
  transform: translateX(100%);
  transition: transform 220ms ease;
  pointer-events: auto;
  outline: 0;
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-drawer.is-open .cart-drawer__backdrop {
  opacity: 1;
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

body.cart-drawer-open {
  overflow: hidden;
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 92px;
  padding: 22px 24px;
  border-bottom: 1px solid #dfe5eb;
  background: #07101d;
  color: #ffffff;
}

.cart-drawer__header p {
  margin: 0 0 5px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-drawer__header h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 4vw, 1.95rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.cart-drawer__header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-drawer__share,
.cart-drawer__close {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.cart-drawer__share {
  background: rgba(255, 255, 255, 0.06);
}

.cart-drawer__share:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.cart-drawer__share:not(:disabled):hover,
.cart-drawer__share:not(:disabled):focus-visible,
.cart-drawer__close:hover,
.cart-drawer__close:focus-visible {
  border-color: var(--yellow);
  color: var(--yellow);
  outline: 0;
}

.cart-drawer__share-status {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 3;
  width: max-content;
  max-width: 220px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 210, 45, 0.6);
  border-radius: 6px;
  background: #fff8d6;
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 950;
  line-height: 1.25;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

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

.cart-drawer__share svg,
.cart-drawer__close svg {
  width: 20px;
  height: 20px;
}

.cart-drawer__content {
  min-height: 0;
  overflow: auto;
  padding: 22px;
  background: #f6f8fb;
}

.cart-empty {
  display: grid;
  gap: 12px;
  place-items: center;
  min-height: 220px;
  margin: 0;
  padding: 28px;
  border: 1px dashed #c9d3df;
  border-radius: 8px;
  background: #ffffff;
  color: #5f6875;
  text-align: center;
  font-weight: 800;
}

.cart-empty svg {
  width: 34px;
  height: 34px;
  color: var(--blue-dark);
}

.cart-drawer__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cart-drawer__item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid #dfe5eb;
  border-radius: 8px;
  background: #ffffff;
}

.cart-drawer__item img,
.cart-drawer__thumb-fallback {
  width: 74px;
  height: 74px;
  border-radius: 6px;
  background: #eef3f8;
  object-fit: contain;
}

.cart-drawer__thumb-fallback {
  display: grid;
  place-items: center;
  color: var(--blue-dark);
}

.cart-drawer__thumb-fallback svg {
  width: 28px;
  height: 28px;
}

.cart-drawer__item h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.cart-drawer__item p {
  margin: 0;
  color: #5f6875;
  font-size: 0.86rem;
  line-height: 1.45;
}

.cart-drawer__meta {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.cart-drawer__controls {
  display: grid;
  grid-template-columns: max-content 1fr 34px;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

.cart-drawer__qty {
  display: grid;
  grid-template-columns: 30px 42px 30px;
  overflow: hidden;
  border: 1px solid #cfd9e5;
  border-radius: 7px;
  background: #f7fafc;
}

.cart-drawer__qty button,
.cart-drawer__qty input {
  width: 100%;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--blue-dark);
  font: inherit;
  font-weight: 950;
  text-align: center;
}

.cart-drawer__qty button {
  cursor: pointer;
}

.cart-drawer__qty button:hover,
.cart-drawer__qty button:focus-visible {
  background: #e9f2fb;
  outline: 0;
}

.cart-drawer__qty input {
  border-inline: 1px solid #dbe3ec;
  color: var(--ink);
  appearance: textfield;
}

.cart-drawer__qty input::-webkit-outer-spin-button,
.cart-drawer__qty input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.cart-drawer__line-price {
  justify-self: end;
  color: var(--blue-dark);
  font-size: 0.98rem;
  font-weight: 950;
  white-space: nowrap;
}

.cart-drawer__remove {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #d8e1ec;
  border-radius: 7px;
  background: #ffffff;
  color: #8b1e1e;
  cursor: pointer;
}

.cart-drawer__remove:hover,
.cart-drawer__remove:focus-visible {
  border-color: #d93a3a;
  background: #fff2f2;
  color: #b91c1c;
  outline: 0;
}

.cart-drawer__remove svg {
  width: 17px;
  height: 17px;
}

.cart-drawer__item.is-updating {
  opacity: 0.62;
}

.cart-drawer__footer {
  padding: 18px 22px 22px;
  border-top: 1px solid #dfe5eb;
  background: #ffffff;
}

.cart-drawer__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  font-weight: 950;
}

.cart-drawer__total strong {
  color: var(--blue-dark);
  font-size: 1.22rem;
}

.cart-drawer__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.cart-drawer__actions .button {
  justify-content: center;
  width: 100%;
}

.cart-drawer__actions .button-secondary {
  margin-left: 0;
  border-color: rgba(0, 94, 184, 0.28);
  background: #fff;
  color: var(--blue-dark) !important;
  box-shadow: 0 10px 22px rgba(0, 94, 184, 0.08);
}

.cart-drawer__actions .button-secondary:hover,
.cart-drawer__actions .button-secondary:focus-visible {
  border-color: var(--blue);
  background: #eaf4ff;
  color: var(--blue-dark) !important;
}

.cart-drawer__actions .button-primary {
  border-color: rgba(255, 210, 45, 0.92);
  background: var(--yellow);
  color: #111827 !important;
  box-shadow: 0 14px 28px rgba(255, 210, 45, 0.2);
}

.lake-product-description {
  margin-top: 30px;
  color: #303c4e;
  line-height: 1.72;
}

.lake-product-description h2,
.lake-product-description h3 {
  color: var(--ink);
}

.lake-product-description table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.lake-product-description th,
.lake-product-description td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.lake-product-description th {
  width: 32%;
  color: var(--ink);
  background: #f8fbff;
}

.lake-product-related {
  margin-top: 34px;
}

.lake-product-related__tabs {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  border-bottom: 1px solid rgba(0, 94, 184, 0.18);
}

.lake-product-related__tab {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(0, 94, 184, 0.2);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #071321;
  color: #ffffff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lake-product-related__tab.is-active {
  box-shadow: inset 0 -4px 0 var(--yellow);
}

.lake-product-related__panel {
  padding: 24px;
  border: 1px solid rgba(0, 94, 184, 0.18);
  border-top: 0;
  border-radius: 0 8px 8px 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(10, 21, 38, 0.08);
}

.lake-product-related__intro {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-bottom: 20px;
}

.lake-product-related__intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.95;
}

.lake-product-related__intro p:not(.eyebrow) {
  margin: 0;
  color: #42516a;
  line-height: 1.6;
}

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

.lake-related-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(10, 21, 38, 0.07);
}

.lake-related-card__image {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(0, 94, 184, 0.08), transparent 42%),
    linear-gradient(105deg, transparent 0 68%, rgba(255, 210, 45, 0.16) 68.2% 72%, transparent 72.2% 100%),
    #f8fbff;
}

.lake-related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform 0.18s ease;
}

.lake-related-card__image:hover img,
.lake-related-card__image:focus-visible img {
  transform: scale(1.035);
}

.lake-related-card__image span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: #eaf4ff;
  color: var(--blue-dark);
}

.lake-related-card__body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
}

.lake-related-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.12;
}

.lake-related-card h3 a {
  color: var(--ink) !important;
  text-decoration: none !important;
}

.lake-related-card h3 a:hover,
.lake-related-card h3 a:focus-visible {
  color: var(--blue-dark) !important;
  text-decoration: underline !important;
}

.lake-related-card p {
  margin: 0;
  color: #4f5d72;
  font-size: 0.88rem;
  line-height: 1.45;
}

.lake-related-card dl {
  display: grid;
  gap: 6px;
  margin: 2px 0 4px;
  font-size: 0.82rem;
}

.lake-related-card dl div {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 94, 184, 0.08);
  padding-bottom: 5px;
}

.lake-related-card dt {
  color: #5f6c7d;
  font-weight: 850;
}

.lake-related-card dd {
  margin: 0;
  color: var(--blue-dark);
  font-weight: 950;
  text-align: right;
}

.lake-related-card .button {
  justify-self: start;
  margin-top: 2px;
}

.lake-product-footer {
  margin-top: 0;
}

.purchase-qty-input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  text-align: center;
  outline: 0;
  -moz-appearance: textfield;
}

.purchase-qty-input::-webkit-outer-spin-button,
.purchase-qty-input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.purchase-qty-steps {
  display: grid;
  grid-template-rows: 1fr 1fr;
  border-left: 1px solid var(--line);
  background: #f7fafc;
}

.purchase-step {
  display: grid;
  place-items: center;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--blue-dark);
  cursor: pointer;
  padding: 0;
}

.purchase-step + .purchase-step {
  border-top: 1px solid var(--line);
}

.purchase-step svg {
  width: 13px;
  height: 13px;
  stroke-width: 3;
}

.purchase-cart-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  min-height: 40px;
  border: 1px solid rgba(255, 210, 45, 0.78);
  border-radius: 6px;
  background: var(--yellow);
  color: #111827;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(255, 210, 45, 0.18);
}

.purchase-cart-button svg {
  width: 18px;
  height: 18px;
}

.purchase-cart-button:disabled {
  cursor: wait;
  opacity: 0.78;
}

.purchase-cart-button.is-loading svg {
  animation: lake-spin 0.8s linear infinite;
}

.purchase-cart-button.is-added {
  border-color: #15803d;
  background: #15803d;
  color: #fff;
}

.button-primary.is-added {
  border-color: #15803d;
  background: #15803d;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(21, 128, 61, 0.2);
}

.purchase-cart-button.is-error {
  border-color: #b91c1c;
  background: #b91c1c;
  color: #fff;
}

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

@keyframes lake-variant-accept {
  0% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes lake-cart-accept {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 210, 45, 0);
  }

  38% {
    border-color: rgba(255, 210, 45, 0.95);
    box-shadow: 0 0 0 6px rgba(255, 210, 45, 0.24);
    transform: translateY(-1px);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 210, 45, 0);
    transform: translateY(0);
  }
}

@keyframes lake-product-added {
  0% {
    opacity: 0;
    transform: translateY(-4px);
  }

  44% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-modal__actions .purchase-control {
  min-width: 156px;
}

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

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 22, 0.68);
  backdrop-filter: blur(10px);
}

.product-modal__panel {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(820px, calc(100vh - 48px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-dark);
  cursor: pointer;
}

.product-modal__close svg {
  width: 18px;
  height: 18px;
}

.product-modal__content {
  display: grid;
  grid-template-columns: minmax(280px, 42%) 1fr;
}

.product-modal__media {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(0, 94, 184, 0.08), rgba(255, 210, 45, 0.12)),
    var(--soft);
}

.product-modal__media img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
}

.product-modal__body {
  padding: 34px;
}

.product-modal__eyebrow {
  margin: 0 0 6px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-modal__body h2 {
  max-width: 760px;
  margin: 0 42px 12px 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.06;
}

.product-modal__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.product-modal__section {
  margin-top: 26px;
}

.product-modal__section h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.detail-benefits {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-benefits li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: #283445;
}

.detail-benefits svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--green);
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  font-size: 0.94rem;
}

.detail-specs span {
  display: grid;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: #283445;
}

.detail-specs b {
  color: var(--ink);
}

.product-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
}

.section-advisor {
  width: 100%;
  max-width: none;
  padding: 96px max(18px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}

.advisor-layout {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: 24px;
  margin-top: 34px;
}

.advisor-panel,
.recommendation {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.advisor-panel {
  display: grid;
  gap: 20px;
  padding: 22px;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 10px;
  font-weight: 900;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.choice {
  width: 100%;
}

.recommendation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 290px);
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.recommendation-copy {
  min-width: 0;
}

.recommendation-media {
  position: relative;
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 94, 184, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(220, 240, 249, 0.76)),
    var(--soft);
}

.recommendation-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 50%, rgba(255, 210, 45, 0.22) 50% 58%, transparent 58%),
    linear-gradient(150deg, transparent 0 56%, rgba(0, 94, 184, 0.12) 56% 100%);
}

.recommendation-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  object-position: center;
}

.recommendation-label {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recommendation p:not(.recommendation-label) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.technology-grid,
.market-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.technology-grid article,
.market-grid article {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.technology-grid svg,
.market-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 24px;
  color: var(--teal);
}

.technology-grid p,
.market-grid p {
  color: var(--muted);
}

.feature-band {
  width: min(var(--max), calc(100% - 36px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(300px, 1.14fr);
  gap: 22px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(0, 61, 120, 0.95), rgba(0, 94, 184, 0.78)),
    #003d78;
  color: #fff;
}

#start,
#produkty,
#dobor,
#technologia,
#marine,
#dystrybutorzy,
#kontakt {
  scroll-margin-top: calc(var(--lake-sticky-header-height, 72px) + 16px);
}

.feature-copy .eyebrow {
  color: var(--yellow);
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.feature-band > img {
  justify-self: end;
  width: min(620px, 100%);
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 26px 32px rgba(0, 0, 0, 0.3));
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 750;
}

.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--yellow);
}

.distributor-promo {
  width: min(var(--max), calc(100% - 36px));
  margin: 18px auto 96px;
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f2f6fb;
  border: 1px solid var(--line);
}

.distributor-promo__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(32px, 5vw, 58px);
}

.distributor-promo__copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.06rem;
}

.distributor-promo__media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 94, 184, 0.92), rgba(10, 19, 32, 0.98) 58%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 28px);
}

.distributor-promo__media::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 24%;
  background:
    linear-gradient(135deg, transparent 0 26%, rgba(255, 210, 45, 0.95) 26% 100%),
    var(--yellow);
}

.distributor-promo__media img {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.28));
}

.distributor-promo__media img:first-child {
  right: 12%;
  bottom: -12%;
  width: min(520px, 82%);
}

.distributor-promo__media img:nth-child(2) {
  left: 6%;
  top: 14%;
  width: min(260px, 44%);
  transform: rotate(-6deg);
}

.distributor-promo__media span {
  position: absolute;
  left: 28px;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.distributor-page {
  background:
    linear-gradient(180deg, #fff 0, #fff 68%, #f5f7fb 68%, #f5f7fb 100%);
}

.distributor-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(380px, 1.05fr);
  gap: clamp(28px, 4vw, 52px);
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  min-height: auto;
  padding: clamp(48px, 6vw, 70px) 0;
  align-items: center;
}

.distributor-hero h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(2.5rem, 4.4vw, 4.6rem);
  overflow-wrap: normal;
  word-break: normal;
}

.distributor-hero .hero-copy {
  color: var(--muted);
}

.distributor-hero .button-secondary {
  color: var(--blue-dark);
  border-color: var(--line);
  background: #fff;
}

.distributor-hero__visual {
  position: relative;
  min-height: 500px;
}

.visual-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 94, 184, 0.92), rgba(10, 19, 32, 0.98) 52%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 34px);
  box-shadow: var(--shadow);
}

.visual-stage::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 22%;
  background:
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.12) 0 5px, transparent 5px 13px),
    var(--yellow);
}

.visual-stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.32));
}

.visual-product {
  position: absolute;
  z-index: 1;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.32));
}

.visual-product-main {
  right: 3%;
  bottom: -4%;
  width: min(580px, 86%);
}

.visual-product-pad {
  left: 5%;
  top: 12%;
  width: min(300px, 48%);
  transform: rotate(-7deg);
}

.visual-product-tool {
  left: 6%;
  bottom: 16%;
  width: min(430px, 66%);
  transform: rotate(4deg);
}

.visual-note {
  position: absolute;
  z-index: 2;
  right: 28px;
  top: 28px;
  display: grid;
  gap: 2px;
  min-width: 154px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(12px);
}

.visual-note span {
  color: var(--yellow);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.visual-note strong {
  font-size: 0.84rem;
  line-height: 1.25;
}

.distributor-intro {
  padding-top: 72px;
}

.distributor-benefits,
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.distributor-benefits article,
.process-steps article {
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.distributor-benefits svg {
  width: 28px;
  height: 28px;
  margin-bottom: 24px;
  color: var(--teal);
}

.distributor-benefits p,
.process-steps p {
  color: var(--muted);
}

.distributor-process {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 96px;
}

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

.process-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 1.45rem;
  font-weight: 900;
}

.distributor-form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: 36px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 96px;
  padding: 58px;
  border-radius: var(--radius);
  background: #10131a;
  color: #fff;
}

.distributor-form-copy .eyebrow {
  color: var(--yellow);
}

.distributor-form-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-form .form-wide {
  grid-column: 1 / -1;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 36px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 96px;
  padding: 58px;
  border-radius: var(--radius);
  background: #10131a;
  color: #fff;
}

.contact-copy .eyebrow {
  color: var(--yellow);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-points span {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: center;
  font-weight: 800;
}

.contact-points svg {
  width: 20px;
  height: 20px;
  color: var(--yellow);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-self: start;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 94, 184, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form .form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label:nth-last-of-type(1),
.contact-form .button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  background: rgba(4, 10, 18, 0.56);
  color: #fff;
  outline: 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
  background: rgba(4, 10, 18, 0.76);
  box-shadow: 0 0 0 3px rgba(255, 210, 45, 0.18);
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 12px;
}

.contact-form select {
  color-scheme: light;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
  padding: 12px;
}

.contact-form option {
  background: #ffffff;
  color: #07101d;
}

.contact-form option:checked {
  background: #005eb8;
  color: #ffffff;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--yellow);
  font-weight: 800;
}

.site-footer {
  background: #080d15;
  color: rgba(255, 255, 255, 0.75);
}

.footer-main,
.footer-bottom {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.64fr) minmax(210px, 0.52fr) minmax(420px, 1fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: start;
  padding: 44px 0 54px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 18px 0 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.site-footer p {
  max-width: 720px;
  margin: 0;
}

.footer-brand,
.footer-products,
.footer-contact-card {
  margin: 0;
  color: #fff;
  font-style: normal;
}

.footer-brand {
  display: grid;
  justify-items: start;
  gap: 10px;
  line-height: 1.35;
}

.footer-brand-logo {
  display: inline-flex;
  width: clamp(126px, 12vw, 150px);
  margin-bottom: 16px;
}

.footer-brand-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  transition: background-color 160ms ease, color 160ms ease;
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  flex: 0 0 auto;
}

.footer-socials .youtube-play {
  fill: #080d15;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: var(--yellow);
  color: var(--ink);
}

.footer-socials a:hover .youtube-play,
.footer-socials a:focus-visible .youtube-play {
  fill: var(--ink);
}

.footer-hashtag {
  margin-top: 10px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
}

.footer-products,
.footer-distribution {
  min-width: 0;
}

.footer-products h2,
.footer-distribution h2 {
  margin: 0;
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--yellow);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.1;
}

.footer-products h2::after,
.footer-distribution h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: rgba(255, 255, 255, 0.72);
}

.footer-product-links {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-product-links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-product-links a:hover,
.footer-product-links a:focus-visible {
  color: var(--yellow);
}

.footer-distribution {
  justify-self: end;
  min-width: min(100%, 520px);
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 64px);
}

.footer-contact-card {
  display: grid;
  gap: 11px;
  line-height: 1.25;
}

.footer-contact-card span,
.footer-contact-card a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact-card a {
  margin-top: 6px;
}

.site-footer .text-link {
  margin: 0;
  color: var(--yellow);
}

.language-select {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.language-select select {
  min-width: 174px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
}

.is-hidden {
  display: none !important;
}

.lake-cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10050;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(760px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(255, 210, 45, 0.45);
  border-radius: 8px;
  background: #07101d;
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 16, 32, 0.35);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.lake-cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lake-cookie-consent.is-hiding {
  opacity: 0;
  transform: translateY(16px);
}

.lake-cookie-consent__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #ffd22d;
  color: #07101d;
}

.lake-cookie-consent__icon svg {
  width: 28px;
  height: 28px;
}

.lake-cookie-consent__content {
  min-width: 0;
}

.lake-cookie-consent__eyebrow {
  margin: 0 0 4px;
  color: #ffd22d;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lake-cookie-consent h2 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.1;
}

.lake-cookie-consent p:not(.lake-cookie-consent__eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  line-height: 1.45;
}

.lake-cookie-consent a {
  display: inline-flex;
  margin-top: 8px;
  color: #ffd22d;
  font-weight: 900;
  text-decoration: none;
}

.lake-cookie-consent a:hover {
  text-decoration: underline;
}

.lake-cookie-consent__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.lake-cookie-consent__actions .button {
  min-height: 42px;
  padding: 0 16px;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .lake-cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 42px minmax(0, 1fr);
    width: auto;
    padding: 14px;
  }

  .lake-cookie-consent__icon {
    width: 42px;
    height: 42px;
  }

  .lake-cookie-consent__icon svg {
    width: 23px;
    height: 23px;
  }

  .lake-cookie-consent__actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .lake-cookie-consent__actions .button {
    flex: 1 1 0;
  }
}

@media (max-width: 1180px) {
  .footer-main {
    grid-template-columns: minmax(220px, 0.8fr) minmax(220px, 1fr);
  }

  .footer-distribution {
    grid-column: 1 / -1;
    justify-self: start;
    min-width: 0;
  }
}

@media (min-width: 1021px) and (max-width: 1320px) {
  .site-header {
    gap: 14px;
    padding-inline: clamp(22px, 2vw, 34px);
  }

  .brand-mark {
    width: 178px;
  }

  .brand-country {
    padding-left: 10px;
    font-size: 0.74rem;
  }

  .main-nav {
    gap: 14px;
    font-size: 0.83rem;
  }

  .shop-actions {
    gap: 6px;
    margin-left: 0;
  }

  .shop-action {
    min-height: 40px;
    padding: 0 9px;
    gap: 6px;
    font-size: 0.82rem;
  }
}

@media (max-width: 1020px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .shop-actions {
    margin-left: auto;
  }

  .shop-action {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.84rem;
  }

  .account-dropdown {
    right: 0;
    min-width: min(270px, 86vw);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 14px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-strip,
  .technology-grid,
  .market-grid,
  .distributor-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-tools,
  .catalog-layout,
  .lake-product-shell,
  .advisor-layout,
  .recommendation,
  .feature-band,
  .distributor-promo,
  .distributor-hero,
  .distributor-form-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .advanced-filter,
  .catalog-secondary-tools {
    grid-template-columns: 1fr;
  }

  .filter-summary {
    text-align: left;
  }

  .filter-buttons {
    justify-content: flex-start;
  }

  .catalog-sidebar {
    position: static;
  }

  .lake-product-media {
    position: static;
  }

  .lake-product-meta {
    grid-template-columns: 1fr;
  }

  .lake-product-purchase {
    grid-template-columns: 1fr;
  }

  .lake-product-qty-row {
    justify-content: flex-start;
  }

  .distributor-hero {
    min-height: auto;
  }

  .distributor-hero__visual {
    min-height: 460px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .sidebar-filter-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
    color: var(--ink);
    font-weight: 900;
    cursor: pointer;
  }

  .sidebar-filter-toggle span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .sidebar-filter-toggle svg {
    width: 18px;
    height: 18px;
  }

  .catalog-sidebar-panel {
    display: none;
    margin-top: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
  }

  .catalog-sidebar.is-open .catalog-sidebar-panel {
    display: grid;
  }

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

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

  .product-card:nth-child(3n) .catalog-variant-popover {
    right: auto;
    left: 0;
    --peek-x: 0;
  }

  .product-card:nth-child(2n) .catalog-variant-popover {
    right: 0;
    left: auto;
    --peek-x: 0;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 38px;
  }

  .footer-distribution {
    justify-self: start;
    min-width: 0;
  }

  .language-select {
    justify-self: start;
  }

  .hero-pad-three {
    opacity: 0.36;
    right: 22vw;
  }
}

@media (max-width: 680px) {
  .brand-mark {
    width: 170px;
  }

  .lake-product-related__panel {
    padding: 16px;
  }

  .lake-product-related__tab {
    width: 100%;
    justify-content: center;
  }

  .lake-related-grid {
    grid-template-columns: 1fr;
  }

  .brand-country {
    display: none;
  }

  .hero {
    min-height: 730px;
  }

  .hero-inner {
    padding-top: 70px;
    padding-bottom: 280px;
  }

  h1 {
    font-size: clamp(2.25rem, 14vw, 4rem);
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    max-width: 340px;
  }

  .button-secondary {
    margin-left: 0;
  }

  .hero-pad-one {
    right: -72px;
    top: auto;
    bottom: 130px;
    width: 330px;
  }

  .hero-pad-two {
    right: -150px;
    width: 470px;
  }

  .hero-pad-three {
    display: none;
  }

  .trust-strip,
  .product-grid,
  .technology-grid,
  .market-grid,
  .distributor-benefits,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .product-card:nth-child(n) .catalog-variant-popover {
    right: auto;
    left: 0;
    width: min(420px, calc(100vw - 42px));
    max-height: calc(100vh - 116px);
    --peek-x: 0;
  }

  .catalog-variant-axis {
    grid-template-columns: 1fr;
  }

  .catalog-variant-card {
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
  }

  .catalog-variant-card__price,
  .catalog-variant-card .catalog-variant-buy {
    grid-column: 2;
  }

  .catalog-variant-card .catalog-variant-buy {
    justify-content: flex-start;
  }

  .catalog-variant-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .section {
    padding: 70px 0;
  }

  .distributor-hero {
    padding: 48px 0 64px;
  }

  .distributor-hero h1 {
    font-size: clamp(2.3rem, 10.5vw, 3.05rem);
  }

  .distributor-hero__visual {
    min-height: 360px;
  }

  .visual-note {
    left: 18px;
    right: auto;
    top: 18px;
  }

  .visual-product-main {
    width: 92%;
    right: -8%;
  }

  .visual-product-pad {
    width: 54%;
  }

  .visual-product-tool {
    width: 76%;
  }

  .distributor-promo__media {
    min-height: 300px;
  }

  .distributor-form-section {
    padding: 28px;
  }

  .product-card {
    min-height: auto;
  }

  .product-card {
    grid-template-rows: 220px 1fr;
  }

  .product-image-frame {
    height: 220px;
  }

  .product-image {
    height: 220px;
  }

  .product-modal {
    padding: 12px;
  }

  .product-modal__panel {
    max-height: calc(100vh - 24px);
  }

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

  .product-modal__media img {
    max-height: 320px;
  }

  .product-modal__body {
    padding: 24px;
  }

  .product-modal__body h2 {
    margin-right: 48px;
    font-size: 1.75rem;
  }

  .lake-product-main {
    width: min(100% - 24px, 1260px);
    padding-top: 22px;
  }

  .lake-product-panel {
    padding: 24px;
  }

  .lake-product-panel h1 {
    font-size: clamp(2.05rem, 12vw, 3rem);
  }

  .lake-product-image {
    min-height: 280px;
  }

  .lake-product-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lake-product-buybox {
    padding: 18px;
  }

  .lake-product-purchase {
    padding: 12px;
  }

  .lake-product-media .lake-product-qty-row {
    grid-template-columns: 1fr;
  }

  .lake-product-qty > span:first-child,
  .lake-product-pack-hint,
  .lake-product-qty-control,
  .lake-product-qty-row .button,
  .lake-product-media .lake-product-qty-row .button {
    grid-column: 1;
    grid-row: auto;
  }

  .lake-product-pack-hint {
    white-space: normal;
  }

  .lake-product-price-card {
    min-height: 112px;
  }

  .lake-selected-price {
    font-size: 1.55rem !important;
  }

  .lake-buy-steps {
    grid-template-columns: 1fr;
  }

  .lake-variant-grid {
    grid-template-columns: 1fr;
  }

  .lake-variant-tile {
    grid-template-columns: 56px 1fr;
    min-height: 112px;
  }

  .lake-variant-tile img {
    width: 56px;
    height: 56px;
  }

  .lake-variant-tile span {
    padding-right: 62px;
  }

  .lake-product-qty {
    width: 100%;
  }

  .lake-product-qty-row .button {
    width: 100%;
  }

  .detail-specs {
    grid-template-columns: 1fr;
  }

  .segmented-control {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 28px;
  }

  .language-select {
    justify-self: stretch;
    width: 100%;
    justify-content: space-between;
  }

.footer-contact-grid {
  grid-template-columns: 1fr;
}

}
