:root {
  --green: #067d44;
  --orange: #f97316;
  --orange-dark: #fc5b00;
  --black: #1a1a1a;
  --gray: #666;
  --gray-light: #989da4;
  --gray-border: rgba(229, 231, 235, 0.75);
  --white: #fff;
  --shadow: 2px 2px 2.5px rgba(0, 0, 0, 0.07);
  --container: 1440px;
  --gutter: clamp(16px, 5vw, 80px);
  --bg-alt: #f5f6f8;
  --tan-green: #ebfaf3;
  --blue: #0048ff;
  --red: #ee5346;
  --bg-primary: #f8fbf9;
  --radius-sm: 16px;
  --radius-lg: 36px;
  --font: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* Typography */
.h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -0.96px;
}

.h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
}

.section-subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 18px;
  color: var(--gray);
  text-align: center;
}

.section-subtitle--wide {
  max-width: 720px;
  margin-inline: auto;
  line-height: 1.5;
}

.section {
  padding-block: 48px;
}

.section--alt {
  background: var(--bg-alt);
}

.section--tight {
  padding-block: 16px;
}

.section__header {
  margin-bottom: 32px;
}

.section__header .h2 + .section-subtitle {
  margin-top: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  white-space: nowrap;
  transition: opacity 0.2s, background 0.2s;
}

.btn:hover {
  opacity: 0.85;
}

.btn--green-text {
  color: var(--green);
}

.btn--outline-green {
  color: var(--green);
  border: 1px solid var(--green);
  padding-inline: 16px 24px;
}

.btn--outline-green-lg {
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.btn--orange-sm {
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-weight: 600;
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
}

.btn--ghost {
  color: var(--green);
  font-weight: 600;
}

.btn--link {
  color: var(--green);
  font-weight: 600;
  padding: 0;
}

/* Icons inline */
.icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.icon--32 {
  width: 32px;
  height: 32px;
}

/* Header — Figma node 300:5916, frame 1920×72, content 1280px @ 80px padding */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(229, 231, 235, 0.75);
}

.header .container {
  --header-gap: 51.5px;
}

.header__inner {
  display: grid;
  grid-template-columns: 120px 307px 289px 224px auto;
  column-gap: var(--header-gap);
  align-items: start;
  height: 72px;
  padding-top: 16px;
  box-sizing: border-box;
}

.header__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header__logo {
  width: 120px;
  padding-top: 8px; /* y=24 in Figma: 16px row + 8px */
  box-sizing: border-box;
}

.header__logo img {
  display: block;
  width: 120px;
  height: 24.25px;
  opacity: 0.9;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 307px;
  height: 40px;
}

.header__catalog,
.header__podobrat,
.header__cart,
.header__compare {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}

/* Catalog btn — 140×36, px 24 py 6, text + chevron gap 4px */
.header__catalog {
  width: 140px;
  height: 36px;
  margin-top: 2px;
  padding: 6px 24px;
  border-radius: 16px;
  color: var(--green);
}

.header__catalog-inner {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__catalog-label {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0;
  white-space: nowrap;
}

.header__catalog-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--green);
}

.header__chevron {
  display: block;
  width: 14px;
  height: 8px;
  transition: transform 0.2s ease;
}

.header__catalog-wrap {
  position: relative;
}

.header__catalog[aria-expanded="true"] {
  background: rgba(6, 125, 68, 0.08);
}

.header__catalog[aria-expanded="true"] .header__chevron {
  transform: rotate(180deg);
}

.catalog-panel {
  position: fixed;
  z-index: 101;
  width: min(1120px, calc(100vw - 48px));
  max-height: min(72vh, 680px);
  overflow: auto;
  padding: 24px 28px 28px;
  box-sizing: border-box;
  background: var(--white);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  scrollbar-width: thin;
  scrollbar-color: rgba(6, 125, 68, 0.35) transparent;
}

.catalog-panel::-webkit-scrollbar {
  width: 8px;
}

.catalog-panel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(6, 125, 68, 0.28);
}

.catalog-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-border);
}

.catalog-panel__intro {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.catalog-panel__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: var(--gray-light);
}

.catalog-panel__lead {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.36px;
  color: var(--black);
}

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

.catalog-panel__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.catalog-panel__card:hover {
  border-color: rgba(6, 125, 68, 0.28);
  box-shadow: 0 10px 28px rgba(6, 125, 68, 0.08);
  transform: translateY(-1px);
}

.catalog-panel__category {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--black);
}

.catalog-panel__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--tan-green);
}

.catalog-panel__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.catalog-panel__name {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.32px;
  color: var(--black);
}

.catalog-panel__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(6, 125, 68, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.catalog-panel__category:hover .catalog-panel__arrow,
.catalog-panel__category:focus-visible .catalog-panel__arrow {
  background: rgba(6, 125, 68, 0.14);
  transform: translateX(2px);
}

.catalog-panel__arrow svg {
  display: block;
}

.catalog-panel__sub {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(229, 231, 235, 0.75);
  padding-top: 12px;
}

.catalog-panel__sub a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.28px;
  color: var(--gray);
  text-decoration: none;
  border-radius: 10px;
  transition: color 0.15s ease, background 0.15s ease;
}

.catalog-panel__sub a::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(6, 125, 68, 0.35);
  transition: background 0.15s ease, transform 0.15s ease;
}

.catalog-panel__sub a:hover,
.catalog-panel__sub a:focus-visible {
  color: var(--green);
  background: rgba(6, 125, 68, 0.06);
}

.catalog-panel__sub a:hover::before,
.catalog-panel__sub a:focus-visible::before {
  background: var(--green);
  transform: scale(1.15);
}

.catalog-panel__empty {
  margin: 0;
  padding: 24px 0 8px;
  font-size: 15px;
  line-height: 22px;
  color: var(--gray-light);
  text-align: center;
}

.catalog-panel__all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(6, 125, 68, 0.08);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--green);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.catalog-panel__all:hover,
.catalog-panel__all:focus-visible {
  background: rgba(6, 125, 68, 0.14);
  transform: translateY(-1px);
}

.catalog-panel__all svg {
  display: block;
  flex-shrink: 0;
}

.catalog-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.section__footer-link {
  margin: 24px 0 0;
  text-align: center;
}

.section__footer-link a {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
}

.section__footer-link a:hover,
.section__footer-link a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .catalog-panel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-panel__head {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-panel__all {
    align-self: flex-start;
  }
}

@media (max-width: 900px) {
  .catalog-panel {
    display: none !important;
  }
}

.header__podobrat,
.header__cart,
.header__compare,
.header__phone {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0;
  color: var(--green);
  white-space: nowrap;
}

/* Podobrat btn — 155×40, pl 16 pr 24 py 8, icon 17px in 24px box */
.header__podobrat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 155px;
  height: 40px;
  padding: 8px 24px 8px 16px;
  border: 1px solid var(--green);
  border-radius: 16px;
  box-sizing: border-box;
  color: var(--green);
}

.header__podobrat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.header__sparkle {
  display: block;
  width: 17px;
  height: 17px;
}

.header__podobrat-label {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0;
}

.header__podobrat:hover,
.header__cart:hover {
  opacity: 0.85;
}

.header__icon {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Search — Figma 227:1374, 289×40, states default/hover/click */
.header__search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  box-sizing: border-box;
  background: var(--white);
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.header__search-input {
  width: 182px;
  flex: 1 1 182px;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0;
  color: var(--black);
  outline: none;
  text-overflow: ellipsis;
}

.header__search-input::placeholder {
  color: var(--black);
  opacity: 0.3;
  transition: opacity 0.2s;
}

.header__search:hover .header__search-input::placeholder {
  opacity: 0.7;
}

.header__search:focus-within .header__search-input:placeholder-shown {
  color: var(--gray);
}

.header__search-input:not(:placeholder-shown) ~ .header__search-icon-wrap {
  display: none;
}

.header__search-input:not(:placeholder-shown) ~ .header__search-clear {
  display: flex;
}

.header__search-input::-webkit-search-cancel-button {
  display: none;
}

.header__search-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  opacity: 0.3;
  transition: opacity 0.2s;
}

.header__search:hover .header__search-icon-wrap {
  opacity: 0.7;
}

.header__search-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.header__search-clear {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.header__search-clear img {
  display: block;
  width: 24px;
  height: 24px;
}

/* Search wrap + results panel — Figma 400:7586 / 400:10501 */
.header__search-wrap {
  position: relative;
  width: 289px;
}

.search-backdrop {
  position: fixed;
  inset: 72px 0 0;
  z-index: 99;
  background: rgba(26, 26, 26, 0.75);
  backdrop-filter: blur(13.25px);
  -webkit-backdrop-filter: blur(13.25px);
}

/* Mobile menu — Figma 349:13470 */
.mobile-menu {
  display: none;
}

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  height: 72px;
  padding: 12px 16px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(229, 231, 235, 0.75);
}

.mobile-menu__logo {
  display: flex;
  align-items: center;
  height: 48px;
  text-decoration: none;
}

.mobile-menu__logo img {
  display: block;
  width: 120px;
  height: auto;
  opacity: 0.9;
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu__close img {
  display: block;
  width: 32px;
  height: 32px;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
  min-height: 0;
  padding: 12px 16px 24px;
  overflow-y: auto;
}

.mobile-menu__section {
  width: fit-content;
  max-width: 100%;
}

.mobile-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: auto;
  max-width: 100%;
  padding: 6px 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font);
  color: var(--black);
  text-align: left;
}

.mobile-menu__trigger-label {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.48px;
  white-space: nowrap;
}

.mobile-menu__chevron {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transform: rotate(-90deg);
  transition: transform 0.2s ease;
}

.mobile-menu__section--open .mobile-menu__chevron {
  transform: rotate(0deg);
}

.mobile-menu__list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}

.mobile-menu__list a {
  display: block;
  padding: 6px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--gray);
  text-decoration: none;
  white-space: nowrap;
}

.mobile-menu__list a:hover,
.mobile-menu__list a:focus-visible {
  color: var(--green);
}

.mobile-menu__list--catalog {
  gap: 16px;
}

.mobile-menu__catalog-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu__catalog-parent {
  display: block;
  padding: 4px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.36px;
  color: var(--black);
  text-decoration: none;
}

.mobile-menu__catalog-parent:hover,
.mobile-menu__catalog-parent:focus-visible {
  color: var(--green);
}

.mobile-menu__catalog-children {
  margin: 0;
  padding: 0 0 0 16px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid rgba(6, 125, 68, 0.16);
}

.mobile-menu__catalog-children a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: var(--gray);
}

.mobile-menu__catalog-children a:hover,
.mobile-menu__catalog-children a:focus-visible {
  color: var(--green);
}

.mobile-menu__catalog-all a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(6, 125, 68, 0.08);
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
}

.mobile-menu__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  margin-top: auto;
  padding: 16px 16px 28px;
  box-sizing: border-box;
}

.mobile-menu__phone {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--green);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.mobile-menu__social {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.mobile-menu__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--green);
  text-decoration: none;
}

.mobile-menu__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.mobile-menu__social-icon svg {
  display: block;
}

.mobile-menu__social-icon .header__telegram {
  width: 40px;
  height: 40px;
}

.mobile-menu__social-icon .header__whatsapp {
  width: 37px;
  height: 40px;
}

body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-menu-open .header,
body.mobile-menu-open .site-navbar,
body.mobile-menu-open .cart-bottom {
  visibility: hidden;
}

@media (max-width: 900px) {
  .mobile-menu:not([hidden]) {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 200;
    width: 100%;
    height: 100dvh;
    height: 100vh;
    overflow: hidden;
  }

  .mobile-menu__panel {
    height: 100%;
  }
}

.search-panel {
  position: fixed;
  z-index: 101;
  width: 569px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 96px);
  overflow: auto;
  padding: 24px;
  box-sizing: border-box;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.search-panel__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-panel__heading {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.48px;
  color: var(--gray-light);
}

.search-panel__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-panel__pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--white);
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.search-panel__pill:hover {
  background: rgba(249, 115, 22, 0.08);
}

.search-panel__divider {
  margin: 24px 0;
  border: none;
  border-top: 1px solid var(--gray-border);
}

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

.search-panel__category {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 12px 16px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-panel__category:hover {
  border-color: rgba(6, 125, 68, 0.35);
  box-shadow: var(--shadow);
}

.search-panel__category-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}

.search-panel__category-name {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.32px;
}

.search-panel__category-chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.search-panel__products {
  margin: 0;
  padding: 0;
  list-style: none;
}

.search-panel__products li + li {
  border-top: 1px solid var(--gray-border);
}

.search-panel__product {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  transition: opacity 0.2s;
}

.search-panel__product:hover {
  opacity: 0.85;
}

.search-panel__product-img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  object-fit: contain;
}

.search-panel__product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.search-panel__product-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.28px;
}

.search-panel__product-sku {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: var(--gray-light);
}

.search-panel__product-price {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.32px;
  color: var(--green);
  white-space: nowrap;
}

.search-panel__all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-top: 24px;
  padding: 16px 20px;
  border: 1px solid var(--green);
  border-radius: var(--radius-sm);
  box-sizing: border-box;
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.32px;
  transition: background 0.2s;
}

.search-panel__all:hover {
  background: var(--tan-green);
}

.search-panel__all-text {
  flex: 1;
  min-width: 0;
}

.search-panel__all-arrow {
  flex-shrink: 0;
  width: 16px;
  height: 10px;
}

/* Cart btn — 134×40, pl 16 pr 24 py 8, icon 16×15 in 24px box */
.header__cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 134px;
  height: 40px;
  padding: 8px 24px 8px 16px;
  border: 1px solid var(--green);
  border-radius: 16px;
  box-sizing: border-box;
  color: var(--green);
}

.header__cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.header__cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: -0.2px;
  text-align: center;
  box-sizing: border-box;
  pointer-events: none;
}

.header__cart-svg {
  display: block;
  width: 16px;
  height: 15px;
}

.header__cart-label {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0;
  white-space: nowrap;
}

.header__compare {
  width: 40px;
  height: 40px;
  margin-top: 0;
  border: 1px solid var(--green);
  border-radius: 16px;
  color: var(--green);
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.header__compare:hover {
  background: rgba(6, 125, 68, 0.08);
}

.header__compare[hidden] {
  display: none !important;
}

.header__compare-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.header__compare-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.header__compare-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: -0.2px;
  text-align: center;
  box-sizing: border-box;
  pointer-events: none;
}

.hovby-toast {
  position: fixed;
  top: 88px;
  left: 50%;
  z-index: 200;
  max-width: min(560px, calc(100vw - 32px));
  padding: 14px 20px;
  border-radius: 16px;
  background: #ebfaf3;
  border: 1px solid #a7f3d0;
  color: var(--green);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.3px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.hovby-toast--visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Contacts block — 224×34, y=19 */
.header__contacts {
  display: flex;
  align-items: flex-start;
  width: 224px;
  height: 34px;
  margin-top: 3px;
}

.header__social {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 56px;
  height: 24px;
  margin-top: 5px;
  flex-shrink: 0;
}

.header__social-link {
  display: flex;
  flex-shrink: 0;
  color: var(--green);
  text-decoration: none;
}

.header__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.header__telegram {
  display: block;
  width: 20px;
  height: 20px;
}

.header__whatsapp {
  display: block;
  width: 19px;
  height: 20px;
}

/* Phone — 168×34, px 8 py 6 */
.header__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 34px;
  padding: 6px 8px;
  box-sizing: border-box;
  border-radius: 16px;
  color: var(--green);
  text-decoration: none;
}

.header__phone-label {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0;
  white-space: nowrap;
}

.header__burger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  grid-column: 1 / -1;
  margin-top: 8px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero — Figma 300:4429, 1920×640 */
.hero {
  position: relative;
  height: 640px;
  overflow: hidden;
}

.hero__bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: -16.67%;
  width: 133.33%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.hero__container {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-top: 136px;
  box-sizing: border-box;
}

.hero__content {
  max-width: 630px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.hero__title {
  color: var(--black);
  max-width: 630px;
}

.hero__lead {
  margin: 0;
  max-width: 547px;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  color: var(--gray);
}

.hero__lead p {
  margin: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.btn__arrow {
  display: block;
  width: 16px;
  height: 10px;
}

@media (min-width: 1920px) {
  .hero__container {
    padding-left: 74px;
  }
}

/* Tags bar — Figma 300:4436, 1440×64 */
.tags-bar {
  background: var(--black);
  color: var(--white);
}

.tags-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tags-bar__inner::-webkit-scrollbar {
  display: none;
}

.tags-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
  padding: 6px 24px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--white);
}

.tags-bar__label {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

.tags-bar__line {
  align-self: stretch;
  height: 2px;
  background: transparent;
}

.tags-bar__item:hover .tags-bar__line,
.tags-bar__item:focus-visible .tags-bar__line {
  background: var(--green);
}

.tags-bar__dot {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--white);
  user-select: none;
}

@media (max-width: 1279px) {
  .tags-bar__inner {
    justify-content: flex-start;
    gap: 0;
  }
}

/* Proof bar — Figma 300:4452, 1440×64 */
.proof-bar {
  background: var(--white);
}

.proof-bar__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 188px;
  box-sizing: border-box;
}

.proof-bar__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: 32px;
}

.proof-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.proof-bar__label {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--black);
  white-space: nowrap;
}

.proof-bar__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.proof-bar__icon-img {
  display: block;
  max-width: none;
}

.proof-bar__icon-img--office {
  width: 28px;
  height: 29px;
}

.proof-bar__icon-img--delivery {
  width: 28px;
  height: 22px;
}

.proof-bar__icon-img--certificate {
  width: 25px;
  height: 27px;
}

.proof-bar__icon-img--consultation {
  width: 26px;
  height: 24px;
}

@media (max-width: 1279px) {
  .proof-bar__container {
    padding-inline: var(--gutter);
  }

  .proof-bar__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
  }
}

.proof-bar--tall .proof-bar__list {
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
}

.proof-bar--tall .proof-bar__item {
  max-width: 160px;
  text-align: left;
  align-items: flex-start;
}

.proof-bar--tall .proof-bar__item .icon--32 {
  margin-top: 8px;
}

/* Cards grid */
.cards-grid {
  display: grid;
  gap: 32px;
}

/* Image cards from mockup slices */
.card-img-link {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  line-height: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card-img-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.card-img-link img {
  width: 100%;
  height: auto;
  display: block;
}

/* Catalog — Figma 300:4482 */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 415px);
  gap: 17px;
  justify-content: space-between;
}

.catalog-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 415px;
  height: 148px;
  padding: 24px;
  box-sizing: border-box;
  border: 2px solid rgba(229, 231, 235, 0.5);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}

.catalog-card:hover {
  box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.catalog-card__pictogram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.catalog-card__copy {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.catalog-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--black);
}

.catalog-card__title span {
  display: block;
}

.catalog-card__list {
  margin: 0;
  padding-left: 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--gray);
}

.catalog-card__list li + li {
  margin-top: 0;
}

.catalog-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  color: var(--green);
}

.catalog-card__arrow svg {
  display: block;
  width: 16px;
  height: 10px;
}

@media (max-width: 1399px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }

  .catalog-card {
    width: 100%;
    max-width: 415px;
    justify-self: center;
  }
}

@media (max-width: 767px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    max-width: none;
    height: auto;
    min-height: 148px;
  }
}

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

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

.set-card__image img,
.case-card__image img,
.tips-card__image img,
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.set-card__image {
  height: 220px;
  overflow: hidden;
  background: #eee;
}

.case-card__image {
  height: 232px;
  overflow: hidden;
}

.tips-card__image {
  height: 240px;
  overflow: hidden;
}

.product-card__image {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
}

.set-card__buy-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  text-align: center;
  margin-top: 4px;
}

.proof-bar--green {
  background: var(--green);
  color: var(--white);
}

.proof-bar--green .proof-bar__item,
.proof-bar--green .proof-bar__label {
  color: var(--white);
}

.proof-bar--green .proof-bar__icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

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

/* Scenarios — Figma 300:4468 */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(4, 305px);
  gap: 20px;
  justify-content: space-between;
}

.scenario-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  width: 305px;
  height: 364px;
  padding: 24px;
  box-sizing: border-box;
  border: 2px solid rgba(229, 231, 235, 0.5);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}

.scenario-card:hover {
  box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.scenario-card__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  width: 100%;
}

.scenario-card__pictogram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.scenario-card__icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.scenario-card__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.scenario-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.48px;
  color: var(--black);
}

.scenario-card__title span {
  display: block;
}

.scenario-card__text {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--gray);
}

.scenario-card__text span {
  display: block;
}

.scenario-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 59px;
  padding: 16px 24px;
  box-sizing: border-box;
  border: 2px solid var(--green);
  border-radius: 36px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--green);
  white-space: nowrap;
}

@media (max-width: 1399px) {
  .scenarios-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }

  .scenario-card {
    width: 100%;
    max-width: 305px;
    justify-self: center;
  }
}

@media (max-width: 679px) {
  .scenarios-grid {
    grid-template-columns: 1fr;
  }

  .scenario-card {
    max-width: none;
    height: auto;
    min-height: 364px;
  }
}

/* Quiz */
.quiz-box {
  max-width: 846px;
  margin-inline: auto;
  padding: 30px;
  min-height: 670px;
  border-radius: 32px;
  border: 2px solid rgba(229, 231, 235, 0.5);
  background: var(--white);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
}

.quiz-tabs {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  padding-inline: 20px;
}

.quiz-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 0;
  position: relative;
}

.quiz-tab:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 11px;
  left: calc(50% + 20px);
  width: calc(100% - 24px);
  height: 4px;
  border-radius: 16px;
  background: var(--gray-light);
}

.quiz-tab__dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--gray-light);
  background: var(--white);
  flex-shrink: 0;
}

.quiz-tab--active .quiz-tab__dot {
  border-color: var(--green);
  background: var(--white);
  box-shadow: none;
}

.quiz-tab--done .quiz-tab__dot {
  border-color: var(--green);
  background: var(--green);
  box-shadow: none;
}

.quiz-tab--done .quiz-tab__label,
.quiz-tab--active .quiz-tab__label {
  color: var(--black);
}

.quiz-tab--done::after {
  background: var(--green);
}

.quiz-tab__label {
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--gray-light);
  text-align: center;
}

.quiz-box__head {
  position: relative;
  margin-bottom: 26px;
}

.quiz-box__question {
  margin: 0;
  padding-inline: 120px;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.64px;
  text-align: center;
}

.quiz-box__badge {
  position: absolute;
  top: 7px;
  right: 0;
  padding: 8px 16px;
  border-radius: 64px;
  background: var(--tan-green);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--green);
  white-space: nowrap;
}

.quiz-option__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.quiz-option__line {
  display: block;
}

.btn--quiz-back:not(:disabled) {
  border-width: 2px;
  border-color: var(--green);
  color: var(--green);
  opacity: 1;
}

.btn--quiz-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quiz-box--result {
  padding-top: 30px;
}

.quiz-result__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.64px;
  text-align: center;
}

.quiz-result__summary {
  margin: 8px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--gray);
  text-align: center;
}

.quiz-result__subtitle {
  margin: 36px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.48px;
}

.quiz-result__grid {
  display: grid;
  grid-template-columns: 305px 453px;
  gap: 24px;
  margin-top: 22px;
}

.quiz-result__hero {
  display: flex;
  flex-direction: column;
  min-height: 476px;
  border: 2px solid var(--green);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}

.quiz-result__hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: var(--white);
}

.quiz-result__hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quiz-result__hero-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 16px;
  border-radius: 64px;
  background: var(--orange);
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: var(--white);
}

.quiz-result__hero-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 22px 24px;
  margin-top: -2px;
}

.quiz-result__hero-brand {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: var(--gray);
}

.quiz-result__hero-name {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.quiz-result__hero-price {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 32px;
}

.quiz-result__hero-btn {
  align-self: center;
  width: 257px;
  margin-top: 16px;
}

.quiz-result__kit {
  min-height: 476px;
  padding: 22px;
  border: 2px solid rgba(229, 231, 235, 0.5);
  border-radius: 16px;
  background: var(--white);
}

.quiz-result__kit-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.48px;
}

.quiz-result__kit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quiz-result__kit-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.quiz-result__kit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.quiz-result__kit-item img {
  flex-shrink: 0;
}

.quiz-result__kit-price {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

.quiz-result__kit-divider {
  height: 2px;
  margin: 24px 0 16px;
  background: rgba(229, 231, 235, 0.75);
}

.quiz-result__kit-total {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.quiz-result__kit-total-label {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
}

.quiz-result__kit-total-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.quiz-result__kit-total-value {
  font-size: 24px;
  font-weight: 800;
  line-height: 32px;
}

.quiz-result__kit-total-old {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--gray);
  text-decoration: line-through;
}

.quiz-result__kit-total-save {
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--green);
}

.quiz-result__cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 405px;
  margin: 32px auto 0;
  padding: 16px 64px;
  border-radius: 36px;
  font-size: 20px;
  font-weight: 700;
}

.quiz-result__restart {
  display: block;
  margin: 16px auto 0;
  padding: 6px 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.quiz-result__restart:hover {
  opacity: 0.85;
}

.quiz-box__options {
  display: grid;
  grid-template-columns: repeat(4, 174px);
  justify-content: space-between;
  row-gap: 28px;
  margin-bottom: 24px;
}

.quiz-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: 174px;
  height: 174px;
  padding: 9px 7px 16px;
  border: 3px solid rgba(229, 231, 235, 0.5);
  border-radius: 16px;
  background: var(--white);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--black);
  cursor: pointer;
  transition: border-color 0.2s;
}

.quiz-option:hover,
.quiz-option--selected {
  border-color: var(--green);
  background: var(--white);
}

.quiz-option__icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.quiz-box__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
}

.btn--quiz-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border: 3px solid rgba(229, 231, 235, 0.5);
  border-radius: 36px;
  font-size: 20px;
  font-weight: 700;
  color: var(--gray);
}

.btn--quiz-back:disabled {
  opacity: 1;
  cursor: not-allowed;
}

.btn--quiz-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 36px;
  font-size: 20px;
  font-weight: 700;
}

/* Sets — Figma 300:4504 */
.sets-grid {
  display: grid;
  grid-template-columns: repeat(4, 305px);
  gap: 20px;
  justify-content: space-between;
}

.set-card {
  display: flex;
  flex-direction: column;
  width: 305px;
  min-height: 556px;
  height: auto;
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.set-card__media {
  width: 100%;
  height: 174px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.set-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: 7px 23px 24px;
}

.set-card__title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.48px;
  color: var(--black);
}

.set-card__list {
  flex: 1 1 auto;
  min-height: 0;
  margin: 0 0 16px;
  padding-left: 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--gray);
}

.set-card__pricing {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  flex-shrink: 0;
}

.set-card__price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.48px;
  color: var(--black);
}

.set-card__price-current {
  font-weight: 800;
  line-height: 32px;
  color: var(--orange);
}

.set-card__price-old {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--gray);
  text-decoration: line-through;
}

.set-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 64px;
  background: #ebfaf3;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--green);
}

.set-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  flex-shrink: 0;
}

.set-card__btn {
  width: 100%;
  justify-content: center;
  padding-inline: 64px;
  border-radius: 36px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.set-card__btn.btn--outline {
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
}

.proof-bar__icon-img--compatible {
  width: 28px;
  height: 28px;
}

.proof-bar__icon-img--instruction {
  width: 22px;
  height: 27px;
}

.proof-bar__icon-img--warranty {
  width: 24px;
  height: 28px;
}

@media (max-width: 1399px) {
  .sets-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }

  .set-card {
    width: 100%;
    max-width: 305px;
    justify-self: center;
  }
}

@media (max-width: 767px) {
  .sets-grid {
    grid-template-columns: 1fr;
  }

  .set-card {
    max-width: none;
    height: auto;
  }
}

/* Why — Figma 300:4519 */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 630px));
  gap: 4px 20px;
  justify-content: space-between;
}

.why-card {
  position: relative;
  width: 100%;
  max-width: 630px;
  height: 332px;
  border: 2px solid rgba(229, 231, 235, 0.5);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.why-card__num {
  position: absolute;
  top: 22px;
  left: 107.5px;
  transform: translateX(-50%);
  font-size: 158px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -7.9px;
  color: var(--orange);
}

.why-card__icon {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 148px;
  height: 148px;
  object-fit: contain;
}

.why-card__body {
  position: absolute;
  left: 22px;
  top: 172px;
  width: calc(100% - 44px);
  max-width: 531px;
}

.why-card__title {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.64px;
}

.why-card__text {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: var(--gray);
}

/* Brands — Figma 300:4529, grid 300:4535 */
.section--brands {
  padding-bottom: 0;
}

.section--brands .section-subtitle {
  max-width: none;
  font-weight: 600;
  line-height: 18px;
}

.brands-board {
  max-width: 1279px;
  margin: 0 auto;
  padding-block: 32px;
}

.brands-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brands-row--bottom {
  margin-top: 32px;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.brand-logo--adler img,
.brand-logo--temonten img,
.brand-logo--dl img {
  width: 335px;
  height: 131px;
}

.brand-logo--ramsauer img {
  width: 450px;
  height: 79px;
}

.brand-logo--remmers img {
  width: 302px;
  height: 118px;
}

.brand-logo--soudal img {
  width: 269px;
  height: 105px;
}

.brand-logo--vgt img {
  width: 183px;
  height: 131px;
}

.brands__cta {
  display: flex;
  justify-content: center;
  padding-top: 32px;
}

.brands__btn {
  gap: 8px;
  min-width: 361px;
  min-height: 56px;
  padding: 16px 48px 16px 64px;
  background: var(--white);
  box-sizing: border-box;
  text-decoration: none;
}

.brands__btn-icon {
  width: 24px;
  height: 24px;
}

.brands__btn-icon img {
  display: block;
  width: 14px;
  height: 8px;
  transform: rotate(-90deg);
}

/* Brands proof — Figma 300:4564 */
.proof-bar--brands .proof-bar__container {
  min-height: 80px;
  padding: 16px 188px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.proof-bar--brands .proof-bar__list {
  width: 100%;
  min-height: 48px;
}

.proof-bar--brands .proof-bar__item {
  align-items: center;
}

.proof-bar--brands .proof-bar__label {
  display: flex;
  flex-direction: column;
  white-space: normal;
}

.proof-bar__label-line {
  display: block;
  line-height: 24px;
}

.proof-bar__icon-img--brands-cert {
  width: 25px;
  height: 27px;
}

.proof-bar__icon-img--brands-warranty {
  width: 18px;
  height: 23px;
}

.proof-bar__icon-img--brands-delivery {
  width: 28px;
  height: 22px;
}

.proof-bar__icon-img--brands-specialist {
  width: 22px;
  height: 22px;
}

@media (max-width: 1279px) {
  .proof-bar--brands .proof-bar__list {
    row-gap: 24px;
  }
}

/* Calculator — Figma 300:4577 */
.section--calc {
  background: var(--white);
}

.calc-section {
  display: grid;
  grid-template-columns: minmax(0, 846px) minmax(0, 413px);
  gap: 21px;
  align-items: start;
}

@media (min-width: 901px) {
  .page-home .calc-section:not(.calc-section--with-result) {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-calc .calc-section:not(.calc-section--with-result) {
    grid-template-columns: minmax(0, 1fr);
  }
}

.calc-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 566px;
  padding: 30px;
  border: 2px solid rgba(229, 231, 235, 0.5);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  box-sizing: border-box;
}

.calc-form__header {
  width: min(513px, 100%);
  margin: 0;
}

.calc-form__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.64px;
}

.calc-form__subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: rgba(26, 26, 26, 0.8);
}

.calc-form__fields {
  width: min(782px, 100%);
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-form__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.calc-form__row--2 .calc-field--wide {
  width: calc((100% - 36px) / 2);
  max-width: 373px;
}

.calc-form__row--4 {
  gap: 0;
}

.calc-form__row--4 .calc-field--material {
  width: 276px;
  flex-shrink: 0;
}

.calc-form__row--4 .calc-field--narrow {
  width: 138px;
  flex-shrink: 0;
}

.calc-field {
  position: relative;
  display: block;
  padding-top: 7px;
  box-sizing: border-box;
}

.calc-field__label {
  position: absolute;
  top: 7px;
  left: 24px;
  z-index: 2;
  transform: translateY(-50%);
  padding: 0 8px;
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  color: var(--gray);
}

.calc-field__control {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  padding: 0 16px;
  border: 1px solid var(--gray);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-sizing: border-box;
}

.calc-field__control--value {
  gap: 8px;
}

.calc-field__select,
.calc-field__input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  font: inherit;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black);
  appearance: none;
}

.calc-field__select {
  padding-right: 40px;
  cursor: pointer;
}

.calc-field__unit {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black);
}

.calc-field__chevron {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.calc-field__chevron img {
  display: block;
  width: 14px;
  height: 8px;
}

.calc-form__divider {
  display: block;
  width: min(760px, 100%);
  height: 2px;
  margin: 0 auto;
}

.calc-form__reserve {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 26px;
  cursor: pointer;
}

.calc-form__checkbox-ui {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-top: 8px;
}

.calc-form__checkbox-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.calc-form__checkbox-icon--checked {
  display: none;
}

.calc-form__checkbox:checked + .calc-form__checkbox-ui .calc-form__checkbox-icon--unchecked {
  display: none;
}

.calc-form__checkbox:checked + .calc-form__checkbox-ui .calc-form__checkbox-icon--checked {
  display: block;
}

.calc-form__reserve-text {
  display: flex;
  flex-direction: column;
  max-width: 436px;
}

.calc-form__reserve-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.calc-form__reserve-note {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--gray);
}

.calc-form__submit {
  width: 100%;
  margin-top: 42px;
}

.calc-form__help {
  width: min(451px, 100%);
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  text-align: center;
}

.calc-form__help-text {
  color: var(--gray);
}

.calc-form__link {
  color: var(--blue);
  text-decoration: underline;
}

.calc-message {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 566px;
  padding: 30px;
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  background: var(--tan-green);
  box-sizing: border-box;
  color: var(--black);
}

.calc-message[hidden] {
  display: none !important;
}

.calc-message__head {
  width: min(296px, 100%);
  margin: 0;
}

.calc-message__label {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.48px;
}

.calc-message__amount {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.64px;
}

.calc-message__list {
  width: min(371px, 100%);
  margin: 26px auto 0;
  padding-left: 36px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  list-style: disc;
}

.calc-message__cartridges {
  margin: 40px 0 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.64px;
  text-align: center;
}

.calc-message__reserve {
  margin: 18px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.48px;
}

.calc-message__price {
  margin: 34px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--gray);
  text-align: center;
}

.calc-message__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(349px, 100%);
  margin: 16px auto 0;
}

.calc-message__consult {
  width: min(349px, 100%);
  margin: 12px auto 0;
}

.figma-section {
  width: 100%;
  height: auto;
  display: block;
}

.figma-section--full {
  max-width: 1920px;
  margin-inline: auto;
}


/* Cases — Figma 300:4580 */
.section--cases {
  padding-top: 32px;
  padding-bottom: 32px;
}

.cases-head {
  text-align: center;
  margin-bottom: 4px;
}

.cases-head__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.64px;
  color: var(--black);
}

.cases-head__subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--gray);
}

.cases-head__subtitle p {
  margin: 0;
}

.cases-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  padding-block: 32px;
}

.case-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 413px;
  min-height: 568px;
  flex-shrink: 0;
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.case-card__image {
  position: relative;
  width: 100%;
  height: 232px;
  flex-shrink: 0;
  overflow: hidden;
}

.case-card__image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.case-card__title {
  margin: 12px 23px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.48px;
  color: var(--black);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 56px;
}

.case-card__meta {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin: 8px 23px 0;
}

.case-card__meta-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.case-card__meta-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.case-card__meta-icon img {
  display: block;
  width: 48px;
  height: 48px;
  max-width: none;
}

.case-card__meta-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.case-card__meta-label {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--gray);
}

.case-card__meta-value {
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--black);
  word-break: break-word;
}

.case-card__quote {
  margin: 16px 23px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--gray);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  flex: 1;
}

.case-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 48px);
  margin: 8px 24px 0;
  padding: 16px 24px;
  border-radius: 36px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  box-sizing: border-box;
  text-align: center;
}

.case-card__btn--buy {
  margin-top: auto;
  background: var(--orange);
  color: var(--white);
}

.case-card__btn--more {
  margin-bottom: 24px;
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
}

button.case-card__btn {
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}

button.case-card__btn--buy {
  border: none;
}

.case-card__title a {
  color: inherit;
  text-decoration: none;
}

.cases-page__all {
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.cases-page__all a {
  color: var(--green);
}

.page-cases,
.page-case-article {
  background: var(--white);
}

.cases-page {
  padding: 16px 0 48px;
}

.cases-page__container {
  max-width: 1280px;
}

.cases-page__breadcrumbs {
  margin-bottom: 24px;
}

.page-cases .cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-items: stretch;
  padding-block: 24px;
}

.page-cases .case-card {
  max-width: none;
  width: 100%;
  min-height: 520px;
}

.cases-page__pagination {
  margin-top: 32px;
}

.cases-grid--related {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .page-cases .cases-grid,
  .cases-grid--related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 901px) {
  .cases-page {
    padding: 32px 0 48px;
  }

  .page-cases .cases-grid,
  .cases-grid--related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-cases .case-card {
    min-height: 568px;
  }
}

@media (max-width: 900px) {
  body.page-cases {
    --gutter: 16px;
  }

  .page-cases .header .container {
    --header-gap: 0;
    --gutter: 16px;
  }

  .page-cases .header__inner {
    height: 72px;
    padding: 12px 16px;
    box-sizing: border-box;
  }

  .page-cases .header__burger {
    width: 32px;
    height: 32px;
    margin-top: 0;
    color: var(--green);
  }

  .page-cases .header__burger .icon {
    width: 32px;
    height: 32px;
  }

  .page-cases .footer {
    display: none;
  }

  .case-card__btn {
    padding: 12px 18px;
    font-size: 16px;
    line-height: 18px;
    border-radius: 16px;
  }
}

.case-article-page__buy {
  margin-top: 32px;
}

/* Reviews — Figma 300:4594 */
.section--reviews {
  padding-block: 32px;
}

.reviews-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.review-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "stars verified"
    "text text"
    "author author"
    "pill pill";
  gap: 16px;
  align-content: start;
  width: 630px;
  min-height: 294px;
  height: auto;
  flex-shrink: 0;
  padding: 22px;
  box-sizing: border-box;
  border: 2px solid rgba(229, 231, 235, 0.5);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.review-card__stars {
  grid-area: stars;
  position: static;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-card__star {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.review-card__star img {
  display: block;
  max-width: none;
}

.review-card__verified {
  grid-area: verified;
  position: static;
  justify-self: end;
  align-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-card__verified-icon {
  display: flex;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.review-card__verified-icon img {
  display: block;
  width: 32px;
  height: 32px;
  max-width: none;
}

.review-card__verified-text {
  width: 110px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--green);
}

.review-card__text {
  grid-area: text;
  position: static;
  width: auto;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card__author {
  grid-area: author;
  position: static;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.review-card__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
}

.review-card__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.review-card__author-info {
  flex: 1;
  min-width: 0;
}

.review-card__name {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.48px;
  color: var(--black);
}

.review-card__info {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: rgba(26, 26, 26, 0.6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card__pill {
  grid-area: pill;
  position: static;
  justify-self: start;
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 8px 16px;
  border-radius: 64px;
  background: var(--tan-green);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--green);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-card__pill:hover {
  opacity: 0.85;
}

/* Tips — Figma 300:4597 */
.section--tips {
  padding-top: 32px;
  padding-bottom: 32px;
}

.tips-head {
  text-align: center;
  margin-bottom: 4px;
}

.tips-head__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.64px;
  color: var(--black);
}

.tips-head__subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--gray);
}

.tips-head__subtitle p {
  margin: 0;
}

.tips-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-block: 32px;
}

.tips-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 413px;
  flex-shrink: 0;
  gap: 8px;
}

.tips-card {
  display: flex;
  flex-direction: column;
  width: 413px;
  height: 500px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.tips-card__image {
  flex-shrink: 0;
  width: calc(100% + 2px);
  height: 240px;
  margin: -1px -1px 0;
  overflow: hidden;
}

.tips-card__image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.tips-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 12px 23px 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.tips-card__pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 64px;
  background: var(--tan-green);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--green);
  white-space: nowrap;
}

.tips-card__title {
  margin: 16px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.48px;
  color: var(--black);
  flex-shrink: 0;
}

.tips-card__title a {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.tips-card__text {
  margin: 12px 0 0;
  flex: 1 1 auto;
  min-height: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--gray);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tips-card__footer {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  width: 100%;
  flex-shrink: 0;
}

.tips-card__read {
  margin-left: auto;
  flex-shrink: 0;
}

.tips-card__time {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--gray);
}

.tips-card__time-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.tips-card__time-icon img {
  display: block;
  max-width: none;
}

.tips-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--green);
  text-decoration: none;
  white-space: nowrap;
}

.tips-link:hover,
.tips-link:focus-visible {
  opacity: 0.85;
  text-decoration: none;
}

.tips-item__link {
  padding: 6px 0;
  text-align: center;
}

/* FAQ — Figma 300:4606 */
.section--faq {
  padding-top: 32px;
  padding-bottom: 0;
}

.faq-head {
  text-align: center;
  margin-bottom: 4px;
}

.faq-head__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.64px;
  color: var(--black);
}

.faq-head__subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--gray);
}

.faq-head__subtitle p {
  margin: 0;
}

.faq-list {
  max-width: 846px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-block: 32px;
}

.faq-item {
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  padding: 16px 24px;
}

.faq-item--open {
  padding: 24px;
}

.faq-item__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-item--open .faq-item__header {
  align-items: flex-start;
}

.faq-item__toggle,
.faq-item__icon-btn {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.faq-item__toggle {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.faq-item__question {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.48px;
  color: var(--black);
}

.faq-item__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.faq-item__icon {
  display: block;
  width: 14px;
  height: 8px;
  max-width: none;
}

.faq-item__panel {
  display: none;
}

.faq-item--open .faq-item__panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.faq-item__answer {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--black);
}

.faq-item__link {
  display: inline-block;
  padding: 6px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--green);
  text-decoration: none;
  white-space: nowrap;
}

.faq-item__link:hover,
.faq-item__link:focus-visible {
  opacity: 0.85;
  text-decoration: none;
}

.faq-cta {
  max-width: 846px;
  margin-inline: auto;
  text-align: center;
}

.faq-cta__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--black);
}

.faq-cta__actions {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 24px 0;
  flex-wrap: wrap;
}

.faq-cta__btn--call {
  width: 290px;
  padding-inline: 64px;
}

.faq-cta__btn--chat {
  width: 288px;
  padding-inline: 64px;
}

/* Specials — Figma 300:4621 */
.section--specials {
  padding-top: 32px;
  padding-bottom: 0;
}

.specials-head {
  text-align: center;
  margin-bottom: 4px;
}

.specials-head__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.64px;
  color: var(--black);
}

.specials-head__subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--gray);
}

.specials-head__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 8px 16px;
  border-radius: 64px;
  background: var(--green);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: #f8fbf9;
  white-space: nowrap;
}

.specials-carousel {
  position: relative;
}

.specials-carousel__viewport {
  position: relative;
}

.specials-carousel__viewport::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 0;
  bottom: 32px;
  width: 72px;
  background: linear-gradient(to left, #fff 30%, rgba(255, 255, 255, 0));
  pointer-events: none;
}

.specials-grid {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
  padding-block: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.specials-grid::-webkit-scrollbar {
  display: none;
}

.specials-carousel__btn {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% + 16px);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.specials-carousel__btn img {
  display: block;
}

.specials-carousel__btn--prev {
  left: -12px;
  transform: translateY(-50%);
}

.specials-carousel__btn--next {
  right: -12px;
  transform: translateY(-50%) rotate(180deg);
}

.specials-carousel__btn[disabled] {
  opacity: 0.35;
  cursor: default;
}

.specials-carousel--scrollable .specials-carousel__btn {
  display: flex;
}

@media (max-width: 900px) {
  .specials-carousel__btn {
    display: none !important;
  }

  .specials-carousel__viewport::after {
    display: none;
  }
}

.specials-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 305px;
  height: 565px;
  flex: 0 0 305px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.specials-card__image-wrap {
  position: relative;
  flex-shrink: 0;
  width: 305px;
  height: 305px;
  overflow: hidden;
  display: block;
  color: inherit;
  text-decoration: none;
}

.specials-card__image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.specials-card__discount {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 64px;
  background: var(--orange);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--white);
  white-space: nowrap;
}

.specials-card__body {
  flex: 1;
  min-height: 0;
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.specials-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  flex-shrink: 0;
  margin-bottom: 12px;
}

.specials-card__brand {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: var(--gray);
}

.specials-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--black);
  min-height: 48px;
}

.specials-card__title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.specials-card__spec {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.28px;
  color: var(--gray);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.specials-card__pricing {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
  flex-shrink: 0;
}

.specials-card__prices {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.specials-card__price {
  font-size: 24px;
  font-weight: 800;
  line-height: 32px;
  color: var(--orange);
}

.specials-card__price-old {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--gray);
  text-decoration: line-through;
}

.specials-card__savings {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 64px;
  background: var(--tan-green);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--green);
  white-space: nowrap;
}

.specials-card__btn {
  width: 100%;
  margin-top: auto;
  padding: 16px 24px;
  flex-shrink: 0;
}

.specials-cta {
  max-width: 846px;
  margin-inline: auto;
  margin-top: 4px;
  text-align: center;
}

.specials-cta__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.64px;
  color: var(--black);
}

.specials-cta__subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--gray);
}

.specials-cta__subtitle p {
  margin: 0;
}

.specials-cta__actions {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 24px 0;
  flex-wrap: wrap;
}

.specials-cta__btn--quiz {
  width: 290px;
  padding-inline: 64px;
}

.specials-cta__btn--chat {
  width: 288px;
  padding-inline: 64px;
}

/* Pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
}

.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* CTA block */
.cta-block {
  text-align: center;
  padding-top: 32px;
}

.cta-block--after-figma {
  margin-top: 48px;
  padding-top: 0;
}

.cta-block .h2 + .section-subtitle {
  margin-top: 8px;
  margin-bottom: 24px;
}

.cta-block__actions {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* Bottom bar — Figma 300:4641 */
.bottom-bar {
  background: var(--white);
  text-align: center;
}

.proof-bar--bottom {
  background: var(--white);
}

.proof-bar__container--bottom {
  padding-inline: 297px;
}

.proof-bar__icon--sm {
  width: 24px;
  height: 24px;
}

.proof-bar__icon-img--bottom-free,
.proof-bar__icon-img--bottom-clock {
  width: 27px;
  height: 27px;
}

.proof-bar__icon-img--bottom-star {
  width: 23px;
  height: 22px;
}

.bottom-bar__phone {
  margin: 0;
  padding: 0 var(--gutter) 54px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--black);
}

.bottom-bar__phone a {
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 1279px) {
  .proof-bar__container--bottom {
    padding-inline: var(--gutter);
  }
}

/* Footer — Figma 300:5973 */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 0 56px;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
  width: 299px;
  flex-shrink: 0;
}

.footer__logo {
  display: block;
  line-height: 0;
}

.footer__logo img {
  display: block;
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__desc {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--gray-light);
}

.footer__contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.footer__contacts li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.footer__contact-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__contact-icon img {
  display: block;
  max-width: none;
}

.footer__contacts a {
  color: var(--white);
  text-decoration: none;
}

.footer__contacts a[href^="tel:"] {
  text-decoration: underline;
}

.footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__social a {
  display: block;
  width: 64px;
  height: 64px;
  opacity: 0.9;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.footer__social a:hover {
  opacity: 1;
}

.footer__social img {
  display: block;
  width: 64px;
  height: 64px;
}

.footer__nav {
  display: flex;
  gap: 156px;
  margin-left: auto;
  flex-shrink: 0;
}

.footer__col {
  width: 140px;
  flex-shrink: 0;
}

.footer__col-title {
  margin: 0;
  padding-block: 6px;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.48px;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  padding-block: 6px;
}

.footer__links a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--gray-light);
}

.footer__bottom > p {
  margin: 0;
}

.footer__bottom-links {
  margin-top: 12px;
  color: var(--gray);
  font-size: 20px;
  line-height: 24px;
}

.footer__bottom-links a {
  color: inherit;
  text-decoration: none;
}

.footer__bottom-links a:hover {
  color: var(--gray-light);
}

/* Responsive */
@media (max-width: 1320px) {
  .header .container {
    --header-gap: 24px;
  }

  .header__inner {
    grid-template-columns: 120px 1fr 289px auto;
  }

  .header__nav {
    width: auto;
    min-width: 0;
  }

  .header__contacts {
    width: auto;
  }

  .header__phone {
    width: auto;
  }
}

@media (max-width: 1200px) {
  :root {
    --gutter: 40px;
  }

  .header .container {
    --header-gap: 16px;
  }

  .header__inner {
    grid-template-columns: 120px 1fr 220px auto;
  }

  .header__search-wrap {
    width: 220px;
  }

  .header__contacts {
    display: none;
  }

  .header__actions {
    display: inline-flex;
    justify-self: end;
  }

  .header__actions:not(:has(.header__compare:not([hidden]))) {
    display: none;
  }

  .header__cart {
    display: none;
  }

  .cards-grid--4,
  .cards-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .calc-form__submit {
    margin-top: 32px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .why-card {
    max-width: none;
    height: auto;
    min-height: 332px;
  }

  .quiz-box__options {
    grid-template-columns: repeat(2, minmax(140px, 174px));
    justify-content: center;
    gap: 16px;
  }

  .quiz-box__question {
    padding-inline: 0;
  }

  .quiz-box__badge {
    position: static;
    display: table;
    margin: 12px auto 0;
  }

  .quiz-result__grid {
    grid-template-columns: 1fr;
  }

  .quiz-result__hero,
  .quiz-result__kit {
    min-height: 0;
  }

  .footer__nav {
    gap: 48px;
    margin-left: 0;
    flex-wrap: wrap;
  }

  .brands-board {
    max-width: 100%;
  }

  .brands-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 32px;
  }

  .brands-row--bottom {
    margin-top: 24px;
  }

  .cases-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .case-card {
    width: 413px;
    max-width: 100%;
  }

  .reviews-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .review-card {
    width: 630px;
    max-width: 100%;
  }

  .tips-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .tips-item {
    width: 413px;
    max-width: 100%;
  }

  .tips-card {
    width: 100%;
  }

  .specials-carousel__viewport::after {
    top: 0;
    bottom: 0;
  }

  .specials-grid {
    gap: 16px;
    padding-block: 24px;
  }

  .specials-carousel__btn--prev {
    left: 0;
  }

  .specials-carousel__btn--next {
    right: 0;
  }

  .specials-card {
    width: 305px;
    max-width: none;
  }
}

@media (max-width: 900px) {
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
  }

  .header__logo {
    padding-top: 0;
  }

  .header__nav,
  .header__search-wrap,
  .header__contacts {
    display: none;
  }

  .header__actions {
    display: none;
    margin-left: auto;
    margin-right: 8px;
  }

  .header__actions:has(.header__compare:not([hidden])) {
    display: inline-flex;
  }

  .header__cart {
    display: none;
  }

  .header__burger {
    display: flex;
    grid-column: auto;
    margin-top: 0;
  }

  .h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .hero {
    height: auto;
    min-height: 520px;
  }

  .hero__container {
    padding-top: 80px;
    padding-bottom: 48px;
  }

  .cards-grid--4,
  .cards-grid--3,
  .cards-grid--2 {
    grid-template-columns: 1fr;
  }

  .cases-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-block: 24px;
  }

  .reviews-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .review-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "stars"
      "verified"
      "text"
      "author"
      "pill";
    gap: 16px;
    width: 100%;
    max-width: 630px;
    height: auto;
    min-height: 0;
    padding: 22px;
  }

  .review-card__stars,
  .review-card__verified,
  .review-card__text,
  .review-card__author,
  .review-card__pill {
    position: static;
    width: auto;
  }

  .review-card__verified {
    justify-self: start;
  }

  .review-card__author-info {
    width: auto;
  }

  .tips-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-block: 24px;
  }

  .tips-item {
    width: 100%;
    max-width: 413px;
  }

  .quiz-box__options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }

  .quiz-option {
    width: 100%;
    height: auto;
    min-height: 150px;
  }

  .quiz-tabs {
    padding-inline: 0;
    gap: 4px;
  }

  .quiz-tab__label {
    font-size: 12px;
  }

  .brands-board {
    max-width: 100%;
  }

  .brands-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 32px;
  }

  .brands-row--bottom {
    margin-top: 24px;
  }

  .calc-form__row--2,
  .calc-form__row--4 {
    flex-wrap: wrap;
    gap: 16px;
  }

  .calc-form__row--2 .calc-field--wide,
  .calc-form__row--4 .calc-field--material,
  .calc-form__row--4 .calc-field--narrow {
    width: 100%;
    max-width: none;
  }

  .calc-form__submit {
    margin-top: 24px;
  }

  .why-card__icon {
    width: 100px;
    height: 100px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer__brand {
    width: 100%;
    max-width: none;
  }

  .footer__nav {
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
    gap: 32px 48px;
  }

  .footer__col {
    width: auto;
    min-width: 140px;
  }
}

@media (max-width: 600px) {
  :root {
    --gutter: 16px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .proof-bar__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
    align-items: start;
  }

  .proof-bar__label {
    white-space: normal;
  }
}

/* Mobile bottom nav — shared (Figma INDEX 360 / cart mobile) */
.site-navbar {
  display: none;
}

.site-navbar__item,
.cart-navbar__item {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding-top: 0;
  color: var(--black);
  text-decoration: none;
}

.site-navbar__item img,
.cart-navbar__item img {
  display: block;
  width: 36px;
  height: 36px;
}

.site-navbar__label,
.cart-navbar__label {
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
}

.site-navbar__item--active,
.cart-navbar__item--active {
  color: var(--green);
}

@media (max-width: 900px) {
  body:not(.page-cart) {
    padding-bottom: 90px;
  }

  body.page-search {
    padding-bottom: 154px;
  }

  .site-navbar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    align-items: flex-start;
    justify-content: space-between;
    height: 90px;
    padding: 0 16px;
    box-sizing: border-box;
    border-top: 1px solid var(--gray-border);
    border-radius: 24px 24px 0 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  body.page-cart .site-navbar {
    display: none;
  }

  .site-navbar__item {
    padding-top: 8px;
  }
}

@media (min-width: 901px) {
  body {
    padding-bottom: 0;
  }

  .site-navbar {
    display: none;
  }
}

.calc-form__submit-label--mobile {
  display: none;
}

/* Cart page — Figma 348:11011 */
.page-cart {
  background: var(--bg-primary);
}

.cart-page {
  padding: 32px 0 80px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 847fr) minmax(0, 413fr);
  gap: 24px;
  align-items: start;
}

.cart-layout__main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.cart-box,
.cart-tools,
.cart-checkout,
.cart-summary {
  background: var(--white);
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 32px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
}

.cart-box--empty {
  padding: 31px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.cart-box,
.cart-tools,
.cart-checkout {
  padding: 31px;
}

.cart-box__title,
.cart-tools__title,
.cart-checkout__title {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.64px;
}

.cart-table__head,
.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 260px) 120px 110px 88px 24px;
  gap: 16px;
  align-items: center;
}

.cart-table__head {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
}

.cart-table__body {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cart-item {
  padding: 16px 32px 16px 0;
  border-top: 1px solid var(--gray-border);
}

.cart-item__product {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
}

.cart-item__img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  object-fit: contain;
}

.cart-item__name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: #1d1d1d;
}

.cart-item__sku {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: var(--gray);
}

.cart-item__stock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--tan-green);
  color: var(--green);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  white-space: nowrap;
}

.cart-item__stock::before {
  content: "•";
  margin-right: 8px;
}

.cart-item__price {
  font-size: 24px;
  font-weight: 800;
  line-height: 32px;
  white-space: nowrap;
}

.cart-counter {
  display: inline-flex;
  align-items: center;
}

.cart-counter__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 32px;
  padding: 0;
  border: 1px solid #e5e7eb;
  background: rgba(229, 231, 235, 0.6);
  color: var(--black);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.cart-counter__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.cart-counter__btn--minus {
  border-radius: 13px 0 0 13px;
  margin-right: -1px;
}

.cart-counter__btn--plus {
  border-radius: 0 13px 13px 0;
  margin-left: -1px;
}

.cart-counter__value {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 32px;
  margin: 0 -1px;
  border: 1px solid #e5e7eb;
  font-size: 11px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: -0.21px;
}

.cart-item__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  color: var(--red);
}

.cart-item__remove img {
  display: block;
  width: 24px;
  height: 24px;
}

.cart-box__subtotal {
  margin: 24px 0 0;
  text-align: right;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.64px;
}

.cart-box__subtotal strong {
  font-weight: 700;
}

.cart-tools__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.cart-tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 233px;
  padding: 16px 12px;
  border: 1.365px solid rgba(229, 231, 235, 0.5);
  border-radius: 11px;
  box-shadow: 2.73px 2.73px 6.826px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.cart-tool-card__img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 8px auto 16px;
  object-fit: contain;
}

.cart-tool-card__img--gun {
  width: 132px;
  height: 58px;
}

.cart-tool-card__img--spatula {
  width: 57px;
  height: 86px;
}

.cart-tool-card__img--scraper {
  width: 127px;
  height: 116px;
}

.cart-tool-card__img--cleaner {
  width: 31px;
  height: 119px;
}

.cart-tool-card__name {
  margin: 0 0 auto;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
}

.cart-tool-card__name a {
  color: inherit;
  text-decoration: none;
}

.cart-tool-card__name a:hover,
.cart-tool-card__name a:focus-visible {
  color: var(--green);
}

.cart-tool-card__price {
  margin: 0 0 12px;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--black);
}

.cart-tool-card__btn {
  width: 100%;
  margin-top: 16px;
}

.cart-checkout__error {
  margin: -8px 0 0;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff3f3;
  color: #c0392b;
  font-size: 14px;
  line-height: 1.4;
}

.cart-checkout__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-checkout__fields {
  display: grid;
  grid-template-columns: minmax(0, 427px) minmax(0, 308px);
  gap: 48px 24px;
}

.cart-checkout__field--comment {
  max-width: 427px;
}

.cart-checkout__group {
  margin: 0;
  padding: 0;
  border: 0;
}

.cart-checkout__group-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #1d1d1d;
}

.cart-checkout__options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cart-radio {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.cart-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cart-radio__ui {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: center / 16px 16px no-repeat url("../image/images/figma/cart/radio-off.svg");
}

.cart-radio input:checked + .cart-radio__ui {
  background-image: url("../image/images/figma/cart/radio-on.svg");
}

.cart-radio__label {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: #1d1d1d;
}

.cart-checkout__invoice {
  align-self: flex-start;
  width: min(100%, 349px);
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}

.cart-summary {
  position: sticky;
  top: 88px;
  padding: 31px;
}

.cart-summary__rows {
  margin: 0;
}

.cart-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.48px;
}

.cart-summary__row dt,
.cart-summary__row dd {
  margin: 0;
}

.cart-summary__divider {
  margin: 24px 0;
  border: none;
  border-top: 1px solid var(--gray-border);
}

.cart-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.64px;
}

.cart-summary__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-summary__submit {
  width: 100%;
  padding: 16px 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}

.cart-summary__consult {
  width: 100%;
  padding: 16px 24px;
  border-width: 2px;
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}

.cart-summary__trust {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cart-summary__trust-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
}

.cart-summary__trust-item img {
  width: 48px;
  height: 48px;
}

.cart-item__spec {
  display: none;
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: var(--gray);
}

.cart-toolbar,
.cart-bottom {
  display: none;
}

@media (max-width: 1200px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  .cart-table__head {
    display: none;
  }

  .cart-checkout__fields {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-cart .cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 4px 12px;
    padding: 0 0 8px;
    border-top: none;
  }

  .page-cart .cart-item + .cart-item {
    padding-top: 8px;
    border-top: 1px solid var(--gray-border);
  }

  .page-cart .cart-item__product {
    display: contents;
  }

  .page-cart .cart-item__img {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 80px;
    height: 80px;
    object-fit: cover;
  }

  .page-cart .cart-item__info {
    grid-column: 2;
    grid-row: 1;
  }

  .page-cart .cart-item__stock {
    display: none;
  }

  .page-cart .cart-item__price {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
  }

  .page-cart .cart-counter {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .page-cart .cart-item__remove {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
    align-self: end;
  }
}

@media (max-width: 900px) {
  .page-cart {
    background: var(--white);
  }

  .page-cart .header .container {
    --gutter: 16px;
  }

  .page-cart .header__burger {
    width: 32px;
    height: 32px;
    margin-top: 0;
    color: var(--green);
  }

  .page-cart .footer {
    display: none;
  }

  .cart-page {
    padding: 0 0 152px;
  }

  .cart-page .container {
    --gutter: 16px;
  }

  .cart-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 -16px;
    padding: 10px 16px 16px;
    border-bottom: 1px solid var(--gray-border);
  }

  .cart-toolbar__back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 36px;
    flex-shrink: 0;
    color: var(--green);
  }

  .cart-toolbar__back img {
    display: block;
    width: 24px;
    height: 24px;
    transform: rotate(90deg);
  }

  .cart-toolbar__clear {
    display: inline-flex;
    align-items: flex-end;
    gap: 4px;
    margin-left: auto;
    color: var(--gray);
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    text-align: right;
  }

  .cart-toolbar__clear img {
    display: block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .cart-layout {
    gap: 0;
  }

  .cart-layout__main {
    gap: 0;
  }

  .cart-box,
  .cart-tools,
  .cart-checkout,
  .cart-summary {
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .cart-box {
    padding-top: 16px;
  }

  .cart-box__title {
    display: none;
  }

  .cart-table__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 4px 12px;
    padding: 0 0 8px;
    border-top: none;
  }

  .cart-item + .cart-item {
    padding-top: 8px;
    border-top: 1px solid var(--gray-border);
  }

  .cart-item__product {
    display: contents;
  }

  .cart-item__img {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 80px;
    height: 80px;
    object-fit: cover;
  }

  .cart-item__info {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  .cart-item__name {
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: 0;
    color: #1d1d1d;
  }

  .cart-item__sku {
    display: none;
  }

  .cart-item__spec {
    display: block;
  }

  .cart-item__stock {
    display: none;
  }

  .cart-item__price {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.32px;
  }

  .cart-counter {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    align-self: start;
  }

  .cart-item__remove {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
    align-self: end;
  }

  .cart-box__subtotal {
    margin: 16px 0 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.32px;
    text-align: right;
  }

  .cart-box__subtotal strong {
    font-weight: 600;
  }

  .cart-tools {
    margin-top: 24px;
    padding-bottom: 24px;
  }

  .cart-tools__title,
  .cart-checkout__title {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0;
  }

  .cart-tools__grid {
    display: flex;
    gap: 13px;
    overflow-x: auto;
    margin-inline: -16px;
    padding: 0 16px 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .cart-tools__grid::-webkit-scrollbar {
    display: none;
  }

  .cart-tool-card {
    flex: 0 0 186px;
    scroll-snap-align: start;
    min-height: 233px;
    padding: 16px 12px 15px;
  }

  .cart-tool-card__btn {
    width: 151px;
    max-width: 100%;
    margin-top: auto;
    padding: 8px 18px;
    font-size: 16px;
    line-height: 18px;
  }

  .cart-checkout {
    padding-top: 8px;
    padding-bottom: 24px;
  }

  .cart-checkout__form {
    gap: 20px;
  }

  .cart-checkout__fields {
    gap: 16px;
  }

  .cart-checkout__field--name,
  .cart-checkout__field--phone,
  .cart-checkout__field--comment {
    max-width: none;
  }

  .cart-checkout__group-title {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 24px;
  }

  .cart-checkout__options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cart-radio__ui {
    width: 32px;
    height: 32px;
    background-size: 21px 21px;
  }

  .cart-radio__label {
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0;
  }

  .cart-checkout__invoice {
    width: 100%;
    max-width: none;
    margin-top: 4px;
    padding: 16px 24px;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
  }

  .cart-summary {
    padding-top: 8px;
    padding-bottom: 16px;
  }

  .cart-summary__row {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.48px;
  }

  .cart-summary__total {
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -0.64px;
  }

  .cart-summary__actions {
    gap: 12px;
    margin-bottom: 24px;
  }

  .cart-summary__submit,
  .cart-summary__consult {
    width: 100%;
    max-width: none;
  }

  .cart-summary__submit {
    padding: 16px 24px;
    font-size: 20px;
    line-height: 24px;
  }

  .cart-summary__consult {
    padding: 16px 24px;
    border-width: 2px;
    border-radius: var(--radius-lg);
  }

  .cart-summary__divider:last-of-type {
    margin-bottom: 24px;
  }

  .cart-summary__trust {
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
  }

  .cart-summary__trust-item {
    font-size: 16px;
    line-height: 24px;
  }

  .cart-bottom {
    display: flex;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    flex-direction: column;
    justify-content: space-between;
    height: 152px;
    padding: 15px 16px 0;
    border-top: 1px solid var(--gray-border);
    border-radius: 24px 24px 0 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .cart-bottom__checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .cart-bottom__total {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.32px;
    white-space: nowrap;
  }

  .cart-bottom__total strong {
    font-weight: 600;
  }

  .cart-bottom__submit {
    width: 151px;
    flex-shrink: 0;
    padding: 8px 18px;
  }

  .cart-navbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 80px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Mobile homepage — Figma 316:3619 INDEX 360 */
@media (max-width: 900px) {
  body.page-home {
    --gutter: 16px;
  }

  .page-home .header .container {
    --header-gap: 0;
  }

  .page-home .header__inner {
    height: 72px;
    padding: 12px 16px;
    box-sizing: border-box;
  }

  .page-home .header__burger {
    width: 32px;
    height: 32px;
    color: var(--green);
  }

  .page-home .header__burger .icon {
    width: 32px;
    height: 32px;
  }

  .page-home .hero__bg-wrap {
    display: none;
  }

  .page-home .hero {
    height: auto;
    min-height: 0;
    background: var(--white);
  }

  .page-home .hero__container {
    height: auto;
    padding-top: 16px;
    padding-bottom: 24px;
  }

  .page-home .hero__content {
    max-width: none;
    width: 100%;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }

  .page-home .hero__title {
    max-width: none;
  }

  .page-home .hero__lead {
    max-width: none;
    font-size: 16px;
    line-height: 24px;
  }

  .page-home .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .page-home .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .page-home .hero__actions .btn--orange {
    min-height: 64px;
  }

  .page-home .hero__actions .btn--outline-green-lg {
    min-height: 56px;
  }

  .page-home .proof-bar__container {
    padding: 16px;
  }

  .page-home .proof-bar__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 16px;
    align-items: start;
    justify-items: center;
  }

  .page-home .proof-bar__item {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    max-width: 156px;
  }

  .page-home .proof-bar__icon {
    width: 48px;
    height: 48px;
  }

  .page-home .proof-bar__icon-img--office {
    width: 32px;
    height: 33px;
  }

  .page-home .proof-bar__icon-img--delivery {
    width: 32px;
    height: 25px;
  }

  .page-home .proof-bar__icon-img--certificate {
    width: 29px;
    height: 31px;
  }

  .page-home .proof-bar__icon-img--consultation {
    width: 30px;
    height: 28px;
  }

  .page-home .proof-bar__label {
    white-space: normal;
    font-size: 16px;
    line-height: 24px;
  }

  .page-home .proof-bar--sets,
  .page-home #quiz {
    display: none;
  }

  .page-home .proof-bar--brands .proof-bar__container {
    padding: 16px;
    min-height: 0;
  }

  .page-home .proof-bar--brands .proof-bar__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    justify-items: center;
  }

  .page-home .proof-bar--brands .proof-bar__item {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 156px;
    text-align: center;
  }

  .page-home .proof-bar--brands .proof-bar__icon {
    width: 48px;
    height: 48px;
  }

  .page-home .proof-bar--brands .proof-bar__label {
    align-items: center;
  }

  .page-home .proof-bar--bottom .proof-bar__container {
    padding: 12px 16px 0;
  }

  .page-home .proof-bar--bottom .proof-bar__list {
    display: flex;
    justify-content: space-between;
    gap: 8px;
  }

  .page-home .proof-bar--bottom .proof-bar__item {
    flex: 1;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: none;
    text-align: center;
  }

  .page-home .proof-bar--bottom .proof-bar__icon {
    width: 32px;
    height: 32px;
  }

  .page-home .bottom-bar__phone {
    padding-bottom: 24px;
  }

  .page-home .section__header,
  .page-home .cases-head,
  .page-home .tips-head,
  .page-home .specials-head,
  .page-home .faq-head {
    text-align: left;
    margin-bottom: 16px;
  }

  .page-home .section__header .h2,
  .page-home .cases-head__title,
  .page-home .tips-head__title,
  .page-home .specials-head__title,
  .page-home .faq-head__title,
  .page-home .calc-form__title {
    text-align: left;
  }

  .page-home .scenarios .section__header {
    text-align: center;
  }

  .page-home .scenarios .section__header .h2 {
    text-align: center;
  }

  .page-home .section-subtitle,
  .page-home .section-subtitle--wide,
  .page-home .cases-head__subtitle,
  .page-home .tips-head__subtitle,
  .page-home .specials-head__subtitle,
  .page-home .calc-form__subtitle {
    margin-inline: 0;
    max-width: none;
    text-align: left;
  }

  .page-home .section {
    padding-block: 32px;
  }

  .page-home .section--reviews,
  .page-home .section--cases {
    padding-block: 32px;
  }

  .page-home .cases-head {
    margin-bottom: 16px;
  }

  .page-home .cases-head__subtitle p + p {
    display: inline;
  }

  .page-home .cases-head__subtitle p + p::before {
    content: " ";
  }

  .page-home #faq {
    display: none;
  }

  .page-home .scenarios-grid,
  .page-home .catalog-grid,
  .page-home .sets-grid,
  .page-home .why-grid,
  .page-home .cases-grid,
  .page-home .reviews-grid,
  .page-home .tips-grid {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-inline: -16px;
    padding-inline: 16px;
    padding-block: 0;
    scrollbar-width: none;
  }

  .page-home .specials-grid {
    margin-inline: -16px;
    padding-inline: 16px;
    padding-block: 0;
  }

  .page-home .scenarios-grid::-webkit-scrollbar,
  .page-home .catalog-grid::-webkit-scrollbar,
  .page-home .sets-grid::-webkit-scrollbar,
  .page-home .why-grid::-webkit-scrollbar,
  .page-home .cases-grid::-webkit-scrollbar,
  .page-home .reviews-grid::-webkit-scrollbar,
  .page-home .tips-grid::-webkit-scrollbar {
    display: none;
  }

  .page-home .scenario-card {
    flex: 0 0 305px;
    width: 305px;
    max-width: none;
    height: 371px;
    min-height: 371px;
    scroll-snap-align: start;
  }

  .page-home .set-card,
  .page-home .specials-card {
    flex: 0 0 305px;
    width: 305px;
    max-width: none;
    scroll-snap-align: start;
  }

  .page-home .catalog-card {
    flex: 0 0 311px;
    width: 311px;
    max-width: none;
    height: 111px;
    min-height: 111px;
    padding: 16px;
    gap: 8px;
    scroll-snap-align: start;
  }

  .page-home .catalog-card__pictogram {
    width: 64px;
    height: 64px;
  }

  .page-home .catalog-card__title {
    font-size: 16px;
    line-height: 20px;
  }

  .page-home .catalog-card__title span {
    display: inline;
  }

  .page-home .catalog-card__list {
    display: none;
  }

  .page-home .catalog-card__arrow {
    width: 40px;
    height: 40px;
  }

  .page-home .why-card {
    flex: 0 0 305px;
    width: 305px;
    max-width: none;
    height: 319px;
    min-height: 319px;
    scroll-snap-align: start;
  }

  .page-home .why-card__num {
    top: 24px;
    left: 24px;
    transform: none;
    font-size: 86px;
    letter-spacing: -4.3px;
  }

  .page-home .why-card__icon {
    top: 24px;
    right: 24px;
    width: 88px;
    height: 88px;
  }

  .page-home .why-card__body {
    top: 126px;
    left: 24px;
    width: calc(100% - 48px);
    max-width: none;
  }

  .page-home .why-card__title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 8px;
  }

  .page-home .why-card__text {
    font-size: 16px;
    line-height: 20px;
  }

  .page-home .case-card {
    flex: 0 0 300px;
    width: 300px;
    max-width: none;
    min-height: 520px;
    scroll-snap-align: start;
  }

  .page-home .case-card__image {
    height: 168px;
  }

  .page-home .case-card__btn {
    padding: 8px 18px;
    border-radius: 16px;
    font-size: 16px;
    line-height: 18px;
  }

  .page-home .review-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "stars"
      "verified"
      "text"
      "author"
      "pill";
    gap: 8px;
    flex: 0 0 299px;
    width: 299px;
    max-width: none;
    height: auto;
    min-height: 398px;
    padding: 22px;
    scroll-snap-align: start;
  }

  .page-home .review-card__stars,
  .page-home .review-card__verified,
  .page-home .review-card__text,
  .page-home .review-card__author,
  .page-home .review-card__pill {
    position: static;
    width: auto;
  }

  .page-home .review-card__verified {
    justify-self: start;
  }

  .page-home .review-card__verified-text {
    color: var(--green);
  }

  .page-home .review-card__text {
    font-size: 16px;
    line-height: 22px;
  }

  .page-home .review-card__pill {
    align-self: start;
    background: var(--tan-green, #ebfaf3);
    border-radius: 64px;
    padding: 8px 16px;
    white-space: normal;
  }

  .page-home .review-card__name {
    font-size: 24px;
    line-height: 28px;
  }

  .page-home .review-card__info {
    font-size: 16px;
    line-height: 24px;
    color: rgba(26, 26, 26, 0.6);
  }

  .page-home .tips-item {
    flex: 0 0 300px;
    width: 300px;
    max-width: none;
    scroll-snap-align: start;
  }

  .page-home .tips-card {
    width: 100%;
    height: auto;
    min-height: 483px;
  }

  .page-home .brands-board {
    padding: 0;
  }

  .page-home .brands-row {
    gap: 16px 12px;
  }

  .page-home .brand-logo img {
    max-width: 110px;
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .page-home .brands__cta {
    margin-top: 16px;
  }

  .page-home .brands__btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .page-home .calc-section {
    display: block;
  }

  .page-home .calc-form__fields,
  .page-home .calc-form__reserve,
  .page-home .calc-form__help,
  .page-home .calc-message {
    display: none;
  }

  .page-home .calc-form__submit-label--desktop {
    display: none;
  }

  .page-home .calc-form__submit-label--mobile {
    display: inline;
  }

  .page-home .calc-form__submit {
    width: 100%;
    margin-top: 16px;
    min-height: 56px;
    justify-content: center;
  }

  .page-home .specials-head__pill {
    margin-top: 8px;
  }

  .page-home .specials-cta {
    text-align: left;
  }

  .page-home .specials-cta__title,
  .page-home .specials-cta__subtitle {
    text-align: left;
  }

  .page-home .specials-cta__actions {
    flex-direction: column;
    gap: 16px;
    padding: 16px 0 0;
  }

  .page-home .specials-cta__btn,
  .page-home .specials-cta__btn--quiz,
  .page-home .specials-cta__btn--chat {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .page-home .footer {
    padding: 32px 0 40px;
  }

  .page-home .footer__social img {
    width: 48px;
    height: 48px;
  }
}

/* Contact page — Figma 442:9548 CONTACT 360 */
.page-contact,
.page-information {
  background: var(--white);
}

.info-page {
  padding: 16px 0 48px;
}

.info-page__container {
  max-width: 846px;
}

.info-page__back {
  margin-bottom: 16px;
}

.info-page__breadcrumbs {
  margin-bottom: 24px;
}

.info-page__title {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.64px;
  color: var(--black);
}

.info-page__content {
  max-width: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--gray);
}

.info-page__content h2 {
  margin: 24px 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--black);
}

.info-page__content h2:first-child {
  margin-top: 0;
}

.info-page__content p {
  margin: 0 0 12px;
}

.info-page__content p:last-child {
  margin-bottom: 0;
}

.info-page__content strong {
  color: var(--black);
}

.info-page__content ul,
.info-page__content ol {
  margin: 0 0 12px;
  padding-left: 20px;
}

.info-page__content li + li {
  margin-top: 6px;
}

.info-page__content a {
  color: var(--green);
}

@media (max-width: 900px) {
  body.page-information {
    --gutter: 16px;
  }

  .page-information .header .container {
    --header-gap: 0;
    --gutter: 16px;
  }

  .page-information .header__inner {
    height: 72px;
    padding: 12px 16px;
    box-sizing: border-box;
  }

  .page-information .header__burger {
    width: 32px;
    height: 32px;
    margin-top: 0;
    color: var(--green);
  }

  .page-information .header__burger .icon {
    width: 32px;
    height: 32px;
  }

  .page-information .footer {
    display: none;
  }

  .info-page {
    padding-bottom: 24px;
  }

  .info-page__title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.56px;
  }
}

.contact-page {
  padding: 16px 0 24px;
}

.contact-page__title {
  margin: 0 0 64px;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.56px;
  color: var(--black);
}

.contact-page__message {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  max-width: 480px;
}

.contact-page__message p {
  margin: 0;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 325px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  min-height: 54px;
  padding: 8px;
  color: inherit;
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.15s ease;
}

a.contact-item:hover,
a.contact-item:focus-visible {
  background: rgba(6, 125, 68, 0.06);
}

.contact-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 20px;
  flex-shrink: 0;
}

.contact-item__icon img {
  display: block;
  width: 24px;
  height: 24px;
}

.contact-item__icon--whatsapp {
  background: #25d366;
}

.contact-item__icon--viber {
  background: #8f5db7;
}

.contact-item__icon--telegram {
  background: #139bd0;
}

.contact-item__icon--phone {
  background: #37c837;
}

.contact-item__icon--instagram {
  width: 48px;
  height: 40px;
  margin-right: 2px;
  margin-left: -4px;
  border-radius: 0;
  background: transparent;
}

.contact-item__icon--instagram img {
  width: 48px;
  height: 48px;
}

.contact-item__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-top: 1px;
}

.contact-item__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: rgba(0, 0, 0, 0.87);
}

.contact-item__desc {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: #787878;
}

@media (max-width: 900px) {
  body.page-contact {
    --gutter: 16px;
  }

  .page-contact .header .container {
    --header-gap: 0;
    --gutter: 16px;
  }

  .page-contact .header__inner {
    height: 72px;
    padding: 12px 16px;
    box-sizing: border-box;
  }

  .page-contact .header__burger {
    width: 32px;
    height: 32px;
    margin-top: 0;
    color: var(--green);
  }

  .page-contact .header__burger .icon {
    width: 32px;
    height: 32px;
  }

  .page-contact .footer {
    display: none;
  }
}

/* Quiz page — Figma QUIZ 360 (384:8042 … 385:8118) */
.page-quiz {
  background: var(--white);
}

.quiz-page {
  max-width: 846px;
  margin-inline: auto;
  padding: 30px 16px 24px;
}

.quiz-page__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-bottom: 24px;
}

.quiz-page__close {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: inherit;
  text-decoration: none;
}

.quiz-page__close img {
  display: block;
  width: 32px;
  height: 32px;
}

.quiz-page__done-pill {
  display: none;
  padding: 8px 16px;
  border-radius: 64px;
  background: var(--tan-green, #ebfaf3);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--green);
}

.page-quiz .quiz-page--result .quiz-page__done-pill {
  display: inline-block;
}

.quiz-progress {
  position: relative;
  width: min(100%, 248px);
  height: 16px;
}

.quiz-progress__track {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  border-radius: 1px;
  background: #989da4;
  overflow: hidden;
}

.quiz-progress__fill {
  display: block;
  height: 100%;
  border-radius: 1px;
  background: var(--green);
  transition: width 0.2s ease;
}

.quiz-progress__dots {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.quiz-progress__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #989da4;
  background: var(--white);
  box-sizing: border-box;
  flex-shrink: 0;
}

.quiz-progress__dot--done {
  border-color: var(--green);
  background: var(--green);
}

.page-quiz .quiz-option {
  position: relative;
}

.page-quiz .quiz-option__check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  pointer-events: none;
}

.page-quiz .quiz-option__check img {
  display: block;
  width: 32px;
  height: 32px;
}

@media (max-width: 900px) {
  body.page-quiz {
    --gutter: 16px;
  }

  .page-quiz .quiz-page {
    padding: 16px 16px 24px;
    max-width: none;
  }

  .page-quiz .quiz-page__top {
    margin-bottom: 16px;
  }

  .page-quiz .quiz-tabs {
    display: none;
  }

  .page-quiz .quiz-box {
    max-width: none;
    min-height: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .page-quiz .quiz-box__head {
    margin-bottom: 16px;
  }

  .page-quiz .quiz-box__question {
    padding-inline: 0;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.56px;
  }

  .page-quiz .quiz-box__badge {
    position: static;
    display: table;
    margin: 12px auto 0;
  }

  .page-quiz .quiz-box__options {
    grid-template-columns: repeat(2, 156px);
    justify-content: space-between;
    gap: 16px;
    row-gap: 16px;
    margin-bottom: 16px;
  }

  .page-quiz .quiz-option {
    width: 156px;
    max-width: none;
    height: 156px;
    justify-self: stretch;
    padding: 9px 7px 16px;
    border-width: 2px;
    border-color: var(--green);
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
  }

  .page-quiz .quiz-option--selected {
    border-width: 3px;
    background: var(--tan-green, #ebfaf3);
  }

  .page-quiz .quiz-option__icon {
    width: 80px;
    height: 80px;
  }

  .page-quiz .quiz-box__actions {
    padding-top: 0;
  }

  .page-quiz .btn--quiz-back,
  .page-quiz .btn--quiz-next {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    border-radius: 36px;
  }

  .page-quiz .btn--quiz-back {
    border-width: 2px;
    border-color: rgba(229, 231, 235, 0.5);
    color: var(--gray);
  }

  .page-quiz .btn--quiz-back:not(:disabled) {
    border-color: var(--green);
    color: var(--black);
  }

  .page-quiz .quiz-box--result {
    padding-top: 0;
  }

  .page-quiz .quiz-result__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0;
  }

  .page-quiz .quiz-result__summary {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: var(--gray);
  }

  .page-quiz .quiz-result__subtitle {
    display: none;
  }

  .page-quiz .quiz-result__grid {
    margin-top: 16px;
    gap: 24px;
  }

  .page-quiz .quiz-result__hero {
    min-height: 0;
  }

  .page-quiz .quiz-result__hero-btn {
    width: 100%;
    max-width: 284px;
  }

  .page-quiz .quiz-result__kit {
    min-height: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
  }

  .page-quiz .quiz-result__kit-title {
    margin-bottom: 16px;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.56px;
  }

  .page-quiz .quiz-result__kit-item {
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
  }

  .page-quiz .quiz-result__kit-item img {
    width: 24px;
    height: 24px;
  }

  .page-quiz .quiz-result__kit-price {
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    white-space: nowrap;
  }

  .page-quiz .quiz-result__cart {
    width: 100%;
    justify-content: center;
    min-height: 56px;
    margin-top: 16px;
  }

  .page-quiz .quiz-result__restart {
    display: block;
    width: fit-content;
    margin: 16px auto 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
  }
}

@media (min-width: 901px) {
  .page-quiz .quiz-page__top {
    display: none;
  }

  body.page-quiz {
    padding-bottom: 0;
  }
}

/* Search page — Figma 400:10734 SEARCH 360 */
.page-search {
  background: var(--white);
}

.search-page {
  padding: 16px 16px 24px;
}

.search-page__header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 48px;
  margin-bottom: 16px;
}

.search-page__close {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: inherit;
  text-decoration: none;
}

.search-page__close img {
  display: block;
  width: 32px;
  height: 32px;
}

.search-page__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  max-width: calc(100% - 64px);
  padding-top: 4px;
}

.search-page__title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  color: #666;
  text-align: center;
}

.search-page__count {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: #989da4;
  text-align: center;
}

.search-page__divider {
  margin: 0 -16px 8px;
  border: none;
  border-top: 1px solid var(--gray-border);
}

.search-results {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-results__item + .search-results__item {
  border-top: 1px solid var(--gray-border);
}

.search-result {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px 16px;
  min-height: 80px;
  padding: 4px 0;
  color: inherit;
  text-decoration: none;
}

.search-result__img {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.search-result__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.search-result__name {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: #1d1d1d;
}

.search-result__meta {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: #666;
}

.search-result__price {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--black);
  white-space: nowrap;
}

.search-page__section {
  margin-top: 24px;
}

.search-page__section-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: #989da4;
}

.search-categories {
  position: relative;
}

.search-categories__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-right: 48px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.search-categories__track::-webkit-scrollbar {
  display: none;
}

.search-category {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}

.search-category__icon {
  display: block;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}

.search-category__name {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  white-space: nowrap;
}

.search-category__chevron {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.search-categories__fade {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 48px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 30.21%, #fff 89.58%);
  pointer-events: none;
}

.search-popular {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.search-popular-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: none;
  border-radius: 64px;
  background: var(--tan-green, #ebfaf3);
  color: var(--green);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  cursor: pointer;
}

.search-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 98px;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 2px 2px 2.5px rgba(0, 0, 0, 0.07);
}

.search-bar__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: #666;
}

.search-bar__input:focus {
  outline: none;
}

.search-bar__input::-webkit-search-cancel-button {
  display: none;
}

.search-bar__clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.search-bar__clear img {
  display: block;
  width: 24px;
  height: 24px;
}

@media (max-width: 900px) {
  body.page-search {
    --gutter: 16px;
  }
}

@media (min-width: 901px) {
  .page-search .search-bar {
    display: none;
  }

  body.page-search {
    padding-bottom: 0;
  }

  .search-page {
    max-width: 640px;
    margin-inline: auto;
    padding-top: 32px;
  }
}

/* Calculator page — Figma 393:7068 CALC + 393:7306 RESULT */
.page-calc {
  background: var(--white);
}

.calc-page {
  padding: 16px 16px 32px;
}

@media (min-width: 901px) {
  .page-calc-main {
    padding-top: 24px;
  }

  .page-calc .calc-page {
    padding: 0;
  }

  .page-calc .calc-page__header {
    justify-content: flex-start;
    margin-bottom: 20px;
  }

  .page-calc .calc-page__back {
    position: static;
    transform: none;
    margin-right: 12px;
  }

  .page-calc .calc-page__title {
    max-width: 100%;
    text-align: left;
  }

  .page-calc .calc-page__lead {
    max-width: 640px;
    margin-bottom: 24px;
  }

  .page-calc .calc-form__row--4 {
    gap: 16px;
  }

  .page-calc .calc-form__row--4 .calc-field--narrow {
    width: calc((100% - 276px - 48px) / 3);
    min-width: 110px;
  }

  .page-calc .calc-form__submit {
    width: 280px;
  }
}

.calc-page__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-bottom: 16px;
}

.calc-page__back {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.calc-page__back img {
  display: block;
  width: 24px;
  height: 24px;
}

.calc-page__title {
  margin: 0;
  max-width: calc(100% - 48px);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.48px;
  text-align: center;
}

.calc-page__lead {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: #666;
}

.calc-mobile-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-mobile-form .calc-field--wide {
  width: 100%;
}

.calc-mobile-form__dims {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.calc-mobile-form__dims .calc-field--narrow {
  width: 100px;
  flex-shrink: 0;
}

.calc-mobile-form__dims .calc-field__label {
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  line-height: 14px;
  white-space: nowrap;
}

.page-calc .calc-field__control {
  border-width: 1px;
}

.page-calc .calc-form__reserve {
  margin-top: 8px;
}

.page-calc .calc-form__checkbox-ui {
  width: 32px;
  height: 32px;
  margin-top: 0;
}

.page-calc .calc-form__reserve-note {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
}

.page-calc .calc-mobile-form__submit {
  width: 100%;
  min-height: 56px;
  margin-top: 8px;
  border-radius: 36px;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.page-calc .calc-form__error {
  margin: 8px 0 0;
  color: #c81e1e;
  font-size: 14px;
  line-height: 18px;
}

.page-home .calc-form__error {
  margin: 0 0 12px;
  color: #c81e1e;
  font-size: 14px;
  line-height: 18px;
}

.calc-result-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 2px solid var(--green);
  border-radius: 16px;
  background: var(--tan-green, #ebfaf3);
  text-align: center;
}

.calc-result-card__amount {
  margin: 0;
  width: 100%;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.56px;
  color: var(--black);
}

.calc-result-card__list {
  width: 100%;
  margin: 0;
  padding-left: 30px;
  list-style: disc;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.4px;
}

.calc-result-card__list li + li {
  margin-top: 8px;
}

.calc-result__cartridges {
  margin: 24px 0 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.56px;
  text-align: center;
}

.calc-result__reserve {
  margin: 8px 0 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: #666;
  text-align: center;
}

.calc-result__price {
  margin: 24px 0 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: var(--black);
  text-align: center;
}

.calc-result__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 56px;
  margin-top: 16px;
  border-radius: 36px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.calc-result__consult {
  width: 100%;
  min-height: 56px;
  margin-top: 12px;
  border-radius: 36px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

@media (min-width: 901px) {
  .calc-page {
    max-width: 360px;
    margin-inline: auto;
    padding-top: 32px;
  }
}

/* Compare page */
.page-compare {
  background: var(--bg-primary);
}

.compare-page {
  padding: 32px 0 80px;
}

.compare-page__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.compare-back {
  display: none;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--black);
  text-decoration: none;
}

.compare-back img {
  display: block;
  width: 24px;
  height: 24px;
}

.compare-notice {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ebfaf3;
  border: 1px solid #a7f3d0;
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
}

.compare-board {
  background: var(--white);
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 32px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  padding: 31px;
}

.compare-board__title {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.64px;
}

.compare-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.compare-product {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 16px;
  background: var(--white);
}

.compare-product__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  margin-bottom: 12px;
}

.compare-product__media img {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.compare-product__name {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
}

.compare-product__name a {
  color: var(--black);
  text-decoration: none;
}

.compare-product__name a:hover {
  color: var(--green);
}

.compare-product__price-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 12px;
}

.compare-product__price {
  font-size: 24px;
  font-weight: 800;
  line-height: 32px;
  color: var(--black);
}

.compare-product__price-old {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--gray);
  text-decoration: line-through;
}

.compare-product__stock {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--green);
}

.compare-product__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-top: auto;
}

.compare-product__cart {
  width: 100%;
  justify-content: center;
}

.compare-product__remove {
  align-self: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--gray);
  text-decoration: none;
}

.compare-product__remove:hover {
  color: var(--green);
  text-decoration: underline;
}

.compare-table-wrap {
  overflow-x: auto;
  margin: 0 -8px;
  padding: 0 8px 4px;
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-border);
  vertical-align: top;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.32px;
  text-align: left;
}

.compare-table__label {
  width: 200px;
  font-weight: 600;
  color: var(--gray);
  background: rgba(249, 250, 251, 0.8);
}

.compare-table__group-title {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(6, 125, 68, 0.15);
  background: var(--tan-green);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.28px;
  color: var(--green);
  text-transform: uppercase;
}

.compare-table tbody tr:not(.compare-table__group):hover td {
  background: rgba(235, 250, 243, 0.35);
}

.compare-table tbody tr:not(.compare-table__group):hover .compare-table__label {
  background: rgba(235, 250, 243, 0.55);
}

.compare-empty__btn {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .page-compare .compare-back {
    display: inline-flex;
  }

  .compare-page {
    padding: 16px 0 24px;
  }

  .compare-page .container {
    --gutter: 16px;
  }

  .compare-board {
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .compare-board__title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.56px;
  }

  .compare-products {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }

  .compare-table__label {
    width: 140px;
    font-size: 14px;
    line-height: 20px;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px;
    font-size: 14px;
    line-height: 20px;
  }
}

/* Catalog page — Figma 337:5013 CATALOG 1440 + 345:5542 CATALOG 360 */
.page-catalog {
  background: var(--bg-primary);
}

.catalog-page {
  padding: 16px 0 24px;
}

.catalog-page__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.catalog-board {
  background: transparent;
}

.catalog-layout {
  display: block;
}

.catalog-sidebar {
  display: contents;
}

.catalog-filters-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.35);
}

.catalog-filters__panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 300px;
  border: 2px solid #e5e7eb;
  border-radius: 28px;
  padding: 22px 24px 24px;
  background: var(--white);
  box-sizing: border-box;
}

.catalog-filters__head {
  display: block;
  margin-bottom: 16px;
}

.catalog-filters__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.48px;
  color: var(--black);
}

.catalog-filters__close {
  display: none;
}

.catalog-filters__sections {
  display: flex;
  flex-direction: column;
}

.catalog-filter {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 0;
  border-top: 2px solid #e5e7eb;
}

.catalog-filter__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: 253px;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--black);
  text-align: left;
  cursor: pointer;
}

.catalog-filter__toggle img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.catalog-filter__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 253px;
  margin: 0 auto;
}

.catalog-filter:not(.catalog-filter--open) .catalog-filter__body {
  display: none;
}

.catalog-filter__attribute {
  margin-bottom: 16px;
}

.catalog-filter__attribute:last-child {
  margin-bottom: 0;
}

.catalog-filter__attribute-name {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.28px;
  color: #6b6b6b;
}

.catalog-filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--black);
  cursor: pointer;
}

.catalog-filter-check--nested {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.28px;
}

.catalog-filter-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.catalog-filter-check span {
  position: relative;
  padding-left: 32px;
}

.catalog-filter-check span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: center / 24px 24px no-repeat url("../image/images/figma/calc/checkbox-unchecked.svg");
}

.catalog-filter-check input:checked + span::before {
  background-image: url("../image/images/figma/calc/checkbox-checked.svg");
}

.catalog-filter__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.catalog-filter__price-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 108px;
  padding: 18px 16px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 16px;
  background: var(--white);
  box-sizing: border-box;
}

.catalog-filter__price-field input {
  width: 100%;
  min-width: 0;
  border: none;
  padding: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black);
  background: transparent;
}

.catalog-filter__price-field input:focus {
  outline: none;
}

.catalog-filter__price-field span {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  color: #989da4;
}

.catalog-filter__price-dash {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.catalog-filter__range {
  width: 100%;
  padding-top: 8px;
  touch-action: none;
  user-select: none;
}

.catalog-filter__range-track {
  position: relative;
  height: 24px;
  margin: 10px 12px 0;
  cursor: pointer;
}

.catalog-filter__range-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  height: 4px;
  border-radius: 999px;
  background: #e5e7eb;
}

.catalog-filter__range-fill {
  position: absolute;
  top: 10px;
  left: 0;
  width: 0;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
  pointer-events: none;
}

.catalog-filter__range-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 3px solid var(--green);
  border-radius: 50%;
  background: var(--white);
  box-sizing: border-box;
  transform: translateX(-50%);
  cursor: grab;
  z-index: 2;
}

.catalog-filter__range-thumb.is-dragging {
  cursor: grabbing;
}

.catalog-filter__range-thumb:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.catalog-filter__range-labels {
  position: relative;
  height: 28px;
  margin: 4px 12px 0;
}

.catalog-filter__range-value {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--black);
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

.catalog-filters__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.catalog-filters__apply {
  display: block;
  width: 252px;
  max-width: 100%;
  min-height: 56px;
  margin: 0;
  padding: 16px 24px;
  border: none;
  border-radius: 36px;
  background: rgba(229, 231, 235, 0.5);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--gray);
  cursor: pointer;
}

.catalog-filters__reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--gray);
  text-decoration: none;
}

.catalog-filters__reset:hover {
  color: var(--black);
}

.catalog-aside-card {
  padding: 22px 24px 24px;
  border: 2px solid #e5e7eb;
  border-radius: 28px;
  background: var(--white);
}

.catalog-aside-card + .catalog-aside-card {
  margin-top: 24px;
}

.catalog-aside-card__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.catalog-aside-card__text {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--gray);
}

.catalog-aside-card__link {
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--green);
}

.catalog-aside-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 64px;
  border: 1px solid var(--green);
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--green);
}

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

.catalog-back {
  display: none;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--black);
}

.catalog-back img {
  display: block;
  width: 24px;
  height: 24px;
}

.catalog-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--gray);
}

.catalog-breadcrumbs a:hover {
  color: var(--green);
}

.catalog-breadcrumbs [aria-current="page"] {
  color: var(--black);
}

.catalog-header__top {
  margin-bottom: 10px;
}

.catalog-header__title {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.56px;
}

.catalog-header__subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: rgba(26, 26, 26, 0.8);
}

.special-page__subtitle {
  margin: 0;
  max-width: 640px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--gray);
}

/* Specials listing page */
.page-special {
  background: var(--bg-primary);
}

.special-page {
  padding: 16px 0 32px;
}

.special-page__container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.special-page__back {
  margin-bottom: 12px;
}

.special-page__breadcrumbs {
  margin-bottom: 16px;
}

.special-page__head {
  margin-bottom: 8px;
}

.special-page__title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.56px;
  color: var(--black);
}

.special-page__toolbar {
  display: none;
  margin: 16px 0 8px;
}

.special-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}

.page-special .specials-card {
  width: 100%;
  max-width: 305px;
  flex: unset;
  scroll-snap-align: unset;
  margin-inline: auto;
}

.page-special .specials-card__image-wrap {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.page-special .specials-card__image {
  width: 100%;
  height: 100%;
}

.special-page__pagination {
  margin-top: 24px;
}

@media (max-width: 900px) {
  body.page-special {
    --gutter: 16px;
  }

  .page-special .header .container {
    --header-gap: 0;
    --gutter: 16px;
  }

  .page-special .header__inner {
    height: 72px;
    padding: 12px 16px;
    box-sizing: border-box;
  }

  .page-special .header__burger {
    width: 32px;
    height: 32px;
    margin-top: 0;
    color: var(--green);
  }

  .page-special .header__burger .icon {
    width: 32px;
    height: 32px;
  }

  .page-special .footer {
    display: none;
  }

  .special-page__back {
    display: inline-flex;
  }
}

@media (min-width: 600px) {
  .special-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .page-special .specials-card {
    max-width: none;
    margin-inline: 0;
  }
}

@media (min-width: 901px) {
  .special-page {
    padding: 32px 0 48px;
  }

  .special-page__container {
    max-width: 1280px;
    margin-inline: auto;
  }

  .special-page__title {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -0.64px;
  }

  .special-page__back {
    display: none;
  }

  .special-page__breadcrumbs {
    margin-bottom: 24px;
  }

  .special-page__toolbar {
    display: flex;
    justify-content: flex-end;
  }

  .special-page__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 8px;
  }

  .special-page__pagination {
    margin-top: 32px;
  }
}

@media (min-width: 1200px) {
  .special-page__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.catalog-scenarios__label {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--black);
}

.catalog-scenarios__pills {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin: 0 -16px;
  padding: 0 16px 4px;
  scrollbar-width: none;
}

.catalog-scenarios__pills::-webkit-scrollbar {
  display: none;
}

.catalog-scenario-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 64px;
  background: var(--tan-green);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.catalog-scenario-pill:hover {
  background: #d4f5e8;
  color: #056b3a;
}

.catalog-scenario-pill--active,
.catalog-scenario-pill--active:hover {
  background: var(--green);
  color: #fff;
}

.catalog-scenario-pill--desktop-only {
  display: none;
}

.catalog-scenario-pill--mobile-only {
  display: inline-flex;
}

.catalog-subcats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.catalog-subcats__link {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--green);
  text-decoration: none;
}

.catalog-subcats__link:hover,
.catalog-subcats__link:focus-visible {
  border-color: var(--green);
  background: rgba(6, 125, 68, 0.06);
}

.catalog-filters-open {
  display: none;
}

.catalog-empty {
  margin: 24px 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--gray);
}

.catalog-toolbar {
  display: none;
}

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

.catalog-product {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 354px;
  padding: 0 6px 12px;
  border: 2px solid rgba(229, 231, 235, 0.5);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.catalog-product__media {
  position: relative;
  width: calc(100% + 12px);
  height: 157px;
  margin: -2px -6px 0;
  overflow: hidden;
  background: var(--white);
}

.catalog-product__discount {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 64px;
  background: var(--orange);
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  color: var(--white);
  white-space: nowrap;
}

.catalog-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-product__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.catalog-product__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.catalog-products--list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.catalog-products--list .catalog-product {
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-height: 0;
  padding: 12px 14px;
  gap: 16px;
}

.catalog-products--list .catalog-product__media {
  width: 112px;
  height: 112px;
  margin: 0;
  flex-shrink: 0;
  border-radius: 12px;
}

.catalog-products--list .catalog-product__body {
  flex: 1;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.catalog-products--list .catalog-product__info {
  flex: 1;
}

.catalog-products--list .catalog-product__desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 6px;
}

.catalog-products--list .catalog-product__bottom {
  margin-top: 0;
  padding-top: 0;
  flex-shrink: 0;
}

.catalog-products--list .catalog-product__price-row {
  align-items: flex-end;
  margin-bottom: 8px;
}

.catalog-products--list .catalog-product__actions {
  justify-content: flex-end;
}

.catalog-product__meta {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: var(--gray);
}

.catalog-product__name {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.28px;
}

.catalog-product__name a:hover {
  color: var(--green);
}

.catalog-product__desc,
.catalog-product__tags {
  display: none;
}

.catalog-product__compare {
  display: none;
  padding: 0;
  border: none;
  background: #fff;
  cursor: pointer;
  box-sizing: border-box;
}

.catalog-product__compare img,
.catalog-product__compare svg {
  display: block;
  width: 24px;
  height: 24px;
}

.catalog-product__bottom {
  margin-top: auto;
  padding-top: 12px;
}

.catalog-product__price-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 12px;
}

.catalog-product__savings {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 64px;
  background: rgba(6, 125, 68, 0.1);
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  color: var(--green);
  white-space: nowrap;
}

.catalog-product__price {
  font-size: 24px;
  font-weight: 800;
  line-height: 32px;
  letter-spacing: 0;
}

.catalog-product__stock {
  display: list-item;
  margin-left: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.32px;
  color: var(--green);
}

.catalog-product__actions {
  display: flex;
  justify-content: center;
}

.catalog-product__cart {
  width: 140px;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
}

.catalog-product__cart--in-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  box-sizing: border-box;
}

.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.catalog-pagination__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--black);
  text-decoration: none;
}

.catalog-pagination__arrow--disabled {
  opacity: 0.35;
  cursor: default;
}

.catalog-pagination__pages {
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog-pagination__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  padding: 0;
  border-radius: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--black);
  text-decoration: none;
}

.catalog-pagination__page:hover,
.catalog-pagination__page:focus-visible {
  color: var(--green);
}

.catalog-pagination__page--dots {
  min-width: auto;
  pointer-events: none;
}

.catalog-pagination__page--active {
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 24px;
  background: var(--orange);
  color: var(--white);
}

.catalog-pagination__page--desktop-only {
  display: none;
}

.catalog-seo {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--gray);
  text-align: justify;
}

.catalog-seo h2,
.catalog-seo h3 {
  margin: 0 0 0;
  font: inherit;
  color: inherit;
}

.catalog-seo p {
  margin: 0;
}

.catalog-seo a {
  color: var(--green);
}

body.catalog-filters-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  body.page-catalog {
    --gutter: 16px;
  }

  .catalog-scenarios__label {
    display: none;
  }

  .catalog-filters__panel,
  .catalog-aside-card {
    display: none;
  }

  .page-catalog .footer {
    display: none;
  }

  .page-catalog .header .container {
    --header-gap: 0;
    --gutter: 16px;
  }

  .page-catalog .header__inner {
    height: 72px;
    padding: 12px 16px;
    box-sizing: border-box;
  }

  .page-catalog .header__burger {
    width: 32px;
    height: 32px;
    margin-top: 0;
    color: var(--green);
  }

  .page-catalog .header__burger .icon {
    width: 32px;
    height: 32px;
  }

  .catalog-back {
    display: inline-flex;
  }

  .catalog-breadcrumbs {
    margin-bottom: 18px;
  }
}

@media (min-width: 901px) {
  .catalog-back,
  .product-back,
  .catalog-filters-backdrop,
  .catalog-filters-open,
  .catalog-scenario-pill--mobile-only {
    display: none;
  }

  .catalog-scenario-pill--desktop-only {
    display: inline-flex;
  }

  .catalog-page {
    padding: 32px 0 48px;
  }

  .catalog-page__container {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 0;
    gap: 48px;
  }

  .catalog-board {
    background: var(--white);
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 32px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
    overflow: hidden;
  }

  .catalog-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 36px;
    padding: 32px;
  }

  .catalog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .catalog-filters__panel {
    width: 300px;
    min-height: 674px;
    padding-bottom: 24px;
  }

  .catalog-filters__actions {
    margin-top: auto;
  }

  .catalog-filters__apply {
    margin-top: 0;
  }

  .catalog-header__title {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -0.64px;
    margin-bottom: 18px;
  }

  .catalog-header__subtitle {
    color: var(--gray);
  }

  .catalog-header__top {
    margin-bottom: 10px;
  }

  .catalog-breadcrumbs {
    margin-bottom: 26px;
  }

  .catalog-scenarios__pills {
    flex-wrap: wrap;
    overflow: visible;
    margin: 0;
    padding: 0;
  }

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

  .catalog-toolbar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
  }

  .catalog-filters-open {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 16px;
    border: 2px solid var(--green);
    border-radius: 16px;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    color: var(--green);
    cursor: pointer;
  }

  .catalog-sort {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 40px;
    padding: 8px 16px;
    border: 2px solid var(--green);
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    color: var(--green);
  }

  .catalog-sort img {
    width: 24px;
    height: 24px;
  }

  .catalog-view {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

  .catalog-view__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 40px;
    padding: 8px 9px;
    border: 2px solid var(--green);
    border-radius: 16px;
    background: transparent;
    color: var(--green);
    cursor: pointer;
  }

  .catalog-view__btn--active {
    background: var(--green);
    color: var(--white);
  }

  .catalog-products--list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .catalog-products--list .catalog-product {
    width: 100%;
    min-height: 0;
    padding: 20px 24px;
    gap: 24px;
    flex-direction: row;
    align-items: stretch;
  }

  .catalog-products--list .catalog-product__media {
    width: 200px;
    height: 200px;
    margin: 0;
    flex-shrink: 0;
    border-radius: 12px;
  }

  .catalog-products--list .catalog-product__body {
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  .catalog-products--list .catalog-product__info {
    flex: 1;
    min-width: 0;
  }

  .catalog-products--list .catalog-product__desc {
    display: block;
    max-width: 560px;
    margin-top: 8px;
    overflow: visible;
  }

  .catalog-products--list .catalog-product__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
  }

  .catalog-products--list .catalog-product__bottom {
    min-width: 168px;
    margin-top: 0;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
  }

  .catalog-products--list .catalog-product__price-row {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 12px;
  }

  .catalog-products--list .catalog-product__stock {
    display: block;
    margin-left: 0;
    list-style: none;
  }

  .catalog-products--list .catalog-product__compare {
    display: inline-flex;
  }

  .catalog-products--list .catalog-product__actions {
    justify-content: flex-end;
  }

  .catalog-products {
    grid-template-columns: repeat(3, 272px);
    column-gap: 30px;
    row-gap: 27px;
  }

  .catalog-product {
    width: 272px;
    min-height: 555px;
    padding: 0 14px 16px;
  }

  .catalog-product__media {
    width: calc(100% + 28px);
    height: 273px;
    margin: -2px -14px 0;
  }

  .catalog-product__meta {
    margin-top: 0;
  }

  .catalog-product__name {
    margin-top: 8px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.32px;
  }

  .catalog-product__desc {
    display: block;
    margin: 8px 0 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
    color: var(--gray);
  }

  .catalog-product__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
  }

  .catalog-product__tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 64px;
    background: var(--tan-green);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.24px;
    color: var(--green);
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
  }

  .catalog-product__tag:hover {
    background: #d4f5e8;
    color: #056b3a;
  }

  .catalog-product__bottom {
    padding-top: 16px;
  }

  .catalog-product__price-row {
    flex-direction: row;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
  }

  .catalog-product__compare {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 40px;
    padding: 4px 24px;
    border: 1px solid var(--green);
    border-radius: 16px;
    color: var(--green);
    flex-shrink: 0;
    transition: background-color 0.15s ease, border-color 0.15s ease;
  }

  .catalog-product__compare:hover {
    background: #ebfaf3;
  }

  .catalog-product__actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
  }

  .catalog-product__cart {
    width: 152px;
    flex: 0 0 152px;
  }

  .catalog-pagination {
    gap: 36px;
    margin-top: 32px;
  }

  .catalog-pagination__page--desktop-only {
    display: inline-flex;
  }

  .catalog-seo {
    max-width: 1280px;
    text-align: left;
  }
}

/* Product page — Figma 345:9231 ITEM 1440 + 345:10255 ITEM 360 */
.page-product {
  background: var(--bg-primary);
}

.product-page {
  padding: 16px 0 24px;
}

.product-page__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1280px;
  margin-inline: auto;
}

.product-board {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--black);
}

.product-breadcrumbs--desktop {
  display: none;
}

.product-breadcrumbs--mobile {
  margin-bottom: 0;
}

.product-hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-gallery {
  width: 100%;
  max-width: 420px;
  min-width: 0;
  margin-inline: auto;
}

.product-gallery__main {
  width: 100%;
  max-width: 420px;
  max-height: 420px;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8fbf9;
}

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

.product-gallery__thumbs {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.product-gallery__thumb {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 24px;
  background: #2fa797;
  overflow: hidden;
  cursor: pointer;
}

.product-gallery__thumb--active {
  border-color: var(--green);
}

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

.product-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
}

.product-breadcrumbs__parent {
  color: rgba(26, 26, 26, 0.6);
}

.product-details__title {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.56px;
  color: var(--black);
  max-width: 578px;
}

.product-details__lead {
  margin: 0 0 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--gray);
  max-width: 578px;
}

.product-buy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-colors {
  width: 100%;
  max-width: 408px;
  margin-bottom: 0;
}

.product-colors__label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: var(--black);
}

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

.product-colors__swatch {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-sizing: border-box;
}

.product-colors__swatch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-colors__swatch img,
.product-colors__dot {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.product-colors__dot {
  display: block;
  background: #ececee;
}

.product-colors__swatch--active {
  border-color: var(--green);
}

.product-colors__name {
  margin: 12px 0 22px;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: var(--gray);
}

.product-colors__error,
.product-field__error {
  margin: 8px 0 0;
  font-size: 14px;
  color: #c0392b;
}

.product-details__sku {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--gray);
}

.product-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  max-width: 408px;
  margin-bottom: 24px;
}

.product-rating__stars {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.product-rating__star {
  display: block;
  width: 24px;
  height: 24px;
}

.product-rating__star--muted {
  opacity: 0.25;
}

.product-rating__count {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--gray);
  white-space: nowrap;
}

.product-purchase {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 408px;
  margin-bottom: 24px;
}

.product-field {
  position: relative;
  display: block;
  flex: 1 1 156px;
  width: 156px;
  min-width: 0;
  padding-top: 7px;
  box-sizing: border-box;
}

.product-field__label {
  position: absolute;
  top: 7px;
  left: 16px;
  z-index: 2;
  transform: translateY(-50%);
  padding: 0 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  color: var(--gray);
}

.product-field__control {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  padding: 0 16px;
  border: 1px solid var(--gray);
  border-radius: 16px;
  background: #fff;
  box-sizing: border-box;
}

.product-field__select {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  padding: 0 32px 0 0;
  margin: 0;
  border: 0;
  background: transparent;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black);
  appearance: none;
  cursor: pointer;
}

.product-field__chevron {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.product-field__chevron img {
  display: block;
  width: 14px;
  height: 8px;
}

.product-counter {
  display: inline-flex;
  align-items: stretch;
  flex-shrink: 0;
}

.product-counter__btn {
  width: 54px;
  height: 60px;
  border: 1px solid #e5e7eb;
  background: rgba(229, 231, 235, 0.6);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
  cursor: pointer;
}

.product-counter__btn:first-child {
  border-radius: 24px 0 0 24px;
}

.product-counter__btn:last-child {
  border-radius: 0 24px 24px 0;
}

.product-counter__value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 60px;
  border-top: 1.31px solid #e5e7eb;
  border-bottom: 1.31px solid #e5e7eb;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.product-stock {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px 16px 8px 28px;
  border-radius: 999px;
  background: #ebfaf3;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--green);
}

.product-stock::before {
  content: "•";
  margin-right: 8px;
  margin-left: -16px;
}

.product-stock--out {
  background: #fff4f0;
  color: #c0392b;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 24px;
}

.product-price__current {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.64px;
  color: var(--black);
}

.product-price__old {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--gray);
  text-decoration: line-through;
}

.product-cta {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 12px;
  width: 100%;
}

.product-cta__cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  min-height: 56px;
  padding: 16px 16px;
  border-radius: 36px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  box-sizing: border-box;
}

.product-cta__cart.btn {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  min-height: 56px;
  padding: 16px 16px;
  border-radius: 36px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.product-cta__cart.catalog-product__cart--in-cart {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  max-width: none;
  min-height: 56px;
  padding: 16px 16px;
  border-radius: 36px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.product-cta__cart-icon {
  filter: brightness(0) invert(1);
}

.product-cta__cart.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.product-cart-notice {
  width: 100%;
  max-width: 408px;
  margin: 0 0 12px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.3px;
}

.product-cart-notice--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

.product-cart-notice--success {
  background: #ebfaf3;
  border: 1px solid #a7f3d0;
  color: var(--green);
}

.product-field--invalid .product-field__control {
  border-color: #dc2626;
}

.product-colors--invalid .product-colors__swatches {
  outline: 2px solid #dc2626;
  outline-offset: 4px;
  border-radius: 8px;
}

.product-cta__buy {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 36px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  box-sizing: border-box;
  white-space: nowrap;
}

.product-cta__buy.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

body.quick-checkout-open {
  overflow: hidden;
}

.quick-checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  box-sizing: border-box;
}

.quick-checkout-modal[hidden] {
  display: none !important;
}

.quick-checkout-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.quick-checkout-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 560px;
  max-height: min(90vh, 860px);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.quick-checkout-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.quick-checkout-modal__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  color: var(--black);
}

.quick-checkout-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.quick-checkout-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 24px;
  overflow-y: auto;
}

.quick-checkout-modal__loading {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--gray);
  text-align: center;
}

.quick-checkout-modal__error {
  margin: 0 0 16px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.quick-checkout__summary {
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 16px;
  background: #fafafa;
}

.quick-checkout__summary-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.quick-checkout__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-checkout__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quick-checkout__item-name {
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  color: var(--black);
}

.quick-checkout__item-meta {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--gray);
}

.quick-checkout__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.quick-checkout__totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 20px;
  padding: 16px;
  border-radius: 16px;
  background: #f8faf9;
}

.quick-checkout__total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: var(--gray);
}

.quick-checkout__total-row strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}

.quick-checkout__total-row--grand {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(229, 231, 235, 0.8);
  font-size: 16px;
  color: var(--black);
}

.quick-checkout__total-row--grand strong {
  font-size: 20px;
  color: var(--green);
}

.quick-checkout__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-checkout__submit,
.quick-checkout__invoice {
  width: 100%;
}

.product-tags {
  margin-top: 24px;
  width: 100%;
  max-width: 558px;
}

.product-buy .product-tags {
  align-self: stretch;
}

.product-tags__label {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--black);
}

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

.product-tags__pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: #ebfaf3;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.24px;
  color: var(--green);
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.product-tags__pill:hover {
  background: #d4f5e8;
  color: #056b3a;
}

.product-tabs__nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.product-tabs__btn {
  flex-shrink: 0;
  padding: 6px 16px;
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--gray);
  cursor: pointer;
}

.product-tabs__btn--active {
  color: var(--green);
  box-shadow: inset 0 -2px 0 var(--green);
}

.product-tabs__sep {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--gray);
}

.product-description {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: #1d1d1d;
  text-align: justify;
}

.product-description p {
  margin: 0 0 16px;
}

.product-specs {
  width: 100%;
  border-collapse: collapse;
}

.product-specs td,
.product-specs th {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  text-align: left;
  vertical-align: top;
}

.product-specs__group th {
  padding-top: 24px;
  font-size: 18px;
  font-weight: 700;
}

.product-tabs__empty {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--gray);
}

.product-docs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-docs__item {
  margin: 0;
}

.product-docs__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 16px;
  background: #fff;
  color: var(--black);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-docs__link:hover,
.product-docs__link:focus-visible {
  border-color: rgba(6, 125, 68, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-docs__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ebfaf3;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.24px;
  color: var(--green);
}

.product-docs__name {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.product-docs__action {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--green);
}

.product-faq.faq-list {
  gap: 12px;
}

.product-faq .faq-item__inner {
  border-radius: 16px;
}

.product-reviews {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-reviews__content {
  min-height: 48px;
}

.product-reviews__content.is-loading {
  opacity: 0.55;
  pointer-events: none;
}

.product-reviews__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-review {
  padding: 20px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 16px;
  background: #fff;
}

.product-review__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.product-review__stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-review__star {
  display: block;
  width: 20px;
  height: 20px;
}

.product-review__star--muted {
  opacity: 0.25;
}

.product-review__date {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--gray);
  white-space: nowrap;
}

.product-review__author {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--black);
}

.product-review__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--black);
}

.product-review__text p {
  margin: 0;
}

.product-reviews__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.product-reviews__results {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--gray);
}

.product-reviews__pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-reviews__pagination .pagination li {
  margin: 0;
}

.product-reviews__pagination .pagination a,
.product-reviews__pagination .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: var(--black);
  text-decoration: none;
}

.product-reviews__pagination .pagination .active span {
  border-color: var(--green);
  background: #ebfaf3;
  color: var(--green);
}

.product-review-form {
  padding: 24px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 16px;
  background: #fff;
}

.product-review-form__title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--black);
}

.product-review-form__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-review-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-review-form__label {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--gray);
}

.product-review-form__input,
.product-review-form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray);
  border-radius: 16px;
  background: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black);
  box-sizing: border-box;
}

.product-review-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.product-review-form__input:focus,
.product-review-form__textarea:focus {
  outline: none;
  border-color: var(--green);
}

.product-review-form__note {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: var(--gray);
}

.product-review-form__rating {
  margin: 0;
  padding: 0;
  border: 0;
}

.product-review-form__stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-review-form__star {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.product-review-form__star input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.product-review-form__star img {
  display: block;
  width: 24px;
  height: 24px;
  transition: opacity 0.15s ease;
}

.product-review-form__star img.product-review__star--muted {
  opacity: 0.25;
}

.product-review-form__rating-hint {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: var(--gray);
}

.product-review-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-review-form__submit {
  min-width: 200px;
}

.product-review-form__submit.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.product-review-form__message {
  margin: 0;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.product-review-form__message--error {
  background: #fef2f2;
  color: #b91c1c;
}

.product-review-form__message--success {
  background: #ebfaf3;
  color: var(--green);
}

.product-review-form__login {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--gray);
}

.product-review-form__login a {
  color: var(--green);
  text-decoration: underline;
}

.product-related__title {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.product-related__scroll {
  position: relative;
}

.product-related__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.product-related__card {
  flex: 0 0 221px;
  scroll-snap-align: start;
  padding: 14px;
  border: 1.624px solid rgba(229, 231, 235, 0.5);
  border-radius: 13px;
  background: #fff;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.05);
  color: inherit;
  text-decoration: none;
}

.product-related__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  margin-bottom: 12px;
}

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

.product-related__name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
}

.product-related__arrow {
  display: none;
}

.product-help__card {
  padding: 16px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 32px;
  background: #fff;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.07);
}

@media (min-width: 901px) {
  .product-page {
    padding: 32px 0 48px;
  }

  .product-board {
    gap: 48px;
    padding: 31px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 32px;
    background: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  }

  .product-top {
    display: none;
  }

  .product-hero {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    column-gap: 36px;
    align-items: start;
  }

  .product-breadcrumbs--desktop {
    display: flex;
    margin-bottom: 16px;
  }

  .product-gallery {
    margin-inline: 0;
  }

  .product-gallery__main {
    border-radius: 32px;
  }

  .product-gallery__thumbs {
    justify-content: flex-start;
    margin-top: 32px;
  }

  .product-details__title {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -0.64px;
  }

  .product-rating {
    justify-content: flex-start;
    max-width: none;
  }

  .product-rating__count {
    margin-left: 0;
  }

  .product-purchase {
    justify-content: flex-start;
    gap: 24px;
    max-width: none;
  }

  .product-field {
    flex: 0 0 308px;
    width: 308px;
  }

  .product-field__label {
    left: 24px;
  }

  .product-cta {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    max-width: none;
  }

  .product-cta__cart {
    flex: 0 0 308px;
    width: 308px;
    min-width: 308px;
    font-size: 20px;
    padding: 16px 24px;
  }

  .product-cta__cart.btn {
    flex: 0 0 308px;
    width: 308px;
    min-width: 308px;
    font-size: 20px;
    padding: 16px 24px;
  }

  .product-cta__cart.catalog-product__cart--in-cart {
    flex: 0 0 308px;
    width: 308px;
    min-width: 308px;
    font-size: 20px;
    padding: 16px 24px;
  }

  .product-cta__buy {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    font-size: 20px;
    padding: 14px 24px;
  }

  .product-tabs__btn {
    padding: 6px 24px;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
  }

  .product-tabs__sep {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
  }

  .product-description {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
  }

  .product-description p {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
  }

  .product-related__title {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.48px;
  }

  .product-related__arrow--next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(-90deg);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    cursor: pointer;
  }

  .product-related__scroll::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 61px;
    height: 100%;
    background: linear-gradient(to left, #fff 26.23%, rgba(255, 255, 255, 0));
    pointer-events: none;
  }

  .product-help__card {
    padding: 16px 0 24px;
  }
}

@media (max-width: 900px) {
  body.page-product {
    --gutter: 16px;
  }

  .page-product .footer {
    display: none;
  }

  .page-product .header .container {
    --header-gap: 0;
    --gutter: 16px;
  }

  .page-product .header__inner {
    height: 72px;
    padding: 12px 16px;
    box-sizing: border-box;
  }

  .product-page__container {
    overflow-x: clip;
  }

  .product-gallery {
    max-width: 280px;
  }

  .product-gallery__main {
    max-width: 280px;
    max-height: 280px;
    border-radius: 0;
  }

  .product-help .specials-cta__title {
    font-size: 24px;
    line-height: 32px;
  }

  .product-help .specials-cta__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .product-help .specials-cta__btn,
  .product-help .specials-cta__btn--chat {
    width: 100%;
    max-width: 328px;
    margin-inline: auto;
  }
}

/* Blog — Figma 449:17247 / 450:18415 / 410:25657 / 427:9055 / 427:9000 */
.tips-card__title a {
  color: inherit;
  text-decoration: none;
}

.tips-card__title a:hover {
  opacity: 0.85;
}

.tips-head__all {
  display: inline-block;
  margin-top: 12px;
}

.page-blog,
.page-blog-article {
  background: var(--bg-primary);
}

.blog-page,
.article-page {
  padding: 24px 0 64px;
  overflow-x: clip;
}

.blog-page__container,
.article-page__container {
  max-width: 1280px;
  width: 100%;
}

.blog-page__breadcrumbs {
  margin-bottom: 24px;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 64px;
  background: var(--tan-green);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--green);
  white-space: nowrap;
}

.blog-tag--sm {
  padding: 6px 12px;
  font-size: 14px;
}

.blog-outline-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--black);
  border-radius: 64px;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--black);
  white-space: nowrap;
}

.blog-outline-tag img {
  flex-shrink: 0;
}

.blog-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-card-badges--overlay-top {
  position: absolute;
  inset: 15px 15px auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
}

.blog-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 64px;
  background: rgba(229, 231, 235, 0.5);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
}

.blog-card-badge--on-image {
  color: var(--white);
}

.blog-card-badge img,
.blog-card-badge__icon {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.blog-outline-tag img,
.blog-outline-tag__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

/* Featured hero — Figma 454:10073 */
.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 647px;
  position: relative;
  width: 100%;
  height: 461px;
  margin-bottom: 48px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.blog-featured__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  padding: 23px;
  box-sizing: border-box;
}

.blog-featured__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.64px;
  color: var(--black);
}

.blog-featured__title a {
  color: inherit;
  text-decoration: none;
}

.blog-featured__excerpt {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--black);
}

.blog-featured__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.blog-featured__read {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--green);
  text-decoration: none;
}

.blog-featured__read:hover {
  opacity: 0.85;
}

.blog-featured__read-text,
.blog-card-wide__read-text {
  border-bottom: 2px solid var(--green);
  padding-bottom: 2px;
}

.blog-featured__media {
  position: relative;
  min-width: 0;
  height: 100%;
}

.blog-featured__image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.blog-featured__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

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

/* Filters */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 17px;
  margin-bottom: 48px;
}

.blog-filter {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 64px;
  border: 1px solid var(--black);
  background: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--black);
  text-decoration: none;
}

/* Sections & grids */
.blog-section {
  margin-bottom: 64px;
}

.blog-section__title {
  margin: 0 0 24px;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -0.96px;
  color: var(--black);
}

.blog-grid-row {
  width: 100%;
  gap: 21px;
}

.blog-grid-row + .blog-grid-row {
  margin-top: 20px;
}

.blog-grid-row--cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 21px;
}

.blog-grid-row--mixed {
  display: grid;
  grid-template-columns: minmax(0, 413fr) minmax(0, 847fr);
  align-items: stretch;
  gap: 20px;
}

.blog-grid-row__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.blog-grid-row--mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 21px;
}

.blog-pagination.catalog-pagination {
  gap: 36px;
  margin-top: 32px;
}

.blog-empty {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  font-weight: 600;
}

/* Grid card 413×461 */
.blog-card-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 461px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.blog-card-grid__media {
  position: relative;
  flex-shrink: 0;
  height: 209px;
}

.blog-card-grid__image {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.blog-card-grid__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.blog-card-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-grid__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 15px;
}

.blog-card-grid__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.48px;
  color: var(--black);
}

.blog-card-grid__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-grid__excerpt {
  margin: 12px 0 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--black);
}

/* List card 170px */
.blog-card-list {
  position: relative;
  height: 170px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.blog-card-list--text {
  padding: 15px;
}

.blog-card-list--text .blog-card-list__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--black);
}

.blog-card-list--text .blog-card-list__footer {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.blog-card-list--text .blog-card-list__date {
  margin-left: auto;
}

.blog-card-list--thumb {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 15px;
}

.blog-card-list--thumb .blog-card-list__image {
  flex-shrink: 0;
  width: 138px;
  height: 138px;
  border-radius: 16px;
  overflow: hidden;
}

.blog-card-list--thumb .blog-card-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-list--thumb .blog-card-list__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  min-height: 138px;
}

.blog-card-list--thumb .blog-card-list__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--black);
}

.blog-card-list__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-list__date,
.blog-card-mini__date {
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--gray);
}

.blog-card-list--thumb .blog-card-list__date {
  margin-top: auto;
}

/* Wide card 847×360 */
.blog-card-wide {
  position: relative;
  display: flex;
  gap: 36px;
  align-items: stretch;
  width: 847px;
  min-height: 360px;
  padding: 23px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  box-sizing: border-box;
}

.blog-card-wide__views {
  position: absolute;
  top: 23px;
  right: 23px;
  z-index: 1;
}

.blog-card-wide__image {
  flex-shrink: 0;
  width: 312px;
  height: 312px;
  border-radius: 24px;
  overflow: hidden;
}

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

.blog-card-wide__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.blog-card-wide__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.blog-card-wide__date {
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--gray);
}

.blog-card-wide__title {
  margin: 15px 0 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.64px;
  color: var(--black);
}

.blog-card-wide__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-wide__excerpt {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--black);
}

.blog-card-wide__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}

.blog-card-wide__read {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--green);
  text-decoration: none;
}

.blog-card-wide__read:hover {
  opacity: 0.85;
}

/* Mini card 413×170 */
.blog-card-mini {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  min-height: 170px;
  padding: 15px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  box-sizing: border-box;
}

.blog-card-mini__image {
  flex-shrink: 0;
  width: 138px;
  height: 138px;
  border-radius: 16px;
  overflow: hidden;
}

.blog-card-mini__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-mini__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  min-height: 138px;
}

.blog-card-mini__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--black);
}

.blog-card-mini__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-mini__date {
  margin-top: auto;
}

/* Article hero — Figma 410:25657 / 427:9055 */
.article-hero {
  position: relative;
  min-height: 704px;
  margin-bottom: 48px;
  color: var(--white);
}

.article-hero__media {
  position: absolute;
  inset: 0;
}

.article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.35) 0%, rgba(26, 26, 26, 0.75) 100%);
}

.article-hero__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 704px;
  max-width: 1280px;
  padding-top: 32px;
  padding-bottom: 40px;
}

.article-hero__breadcrumbs,
.article-hero__breadcrumbs a,
.article-hero__breadcrumbs span {
  color: var(--white);
}

.article-hero__breadcrumbs a:hover {
  opacity: 0.85;
}

.article-hero__content {
  max-width: 846px;
  margin-top: 32px;
}

.article-hero__title {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: -1.28px;
}

.article-hero__excerpt {
  margin: 16px 0 0;
  max-width: 720px;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.article-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-height: 56px;
  padding-inline: 28px;
}

.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.article-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 64px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.article-hero__pill--tag {
  background: rgba(235, 250, 243, 0.2);
  color: var(--white);
}

/* Article content */
.article-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 846px);
  gap: 48px;
  justify-content: center;
  align-items: start;
}

.article-layout--no-toc {
  grid-template-columns: minmax(0, 846px);
}

.article-toc {
  position: sticky;
  top: 24px;
}

.article-toc__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-toc__item + .article-toc__item {
  margin-top: 12px;
}

.article-toc__item a {
  display: block;
  padding-left: 16px;
  border-left: 3px solid transparent;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--gray);
  text-decoration: none;
}

.article-toc__item a:hover,
.article-toc__item a:focus-visible {
  color: var(--black);
  border-left-color: var(--orange);
}

.article-body {
  min-width: 0;
}

.article-body__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-body__html {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.36px;
  color: var(--black);
}

.article-body__html h2 {
  margin: 32px 0 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  scroll-margin-top: 24px;
}

.article-body__html p,
.article-body__html ul,
.article-body__html ol {
  margin: 0 0 16px;
}

.article-body__html ul,
.article-body__html ol {
  padding-left: 24px;
}

.article-body__html li + li {
  margin-top: 8px;
}

.article-share {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(229, 231, 235, 0.8);
}

.article-share__title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  color: var(--black);
}

.article-share__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.article-share__link,
.article-share__copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 64px;
  background: var(--white);
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  cursor: pointer;
}

.article-related {
  margin-top: 64px;
}

.article-related__title {
  margin: 0 0 24px;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -0.96px;
  color: var(--black);
}

/* Product embed — Figma 427:9000 */
.blog-product {
  display: flex;
  gap: 24px;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  padding: 16px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
}

.blog-product__media {
  flex-shrink: 0;
  width: 360px;
  border-radius: 24px;
  overflow: hidden;
  background: #f8faf9;
}

.blog-product__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
}

.blog-product__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 8px 8px 8px 0;
}

.blog-product__name {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  color: var(--black);
}

.blog-product__name a {
  color: inherit;
  text-decoration: none;
}

.blog-product__description {
  margin: 12px 0 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--gray);
}

.blog-product__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.blog-product__button {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 1200px) {
  .blog-grid-row--cards,
  .blog-grid-row--mini {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .blog-featured {
    grid-template-columns: 1fr;
    height: auto;
  }

  .blog-featured__media {
    height: 280px;
  }

  .blog-grid-row__list,
  .blog-card-wide {
    width: 100%;
  }

  .blog-card-mini {
    width: calc((100% - 20px) / 2);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
  }
}

@media (max-width: 900px) {
  .blog-section__title,
  .article-related__title {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -0.64px;
  }

  .blog-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .blog-featured {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .blog-featured__media {
    position: relative;
    width: 100%;
    height: 240px;
  }

  .blog-grid-row--cards,
  .blog-grid-row--mini {
    grid-template-columns: 1fr;
  }

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

  .blog-featured__content {
    max-width: none;
    min-height: 0;
    padding: 20px;
  }

  .blog-featured__title {
    font-size: 24px;
    line-height: 30px;
  }

  .blog-card-grid,
  .blog-grid-row__list {
    width: 100%;
    max-width: none;
  }

  .blog-card-wide {
    flex-direction: column;
  }

  .blog-card-wide__image {
    width: 100%;
    height: 220px;
  }

  .blog-card-mini {
    width: 100%;
    min-width: 0;
  }

  .article-hero,
  .article-hero__container {
    min-height: 520px;
  }

  .article-hero__title {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.56px;
  }

  .article-hero__excerpt {
    font-size: 16px;
    line-height: 24px;
  }

  .blog-product {
    flex-direction: column;
  }

  .blog-product__media {
    width: 100%;
  }

  .blog-product__media img {
    min-height: 240px;
  }

  .blog-product__button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .blog-page,
  .article-page {
    padding-top: 16px;
  }

  .blog-grid-row--cards {
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 85vw);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .blog-grid-row--cards .blog-card-grid {
    width: 100%;
  }
}
