:root {
  color-scheme: light;
  --bg: #fbfdfd;
  --surface: #ffffff;
  --soft: #f6faf9;
  --soft-2: #eef7f5;
  --pastel: #e8f5f1;
  --ink: #132b3a;
  --text: #223845;
  --muted: #6f818a;
  --line: #e4ecef;
  --line-strong: #d6e4e6;
  --accent: #319b94;
  --accent-dark: #237a75;
  --warm: #f2c174;
  --warm-soft: #fff4df;
  --shadow: 0 20px 60px rgba(31, 54, 66, 0.08);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: var(--ink);
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header,
main {
  margin: 0 auto;
  max-width: 1512px;
  padding-left: 30px;
  padding-right: 30px;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  padding-top: 26px;
  position: relative;
  z-index: 20;
}

.header-main {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: 210px minmax(360px, 1fr) max-content 156px 154px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  width: 190px;
}

.brand-mark {
  align-items: center;
  background: #5cafaa;
  border-radius: 8px;
  display: inline-flex;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.brand-mark svg {
  height: 29px;
  width: 29px;
}

.brand-text {
  color: #4f9f9a;
  display: flex;
  flex-direction: column;
  font-weight: 900;
  gap: 1px;
  line-height: 1;
}

.brand-text strong {
  font-size: 18px;
  letter-spacing: 0;
}

.brand-text span {
  font-size: 13px;
  letter-spacing: 0;
}

.search {
  align-items: center;
  background: #f9fbfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 8px;
  height: 48px;
  min-width: 0;
  padding: 0 15px 0 18px;
  position: relative;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.search:focus-within {
  border-color: #afd7d2;
  box-shadow: 0 0 0 4px rgba(49, 155, 148, 0.08);
}

.search input {
  background: transparent;
  border: 0;
  color: var(--ink);
  min-width: 0;
  outline: 0;
  width: 100%;
}

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

.search-submit {
  align-items: center;
  background: transparent;
  border: 0;
  color: #7f9098;
  display: inline-flex;
  flex: 0 0 auto;
  height: 34px;
  justify-content: center;
  margin: 0 -7px 0 0;
  padding: 0;
  transition: color 0.16s ease, transform 0.16s ease;
  width: 34px;
}

.search-submit:hover,
.search-submit:focus-visible {
  color: var(--accent);
  transform: scale(1.04);
}

.search svg,
.header-actions svg,
.socials svg,
.banner-icon svg,
.cart-header svg,
.carousel-arrow svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.search svg {
  color: #7f9098;
  height: 21px;
  width: 21px;
}

.search-submit:hover svg,
.search-submit:focus-visible svg {
  color: var(--accent);
}

.search-suggest {
  background: #ffffff;
  border: 1px solid rgba(187, 219, 216, 0.95);
  border-radius: 10px;
  box-shadow: 0 22px 54px rgba(31, 54, 66, 0.14);
  left: 0;
  overflow: hidden;
  padding: 7px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 60;
}

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

.search-suggest-head {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: space-between;
  line-height: 1.3;
  padding: 7px 9px 6px;
}

.search-suggest-list {
  display: grid;
  gap: 3px;
}

.search-suggest-item,
.search-suggest-all {
  align-items: center;
  border-radius: 8px;
  display: grid;
  gap: 2px;
  padding: 9px 10px;
  transition: background 0.16s ease, color 0.16s ease;
}

.search-suggest-item:hover,
.search-suggest-item:focus-visible {
  background: linear-gradient(135deg, #eef9f6, #ffffff 58%, #e7f5f1);
  color: var(--accent-dark);
}

.search-suggest-brand,
.search-suggest-meta {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.search-suggest-item strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
}

.search-suggest-all {
  background: #eef8f5;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  margin-top: 5px;
  text-align: center;
}

.search-suggest-all:hover,
.search-suggest-all:focus-visible {
  background: #dff3ee;
}

.phone {
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
  white-space: nowrap;
}

.socials,
.header-actions {
  display: flex;
  gap: 10px;
}

.socials a,
.header-actions a,
.header-actions button {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--accent);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
  width: 42px;
}

.socials a:nth-child(3) {
  background: #f4fbfb;
  color: #1b9bd7;
}

.socials a:hover,
.header-actions a:hover,
.header-actions button:hover {
  border-color: #b9d8d7;
  box-shadow: 0 8px 20px rgba(31, 54, 66, 0.07);
  transform: translateY(-1px);
}

.socials svg,
.socials img {
  height: 20px;
  width: 20px;
}

.socials span {
  color: #5b65ee;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.socials path {
  fill: currentColor;
  stroke: none;
}

.header-actions svg {
  color: #243b48;
  height: 20px;
  width: 20px;
}

.header-actions .menu-toggle {
  display: none;
}

.cart-icon,
.favorites-icon {
  position: relative;
}

.cart-icon span,
.favorites-icon span {
  align-items: center;
  background: var(--accent);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 10px;
  font-weight: 800;
  height: 16px;
  justify-content: center;
  min-width: 16px;
  padding: 0 4px;
  position: absolute;
  right: -5px;
  top: -5px;
}

.favorites-icon span[data-empty="true"] {
  display: none;
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 46px);
  height: 62px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.mobile-menu,
.mobile-menu-backdrop {
  display: none;
}

main {
  padding-bottom: 48px;
}

.hero {
  background:
    linear-gradient(90deg, rgba(247, 252, 250, 0.98) 0%, rgba(247, 252, 250, 0.94) 42%, rgba(247, 252, 250, 0.22) 63%),
    var(--soft);
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(560px, 620px) 1fr;
  min-height: 548px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  display: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 64px 0 58px 52px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--ink);
  font-size: 47px;
  font-weight: 900;
  line-height: 1.16;
  margin: 0 0 24px;
  max-width: 580px;
  overflow-wrap: break-word;
}

.hero-copy p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 30px;
  max-width: 420px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-bottom: 46px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 850;
  height: 54px;
  justify-content: center;
  overflow: hidden;
  padding: 0 28px;
  position: relative;
  text-decoration: none;
  transform: translate(var(--button-x, 0), var(--button-y, 0));
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.button::after,
.content-card-actions a::after,
.return-panel a::after,
.home-info-card a::after {
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.42) 46%, transparent 64%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%) skewX(-18deg);
  transition: opacity 0.18s ease, transform 0.56s ease;
}

.button:hover {
  transform: translate(var(--button-x, 0), calc(var(--button-y, 0) - 2px));
}

.button:hover::after,
.content-card-actions a:hover::after,
.return-panel a:hover::after,
.home-info-card a:hover::after {
  opacity: 1;
  transform: translateX(130%) skewX(-18deg);
}

.button-primary {
  background: linear-gradient(180deg, #3da9a2, var(--accent-dark));
  color: #fff;
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  background: #ffffff;
  border: 1px solid #71bfba;
  color: var(--accent-dark);
}

.hero-benefits {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.08fr 1.08fr 0.84fr;
  list-style: none;
  margin: 0;
  padding: 0;
  width: min(100%, 600px);
}

.hero-benefits li {
  align-items: center;
  color: #203846;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 11px;
  line-height: 1.25;
}

.hero-benefits li:last-child {
  white-space: nowrap;
}

.benefit-icon {
  display: block;
  flex: 0 0 44px;
  height: 44px;
  object-fit: contain;
  width: 44px;
}

.hero-media {
  min-height: 548px;
  position: relative;
}

.product-stage {
  background:
    linear-gradient(90deg, rgba(247, 252, 250, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%),
    url("/assets/reference/hero-products-v2.webp") right center / auto 112% no-repeat;
  height: 100%;
  position: relative;
}

.product-stage::before {
  background: linear-gradient(90deg, rgba(247, 252, 250, 0.9), rgba(247, 252, 250, 0));
  content: "";
  inset: 0 auto 0 0;
  pointer-events: none;
  position: absolute;
  width: 190px;
}

.product-stage::after {
  background:
    radial-gradient(circle at 82% 14%, rgba(101, 153, 118, 0.18), rgba(101, 153, 118, 0) 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 72%, rgba(246, 250, 249, 0.58) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.consult-card {
  --consult-card-x: 0px;
  --consult-card-y: 0px;
  --consult-glow-x: 50%;
  --consult-glow-y: 50%;
  --consult-link-scale: 1;
  --consult-scale: 1;
  --consult-tilt-x: 0deg;
  --consult-tilt-y: 0deg;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  grid-template-columns: 34px 1fr;
  overflow: hidden;
  padding: 22px 24px;
  position: absolute;
  right: 32px;
  top: 166px;
  transform: translate3d(var(--consult-card-x), var(--consult-card-y), 0) rotateX(var(--consult-tilt-y)) rotateY(var(--consult-tilt-x)) scale(var(--consult-scale));
  transform-origin: 58% 62%;
  transition: box-shadow 0.22s ease, filter 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease, transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 360px;
  will-change: transform, opacity, filter;
  z-index: 3;
}

.consult-card[data-consult-reveal] {
  filter: blur(12px);
  opacity: 0;
  transform: translate3d(42px, 32px, 0) scale(0.94);
}

.consult-card.is-consult-visible {
  filter: none;
  opacity: 1;
  transform: translate3d(var(--consult-card-x), var(--consult-card-y), 0) rotateX(var(--consult-tilt-y)) rotateY(var(--consult-tilt-x)) scale(var(--consult-scale));
}

.consult-card.is-consult-pulsing {
  --consult-scale: 0.985;
  box-shadow: 0 20px 52px rgba(24, 98, 94, 0.18);
}

.consult-card::before {
  background:
    radial-gradient(circle at var(--consult-glow-x) var(--consult-glow-y), rgba(61, 169, 162, 0.2), rgba(61, 169, 162, 0) 38%),
    linear-gradient(135deg, rgba(237, 248, 246, 0.7), rgba(255, 255, 255, 0) 58%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.22s ease;
}

.consult-card:hover::before,
.consult-card:focus-within::before,
.consult-card.is-consult-pulsing::before {
  opacity: 1;
}

.consult-card > * {
  position: relative;
  z-index: 1;
}

.consult-card.is-consult-visible .consult-icon {
  animation: consultIconPop 0.62s cubic-bezier(0.2, 1.2, 0.22, 1) 0.28s both;
}

.consult-card.is-consult-visible a {
  animation: consultButtonSettle 0.72s cubic-bezier(0.2, 1, 0.22, 1) 0.38s both;
}

.consult-cursor-burst {
  border: 1px solid rgba(44, 157, 152, 0.55);
  border-radius: 999px;
  height: 12px;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translate(-50%, -50%) scale(0.35);
  width: 12px;
  z-index: 9999;
  animation: consultCursorBurst 0.56s cubic-bezier(0.16, 0.84, 0.32, 1) forwards;
}

.consult-cursor-burst::before {
  background: rgba(61, 169, 162, 0.2);
  border-radius: inherit;
  content: "";
  inset: -5px;
  position: absolute;
}

@keyframes consultIconPop {
  0% {
    transform: scale(0.72) rotate(-8deg);
  }

  62% {
    transform: scale(1.1) rotate(2deg);
  }

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

@keyframes consultButtonSettle {
  0% {
    opacity: 0;
    transform: translate3d(var(--button-x, 0), calc(var(--button-y, 0) + 14px), 0) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translate3d(var(--button-x, 0), var(--button-y, 0), 0) scale(var(--consult-link-scale));
  }
}

@keyframes consultButtonRipple {
  0% {
    opacity: 0.52;
    transform: translate(-50%, -50%) scale(0.15);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@keyframes consultCursorBurst {
  0% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0.35);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.8);
  }
}

.consult-card a {
  box-sizing: border-box;
  position: relative;
  width: 100%;
}

.consult-card a::before {
  background: radial-gradient(circle, rgba(61, 169, 162, 0.28) 0%, rgba(61, 169, 162, 0) 72%);
  border-radius: 999px;
  content: "";
  height: 14px;
  left: var(--press-x, 50%);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: var(--press-y, 50%);
  transform: translate(-50%, -50%) scale(0);
  width: 14px;
}

.consult-card a::after {
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.72) 46%, transparent 64%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%) skewX(-18deg);
  transition: opacity 0.18s ease, transform 0.56s ease;
}

.consult-card a:hover::after,
.consult-card a:focus-visible::after {
  opacity: 1;
  transform: translateX(130%) skewX(-18deg);
}

.consult-card a.is-rippling::before {
  animation: consultButtonRipple 0.58s ease-out;
}

.consult-card a.is-pressed {
  --consult-link-scale: 0.97;
}

.consult-icon {
  align-items: center;
  background: #edf8f6;
  border-radius: 8px;
  color: var(--accent-dark);
  display: flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.consult-icon svg {
  fill: none;
  height: 19px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 19px;
}

.consult-card strong {
  color: var(--ink);
  display: block;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 5px;
}

.consult-card span {
  color: var(--text);
  display: block;
  font-size: 14px;
  line-height: 1.4;
}

.consult-card a {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #71bfba;
  border-radius: 8px;
  color: var(--accent-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  height: 42px;
  justify-content: center;
  grid-column: 1 / -1;
  margin-top: 2px;
  overflow: hidden;
  transform: translate3d(var(--button-x, 0), var(--button-y, 0), 0) scale(var(--consult-link-scale));
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.consult-card a:hover,
.consult-card a:focus-visible {
  background: #edf8f6;
  border-color: var(--accent-dark);
  box-shadow: 0 10px 26px rgba(44, 157, 152, 0.16);
  transform: translate3d(var(--button-x, 0), calc(var(--button-y, 0) - 1px), 0) scale(var(--consult-link-scale));
}

.categories {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin: 28px 0 22px;
}

.category-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(31, 54, 66, 0.025);
  height: 176px;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.category-card:hover {
  border-color: #c7dfdd;
  box-shadow: 0 18px 38px rgba(31, 54, 66, 0.07);
  transform: translateY(-2px);
}

.category-card span {
  color: var(--ink);
  display: block;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  left: 20px;
  max-width: calc(100% - 36px);
  min-height: 40px;
  position: absolute;
  right: 16px;
  top: 20px;
  z-index: 2;
}

.category-card img {
  height: 94px;
  left: 16px;
  object-fit: contain;
  object-position: center bottom;
  position: absolute;
  top: 70px;
  transition: filter 0.24s ease, transform 0.28s ease;
  width: calc(100% - 32px);
}

.category-card:hover img,
.category-card:focus-within img {
  filter: saturate(1.08) contrast(1.02);
  transform: translateY(-4px) scale(1.04);
}

.category-card img[src*="cat-cosmetics-v2"] {
  height: 116px;
  left: 10px;
  top: 56px;
  width: calc(100% - 20px);
}

.category-card img[src*="cat-disposable-glove-clean"] {
  height: 104px;
  left: 12px;
  top: 64px;
  width: calc(100% - 24px);
}

.category-card-media {
  align-items: center;
  background: #ffffff;
  display: flex;
  height: 104px;
  justify-content: center;
  left: 14px;
  overflow: hidden;
  position: absolute;
  right: 14px;
  top: 64px;
}

.category-card-media img {
  height: 100%;
  left: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  position: static;
  top: auto;
  width: 100%;
}

.category-card-media img[src*="cat-cosmetics-v2"] {
  height: 112%;
  max-height: 112%;
}

.category-card-media img[src*="cat-disposable-glove-clean"] {
  height: 108%;
  max-height: 108%;
}

.category-card-media img[src*="1664-1-ccef7eeb"] {
  height: 86%;
  max-height: 86%;
}

.category-card-media img[src*="cat-fitness-set"] {
  height: 106%;
  max-height: 106%;
}

.products-section,
.sets-section,
.brands {
  background: #ffffff;
  border-top: 0;
  padding: 26px 0 0;
}

.section-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-head h2,
.brands h2 {
  color: var(--ink);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}

.section-head a {
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 850;
}

.carousel-shell {
  overflow: hidden;
  position: relative;
}

.product-carousel {
  cursor: grab;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 4px 0 10px;
  scroll-behavior: smooth;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.product-carousel::-webkit-scrollbar {
  display: none;
  height: 0;
}

.product-carousel.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.product-card {
  --product-glow-x: 18%;
  --product-glow-y: 14%;
  background: #fbfdfd;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(31, 54, 66, 0.035);
  display: flex;
  flex: 0 0 calc((100% - 66px) / 4);
  flex-direction: column;
  isolation: isolate;
  min-height: 382px;
  min-width: 282px;
  overflow: hidden;
  padding: 16px;
  position: relative;
  scroll-snap-align: start;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card::before {
  background:
    radial-gradient(circle at var(--product-glow-x) var(--product-glow-y), rgba(55, 190, 179, 0.16), transparent 34%),
    radial-gradient(circle at calc(100% - var(--product-glow-x)) 100%, rgba(147, 226, 164, 0.12), transparent 38%),
    linear-gradient(135deg, rgba(241, 250, 248, 0.84) 0%, rgba(255, 255, 255, 0.72) 62%, rgba(239, 249, 246, 0.82) 100%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.22s ease, background-position 0.22s ease;
  z-index: 0;
}

.product-card::after {
  background:
    linear-gradient(135deg, rgba(65, 178, 169, 0.42), rgba(177, 235, 189, 0.18), rgba(42, 145, 137, 0.32)) border-box;
  border: 1px solid transparent;
  border-radius: inherit;
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  transition: opacity 0.22s ease;
  z-index: 0;
}

.product-card > * {
  position: relative;
  z-index: 2;
}

.product-card:hover,
.product-card:focus-within,
.product-card.is-touch-highlighted {
  border-color: rgba(113, 191, 186, 0.82);
  box-shadow: 0 18px 44px rgba(35, 130, 122, 0.1), 0 10px 22px rgba(31, 54, 66, 0.045);
  transform: translateY(-2px);
}

.product-card:hover::before,
.product-card:hover::after,
.product-card:focus-within::before,
.product-card:focus-within::after,
.product-card.is-touch-highlighted::before,
.product-card.is-touch-highlighted::after {
  opacity: 0.45;
}

.product-card.is-touch-highlighted {
  transform: translateY(-1px);
}

.product-card:hover .product-image,
.product-card:focus-within .product-image,
.product-card.is-touch-highlighted .product-image {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(113, 191, 186, 0.22);
}

.product-fav {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(221, 231, 234, 0.7);
  border-radius: 50%;
  color: #8aa0aa;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 17px;
  top: 17px;
  width: 28px;
  z-index: 3;
}

.product-fav:hover,
.product-fav.is-favorite {
  color: var(--accent-dark);
}

.product-fav svg {
  fill: none;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 20px;
}

.product-fav.is-favorite svg {
  fill: rgba(45, 151, 144, 0.16);
}

.product-image {
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(220, 234, 232, 0.95);
  display: flex;
  height: 196px;
  justify-content: center;
  margin: 0 0 15px;
  overflow: hidden;
  padding: 8px;
}

.product-card-link {
  color: inherit;
  text-decoration: none;
}

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

.product-image img[src*="/assets/reference/"] {
  object-fit: cover;
}

.product-image:has(img[src*="/assets/generated/fitness/"]) {
  background: #ffffff;
  padding: 0;
}

.product-image img[src*="/assets/generated/fitness/"] {
  background: #ffffff;
  object-fit: contain;
}

.product-image img[src*="-v2"] {
  object-fit: contain;
}

.product-image img[src*="mobile-hit-spray"] {
  transform: scale(1.38);
}

.product-image img[src*="mobile-hit-cream"] {
  transform: scale(1.14);
}

.product-image img[src*="product-pliers"] {
  transform: scale(1.1);
}

.product-brand {
  color: #7c8c93;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.product-card h3 {
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
  margin: 0 0 14px;
  min-height: 40px;
  overflow-wrap: anywhere;
}

.product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.product-card h3 a:hover,
.product-card h3 a:focus-visible {
  color: var(--accent-dark);
}

.product-price {
  color: var(--ink);
  font-size: 23px;
  font-weight: 900;
  margin: auto 0 15px;
}

.add-button {
  align-items: center;
  background: #ffffff;
  border: 1px solid #71bfba;
  border-radius: 8px;
  color: var(--accent-dark);
  display: flex;
  font-size: 14px;
  font-weight: 850;
  gap: 11px;
  height: 46px;
  justify-content: center;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
  width: 100%;
}

.add-button:hover {
  background: #f0faf8;
  border-color: var(--accent);
}

.add-button svg {
  fill: none;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 20px;
}

.product-purchase {
  width: 100%;
}

.product-card-quantity {
  display: grid;
  gap: 8px;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  height: 46px;
  width: 100%;
}

.product-card-quantity button,
.product-card-quantity-input {
  align-items: center;
  background: #ffffff;
  border: 1px solid #71bfba;
  border-radius: 8px;
  color: var(--accent-dark);
  display: inline-flex;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  min-width: 0;
  padding: 0;
  text-align: center;
}

.product-card-quantity-input {
  color: var(--ink);
  font-size: 15px;
}

.product-card-quantity button:hover,
.product-card-quantity-input:focus {
  background: #f0faf8;
  border-color: var(--accent);
  outline: none;
}

.carousel-arrow {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(31, 54, 66, 0.12);
  color: var(--accent-dark);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 150px;
  transition: opacity 0.16s ease, transform 0.16s ease;
  width: 42px;
  z-index: 4;
}

.carousel-shell:hover .carousel-arrow,
.carousel-arrow:focus-visible {
  opacity: 1;
  pointer-events: auto;
}

.carousel-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.carousel-arrow svg {
  height: 20px;
  width: 20px;
}

.carousel-arrow-prev {
  left: 10px;
}

.carousel-arrow-next {
  right: 10px;
}

.sets-section {
  padding-top: 26px;
}

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

.set-card {
  background:
    linear-gradient(90deg, #f5f9f8 0%, rgba(245, 249, 248, 0.92) 45%, rgba(245, 249, 248, 0.78) 100%),
    #f5f9f8;
  border-radius: 8px;
  color: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 242px;
  height: 186px;
  overflow: hidden;
  padding: 27px 24px 24px;
  position: relative;
  transition: box-shadow 0.16s ease, transform 0.16s ease;
}

.set-card:hover {
  box-shadow: 0 18px 38px rgba(31, 54, 66, 0.07);
  transform: translateY(-2px);
}

.set-card > div {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.set-card h3 {
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  margin: 0 0 10px;
}

.set-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
  margin: 0;
  max-width: 250px;
}

.set-card strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  margin-top: auto;
}

.set-card img {
  align-self: stretch;
  height: 100%;
  justify-self: end;
  object-fit: contain;
  object-position: right center;
  transition: filter 0.24s ease, transform 0.28s ease;
  width: 242px;
}

.set-card:hover img,
.set-card:focus-within img {
  filter: saturate(1.08) contrast(1.02);
  transform: translateY(-5px) scale(1.035);
}

.master-banner {
  align-items: center;
  background: linear-gradient(90deg, #e7f4f1 0%, #e8f5f2 57%, #e9f6f3 100%);
  border-radius: 8px;
  display: grid;
  gap: 38px;
  grid-template-columns: 88px minmax(0, 1fr) 168px 418px;
  height: 118px;
  margin: 28px 0 24px;
  overflow: hidden;
  padding-left: 38px;
}

.banner-icon {
  align-items: center;
  background: #dcefed;
  border-radius: 8px;
  color: var(--accent-dark);
  display: flex;
  height: 72px;
  justify-content: center;
  width: 72px;
}

.banner-icon svg {
  height: 34px;
  width: 34px;
}

.master-banner h2 {
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 8px;
}

.master-banner p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
}

.master-banner img {
  height: 118px;
  mix-blend-mode: multiply;
  object-fit: cover;
  object-position: right center;
  width: 418px;
}

.master-banner .button {
  font-size: 14px;
  height: 46px;
  padding: 0 24px;
}

.home-info-section,
.home-info-grid {
  margin: 24px 0;
}

.home-info-section {
  background: #ffffff;
  border: 1px solid #dcebea;
  border-radius: 8px;
  padding: 24px;
}

.home-info-section .section-head,
.home-info-grid .section-head {
  margin-bottom: 18px;
}

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

.home-info-card {
  background: #ffffff;
  border: 1px solid #dcebea;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 22px;
}

.home-info-card span,
.content-card span,
.content-hero > span,
.content-hero-copy > span,
.contact-channel span {
  color: var(--accent-dark);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-info-card h3 {
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.18;
  margin: 0;
}

.home-info-card p,
.home-info-section p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.home-info-card a,
.content-card a {
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 900;
  margin-top: auto;
}

.home-info-note {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  margin-top: 18px;
  padding: 16px 18px;
}

.content-page {
  padding-top: 22px;
}

.cms-content {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  display: grid;
  gap: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
  padding: 28px;
}

.cms-content h2,
.cms-content h3,
.cms-content h4,
.cms-content p,
.cms-content ul,
.cms-content ol,
.cms-content figure,
.cms-content blockquote,
.cms-content table,
.cms-content pre {
  margin: 0;
}

.cms-content h2,
.cms-content h3,
.cms-content h4 {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.2;
}

.cms-content h2 {
  font-size: 22px;
}

.cms-content h3 {
  font-size: 18px;
}

.cms-content h4 {
  font-size: 16px;
}

.cms-content ul,
.cms-content ol {
  padding-left: 22px;
}

.cms-content li + li {
  margin-top: 7px;
}

.cms-content a {
  color: var(--accent-dark);
  font-weight: 850;
}

.cms-content blockquote {
  border-left: 4px solid var(--accent);
  color: var(--ink);
  margin: 0;
  padding: 4px 0 4px 18px;
}

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

.cms-content figure {
  display: grid;
  gap: 8px;
}

.cms-content figcaption {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.cms-content iframe {
  border: 0;
  border-radius: 8px;
  display: block;
  min-height: 340px;
  width: 100%;
}

.cms-content table {
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
  width: 100%;
}

.cms-content th,
.cms-content td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.cms-content th {
  background: var(--soft);
  color: var(--ink);
  font-weight: 900;
}

.cms-content pre {
  background: #f8fbfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-x: auto;
  padding: 14px;
}

.cms-content code {
  font-family: Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}

.content-hero {
  background:
    linear-gradient(105deg, rgba(232, 246, 243, 0.98) 0%, rgba(246, 251, 250, 0.98) 66%, rgba(255, 244, 223, 0.92) 100%),
    var(--soft-2);
  border: 1px solid #dcebea;
  border-radius: 8px;
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
  min-height: 270px;
  padding: 42px;
}

.content-hero-with-media {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
}

.content-hero-copy {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.content-hero-image {
  border-radius: 8px;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  width: 100%;
}

.content-hero h1 {
  color: var(--ink);
  font-size: 42px;
  font-weight: 900;
  line-height: 1.13;
  margin: 0;
  max-width: 850px;
  overflow-wrap: break-word;
}

.content-hero p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.58;
  margin: 0;
  max-width: 760px;
}

.content-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.content-section,
.content-cta {
  background: #ffffff;
  border: 1px solid #dcebea;
  border-radius: 8px;
  margin: 22px 0;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.content-section,
.content-cta,
.pickup-section {
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.content-section:hover,
.content-section:focus-within,
.content-cta:hover,
.content-cta:focus-within,
.pickup-section:hover,
.pickup-section:focus-within {
  border-color: rgba(74, 171, 164, 0.48);
  box-shadow: 0 22px 54px rgba(31, 91, 88, 0.08);
  transform: translateY(-2px);
}

.content-section::before,
.content-cta::before,
.pickup-section::before {
  background: linear-gradient(90deg, rgba(49, 155, 148, 0), rgba(49, 155, 148, 0.72), rgba(242, 193, 116, 0.76), rgba(49, 155, 148, 0));
  content: "";
  height: 3px;
  left: 24px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 24px;
  top: 0;
  transform: scaleX(0.28);
  transform-origin: left center;
  transition: opacity 0.24s ease, transform 0.34s ease;
}

.content-section:hover::before,
.content-section:focus-within::before,
.content-cta:hover::before,
.content-cta:focus-within::before,
.pickup-section:hover::before,
.pickup-section:focus-within::before {
  opacity: 1;
  transform: scaleX(1);
}

.content-grid,
.contact-channel-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 22px 0;
}

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

.content-card,
.contact-channel {
  background: #ffffff;
  border: 1px solid #dcebea;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 22px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.content-card:hover,
.contact-channel:hover {
  border-color: rgba(74, 171, 164, 0.68);
  box-shadow: 0 14px 34px rgba(31, 91, 88, 0.07);
  transform: translateY(-1px);
}

.content-card h2,
.contact-channel strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.18;
  margin: 0;
}

.content-card p,
.contact-channel p,
.content-cta p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.content-card strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
  margin-top: auto;
}

.pickup-map {
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 220px;
  margin-top: 4px;
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  width: 100%;
}

.pickup-map:hover,
.pickup-map:focus-within {
  border-color: rgba(74, 171, 164, 0.72);
  box-shadow: 0 18px 40px rgba(31, 91, 88, 0.13);
  transform: scale(1.012);
}

.pickup-map iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.content-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.content-card-actions a {
  align-items: center;
  border: 1px solid #71bfba;
  border-radius: 8px;
  color: var(--accent-dark);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  margin-top: 0;
  min-height: 42px;
  overflow: hidden;
  padding: 0 16px;
  position: relative;
  transform: translate(var(--button-x, 0), var(--button-y, 0));
  transition: border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.content-card-actions a:last-child {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.step-list {
  counter-reset: steps;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.step-list li {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-increment: steps;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 18px;
  position: relative;
}

.step-list li,
.content-facts div,
.content-card,
.contact-channel,
.delivery-card,
.return-summary div,
.delivery-note-grid div,
.return-panel,
.return-condition-list article,
.pickup-details dl div,
.home-info-card,
.category-card,
.set-card,
.review-card {
  overflow: hidden;
  position: relative;
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(0);
  transform-style: preserve-3d;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.step-list li::after,
.content-facts div::after,
.content-card::after,
.contact-channel::after,
.delivery-card::after,
.return-summary div::after,
.delivery-note-grid div::after,
.return-panel::after,
.return-condition-list article::after,
.pickup-details dl div::after,
.home-info-card::after,
.category-card::after,
.set-card::after,
.review-card::after {
  background:
    radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 24%),
    linear-gradient(135deg, rgba(49, 155, 148, 0.13), rgba(242, 193, 116, 0.17) 62%, rgba(255, 255, 255, 0));
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.24s ease;
}

.effect-card::before {
  background: linear-gradient(90deg, rgba(49, 155, 148, 0), rgba(49, 155, 148, 0.78), rgba(242, 193, 116, 0.74), rgba(49, 155, 148, 0));
  content: "";
  height: 3px;
  left: 16px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 0;
  transform: scaleX(0.24);
  transform-origin: left center;
  transition: opacity 0.24s ease, transform 0.34s ease;
  z-index: 2;
}

.step-list li:hover,
.step-list li:focus-within,
.content-facts div:hover,
.content-facts div:focus-within,
.content-card:hover,
.content-card:focus-within,
.contact-channel:hover,
.contact-channel:focus-within,
.delivery-card:hover,
.delivery-card:focus-within,
.return-summary div:hover,
.return-summary div:focus-within,
.delivery-note-grid div:hover,
.delivery-note-grid div:focus-within,
.return-panel:hover,
.return-panel:focus-within,
.return-condition-list article:hover,
.return-condition-list article:focus-within,
.pickup-details dl div:hover,
.pickup-details dl div:focus-within,
.home-info-card:hover,
.home-info-card:focus-within,
.category-card:hover,
.category-card:focus-within,
.set-card:hover,
.set-card:focus-within,
.review-card:hover,
.review-card:focus-within {
  background-color: #ffffff;
  border-color: rgba(74, 171, 164, 0.72);
  box-shadow: 0 24px 62px rgba(31, 91, 88, 0.14), 0 0 0 1px rgba(49, 155, 148, 0.04);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-6px);
}

.effect-card:hover::before,
.effect-card:focus-within::before {
  opacity: 1;
  transform: scaleX(1);
}

.step-list li:hover::after,
.step-list li:focus-within::after,
.content-facts div:hover::after,
.content-facts div:focus-within::after,
.content-card:hover::after,
.content-card:focus-within::after,
.contact-channel:hover::after,
.contact-channel:focus-within::after,
.delivery-card:hover::after,
.delivery-card:focus-within::after,
.return-summary div:hover::after,
.return-summary div:focus-within::after,
.delivery-note-grid div:hover::after,
.delivery-note-grid div:focus-within::after,
.return-panel:hover::after,
.return-panel:focus-within::after,
.return-condition-list article:hover::after,
.return-condition-list article:focus-within::after,
.pickup-details dl div:hover::after,
.pickup-details dl div:focus-within::after,
.home-info-card:hover::after,
.home-info-card:focus-within::after,
.category-card:hover::after,
.category-card:focus-within::after,
.set-card:hover::after,
.set-card:focus-within::after,
.review-card:hover::after,
.review-card:focus-within::after {
  opacity: 0.88;
}

.step-list li::before {
  align-items: center;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #57bdb6, #1f837c);
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 12px 24px rgba(34, 132, 126, 0.2);
  color: #ffffff;
  content: counter(steps, decimal-leading-zero);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  letter-spacing: 0;
  left: auto;
  line-height: 1;
  margin-bottom: 2px;
  min-width: 42px;
  opacity: 1;
  padding: 0;
  position: relative;
  right: auto;
  text-align: center;
  top: auto;
  transform: none;
  transform-origin: center;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, transform 0.22s ease;
  visibility: visible;
  width: 42px;
  z-index: 2;
}

.step-list li > strong,
.step-list li > span {
  position: relative;
  z-index: 1;
}

.step-list li:hover::before,
.step-list li:focus-within::before {
  border-color: rgba(255, 255, 255, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 15px 30px rgba(34, 132, 126, 0.26);
  color: #ffffff;
  transform: translateY(-1px);
}

.step-list strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.step-list span {
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

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

.content-facts div {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
  padding: 18px;
}

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

.education-program-card,
.license-document-panel,
.license-details div,
.education-faq details {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
}

.education-program-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.education-program-card img {
  aspect-ratio: 16 / 10;
  box-sizing: border-box;
  display: block;
  height: auto;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.education-program-card img.education-image-safety {
  object-position: center 42%;
}

.education-program-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.education-program-card span,
.license-document-panel h3 {
  color: var(--accent-dark);
  font-weight: 900;
}

.education-program-card span {
  font-size: 12px;
  text-transform: uppercase;
}

.education-program-card h3,
.license-document-panel h3 {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
}

.education-program-card p,
.education-note,
.education-faq p,
.license-document-panel p,
.license-details span {
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.education-program-card .button {
  margin-top: auto;
  width: 100%;
}

.education-note {
  max-width: 820px;
}

.education-faq {
  display: grid;
  gap: 12px;
}

.education-faq details {
  padding: 16px 18px;
}

.education-faq summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.35;
}

.education-faq p {
  margin-top: 10px;
}

.license-document-panel {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 62px minmax(0, 1fr);
  padding: 18px;
}

.license-document-mark {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(113, 191, 186, 0.44);
  border-radius: 8px;
  display: inline-flex;
  height: 62px;
  justify-content: center;
  width: 62px;
}

.license-document-mark svg {
  fill: none;
  height: 34px;
  stroke: var(--accent-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 34px;
}

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

.license-details div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.license-details strong {
  color: var(--ink);
  font-size: 14px;
}

.content-facts strong {
  color: var(--ink);
  display: block;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 8px;
}

.step-list strong,
.content-facts strong,
.content-card h2,
.content-card strong,
.contact-channel strong,
.delivery-card h2,
.delivery-card strong,
.delivery-note-grid strong,
.return-summary strong,
.return-panel h2,
.return-condition-list span,
.pickup-details dt,
.home-info-card h2,
.home-info-card h3 {
  position: relative;
  transition: color 0.22s ease;
  z-index: 1;
}

.step-list span,
.content-facts p,
.content-card p,
.contact-channel p,
.delivery-card p,
.delivery-note-grid p,
.return-summary p,
.return-panel p,
.return-condition-list p,
.pickup-details dd,
.home-info-card p {
  position: relative;
  z-index: 1;
}

.content-card-actions,
.return-panel a,
.home-info-card a {
  position: relative;
  z-index: 1;
}

.return-panel a,
.home-info-card a {
  overflow: hidden;
  transform: translate(var(--button-x, 0), var(--button-y, 0));
  transition: box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.content-card-actions a:hover,
.return-panel a:hover,
.home-info-card a:hover {
  box-shadow: 0 12px 24px rgba(31, 91, 88, 0.12);
  transform: translate(var(--button-x, 0), calc(var(--button-y, 0) - 2px));
}

[data-reveal] {
  filter: blur(4px);
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 0.72s ease,
    filter 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.75, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-revealed {
  filter: none;
  opacity: 1;
  transform: none;
}

.step-list li:hover strong,
.step-list li:focus-within strong,
.content-facts div:hover strong,
.content-facts div:focus-within strong,
.content-card:hover h2,
.content-card:focus-within h2,
.content-card:hover strong,
.content-card:focus-within strong,
.contact-channel:hover strong,
.contact-channel:focus-within strong,
.delivery-card:hover h2,
.delivery-card:focus-within h2,
.delivery-card:hover strong,
.delivery-card:focus-within strong,
.delivery-note-grid div:hover strong,
.delivery-note-grid div:focus-within strong,
.return-summary div:hover strong,
.return-summary div:focus-within strong,
.return-panel:hover h2,
.return-panel:focus-within h2,
.return-condition-list article:hover span,
.return-condition-list article:focus-within span,
.pickup-details dl div:hover dt,
.pickup-details dl div:focus-within dt,
.home-info-card:hover h2,
.home-info-card:focus-within h2,
.home-info-card:hover h3,
.home-info-card:focus-within h3,
.category-card:hover span,
.category-card:focus-within span,
.set-card:hover h3,
.set-card:focus-within h3,
.review-card:hover strong,
.review-card:focus-within strong {
  color: var(--accent-dark);
}

.content-facts p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.content-cta {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) max-content;
}

.content-cta h2 {
  color: var(--ink);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 8px;
}

.delivery-methods,
.return-summary {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 22px 0;
}

.delivery-card,
.return-summary div {
  background: #ffffff;
  border: 1px solid #dcebea;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 22px;
}

.delivery-card span,
.pickup-details > span,
.return-panel > span,
.return-summary span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.delivery-card h2,
.pickup-details h2,
.return-panel h2 {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.18;
  margin: 0;
}

.delivery-card p,
.pickup-details p,
.delivery-note-grid p,
.return-panel p,
.return-summary p,
.return-condition-list p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.delivery-card strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  margin-top: auto;
}

.delivery-card-accent {
  background:
    linear-gradient(135deg, rgba(232, 246, 243, 0.98), rgba(255, 244, 223, 0.86)),
    #ffffff;
  border-color: rgba(74, 171, 164, 0.48);
}

.pickup-section {
  background: #ffffff;
  border: 1px solid #dcebea;
  border-radius: 8px;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  margin: 22px 0;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.pickup-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.pickup-details dl {
  display: grid;
  gap: 12px;
  margin: 6px 0 0;
}

.pickup-details dl div {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
}

.pickup-details dt {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  margin: 0 0 4px;
}

.pickup-details dd {
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
  margin: 0;
}

.pickup-large-map {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 360px;
  overflow: hidden;
  width: 100%;
}

.pickup-large-map iframe {
  border: 0;
  display: block;
  height: 100%;
  min-height: 360px;
  width: 100%;
}

.delivery-note-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 22px 0;
}

.delivery-note-grid div {
  background: #ffffff;
  border: 1px solid #dcebea;
  border-radius: 8px;
  min-width: 0;
  padding: 20px;
}

.delivery-note-grid strong {
  color: var(--ink);
  display: block;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 8px;
}

.return-summary span {
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  position: relative;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  width: 30px;
  z-index: 1;
}

.return-summary div:hover span,
.return-summary div:focus-within span {
  box-shadow: 0 8px 18px rgba(49, 155, 148, 0.24);
  transform: scale(1.08);
}

.return-summary strong {
  color: var(--ink);
  display: block;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}

.return-split {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 22px 0;
}

.return-panel {
  background: #ffffff;
  border: 1px solid #dcebea;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 24px;
}

.return-panel-accent {
  background:
    linear-gradient(135deg, rgba(232, 246, 243, 0.98), rgba(255, 244, 223, 0.92)),
    #ffffff;
}

.return-panel a {
  align-items: center;
  background: var(--accent);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  margin-top: auto;
  min-height: 42px;
  padding: 0 16px;
  width: fit-content;
}

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

.check-list li {
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
  padding-left: 24px;
  position: relative;
}

.check-list li::before {
  background: var(--accent);
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 8px;
}

.return-condition-list {
  display: grid;
  gap: 12px;
}

.return-condition-list article {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: 260px minmax(0, 1fr);
  min-width: 0;
  padding: 18px;
}

.return-condition-list span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

@media (prefers-reduced-motion: reduce) {
  .content-section,
  .content-cta,
  .pickup-section,
  .step-list li,
  .content-facts div,
  .content-card,
  .contact-channel,
  .delivery-card,
  .return-summary div,
  .delivery-note-grid div,
  .return-panel,
  .return-condition-list article,
  .pickup-details dl div,
  .home-info-card,
  .category-card,
  .set-card,
  .review-card,
  .consult-card,
  .consult-card a,
  .consult-icon,
  .pickup-map,
  .step-list li::before,
  .return-summary span,
  [data-reveal] {
    transition: none;
  }

  [data-reveal] {
    filter: none;
    opacity: 1;
    transform: none;
  }

  .content-section:hover,
  .content-section:focus-within,
  .content-cta:hover,
  .content-cta:focus-within,
  .pickup-section:hover,
  .pickup-section:focus-within,
  .step-list li:hover,
  .step-list li:focus-within,
  .content-facts div:hover,
  .content-facts div:focus-within,
  .content-card:hover,
  .content-card:focus-within,
  .contact-channel:hover,
  .contact-channel:focus-within,
  .delivery-card:hover,
  .delivery-card:focus-within,
  .return-summary div:hover,
  .return-summary div:focus-within,
  .delivery-note-grid div:hover,
  .delivery-note-grid div:focus-within,
  .return-panel:hover,
  .return-panel:focus-within,
  .return-condition-list article:hover,
  .return-condition-list article:focus-within,
  .pickup-details dl div:hover,
  .pickup-details dl div:focus-within,
  .home-info-card:hover,
  .home-info-card:focus-within,
  .category-card:hover,
  .category-card:focus-within,
  .set-card:hover,
  .set-card:focus-within,
  .review-card:hover,
  .review-card:focus-within,
  .pickup-map:hover,
  .pickup-map:focus-within,
  .category-card:hover img,
  .category-card:focus-within img,
  .set-card:hover img,
  .set-card:focus-within img,
  .step-list li:hover::before,
  .step-list li:focus-within::before,
  .return-summary div:hover span,
  .return-summary div:focus-within span,
  .effect-card,
  .effect-card:hover,
  .effect-card:focus-within,
  .button,
  .button:hover,
  .content-card-actions a,
  .content-card-actions a:hover,
  .return-panel a,
  .return-panel a:hover,
  .home-info-card a,
  .home-info-card a:hover,
  .consult-card,
  .consult-card:hover,
  .consult-card:focus-within,
  .consult-card a,
  .consult-card a:hover,
  .consult-card a:focus-visible {
    transform: none;
  }

  .effect-card::before,
  .effect-card::after,
  .button::after,
  .content-card-actions a::after,
  .return-panel a::after,
  .home-info-card a::after,
  .consult-card::before,
  .consult-card a::before,
  .consult-card a::after,
  .content-section::before,
  .content-cta::before,
  .pickup-section::before {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .content-section:hover,
  .content-section:focus-within,
  .content-cta:hover,
  .content-cta:focus-within,
  .pickup-section:hover,
  .pickup-section:focus-within,
  .step-list li:hover,
  .step-list li:focus-within,
  .content-facts div:hover,
  .content-facts div:focus-within,
  .content-card:hover,
  .content-card:focus-within,
  .contact-channel:hover,
  .contact-channel:focus-within,
  .delivery-card:hover,
  .delivery-card:focus-within,
  .return-summary div:hover,
  .return-summary div:focus-within,
  .delivery-note-grid div:hover,
  .delivery-note-grid div:focus-within,
  .return-panel:hover,
  .return-panel:focus-within,
  .return-condition-list article:hover,
  .return-condition-list article:focus-within,
  .pickup-details dl div:hover,
  .pickup-details dl div:focus-within,
  .home-info-card:hover,
  .home-info-card:focus-within,
  .category-card:hover,
  .category-card:focus-within,
  .set-card:hover,
  .set-card:focus-within,
  .review-card:hover,
  .review-card:focus-within,
  .pickup-map:hover,
  .pickup-map:focus-within,
  .button:hover,
  .content-card-actions a:hover,
  .return-panel a:hover,
  .home-info-card a:hover,
  .consult-card:hover,
  .consult-card:focus-within,
  .consult-card a:hover,
  .consult-card a:focus-visible {
    transform: none;
  }

  .category-card:hover img,
  .category-card:focus-within img,
  .set-card:hover img,
  .set-card:focus-within img {
    filter: none;
    transform: none;
  }

  .effect-card:hover::before,
  .effect-card:focus-within::before,
  .effect-card:hover::after,
  .effect-card:focus-within::after,
  .button:hover::after,
  .content-card-actions a:hover::after,
  .return-panel a:hover::after,
  .home-info-card a:hover::after,
  .consult-card:hover::before,
  .consult-card:focus-within::before,
  .consult-card a:hover::before,
  .consult-card a:hover::after,
  .consult-card a:focus-visible::before,
  .consult-card a:focus-visible::after,
  .content-section:hover::before,
  .content-section:focus-within::before,
  .content-cta:hover::before,
  .content-cta:focus-within::before,
  .pickup-section:hover::before,
  .pickup-section:focus-within::before {
    opacity: 0;
  }
}

.catalog-page {
  padding-top: 22px;
}

.breadcrumbs {
  align-items: center;
  color: #7f9198;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 9px;
  margin: 0 0 18px;
}

.breadcrumbs a {
  color: var(--accent-dark);
}

.catalog-hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(232, 246, 243, 0.98) 0%, rgba(246, 251, 250, 0.96) 58%, rgba(255, 255, 255, 0.92) 100%),
    url("/assets/reference/hero-products-v2.webp") right center / contain no-repeat;
  border: 1px solid #dcebea;
  border-radius: 8px;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 20px;
  min-height: 218px;
  overflow: hidden;
  padding: 32px;
}

.catalog-hero span {
  color: var(--accent-dark);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 10px;
}

.catalog-hero h1 {
  color: var(--ink);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 14px;
  max-width: 650px;
}

.catalog-hero p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  max-width: 560px;
}

.catalog-directions,
.catalog-layout {
  scroll-margin-top: 18px;
}

.catalog-directions[hidden],
.catalog-layout[hidden],
.catalog-category-strip[hidden] {
  display: none !important;
}

.catalog-directions {
  margin: 0 0 26px;
}

.catalog-directions-head {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin: 0 0 16px;
}

.catalog-directions-head h2 {
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.16;
  margin: 0;
}

.catalog-directions-head span {
  color: #7f9198;
  font-size: 14px;
  font-weight: 850;
}

.catalog-directions-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.catalog-direction-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(31, 54, 66, 0.035);
  color: inherit;
  cursor: pointer;
  display: block;
  height: 176px;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
  width: 100%;
}

.catalog-direction-card:hover {
  border-color: #9bd1cd;
  box-shadow: 0 18px 44px rgba(31, 54, 66, 0.08);
  transform: translateY(-2px);
}

.catalog-category-strip {
  display: flex;
  gap: 12px;
  margin: 0 0 22px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.catalog-category-strip::-webkit-scrollbar {
  display: none;
}

.catalog-category-strip button {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 850;
  height: 44px;
  padding: 0 18px;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
  white-space: nowrap;
}

.catalog-category-strip button:hover,
.catalog-category-strip button.is-active {
  background: #edf8f6;
  border-color: #9bd1cd;
  color: var(--accent-dark);
}

.catalog-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: 286px minmax(0, 1fr);
}

.catalog-filter {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(31, 54, 66, 0.035);
  max-height: calc(100dvh - 168px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px;
  position: sticky;
  top: 148px;
  -webkit-overflow-scrolling: touch;
}

.catalog-filter-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.catalog-filter-head strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.catalog-filter-head button,
.catalog-toolbar button {
  align-items: center;
  background: #ffffff;
  border: 1px solid #9bd1cd;
  border-radius: 8px;
  color: var(--accent-dark);
  display: none;
  font-weight: 850;
  gap: 8px;
  height: 42px;
  justify-content: center;
  padding: 0 14px;
}

.catalog-filter-head svg,
.catalog-toolbar svg {
  fill: none;
  height: 19px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 19px;
}

.catalog-filter fieldset {
  border: 0;
  border-top: 1px solid #edf2f3;
  margin: 0;
  padding: 18px 0 0;
}

.catalog-filter fieldset + fieldset {
  margin-top: 18px;
}

.catalog-filter legend {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 12px;
  padding: 0;
}

.catalog-filter label {
  align-items: center;
  color: var(--text);
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.catalog-filter input {
  accent-color: var(--accent);
  height: 17px;
  width: 17px;
}

.catalog-filter p {
  color: #7f9198;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  margin: 0;
}

.catalog-filter-reset {
  background: #edf8f6;
  border: 1px solid #cce6e3;
  border-radius: 8px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 850;
  height: 44px;
  margin-top: 8px;
  width: 100%;
}

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

.catalog-toolbar {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 14px 16px;
}

.catalog-toolbar p {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  margin: 0 auto 0 0;
}

.catalog-toolbar strong {
  color: var(--ink);
  font-weight: 900;
}

.catalog-toolbar [data-direction-back] {
  background: #edf8f6;
  border-color: #cce6e3;
  display: inline-flex;
}

.catalog-toolbar label {
  align-items: center;
  color: #7f9198;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 10px;
}

.catalog-toolbar select {
  appearance: none;
  background: #f8fbfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  height: 40px;
  padding: 0 34px 0 12px;
}

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

.catalog-products .product-card {
  flex: initial;
  min-width: 0;
  scroll-snap-align: none;
}

.catalog-products .product-image {
  background: #ffffff;
}

.catalog-products .product-image img[src*="/assets/shop/"] {
  mix-blend-mode: normal;
}

.catalog-empty {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-size: 16px;
  font-weight: 750;
  grid-column: 1 / -1;
  margin: 0;
  padding: 34px;
  text-align: center;
}

.reviews-section {
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(237, 248, 246, 0.98) 0%, rgba(220, 242, 238, 0.96) 48%, rgba(195, 230, 224, 0.94) 100%),
    #edf8f6;
  border: 1px solid #cce6e3;
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(31, 54, 66, 0.045);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(210px, 0.72fr) 166px minmax(0, 2.25fr);
  margin: 0 0 24px;
  padding: 16px;
}

.reviews-copy {
  align-self: center;
  grid-column: 1;
  grid-row: 1;
  padding: 0 4px;
}

.reviews-copy span {
  color: var(--accent-dark);
  display: block;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 6px;
}

.reviews-copy h2 {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 7px;
}

.reviews-copy p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.reviews-score {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 253, 252, 0.78)),
    #ffffff;
  border: 1px solid rgba(113, 191, 186, 0.36);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(31, 91, 88, 0.06);
  display: grid;
  gap: 4px 10px;
  grid-column: 2;
  grid-row: 1;
  grid-template-columns: 1fr;
  justify-items: start;
  padding: 10px;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.reviews-score:hover,
.reviews-score:focus-within {
  border-color: rgba(74, 171, 164, 0.68);
  box-shadow: 0 14px 30px rgba(31, 91, 88, 0.1);
  transform: translateY(-1px);
}

.reviews-score:has(a:hover) {
  border-color: rgba(74, 171, 164, 0.68);
  box-shadow: 0 14px 30px rgba(31, 91, 88, 0.1);
  transform: translateY(-1px);
}

.reviews-score strong {
  color: var(--ink);
  display: block;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.reviews-source-mark {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: 30px minmax(0, 1fr);
  margin-bottom: 2px;
}

.reviews-source-mark img {
  border-radius: 8px;
  height: 30px;
  width: 30px;
}

.reviews-source-mark p {
  margin: 0;
}

.reviews-source-mark strong {
  font-size: 12px;
  line-height: 1.12;
  margin: 0;
}

.reviews-source-mark em {
  color: var(--muted);
  display: block;
  font-size: 10px;
  font-style: normal;
  font-weight: 750;
  line-height: 1.2;
  margin-top: 2px;
}

.reviews-score span {
  color: #2d9790;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
}

.reviews-score p {
  color: var(--text);
  font-size: 13px;
  line-height: 1.35;
  margin: 2px 0;
}

.reviews-score .reviews-source-mark p {
  margin: 0;
}

.reviews-score a {
  align-items: center;
  background: #ffffff;
  border: 1px solid #71bfba;
  border-radius: 8px;
  color: var(--accent-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  height: 34px;
  justify-content: center;
  overflow: hidden;
  padding: 0 14px;
  position: relative;
  transition:
    background 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease,
    transform 0.16s ease;
  width: 100%;
}

.reviews-score a::after {
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.14) 35%,
    rgba(255, 255, 255, 0.72) 50%,
    rgba(255, 255, 255, 0.14) 65%,
    transparent 100%
  );
  content: "";
  inset: -2px auto -2px -55%;
  pointer-events: none;
  position: absolute;
  transform: skewX(-18deg);
  width: 42%;
}

.reviews-score a:hover,
.reviews-score a:focus-visible {
  background: linear-gradient(180deg, #3da9a2, var(--accent-dark));
  border-color: var(--accent-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.reviews-score a:hover::after,
.reviews-score a:focus-visible::after {
  animation: reviewsCtaShine 0.7s ease;
}

@keyframes reviewsCtaShine {
  from {
    left: -55%;
  }

  to {
    left: 115%;
  }
}

.reviews-list {
  display: grid;
  gap: 10px;
  grid-column: 3;
  grid-row: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 253, 252, 0.82)),
    #ffffff;
  border: 1px solid rgba(113, 191, 186, 0.34);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(31, 91, 88, 0.055);
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 13px;
}

.review-card header {
  align-items: flex-start;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin-bottom: 7px;
}

.review-card strong {
  color: var(--ink);
  display: block;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.review-card span {
  color: #2d9790;
  flex: 0 0 auto;
  font-size: 12px;
  letter-spacing: 0;
}

.review-card-fallback {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 252, 250, 0.86)),
    #ffffff;
  border-color: rgba(113, 191, 186, 0.42);
}

.review-card p {
  color: var(--text);
  display: -webkit-box;
  font-size: 13px;
  line-height: 1.42;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.review-card.is-expanded p {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.review-expand {
  align-self: flex-start;
  background: none;
  border: 0;
  color: var(--accent-dark);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  margin: 9px 0 0;
  padding: 0;
}

.reviews-modal-backdrop {
  align-items: center;
  background: rgba(19, 43, 58, 0.48);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 120;
}

.reviews-modal {
  background: #ffffff;
  border: 1px solid rgba(113, 191, 186, 0.4);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(19, 43, 58, 0.26);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  max-height: min(760px, calc(100dvh - 48px));
  overflow: hidden;
  width: min(820px, 100%);
}

.reviews-modal-head {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 20px 22px 16px;
}

.reviews-modal-head span {
  color: var(--accent-dark);
  display: block;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 4px;
}

.reviews-modal-head h3 {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
  margin: 0;
}

.reviews-modal-close {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  height: 40px;
  justify-content: center;
  padding: 0;
  transition: border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
  width: 40px;
}

.reviews-modal-close:hover,
.reviews-modal-close:focus-visible {
  border-color: #71bfba;
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.reviews-modal-close svg {
  fill: none;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 20px;
}

.reviews-modal-summary {
  align-items: center;
  background: linear-gradient(135deg, #f3fbfa, #ffffff);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 10px;
  padding: 12px 22px;
}

.reviews-modal-summary strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.reviews-modal-summary span {
  color: #2d9790;
  font-size: 14px;
  letter-spacing: 0;
}

.reviews-modal-summary a {
  border: 1px solid #71bfba;
  border-radius: 8px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 850;
  margin-left: auto;
  padding: 8px 12px;
  transition: background 0.16s ease, color 0.16s ease;
}

.reviews-modal-summary a:hover,
.reviews-modal-summary a:focus-visible {
  background: var(--accent-dark);
  color: #ffffff;
}

.reviews-modal-list {
  display: grid;
  gap: 12px;
  overflow-y: auto;
  padding: 18px 22px 22px;
}

.reviews-modal-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 16px;
}

.reviews-modal-card.is-current {
  border-color: #71bfba;
  box-shadow: 0 12px 28px rgba(31, 91, 88, 0.08);
}

.reviews-modal-card header {
  align-items: start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.reviews-modal-card strong {
  color: var(--ink);
  display: block;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.reviews-modal-card small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-top: 3px;
}

.reviews-modal-card span {
  color: #2d9790;
  flex: 0 0 auto;
  font-size: 12px;
  letter-spacing: 0;
}

.reviews-modal-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.52;
  margin: 0;
  white-space: pre-line;
}

.review-card.is-loading {
  background:
    linear-gradient(90deg, rgba(235, 248, 246, 0.76), rgba(255, 255, 255, 0.92), rgba(235, 248, 246, 0.76)),
    #f5fbfa;
  min-height: 142px;
}

.reviews-section .review-card::after {
  background:
    radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(49, 155, 148, 0.14), rgba(49, 155, 148, 0) 30%),
    linear-gradient(135deg, rgba(49, 155, 148, 0.08), rgba(255, 255, 255, 0) 68%);
  opacity: 0;
}

.reviews-section .review-card:hover::after,
.reviews-section .review-card:focus-within::after {
  opacity: 0.5;
}

.brands {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(31, 54, 66, 0.025);
  padding: 24px 48px 28px;
}

.brands h2 {
  font-size: 22px;
  margin-bottom: 22px;
}

.brands div {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(6, 1fr);
}

.brands span {
  align-items: center;
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #162c3a;
  display: inline-flex;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  height: 46px;
  justify-content: center;
  padding: 0 10px;
  text-align: center;
}

.brands span:nth-child(2) {
  font-size: 19px;
  letter-spacing: 0.28em;
  padding-left: 0.28em;
}

.brands span:nth-child(3),
.brands span:nth-child(4),
.brands span:nth-child(6) {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
}

.brands span:nth-child(5) {
  font-size: 20px;
  font-weight: 650;
}

.site-footer {
  background: #2d3f50;
  color: #edf5f5;
  margin-top: 48px;
}

.footer-inner {
  margin: 0 auto;
  max-width: 1512px;
  padding: 42px 30px 28px;
}

.footer-top {
  align-items: stretch;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(320px, 0.7fr) minmax(760px, 1.3fr);
  padding-bottom: 34px;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer-brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  margin-bottom: 18px;
  width: max-content;
}

.footer-brand .brand-text {
  color: #f3fbfb;
}

.footer-brand-block p {
  color: #cbd8dc;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 20px;
  max-width: 620px;
}

.footer-factors {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0 0 22px;
  max-width: 620px;
  padding: 0;
}

.footer-factors li {
  align-items: center;
  color: #eff8f7;
  display: flex;
  font-size: 14px;
  font-weight: 750;
  gap: 10px;
  line-height: 1.3;
}

.footer-factors li::before {
  background: #67c1ba;
  border-radius: 50%;
  content: "";
  flex: 0 0 7px;
  height: 7px;
  width: 7px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  transition: transform 0.16s ease, background 0.16s ease;
  width: 42px;
}

.footer-socials a:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.footer-socials img {
  height: 20px;
  width: 20px;
}

.footer-contact-form {
  align-items: start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  padding: 22px;
}

.footer-contact-copy {
  min-width: 0;
}

.footer-contact-copy > span {
  color: #7fd3cc;
  display: block;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 8px;
}

.footer-contact-copy h2 {
  color: #ffffff;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.18;
  margin: 0 0 18px;
  max-width: 560px;
}

.footer-contact-copy > p {
  color: #cbd8dc;
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.footer-pickup-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 14px;
}

.footer-pickup-card strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.footer-pickup-card span {
  color: #d7e4e7;
  font-size: 13px;
  line-height: 1.4;
}

.footer-pickup-card a {
  color: #8be1d9;
  font-size: 13px;
  font-weight: 900;
  width: max-content;
}

.footer-pickup-card a:hover {
  color: #ffffff;
}

.footer-pickup-map {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  height: 150px;
  margin-top: 4px;
  overflow: hidden;
}

.footer-pickup-map iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.footer-contact-fields {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
}

.footer-contact-form label {
  color: #cbd8dc;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 750;
  gap: 7px;
  min-width: 0;
}

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

.footer-contact-form input,
.footer-contact-form textarea {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  min-width: 0;
  outline: 0;
  padding: 12px 13px;
  resize: vertical;
  width: 100%;
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
  border-color: #7fd3cc;
  box-shadow: 0 0 0 3px rgba(127, 211, 204, 0.16);
}

.footer-contact-form button {
  align-items: center;
  background: #45aaa3;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  padding: 0 20px;
  width: max-content;
}

.footer-contact-fields p {
  color: #cbd8dc;
  font-size: 13px;
  grid-column: 1 / -1;
  line-height: 1.4;
  margin: 0;
}

.footer-links {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr 1.25fr 1fr;
  padding: 30px 0;
}

.footer-links nav,
.footer-contacts {
  display: flex;
  flex-direction: column;
  font-style: normal;
  gap: 10px;
  min-width: 0;
}

.footer-links h3,
.footer-contacts h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 4px;
}

.footer-links a,
.footer-contacts a,
.footer-contacts span {
  color: #cbd8dc;
  font-size: 14px;
  line-height: 1.35;
}

.footer-links a:hover,
.footer-contacts a:hover,
.footer-legal a:hover {
  color: #ffffff;
}

.footer-legal {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  padding-top: 22px;
}

.footer-legal div,
.footer-legal nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.footer-legal strong {
  color: #ffffff;
  font-size: 14px;
}

.footer-legal span,
.footer-legal a {
  color: #c1d0d4;
  font-size: 12px;
  line-height: 1.35;
}

.favorites-drawer,
.cart-drawer {
  background: #ffffff;
  border-left: 1px solid var(--line);
  bottom: 0;
  box-shadow: -24px 0 60px rgba(19, 43, 58, 0.14);
  display: grid;
  grid-template-rows: auto 1fr auto;
  max-width: 390px;
  padding: 20px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(105%);
  transition: transform 0.22s ease;
  width: min(100vw, 390px);
  z-index: 40;
}

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

.drawer-header,
.cart-header,
.cart-line,
.cart-total {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.drawer-header,
.cart-header {
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
  padding-bottom: 14px;
}

.drawer-header h2,
.cart-header h2 {
  font-size: 24px;
  margin: 0;
}

.drawer-header button,
.cart-header button {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  height: 40px;
  justify-content: center;
  padding: 0;
  width: 40px;
}

.drawer-header svg,
.cart-header svg {
  height: 20px;
  width: 20px;
}

.favorites-list {
  display: grid;
  gap: 12px;
  overflow-y: auto;
  padding-right: 2px;
}

.favorite-line {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 72px minmax(0, 1fr);
  padding: 10px;
}

.favorite-line img {
  background: #f5f8f8;
  border-radius: 8px;
  height: 72px;
  object-fit: contain;
  padding: 4px;
  width: 72px;
}

.favorite-line strong {
  color: var(--ink);
  display: block;
  font-size: 14px;
  line-height: 1.28;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}

.favorite-line span {
  color: var(--ink);
  display: block;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 10px;
}

.favorite-line-actions {
  display: flex;
  gap: 8px;
}

.favorite-line-actions button {
  align-items: center;
  background: #ffffff;
  border: 1px solid #71bfba;
  border-radius: 8px;
  color: var(--accent-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  height: 34px;
  justify-content: center;
  padding: 0 12px;
}

.favorite-line-actions button[data-remove-favorite] {
  border-color: var(--line);
  color: var(--muted);
}

.cart-line {
  border-bottom: 1px solid var(--line);
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 14px 0;
}

.cart-line strong,
.cart-line span {
  display: block;
  overflow-wrap: anywhere;
}

.cart-line span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.cart-line-controls {
  align-items: center;
  display: flex;
  gap: 6px;
  width: 100%;
}

.cart-line-controls button {
  align-items: center;
  background: #f8fbfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  height: 32px;
  justify-content: center;
  padding: 0 10px;
}

.cart-line-controls button[data-cart-decrease],
.cart-line-controls button[data-cart-increase] {
  font-size: 18px;
  padding: 0;
  width: 36px;
}

.cart-quantity-input {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  height: 32px;
  text-align: center;
  width: 64px;
}

.cart-quantity-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(92, 175, 170, 0.16);
  outline: none;
}

.cart-line-controls button:last-child {
  color: var(--muted);
  margin-left: auto;
}

.cart-total {
  border-top: 1px solid var(--line);
  font-size: 20px;
  padding-top: 18px;
}

.cart-checkout {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  padding-top: 16px;
}

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

.cart-checkout strong {
  color: var(--ink);
  font-size: 16px;
}

.cart-checkout input,
.cart-checkout textarea,
.account-form input,
.account-form select,
.account-form textarea {
  background: #f8fbfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  outline: 0;
  padding: 11px 12px;
  resize: vertical;
  width: 100%;
}

.cart-checkout input:focus,
.cart-checkout textarea:focus,
.account-form input:focus,
.account-form select:focus,
.account-form textarea:focus {
  border-color: #9bd1cd;
  box-shadow: 0 0 0 3px rgba(49, 155, 148, 0.08);
}

.cart-checkout button,
.cart-checkout-link,
.account-form button,
.account-action,
.checkout-submit {
  align-items: center;
  background: linear-gradient(180deg, #3da9a2, var(--accent-dark));
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  padding: 0 18px;
  text-decoration: none;
}

.cart-checkout p,
.account-status {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
}

.cart-toast {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(113, 191, 186, 0.46);
  border-radius: 8px;
  bottom: 24px;
  box-shadow: 0 18px 48px rgba(19, 43, 58, 0.16);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: min(92vw, 520px);
  opacity: 0;
  padding: 14px 16px;
  position: fixed;
  right: 24px;
  transform: translateY(12px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 60;
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cart-toast span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.cart-toast div {
  display: flex;
  gap: 8px;
}

.cart-toast button,
.cart-toast a {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  height: 36px;
  justify-content: center;
  padding: 0 12px;
  text-decoration: none;
  white-space: nowrap;
}

.cart-toast button {
  background: #ffffff;
  border: 1px solid #71bfba;
  color: var(--accent-dark);
  cursor: pointer;
}

.cart-toast a {
  background: linear-gradient(180deg, #3da9a2, var(--accent-dark));
  color: #ffffff;
}

.empty-state {
  color: var(--muted);
  padding: 26px 0;
}

.account-header-main {
  grid-template-columns: 210px minmax(0, 1fr);
}

.account-nav {
  justify-content: flex-end;
}

.product-detail-page {
  margin: 0 auto;
  max-width: 1180px;
  padding: 30px 24px 48px;
}

.product-detail {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(31, 54, 66, 0.04);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  padding: 28px;
}

.product-detail-media {
  align-items: center;
  background: #ffffff;
  border: 1px solid #dcebea;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  min-height: 430px;
  padding: 28px;
}

.product-detail-media img {
  height: 100%;
  max-height: 440px;
  object-fit: contain;
  width: 100%;
}

.product-detail-copy {
  align-self: center;
  display: grid;
  gap: 14px;
}

.product-detail-kicker {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.product-detail h1 {
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  margin: 0;
  overflow-wrap: anywhere;
}

.product-detail-lead {
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.product-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-detail-meta span {
  background: #edf8f6;
  border: 1px solid #cce6e3;
  border-radius: 8px;
  color: #2d5a57;
  font-size: 13px;
  font-weight: 800;
  padding: 7px 10px;
}

.product-detail-price {
  color: var(--ink);
  font-size: 32px;
  font-weight: 950;
}

.master-price-note {
  background: #f7fbfa;
  border: 1px solid #dcebea;
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 14px;
}

.master-price-note strong {
  color: var(--ink);
  font-size: 15px;
}

.master-price-note span {
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
}

.master-price-note a {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-detail-status {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.product-detail-status a {
  color: var(--accent-dark);
  font-weight: 850;
}

.product-detail-description {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 18px;
  padding: 24px;
}

.product-detail-description h2 {
  color: var(--ink);
  font-size: 24px;
  margin: 0 0 14px;
}

.product-detail-description p {
  color: var(--text);
  line-height: 1.58;
  margin: 0 0 10px;
}

.product-detail-empty {
  grid-template-columns: minmax(0, 680px);
}

.account-page {
  padding-top: 22px;
}

.account-auth {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(31, 54, 66, 0.045);
  display: block;
  margin: 0 auto;
  max-width: 520px;
  overflow: hidden;
}

.account-auth[hidden],
.account-dashboard[hidden] {
  display: none !important;
}

.account-card-head span {
  color: var(--accent-dark);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 7px;
}

.account-auth-main {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.account-tabs {
  background: #f3faf9;
  border: 1px solid #dcebea;
  border-radius: 8px;
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 4px;
}

.account-tab {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 7px;
  color: var(--muted);
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
}

.account-tab.is-active {
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(31, 54, 66, 0.08);
  color: var(--accent-dark);
}

.account-dashboard {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
}

.account-dashboard-side {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.account-card,
.account-form {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(31, 54, 66, 0.035);
  padding: 22px;
}

.account-form {
  display: grid;
  gap: 12px;
}

.account-auth .account-form,
.account-profile .account-form {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

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

.account-form label {
  color: var(--ink);
  display: grid;
  font-size: 13px;
  font-weight: 850;
  gap: 7px;
}

.account-form label span {
  color: var(--muted);
}

.account-card h2,
.account-form h2 {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 6px;
}

.account-profile {
  display: grid;
  gap: 16px;
}

.account-card-head {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.account-card-head h2 {
  margin-bottom: 0;
}

.account-user-summary {
  align-items: center;
  background: #f7fbfa;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 14px;
  padding: 14px;
}

.account-avatar {
  align-items: center;
  background: #dff4f0;
  border-radius: 50%;
  color: var(--accent-dark);
  display: inline-flex;
  flex: 0 0 48px;
  font-size: 18px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.account-user-summary strong,
.account-cart-total strong {
  color: var(--ink);
  display: block;
  font-size: 16px;
  font-weight: 900;
}

.account-user-summary p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  margin: 3px 0 0;
}

.account-orders {
  display: grid;
  gap: 12px;
}

.account-order {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.account-order header {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.account-order strong,
.account-order span {
  display: block;
}

.account-order span,
.account-order p,
.account-order li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.account-order p {
  margin: 10px 0;
}

.account-order ul {
  margin: 0;
  padding-left: 18px;
}

.account-order-status,
.account-order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.account-badge {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  min-height: 28px;
  padding: 0 10px;
}

.account-badge-good {
  background: #e7f8ef;
  color: #20794c;
}

.account-badge-wait {
  background: #fff4df;
  color: #8a5d18;
}

.account-badge-bad {
  background: #ffeceb;
  color: #a5362e;
}

.account-badge-neutral {
  background: #edf4f6;
  color: var(--text);
}

.account-order-items,
.account-cart-lines {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 9px;
  margin-top: 12px;
  padding-top: 12px;
}

.account-order-items div,
.account-cart-lines div,
.account-cart-total {
  align-items: start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.account-order-items span,
.account-cart-lines span,
.account-cart-total span,
.account-cart-more,
.account-payment-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.account-order-items b,
.account-cart-lines b {
  color: var(--ink);
  flex: 0 0 auto;
  font-size: 13px;
}

.account-cart-more,
.account-payment-note {
  margin: 10px 0 0;
}

.account-pay-action {
  margin-top: 12px;
  width: max-content;
}

.account-link,
.account-logout {
  align-items: center;
  background: #ffffff;
  border: 1px solid #71bfba;
  border-radius: 8px;
  color: var(--accent-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  padding: 0 12px;
}

.account-logout {
  border-color: var(--line);
  color: var(--muted);
}

.account-empty {
  background: #f7fbfa;
  border: 1px dashed #cfe4e2;
  border-radius: 8px;
  padding: 18px;
}

.account-empty strong {
  color: var(--ink);
  display: block;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 7px;
}

.account-empty p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 12px;
}

.account-empty a {
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 900;
}

.checkout-page,
.payment-result-page {
  padding-bottom: 52px;
  padding-top: 22px;
}

.checkout-hero {
  background: #edf8f6;
  border: 1px solid #dcebea;
  border-radius: 8px;
  margin-bottom: 22px;
  padding: 28px 30px;
}

.checkout-hero h1 {
  color: var(--ink);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 8px;
}

.checkout-hero p {
  color: var(--text);
  margin: 0;
  max-width: 760px;
}

.checkout-layout {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.checkout-form,
.checkout-summary,
.payment-result {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(31, 54, 66, 0.035);
}

.checkout-form {
  display: grid;
  gap: 18px;
  padding: 22px;
}

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

.checkout-form fieldset {
  border: 0;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.checkout-form legend,
.checkout-summary h2 {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  margin: 0;
  padding: 0;
}

.checkout-form label {
  display: grid;
  gap: 6px;
}

.checkout-form label span,
.checkout-option small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  background: #f8fbfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 44px;
  outline: 0;
  padding: 10px 12px;
  resize: vertical;
  width: 100%;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  border-color: #9bd1cd;
  box-shadow: 0 0 0 3px rgba(49, 155, 148, 0.08);
}

.checkout-form input:user-invalid,
.checkout-form select:user-invalid,
.checkout-form textarea:user-invalid {
  border-color: rgba(159, 44, 44, 0.48);
}

.field-requirement {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 750;
  margin-left: 8px;
  white-space: nowrap;
}

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

.checkout-grid[hidden],
.checkout-form [hidden] {
  display: none !important;
}

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

.checkout-option {
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px minmax(0, 1fr);
  padding: 12px;
}

.checkout-option:has(input:checked) {
  border-color: #71bfba;
  box-shadow: 0 0 0 3px rgba(49, 155, 148, 0.08);
}

.checkout-option input {
  height: 18px;
  margin: 2px 0 0;
  min-height: 18px;
  padding: 0;
  width: 18px;
}

.checkout-option strong {
  color: var(--ink);
  display: block;
  font-size: 14px;
  line-height: 1.25;
}

.checkout-consent {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px minmax(0, 1fr);
}

.checkout-consent input {
  height: 18px;
  margin: 0;
  min-height: 18px;
  padding: 0;
  width: 18px;
}

.checkout-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.checkout-legal a,
.checkout-return {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.checkout-submit {
  width: max-content;
}

.checkout-submit:disabled,
.account-action:disabled {
  cursor: default;
  opacity: 0.68;
}

.checkout-status {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.checkout-status.is-error {
  color: #9f2c2c;
}

.checkout-summary {
  display: grid;
  gap: 14px;
  padding: 20px;
  position: sticky;
  top: 16px;
}

.checkout-summary-line,
.checkout-summary-total {
  align-items: start;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding-top: 12px;
}

.checkout-summary-line:first-child {
  border-top: 0;
  padding-top: 0;
}

.checkout-summary-line strong,
.checkout-summary-line span {
  display: block;
}

.checkout-summary-line strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.3;
}

.checkout-summary-line span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.checkout-summary-line b,
.checkout-summary-total strong {
  color: var(--ink);
  white-space: nowrap;
}

.checkout-summary-total {
  font-size: 18px;
  font-weight: 900;
}

.payment-result {
  margin: 38px auto 0;
  max-width: 680px;
  padding: 30px;
}

.payment-result-kicker {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.payment-result h1 {
  color: var(--ink);
  font-size: 32px;
  line-height: 1.12;
  margin: 0 0 10px;
}

.payment-result p {
  color: var(--text);
  line-height: 1.5;
}

.payment-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: 190px minmax(260px, 1fr) max-content;
  }

  .socials {
    display: none;
  }

  .hero {
    grid-template-columns: 500px 1fr;
  }

  .hero h1 {
    font-size: 40px;
  }

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

  .product-card {
    flex-basis: calc((100% - 44px) / 3);
  }

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

  .home-info-grid,
  .content-grid,
  .contact-channel-grid,
  .delivery-methods,
  .return-summary,
  .education-program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pickup-section {
    grid-template-columns: 1fr;
  }

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

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

  .reviews-section {
    grid-template-columns: minmax(0, 1fr) 210px;
  }

  .reviews-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .reviews-score {
    grid-column: 2;
    grid-row: 1;
  }

  .reviews-list {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .master-banner {
    grid-template-columns: 72px minmax(0, 1fr) 150px;
  }

  .master-banner img {
    display: none;
  }

  .catalog-layout {
    grid-template-columns: 250px minmax(0, 1fr);
  }

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

  .footer-top,
  .footer-legal {
    grid-template-columns: 1fr;
  }

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

  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .checkout-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1280px) {
  .product-card {
    flex-basis: calc((100% - 44px) / 3);
  }
}

@media (max-width: 980px) {
  .product-card {
    flex-basis: calc((100% - 22px) / 2);
  }
}

@media (max-width: 820px) {
  .site-header,
  main {
    max-width: 100%;
    overflow-x: hidden;
    padding-left: 14px;
    padding-right: 14px;
    width: 100%;
  }

  .site-header {
    padding-top: 14px;
  }

  .header-main {
    gap: 12px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    gap: 8px;
    width: 165px;
  }

  .brand-mark {
    border-radius: 8px;
    height: 40px;
    width: 40px;
  }

  .brand-mark svg {
    height: 25px;
    width: 25px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text span {
    font-size: 12px;
  }

  .phone {
    display: none;
  }

  .search {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    height: 44px;
    order: 4;
  }

  .search-submit {
    height: 40px;
    margin-right: -10px;
    width: 40px;
  }

  .search-suggest {
    border-radius: 9px;
    max-height: min(420px, 70vh);
    overflow-y: auto;
    top: calc(100% + 7px);
  }

  .search-suggest-item,
  .search-suggest-all {
    min-height: 46px;
    padding: 10px;
  }

  .header-actions {
    display: flex;
  }

  .header-actions .menu-toggle {
    display: inline-flex;
  }

  .header-actions a,
  .header-actions button:not(.cart-icon):not(.menu-toggle) {
    display: none;
  }

  .nav {
    display: none;
  }

  body.menu-open {
    overflow: hidden;
  }

  .mobile-menu-backdrop {
    background: rgba(19, 43, 58, 0.38);
    bottom: 0;
    display: block;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 50;
  }

  .mobile-menu-backdrop[hidden] {
    display: none;
  }

  .mobile-menu {
    background: #ffffff;
    border-left: 1px solid var(--line);
    bottom: 0;
    box-shadow: -22px 0 56px rgba(19, 43, 58, 0.18);
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 340px;
    overflow-y: auto;
    padding: 18px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(105%);
    transition: transform 0.22s ease;
    width: min(88vw, 340px);
    z-index: 60;
  }

  .mobile-menu.is-open {
    transform: translateX(0);
  }

  .mobile-menu-head {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    padding-bottom: 14px;
  }

  .mobile-menu-head span,
  .mobile-menu nav strong {
    color: var(--ink);
    font-size: 16px;
    font-weight: 900;
  }

  .mobile-menu-head button {
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    padding: 0;
    width: 40px;
  }

  .mobile-menu-head svg {
    fill: none;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 20px;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-menu nav a {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    display: flex;
    font-size: 14px;
    font-weight: 750;
    min-height: 42px;
    padding: 10px 12px;
  }

  .mobile-menu-contacts {
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
  }

  .mobile-menu-contacts a {
    color: var(--ink);
    font-size: 14px;
    font-weight: 850;
  }

  .mobile-menu-socials {
    display: flex;
    gap: 10px;
  }

  .mobile-menu-socials a {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    width: 42px;
  }

  .mobile-menu-socials img {
    height: 20px;
    width: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    max-width: 100%;
    min-height: 0;
    width: 100%;
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    max-width: 100%;
    padding: 28px 16px 20px;
    width: 100%;
  }

  .hero h1 {
    font-size: 26px;
    max-width: 100%;
    width: 100%;
  }

  .hero-copy p {
    font-size: 15px;
    margin-bottom: 22px;
    max-width: 100%;
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-benefits {
    gap: 14px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .hero-media {
    min-height: 286px;
  }

  .product-stage {
    background:
      linear-gradient(180deg, rgba(247, 252, 250, 0.06), rgba(247, 252, 250, 0.22)),
      url("/assets/reference/hero-products-v2.webp") 70% center / cover no-repeat;
  }

  .consult-card {
    display: none;
  }

  .categories {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 18px 0 22px;
    overflow: visible;
    padding-bottom: 0;
  }

  .category-card {
    height: 142px;
    min-width: 0;
  }

  .category-card span {
    font-size: 13px;
    left: 12px;
    line-height: 1.2;
    min-height: 0;
    right: 12px;
    top: 12px;
  }

  .category-card img {
    height: 72px;
    left: 10px;
    top: 62px;
    width: calc(100% - 20px);
  }

  .category-card img[src*="cat-cosmetics-v2"],
  .category-card img[src*="cat-disposable-glove-clean"] {
    height: 76px;
    left: 10px;
    top: 58px;
    width: calc(100% - 20px);
  }

  .category-card-media {
    height: 82px;
    left: 12px;
    right: 12px;
    top: 64px;
  }

  .products-section,
  .sets-section,
  .brands,
  .home-info-section,
  .home-info-grid,
  .content-page {
    max-width: calc(100vw - 28px);
    padding-left: 0;
    padding-right: 0;
    width: calc(100vw - 28px);
  }

  .home-info-section,
  .content-section,
  .content-cta,
  .pickup-section,
  .return-panel {
    padding: 20px;
  }

  .home-info-grid,
  .content-grid,
  .contact-channel-grid,
  .content-grid-two,
  .content-facts,
  .education-program-grid,
  .license-details,
  .step-list,
  .delivery-methods,
  .delivery-note-grid,
  .return-summary,
  .return-split {
    grid-template-columns: 1fr;
  }

  .content-hero {
    gap: 12px;
    min-height: 0;
    max-width: 100%;
    overflow: hidden;
    padding: 24px 20px;
    width: 100%;
  }

  .content-hero-with-media {
    grid-template-columns: 1fr;
  }

  .content-hero-copy,
  .education-program-card,
  .license-document-panel {
    max-width: 100%;
    min-width: 0;
  }

  .content-hero h1 {
    font-size: 28px;
    line-height: 1.13;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .content-hero p {
    font-size: 15px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .content-hero-image,
  .education-program-card img {
    max-width: 100%;
  }

  .content-hero-actions,
  .content-cta {
    grid-template-columns: 1fr;
  }

  .content-hero-actions .button,
  .content-cta .button {
    width: 100%;
  }

  .license-document-panel {
    grid-template-columns: 1fr;
  }

  .pickup-map {
    height: 210px;
  }

  .pickup-large-map,
  .pickup-large-map iframe {
    min-height: 280px;
  }

  .return-condition-list article {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .content-card-actions a {
    width: 100%;
  }

  .section-head a {
    display: none;
  }

  .product-card {
    flex-basis: calc(100vw - 28px);
    min-width: calc(100vw - 28px);
    padding: 14px;
  }

  .product-image {
    height: 184px;
  }

  .catalog-page {
    max-width: calc(100vw - 28px);
    padding-top: 16px;
    width: calc(100vw - 28px);
  }

  .breadcrumbs {
    margin-bottom: 12px;
  }

  .catalog-hero {
    background:
      linear-gradient(180deg, rgba(232, 246, 243, 0.97) 0%, rgba(246, 251, 250, 0.97) 100%),
      #edf8f6;
    grid-template-columns: 1fr;
    margin-bottom: 16px;
    min-height: 0;
    padding: 22px;
  }

  .catalog-hero h1 {
    font-size: 27px;
    line-height: 1.13;
    overflow-wrap: anywhere;
  }

  .catalog-hero p {
    font-size: 15px;
  }

  .catalog-hero .button {
    min-width: 0;
    padding: 0 16px;
    text-align: center;
    white-space: normal;
    width: 100%;
  }

  .catalog-category-strip {
    gap: 10px;
    margin-bottom: 16px;
  }

  .catalog-category-strip button {
    height: 42px;
    padding: 0 14px;
  }

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

  .catalog-directions-head h2 {
    font-size: 24px;
  }

  .catalog-directions-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .catalog-directions-grid::-webkit-scrollbar {
    display: none;
  }

  .catalog-direction-card {
    flex: 0 0 170px;
    height: 156px;
  }

  .catalog-direction-card img {
    height: 82px;
    top: 64px;
  }

  .catalog-direction-card .category-card-media img {
    height: 100%;
    top: auto;
  }

  .catalog-direction-card .category-card-media img[src*="1664-1-ccef7eeb"] {
    height: 86%;
    max-height: 86%;
  }

  .catalog-direction-card .category-card-media img[src*="cat-fitness-set"] {
    height: 106%;
    max-height: 106%;
  }

  .catalog-layout {
    display: block;
  }

  .catalog-filter {
    border-radius: 0;
    bottom: 0;
    box-shadow: 18px 0 44px rgba(31, 54, 66, 0.18);
    left: 0;
    max-height: none;
    max-width: 86vw;
    overflow-y: auto;
    position: fixed;
    top: 0;
    transform: translateX(-105%);
    transition: transform 0.22s ease;
    width: 330px;
    z-index: 35;
  }

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

  .catalog-filter-head button,
  .catalog-toolbar button {
    display: inline-flex;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }

  .catalog-toolbar p {
    align-self: center;
    margin-right: 0;
  }

  .catalog-toolbar label {
    align-items: stretch;
    flex: 1 1 100%;
    flex-direction: column;
    gap: 7px;
  }

  .catalog-toolbar select {
    width: 100%;
  }

  .catalog-products {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .catalog-products .product-card {
    min-width: 0;
  }

  .account-header-main {
    grid-template-columns: 1fr;
  }

  .account-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    grid-column: 1 / -1;
    height: auto;
    justify-content: flex-start;
    overflow-x: visible;
    padding-bottom: 4px;
  }

  [data-reveal] {
    filter: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .account-auth,
  .account-dashboard {
    grid-template-columns: 1fr;
  }

  .account-auth {
    max-width: 520px;
    width: 100%;
  }

  .account-auth-main {
    padding: 20px;
  }

  .checkout-page,
  .product-detail-page,
  .payment-result-page {
    max-width: calc(100vw - 28px);
    padding-top: 16px;
    width: calc(100vw - 28px);
  }

  .checkout-hero,
  .checkout-form,
  .checkout-summary,
  .payment-result {
    padding: 20px;
  }

  .checkout-hero h1,
  .payment-result h1 {
    font-size: 27px;
    line-height: 1.13;
  }

  .checkout-layout,
  .checkout-grid,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail {
    gap: 18px;
    padding: 18px;
  }

  .product-detail-media {
    min-height: 280px;
    padding: 18px;
  }

  .product-detail h1 {
    font-size: 27px;
    line-height: 1.13;
  }

  .product-detail-actions .button,
  .cart-toast {
    width: 100%;
  }

  .cart-toast {
    bottom: 14px;
    grid-template-columns: 1fr;
    left: 14px;
    max-width: calc(100vw - 28px);
    right: 14px;
  }

  .cart-toast div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .checkout-summary {
    position: static;
  }

  .checkout-submit,
  .account-pay-action {
    width: 100%;
  }

  .carousel-arrow {
    display: none;
  }

  .set-card {
    grid-template-columns: minmax(0, 1fr) 150px;
    height: 168px;
  }

  .set-card img {
    width: 150px;
  }

  .master-banner {
    align-items: start;
    gap: 14px;
    grid-template-columns: 56px minmax(0, 1fr);
    height: auto;
    max-width: calc(100vw - 28px);
    padding: 20px;
    width: calc(100vw - 28px);
  }

  .master-banner > div,
  .reviews-copy,
  .reviews-score,
  .review-card {
    min-width: 0;
  }

  .master-banner h2 {
    font-size: 21px;
    line-height: 1.18;
  }

  .master-banner p,
  .reviews-copy p,
  .review-card p,
  .brands h2 {
    overflow-wrap: anywhere;
  }

  .master-banner .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .reviews-section {
    gap: 12px;
    grid-template-columns: 1fr;
    margin-bottom: 18px;
    max-width: calc(100vw - 28px);
    overflow: hidden;
    padding: 14px;
    width: calc(100vw - 28px);
  }

  .reviews-copy,
  .reviews-score,
  .reviews-list {
    grid-column: auto;
    grid-row: auto;
  }

  .reviews-list {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .reviews-score {
    min-height: 0;
    width: 100%;
  }

  .reviews-score a {
    width: 100%;
  }

  .reviews-modal-backdrop {
    align-items: stretch;
    padding: 12px;
  }

  .reviews-modal {
    max-height: calc(100dvh - 24px);
    width: 100%;
  }

  .reviews-modal-head {
    padding: 16px 16px 12px;
  }

  .reviews-modal-head h3 {
    font-size: 20px;
  }

  .reviews-modal-summary {
    align-items: stretch;
    flex-wrap: wrap;
    padding: 12px 16px;
  }

  .reviews-modal-summary a {
    margin-left: 0;
    text-align: center;
    width: 100%;
  }

  .reviews-modal-list {
    padding: 14px 16px 16px;
  }

  .review-card header {
    align-items: center;
    flex-direction: row;
    gap: 6px;
  }

  .banner-icon {
    height: 56px;
    width: 56px;
  }

  .brands {
    overflow: hidden;
    padding: 22px 18px;
  }

  .brands div {
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }

  .brands span {
    font-size: 16px;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .brands span:nth-child(2) {
    font-size: 15px;
    letter-spacing: 0.18em;
    padding-left: 0.18em;
  }

  .brands span:nth-child(3),
  .brands span:nth-child(4),
  .brands span:nth-child(6) {
    font-size: 18px;
  }

  .site-footer {
    margin-top: 34px;
  }

  .footer-inner {
    padding: 32px 14px 24px;
  }

  .footer-top {
    gap: 24px;
    padding-bottom: 26px;
  }

  .footer-factors,
  .footer-links,
  .footer-contact-form,
  .footer-contact-fields {
    grid-template-columns: 1fr;
  }

  .footer-contact-form {
    padding: 20px;
  }

  .footer-contact-copy h2 {
    font-size: 21px;
  }

  .footer-contact-form button {
    width: 100%;
  }

  .footer-links {
    gap: 22px;
    padding: 26px 0;
  }

  .footer-legal {
    gap: 18px;
  }
}
