@import "https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap";
:root {
  font-family: Manrope, Arial, sans-serif;
  color: #292929;
  background: #f8f8f7;
  font-synthesis: none;
  --green: #31cb22;
  --green-dark: #219416;
  --ink: #292929;
  --muted: #747874;
  --line: #dedfdd;
  --surface: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  width: 12px;
}
html::-webkit-scrollbar-track,
html::-webkit-scrollbar-corner {
  background: #f1f3f0;
}
html::-webkit-scrollbar-thumb {
  border: 3px solid #f1f3f0;
  border-radius: 999px;
  background: var(--green);
  background-clip: padding-box;
}
html::-webkit-scrollbar-thumb:hover {
  background: var(--green-dark);
  background-clip: padding-box;
}
html::-webkit-scrollbar-thumb:active {
  background: #18780f;
  background-clip: padding-box;
}
html::-webkit-scrollbar-button {
  display: none;
}
@supports (-moz-appearance: none) {
  html {
    scrollbar-color: var(--green) #f1f3f0;
    scrollbar-width: thin;
  }
}
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  padding-top: 28px;
  background: #f8f8f7;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "Основной сайт";
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 28px;
  display: grid;
  place-items: center;
  background: #d92d20;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
.site-header {
  position: sticky;
  top: 28px;
  z-index: 30;
  background: #fffffff7;
  border-bottom: 1px solid #eceeeb;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.header-inner {
  width: min(1400px, calc(100% - 56px));
  min-height: 86px;
  margin: auto;
  display: grid;
  grid-template-columns: 170px 128px 1fr auto;
  align-items: center;
  gap: 24px;
}
.logo-link,
.logo-link img {
  display: block;
}
.logo-link img {
  width: 170px;
}
.software-link,
.catalog-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7dbd6;
  border-radius: 10px;
  background: #fff;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}
.software-link:hover,
.catalog-link:hover {
  border-color: var(--green);
  background: #f8fff6;
  transform: translateY(-1px);
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  color: #777a78;
  font-size: 13px;
}
.main-nav a {
  padding: 12px 0;
}
.main-nav .active {
  color: #202220;
  font-weight: 700;
}
.catalog-link {
  min-width: 112px;
}
.header-inner:has(.header-cart) {
  grid-template-columns: 170px 128px 1fr auto 48px;
}
.header-cart {
  position: relative;
  width: 48px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #d7dbd6;
  border-radius: 10px;
  background: #fff;
  color: #242924;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}
.header-cart:hover {
  border-color: var(--green);
  background: #f8fff6;
  transform: translateY(-1px);
}
.header-cart svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}
.header-cart span {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}
.page-shell {
  width: min(1340px, calc(100% - 56px));
  margin: auto;
}
.breadcrumbs {
  display: flex;
  gap: 10px;
  padding: 34px 0 44px;
  color: #7d807d;
  font-size: 13px;
}
.breadcrumbs a:hover {
  color: var(--green-dark);
}
.eyebrow {
  margin: 0 0 13px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.catalog-intro {
  margin-bottom: 28px;
}
.catalog-intro > div {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 60px;
  align-items: end;
}
.catalog-intro h1 {
  margin: 0;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.catalog-intro div > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.product-card {
  overflow: hidden;
  border: 1px solid #d7d9d6;
  background: #fff;
  outline: 0;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px #121d121f;
}
.product-card:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}
.product-card-cover {
  width: 100%;
  height: clamp(400px, 32vw, 420px);
  display: block;
  object-fit: contain;
  object-position: center;
}
.product-card--magenta .product-card-cover {
  background: #1b071f;
}
.product-card--green .product-card-cover {
  background: #24170e;
}
.product-content {
  padding: 25px 28px 27px;
}
.product-audience {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}
.product-content h2 {
  margin-bottom: 9px;
  font-size: 30px;
  letter-spacing: -0.035em;
}
.product-content > p:not(.product-audience) {
  min-height: 46px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid #e3e5e2;
}
.product-footer strong {
  font-size: 28px;
}
.product-footer span {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  background: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.story-visual {
  position: relative;
  height: 610px;
  overflow: hidden;
  background: #100b14;
  color: #fff;
}
.story-visual--compact {
  height: 430px;
}
.story-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) saturate(1.18);
}
.story-visual--green .story-background {
  filter: hue-rotate(65deg) brightness(0.48) saturate(0.9);
}
.story-copy {
  position: absolute;
  z-index: 2;
  top: 42px;
  left: 44px;
  max-width: 420px;
}
.story-brand {
  display: block;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
}
.story-copy strong {
  display: block;
  font-size: clamp(33px, 4vw, 58px);
  line-height: 0.93;
  letter-spacing: -0.055em;
}
.story-copy small {
  display: block;
  margin-top: 15px;
  color: #ffffffb8;
  font-size: 11px;
  font-style: italic;
}
.story-product {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -9%;
  width: 74%;
  height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.45));
  transform: translate(-38%) rotate(-6deg);
  transform-origin: center;
}
.story-visual--compact .story-copy {
  top: 28px;
  left: 30px;
}
.story-visual--compact .story-copy strong {
  font-size: 34px;
}
.story-visual--compact .story-product {
  width: 72%;
  height: 72%;
  bottom: -6%;
}
.story-benefits {
  position: absolute;
  z-index: 3;
  left: 42px;
  right: 42px;
  bottom: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
}
.story-benefits span {
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}
.story-edition {
  position: absolute;
  z-index: 4;
  right: 24px;
  top: 24px;
  padding: 8px 11px;
  background: var(--green);
  color: #11200f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.profiles-section {
  margin-top: 72px;
  padding: 52px 0 90px;
  border-top: 1px solid var(--line);
}
.profiles-heading {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: end;
}
.profiles-heading h2 {
  margin: 0;
  font-size: 44px;
  letter-spacing: -0.04em;
}
.profiles-heading > p {
  margin: 0;
  color: var(--muted);
}
.search-field {
  display: block;
  margin-top: 28px;
}
.search-field span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
}
.search-field input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid #8e918e;
  border-radius: 0;
  background: #fff;
  outline: 0;
}
.search-field input:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px #31cb222e;
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.profile-card {
  overflow: hidden;
  border: 1px solid #e0e2df;
  background: #fff;
}
.profile-card img {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: cover;
}
.profile-card div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 17px;
}
.profile-card h3 {
  margin: 0;
  font-size: 16px;
}
.profile-card strong {
  color: var(--green-dark);
  white-space: nowrap;
}
.empty-profiles {
  grid-column: 1/-1;
  padding: 24px;
  background: #fff;
  color: var(--muted);
}
.product-page {
  padding-bottom: 80px;
}
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(390px, 0.8fr);
  gap: 24px;
  align-items: start;
}
.media-gallery {
  min-width: 0;
}
.media-stage {
  position: relative;
  height: 610px;
  overflow: hidden;
  background: #292a2d;
  box-shadow: 0 22px 54px #0e140e24;
}
.media-stage > .story-visual {
  height: 100%;
}
.media-zoom {
  width: 100%;
  height: 100%;
  display: block;
  cursor: zoom-in;
  outline: 0;
}
.media-zoom:focus-visible {
  box-shadow: inset 0 0 0 4px var(--green);
}
.media-image {
  width: 100%;
  height: 100%;
  display: block;
  background: #292a2d;
}
.media-image--poster,
.media-image--contain {
  object-fit: contain;
}
.media-image--render {
  padding: 70px;
  object-fit: contain;
}
.media-image--schema {
  padding: 34px;
  object-fit: contain;
}
.gallery-arrow {
  position: absolute;
  z-index: 8;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: #141614b8;
  color: #fff;
  box-shadow: 0 8px 24px #00000040;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}
.gallery-arrow:hover {
  background: var(--green);
  color: #11200f;
  transform: translateY(-50%) scale(1.06);
}
.gallery-arrow:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
.gallery-arrow svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}
.gallery-arrow--prev {
  left: 18px;
}
.gallery-arrow--next {
  right: 18px;
}
.buy-panel {
  position: sticky;
  top: 110px;
  padding: 32px;
  border: 1px solid #d8dad7;
  background: #fff;
  box-shadow: 0 18px 48px #0f1e0f14;
}
.buy-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 7px 10px;
  background: var(--green);
  font-size: 10px;
  font-weight: 900;
}
.buy-panel h1 {
  margin-bottom: 18px;
  font-size: clamp(34px, 3.3vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
.buy-lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.kit-note {
  margin: 24px 0;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #374037;
  font-size: 13px;
  font-weight: 600;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.price-row strong {
  font-size: 38px;
}
.price-row span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}
.purchase-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
  margin-top: 22px;
}
.quantity {
  min-height: 54px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  border: 1px solid #cfd2ce;
}
.quantity button {
  border: 0;
  background: #fff;
  font-size: 20px;
}
.quantity output {
  display: grid;
  place-items: center;
}
.buy-button,
.one-click {
  min-height: 54px;
  border: 1px solid var(--green);
  font-weight: 800;
  text-transform: uppercase;
}
.buy-button {
  background: var(--green);
  color: #11200f;
}
.one-click {
  width: 100%;
  margin-top: 10px;
  background: #fff;
  color: var(--green-dark);
}
.delivery-rows {
  margin-top: 18px;
  border: 1px solid #e0e2df;
}
.delivery-rows > div {
  display: grid;
  gap: 3px;
  padding: 13px 15px;
}
.delivery-rows > div + div {
  border-top: 1px solid #e0e2df;
}
.delivery-rows strong {
  font-size: 12px;
}
.delivery-rows span {
  color: var(--muted);
  font-size: 11px;
}
.product-lower {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
  gap: 20px;
  margin-top: 34px;
}
.schema-card {
  min-height: 330px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid #d8dad7;
  background: #fff;
  outline: 0;
}
.schema-card:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
.schema-card > div {
  padding: 24px 26px 10px;
}
.schema-card h2 {
  margin-bottom: 10px;
  font-size: 25px;
}
.schema-card span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
}
.schema-card img {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.tabs-card {
  border: 1px solid #d8dad7;
  background: #fff;
}
.tabs-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #d8dad7;
}
.tabs-list button {
  min-height: 58px;
  border: 0;
  background: #fff;
  color: #737773;
  font-size: 13px;
  font-weight: 700;
}
.tabs-list button[aria-selected="true"] {
  color: #232623;
  box-shadow: inset 0 -4px var(--green);
}
.tab-panel {
  padding: 34px;
}
.tab-panel h2 {
  font-size: 30px;
  letter-spacing: -0.035em;
}
.tab-panel p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}
.tab-panel dl {
  margin: 0;
}
.tab-panel dl div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #e3e5e2;
}
.tab-panel dt {
  color: var(--muted);
}
.tab-panel dd {
  margin: 0;
  font-weight: 700;
}
.other-product {
  margin-top: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid #d8dad7;
  background: #fff;
}
.other-product span {
  color: var(--muted);
  font-size: 12px;
}
.other-product strong {
  color: var(--green-dark);
}
@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 160px 118px 1fr;
  }
  .main-nav {
    display: none;
  }
  .catalog-link {
    justify-self: end;
  }
  .story-visual--compact {
    height: 390px;
  }
  .product-hero {
    grid-template-columns: 1fr;
  }
  .buy-panel {
    position: static;
  }
  .product-lower {
    grid-template-columns: 1fr 1.4fr;
  }
}
@media (max-width: 1080px) {
  .header-inner:has(.header-cart) {
    grid-template-columns: 160px 118px 1fr 48px;
  }
}
@media (max-width: 760px) {
  .header-inner {
    width: calc(100% - 30px);
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }
  .logo-link img {
    width: 142px;
  }
  .software-link,
  .main-nav {
    display: none;
  }
  .catalog-link {
    min-width: 94px;
    min-height: 42px;
    font-size: 11px;
  }
  .page-shell {
    width: calc(100% - 30px);
  }
  .site-footer .page-shell {
    width: calc(100% - 30px);
  }
  .breadcrumbs {
    padding: 24px 0 32px;
  }
  .catalog-intro > div,
  .profiles-heading {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .catalog-intro h1 {
    font-size: 40px;
  }
  .catalog-intro div > p {
    font-size: 14px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card-cover {
    height: min(480px, 135vw);
  }
  .story-visual--compact {
    height: 390px;
  }
  .story-copy {
    top: 24px;
    left: 22px;
  }
  .story-copy strong,
  .story-visual--compact .story-copy strong {
    font-size: 31px;
  }
  .story-product,
  .story-visual--compact .story-product {
    width: 86%;
    height: 70%;
    bottom: -4%;
    transform: translate(-42%) rotate(-6deg);
  }
  .product-content {
    padding: 23px 20px;
  }
  .profiles-heading h2 {
    font-size: 36px;
  }
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .product-hero {
    display: block;
  }
  .media-stage {
    height: 520px;
  }
  .media-thumbs {
    grid-template-columns: 1fr 1fr;
  }
  .buy-panel {
    margin-top: 18px;
    padding: 24px 20px;
  }
  .buy-panel h1 {
    font-size: 36px;
  }
  .purchase-row,
  .product-lower,
  .tabs-list {
    grid-template-columns: 1fr;
  }
  .tabs-list button {
    min-height: 50px;
    text-align: left;
    padding: 0 20px;
    border-bottom: 1px solid #e2e4e1;
  }
  .tabs-list button[aria-selected="true"] {
    box-shadow: inset 4px 0 var(--green);
  }
  .tab-panel {
    padding: 26px 20px;
  }
  .other-product {
    align-items: flex-start;
    flex-direction: column;
  }
  .story-benefits {
    left: 22px;
    right: 22px;
    bottom: 18px;
    grid-template-columns: 1fr 1fr;
  }
  .story-visual:not(.story-visual--compact) .story-product {
    height: 66%;
    bottom: 4%;
  }
}

@media (max-width: 760px) {
  .header-inner:has(.header-cart) {
    grid-template-columns: 1fr auto 46px;
    gap: 10px;
  }
  .header-cart {
    width: 46px;
    height: 42px;
  }
  .header-cart span {
    top: -6px;
    right: -5px;
  }
}
.mobile-buy-bar {
  display: none;
}
.poster-preview-page {
  min-width: 1080px;
  min-height: 1350px;
  display: grid;
  place-items: center;
  background: #0d0b0f;
}
.poster-canvas {
  position: relative;
  width: 1080px;
  height: 1350px;
  overflow: hidden;
  background: #100b15;
  color: #fff;
}
.poster-background,
.poster-shade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.poster-background {
  object-fit: cover;
}
.poster-shade {
  background: linear-gradient(180deg, #08050a33, #09050c57 43%, #08050bf0);
}
.poster-logo {
  position: absolute;
  z-index: 2;
  top: 62px;
  left: 64px;
  width: 190px;
  filter: brightness(0) invert(1);
}
.poster-heading {
  position: absolute;
  z-index: 3;
  top: 130px;
  left: 62px;
  right: 62px;
}
.poster-heading p {
  margin: 0 0 17px;
  color: #d8a2e4;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.poster-heading h1 {
  margin: 0;
  font-size: 82px;
  line-height: 0.89;
  letter-spacing: -0.055em;
}
.poster-heading span {
  display: block;
  margin-top: 24px;
  color: #ffffffb8;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.poster-product-stage {
  position: absolute;
  z-index: 2;
  top: 405px;
  left: 70px;
  width: 940px;
  height: 430px;
  display: grid;
  place-items: center;
}
.poster-product-stage > img {
  position: relative;
  z-index: 2;
  width: 880px;
  height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.62));
  transform: rotate(-2deg);
}
.poster-glow {
  position: absolute;
  width: 760px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, #d249df70, #d249df00 70%);
  filter: blur(20px);
}
.poster-channels {
  position: absolute;
  z-index: 4;
  top: 824px;
  left: 58px;
  right: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.poster-channels > div {
  min-height: 112px;
  padding: 17px 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 4px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #180e1cb3;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.poster-channels svg {
  width: 25px;
  height: 25px;
  grid-row: 1/3;
  color: #f39dff;
  stroke-width: 1.7;
}
.poster-channels span {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.poster-channels strong {
  color: #ffffffab;
  font-size: 13px;
}
.poster-features {
  position: absolute;
  z-index: 4;
  top: 982px;
  left: 58px;
  right: 58px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.poster-features > div {
  min-height: 145px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
}
.poster-features svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: #f4b0ff;
  stroke-width: 1.55;
}
.poster-features p {
  margin: 0;
  display: grid;
  gap: 8px;
}
.poster-features strong {
  font-size: 18px;
  text-transform: uppercase;
}
.poster-features span {
  color: #ffffffa3;
  font-size: 14px;
  line-height: 1.45;
}
.poster-footer {
  position: absolute;
  z-index: 4;
  left: 58px;
  right: 58px;
  bottom: 49px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.poster-footer span {
  max-width: 560px;
  color: #ffffffc7;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.poster-footer strong {
  color: #ee9afb;
  font-size: 15px;
  letter-spacing: 0.12em;
}
.product-lower {
  display: block;
}
.product-lower--with-schema {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  gap: 20px;
  align-items: stretch;
}
.product-lower--with-schema .tabs-card,
.schema-card--right {
  min-height: 340px;
}
.schema-card--right {
  grid-template-rows: auto 1fr;
}
.schema-card--right img {
  height: 210px;
  padding: 10px;
  object-fit: contain;
  object-position: center;
  background: #fafbfa;
}
.story-product {
  bottom: 3%;
  width: 82%;
  height: 61%;
  transform: translate(-45%) rotate(-2deg);
}
.story-visual--compact .story-product {
  width: 84%;
  height: 58%;
  bottom: 2%;
}
@media (max-width: 760px) {
  .product-page {
    padding-bottom: 118px;
  }
  .story-product,
  .story-visual--compact .story-product {
    width: 91%;
    height: 54%;
    bottom: 5%;
    transform: translate(-47%) rotate(-2deg);
  }
  .story-visual:not(.story-visual--compact) .story-product {
    height: 54%;
    bottom: 8%;
  }
  .mobile-buy-bar {
    position: fixed;
    z-index: 60;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 78px;
    padding: 12px 15px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #d7dad6;
    background: #fffffffa;
    box-shadow: 0 -10px 30px #141e141f;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  .mobile-buy-bar strong {
    font-size: 23px;
  }
  .mobile-buy-bar button {
    min-height: 52px;
    border: 1px solid var(--green);
    background: var(--green);
    font-weight: 800;
    text-transform: uppercase;
  }
}
@media (max-width: 760px) {
}
@media (max-width: 760px) {
  .product-lower--with-schema {
    grid-template-columns: 1fr;
  }
  .schema-card--right {
    min-height: 0;
  }
  .schema-card--right img {
    height: 180px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* The 404 route is a first-class Combainer page, not a generic server screen. */
.not-found-page {
  position: relative;
  min-height: clamp(570px, calc(100vh - 114px), 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.not-found-page::before,
.not-found-page::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.not-found-page::before {
  top: 13%;
  right: -7vw;
  width: min(38vw, 520px);
  height: min(38vw, 520px);
  border: 1px solid #edf0ec;
  border-radius: 50%;
}

.not-found-page::after {
  right: 0;
  bottom: 14%;
  width: 28%;
  border-top: 1px solid #edf0ec;
}

.not-found-layout {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 9vw, 132px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.not-found-code {
  display: flex;
  align-items: center;
  color: var(--ink);
  font-size: clamp(150px, 21vw, 310px);
  font-weight: 800;
  letter-spacing: -0.115em;
  line-height: 0.76;
  white-space: nowrap;
}

.not-found-code > span {
  display: inline-block;
  animation: not-found-digit-in 0.72s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.not-found-code > span:nth-child(2) {
  animation-delay: 0.08s;
}

.not-found-code > span:nth-child(3) {
  animation-delay: 0.16s;
}

.not-found-zero {
  position: relative;
  color: transparent;
  -webkit-text-stroke: 3px var(--ink);
}

.not-found-copy {
  max-width: 470px;
  animation: not-found-copy-in 0.62s ease-out 0.22s both;
}

.not-found-copy h1 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.not-found-copy > p:not(.eyebrow) {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.not-found-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.not-found-actions .home-devices-cta {
  margin: 0;
}

.not-found-primary span {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.18s ease;
}

.not-found-primary:hover span {
  transform: translateX(3px);
}

.not-found-secondary {
  padding: 10px 0;
  border-bottom: 1px solid #bfc4bf;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    color 0.18s ease,
    border-color 0.18s ease;
}

.not-found-secondary:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.not-found-primary:focus-visible,
.not-found-secondary:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

@keyframes not-found-digit-in {
  from {
    opacity: 0;
    transform: translateY(38px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes not-found-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .not-found-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .not-found-code {
    justify-content: center;
    font-size: clamp(150px, 38vw, 280px);
  }

  .not-found-copy {
    max-width: 620px;
    text-align: center;
    justify-self: center;
  }

  .not-found-copy > p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .not-found-actions {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .not-found-page {
    min-height: 560px;
  }

  .not-found-layout {
    padding: 64px 0 74px;
    gap: 38px;
  }

  .not-found-code {
    font-size: 38vw;
  }

  .not-found-zero {
    -webkit-text-stroke-width: 2px;
  }

  .not-found-copy h1 {
    font-size: 38px;
  }

  .not-found-copy > p:not(.eyebrow) {
    font-size: 13px;
  }

  .not-found-actions {
    display: grid;
    gap: 12px;
  }

  .not-found-actions .home-devices-cta {
    width: 100%;
  }

  .not-found-secondary {
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .not-found-code > span,
  .not-found-copy {
    animation: none;
  }

  .not-found-primary span {
    transition: none;
  }

  .not-found-primary:hover span {
    transform: none;
  }
}
.product-card-media {
  position: relative;
  height: clamp(500px, 42vw, 560px);
  overflow: hidden;
  background: transparent;
}
.product-card-media:before,
.product-card-media:after {
  display: none;
}
.product-card-media .product-card-cover {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 35%;
}
.product-card--magenta .product-card-media,
.product-card--green .product-card-media {
  background: transparent;
}
@media (max-width: 760px) {
  .product-card-media {
    height: min(480px, 135vw);
  }
  .product-card-media .product-card-cover {
    height: 100%;
  }
}
.description-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.delivery-rows > div {
  gap: 14px;
  padding: 16px;
}
.delivery-rows strong {
  font-size: 13px;
}
.delivery-rows span {
  font-size: 12px;
  line-height: 1.55;
}
@media (max-width: 760px) {
  .description-copy p {
    font-size: 14px;
    line-height: 1.7;
  }
  .delivery-rows div {
    padding: 15px;
  }
  .delivery-rows span {
    font-size: 13px;
    line-height: 1.55;
  }
}
.schema-card--right img {
  animation: schema-slide-in 0.45s ease both;
}
@keyframes schema-slide-in {
  0% {
    opacity: 0.35;
    transform: scale(0.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.schema-card--right {
  display: grid;
  grid-template-rows: auto 1fr;
}
.schema-card-copy {
  padding: 24px 26px 14px;
}
.schema-card-copy h2,
.schema-card-copy .eyebrow {
  margin-bottom: 8px;
}
.schema-card-copy span {
  display: block;
}
.schema-carousel-frame {
  position: relative;
  min-height: 210px;
  background: #fafbfa;
}
.schema-image-link {
  height: 100%;
  display: block;
}
.schema-card--right .schema-image-link img {
  width: 100%;
  height: 210px;
  padding: 10px;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #fafbfa;
}
.schema-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: #161916c2;
  color: #fff;
  box-shadow: 0 6px 18px #0000002e;
  transform: translateY(-50%);
}
.schema-arrow:hover {
  background: var(--green);
  color: #fff;
}
.schema-arrow:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}
.schema-arrow svg {
  width: 20px;
}
.schema-arrow--prev {
  left: 12px;
}
.schema-arrow--next {
  right: 12px;
}
.schema-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 10px;
  display: flex;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  background: #141614a8;
  transform: translate(-50%);
}
.schema-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ffffff80;
}
.schema-dots button.is-active {
  background: var(--green);
  transform: scale(1.25);
}
.service-item {
  min-height: 86px;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
}
.service-brands {
  width: 132px;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 0 !important;
}
.service-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 0 !important;
}
.cdek-logo,
.card-logo,
.sbp-logo {
  min-height: 28px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #202420 !important;
  font-size: 10px !important;
  font-weight: 900;
  line-height: 1 !important;
  white-space: nowrap;
}
.cdek-logo {
  color: #179447 !important;
  font-size: 13px !important;
  letter-spacing: -0.04em;
}
.cdek-logo i {
  width: 14px;
  height: 14px;
  border: 4px solid #179447;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-38deg);
}
.card-logo {
  padding: 0 7px;
  border: 1px solid #cdd1cc;
  border-radius: 4px;
}
.card-logo svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
}
.sbp-logo {
  gap: 4px;
}
.sbp-logo img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}
.sbp-logo b {
  font-size: 11px;
  letter-spacing: -0.04em;
}
.price-row .is-unavailable {
  color: #a23b2e;
}
@media (max-width: 760px) {
  .schema-card-copy {
    padding: 21px 20px 12px;
  }
  .schema-carousel-frame {
    min-height: 190px;
  }
  .schema-card--right .schema-image-link img {
    height: 190px;
  }
  .schema-arrow {
    width: 36px;
    height: 36px;
  }
  .schema-arrow--prev {
    left: 8px;
  }
  .schema-arrow--next {
    right: 8px;
  }
  .service-item {
    min-height: 0;
    grid-template-columns: 116px minmax(0, 1fr);
  }
  .service-brands {
    width: 116px;
    gap: 6px;
  }
  .card-logo {
    padding: 0 5px;
  }
}
.schema-carousel-frame {
  padding: 0 !important;
}
.product-bonus {
  margin-top: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(92, 204, 60, 0.42);
  background: linear-gradient(135deg, #f7fff3, #fff);
  box-shadow: 0 12px 34px #2d602114;
}
.product-bonus-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #173112;
}
.product-bonus-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}
.product-bonus .eyebrow {
  margin-bottom: 6px;
}
.product-bonus h2 {
  margin-bottom: 5px;
  font-size: 22px;
  letter-spacing: -0.025em;
}
.product-bonus > div > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
@media (min-width: 1081px) {
  .product-hero {
    align-items: stretch;
  }
  .buy-panel {
    align-self: stretch;
  }
  .media-gallery,
  .media-stage {
    height: 100%;
  }
  .media-stage {
    min-height: 610px;
  }
}
@media (max-width: 760px) {
  .product-bonus {
    padding: 20px;
    align-items: flex-start;
  }
  .product-bonus-icon {
    width: 44px;
    height: 44px;
  }
  .product-bonus h2 {
    font-size: 19px;
  }
}
.product-grid {
  grid-template-columns: repeat(2, minmax(0, 560px));
  justify-content: center;
  gap: 20px;
}
.product-card-media {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
}
.product-card-media .product-card-cover {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (min-width: 761px) {
  .product-card {
    display: grid;
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  }
  .product-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 23px 24px;
  }
  .product-content > p:not(.product-audience) {
    min-height: 0;
  }
  .product-footer {
    margin-top: auto;
    gap: 12px;
  }
  .product-footer strong {
    font-size: 24px;
    white-space: nowrap;
  }
  .product-footer span {
    flex: 0 0 auto;
    padding: 0 12px;
  }
}
@media (max-width: 760px) {
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
  .product-card-media {
    height: auto;
    aspect-ratio: 2/3;
  }
}
@media (min-width: 761px) {
  .service-item {
    min-height: 112px;
  }
  .service-brands,
  .service-copy {
    align-self: center;
  }
}
.product-card {
  border: 1px solid #cbd2c8;
  border-radius: 18px;
  box-shadow: 0 10px 28px #142a1214;
}
.product-card:hover {
  border-color: #3db52a94;
  box-shadow: 0 20px 46px #142a1226;
}
.product-card-bonus {
  margin: 4px 0 15px;
  padding: 10px 11px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid rgba(61, 181, 42, 0.3);
  border-radius: 9px;
  background: #f5fff2;
  color: #394438;
  font-size: 11px;
  line-height: 1.4;
}
.product-card-bonus svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--green-dark);
  stroke-width: 1.8;
}
.product-card-bonus span {
  display: grid;
  gap: 1px;
}
.product-card-bonus strong {
  color: var(--green-dark);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-card-benefits {
  margin: 8px 0 14px;
  padding: 14px 15px;
  border: 1px solid rgba(61, 181, 42, 0.25);
  border-radius: 9px;
  background: #f8fff6;
}
.product-card-benefits > strong {
  display: block;
  margin-bottom: 9px;
  color: var(--green-dark);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-card-benefits ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  list-style: none;
}
.product-card-benefits li {
  position: relative;
  padding-left: 13px;
  color: #465045;
  font-size: 11.5px;
  line-height: 1.4;
}
.product-card-benefits li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}
.one-click {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-toast {
  position: fixed;
  z-index: 90;
  top: 104px;
  right: max(24px, calc((100vw - 1340px) / 2));
  width: min(440px, calc(100vw - 30px));
  min-height: 154px;
  padding: 18px;
  display: grid;
  grid-template-columns: 74px 1fr 34px;
  gap: 16px;
  border: 1px solid #d8ddd6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 54px #14221433;
  animation: cart-toast-in 0.28s ease both;
}
.cart-toast > img {
  width: 74px;
  height: 110px;
  display: block;
  border-radius: 9px;
  object-fit: contain;
  background: #f1f2f0;
}
.cart-toast-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cart-toast-copy strong {
  font-size: 15px;
  line-height: 1.35;
}
.cart-toast-copy > span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}
.cart-toast-copy > a {
  min-height: 42px;
  margin-top: auto;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9px;
  background: var(--green);
  color: #10230e;
  font-size: 12px;
  font-weight: 800;
}
.cart-toast-copy > a svg {
  width: 16px;
}
.cart-toast > button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f2f4f1;
  color: #515651;
}
.cart-toast > button svg {
  width: 17px;
}
@keyframes cart-toast-in {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.commerce-page {
  padding-bottom: 90px;
}
.commerce-heading {
  margin-bottom: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.commerce-heading h1 {
  margin: 0;
  font-size: clamp(46px, 4.2vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.commerce-heading > p {
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
}
.commerce-heading > p svg,
.commerce-heading > a svg {
  width: 18px;
  color: var(--green-dark);
}
.commerce-heading > a {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(330px, 0.7fr);
  gap: 24px;
  align-items: start;
}
.cart-card,
.order-summary,
.checkout-form,
.checkout-sidebar > .order-product {
  border: 1px solid #d8ddd6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px #14221412;
}
.cart-card {
  padding: 24px;
}
.order-product {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 134px;
  gap: 28px;
  align-items: stretch;
}
.order-product > img {
  width: 220px;
  height: 330px;
  display: block;
  border-radius: 12px;
  object-fit: contain;
  background: #f1f2f0;
}
.order-product-main {
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.order-product-main h2 {
  margin-bottom: 12px;
  font-size: 31px;
  letter-spacing: -0.04em;
}
.order-product-main > p:not(.product-audience) {
  max-width: 420px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.order-bonus {
  margin-top: auto;
  padding: 13px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(49, 203, 34, 0.34);
  border-radius: 10px;
  background: #f7fff5;
  color: #394538;
  font-size: 11px;
  line-height: 1.45;
}
.order-bonus svg {
  width: 18px;
  flex: 0 0 auto;
  color: var(--green-dark);
}
.order-bonus span {
  display: grid;
  gap: 2px;
}
.order-bonus strong {
  color: var(--green-dark);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.order-product-actions {
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}
.order-product-actions > strong {
  font-size: 25px;
  white-space: nowrap;
}
.order-product-actions > span {
  color: var(--muted);
  font-size: 13px;
}
.cart-quantity {
  width: 120px;
  min-height: 44px;
  grid-template-columns: 38px 1fr 38px;
  border-radius: 8px;
  overflow: hidden;
}
.remove-item {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: none;
  color: #888d88;
  font-size: 12px;
}
.remove-item svg {
  width: 16px;
}
.continue-shopping {
  width: max-content;
  min-height: 44px;
  margin-top: 24px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d9ddd8;
  border-radius: 9px;
  color: #555b55;
  font-size: 12px;
  font-weight: 700;
}
.continue-shopping svg {
  width: 17px;
}
.order-summary {
  position: sticky;
  top: 110px;
  padding: 28px;
}
.order-summary h2 {
  margin-bottom: 23px;
  font-size: 27px;
  letter-spacing: -0.035em;
}
.order-summary dl {
  margin: 0;
}
.order-summary dl > div {
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #e4e7e3;
  color: var(--muted);
  font-size: 13px;
}
.order-summary dd {
  margin: 0;
  color: #303530;
  text-align: right;
}
.order-summary .summary-total {
  margin-top: 8px;
  padding: 20px 0;
  border-bottom: 0;
  color: #202420;
  font-size: 17px;
  font-weight: 800;
}
.summary-total dd {
  font-size: 27px;
  white-space: nowrap;
}
.checkout-link,
.place-order {
  min-height: 56px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  color: #10230e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.checkout-link svg {
  width: 18px;
}
.summary-safe {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #7b807b;
  font-size: 11px;
  line-height: 1.45;
}
.summary-safe svg {
  width: 20px;
  color: var(--green-dark);
}
.summary-safe--cart {
  justify-content: flex-start;
  text-align: left;
}
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.62fr);
  gap: 24px;
  align-items: start;
}
.checkout-form {
  padding: 30px;
}
.checkout-section {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 8px 0 30px;
}
.checkout-section + .checkout-section {
  padding-top: 30px;
  border-top: 1px solid #e2e5e1;
}
.section-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(49, 203, 34, 0.48);
  border-radius: 50%;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}
.checkout-section-content h2 {
  margin-bottom: 6px;
  font-size: 25px;
  letter-spacing: -0.03em;
}
.checkout-section-content > p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid label {
  display: grid;
  gap: 7px;
  color: #404640;
  font-size: 11px;
  font-weight: 700;
}
.form-grid .form-wide {
  grid-column: 1/-1;
}
.form-grid input {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid #cfd4ce;
  border-radius: 9px;
  background: #fff;
  outline: 0;
}
.form-grid input:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px #31cb2224;
}
.delivery-choice {
  min-height: 94px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 115px 1fr 28px;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(49, 203, 34, 0.5);
  border-radius: 12px;
  background: #fbfffa;
}
.cdek-logo--large {
  justify-self: start !important;
  font-size: 20px !important;
}
.cdek-logo--large i {
  width: 19px;
  height: 19px;
}
.delivery-choice > div strong {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
}
.delivery-choice p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
.delivery-choice > svg {
  width: 24px;
  height: 24px;
  padding: 5px;
  border-radius: 50%;
  background: var(--green);
  color: #173112;
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}
.payment-option {
  position: relative;
  min-height: 112px;
  padding: 17px 13px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
  border: 1px solid #d7dbd6;
  border-radius: 11px;
  background: #fff;
  color: #262b26;
  text-align: left;
}
.payment-option.is-selected {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}
.payment-option > svg,
.payment-option > img {
  width: 25px;
  height: 25px;
  display: block;
  object-fit: contain;
}
.payment-option > strong {
  font-size: 11px;
}
.payment-radio {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid #aeb4ad;
  border-radius: 50%;
}
.payment-option.is-selected .payment-radio {
  border-color: var(--green);
  background: var(--green);
}
.payment-radio svg {
  width: 13px;
}
.place-order {
  margin-top: 4px;
}
.place-order svg {
  width: 19px;
}
.checkout-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 110px;
}
.checkout-sidebar > .order-product {
  padding: 18px;
  grid-template-columns: 76px 1fr auto;
  gap: 14px;
  box-shadow: 0 10px 28px #1422140d;
}
.checkout-sidebar .order-product > img {
  width: 76px;
  height: 114px;
  border-radius: 8px;
}
.checkout-sidebar .order-product-main {
  padding: 4px 0;
}
.checkout-sidebar .order-product-main h2 {
  margin: 0;
  font-size: 18px;
}
.checkout-sidebar .order-product-main > p:not(.product-audience),
.checkout-sidebar .order-bonus {
  display: none;
}
.checkout-sidebar .order-product-actions {
  padding: 4px 0;
  gap: 9px;
}
.checkout-sidebar .order-product-actions > strong {
  font-size: 17px;
}
.checkout-sidebar .order-summary {
  position: static;
}
.checkout-sidebar .summary-safe {
  display: none;
}
.form-grid label b {
  color: var(--green-dark);
}
.form-grid label small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}
.empty-cart {
  min-height: 380px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #d8ddd6;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: 0 14px 38px #14221412;
}
.empty-cart > svg {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--green-dark);
}
.empty-cart h2 {
  margin-bottom: 8px;
  font-size: 28px;
}
.empty-cart p {
  margin-bottom: 24px;
  color: var(--muted);
}
.empty-cart a {
  min-height: 48px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  border-radius: 9px;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
@media (max-width: 1080px) {
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .order-summary,
  .checkout-sidebar {
    position: static;
  }
  .checkout-sidebar {
    grid-template-columns: 1fr 1fr;
  }
  .order-product {
    grid-template-columns: 200px minmax(0, 1fr) 130px;
  }
  .order-product > img {
    width: 200px;
    height: 300px;
  }
}
@media (max-width: 760px) {
  .cart-toast {
    top: auto;
    right: 15px;
    bottom: 94px;
    grid-template-columns: 60px 1fr 32px;
    min-height: 132px;
    padding: 14px;
  }
  .cart-toast > img {
    width: 60px;
    height: 90px;
  }
  .commerce-page {
    padding-bottom: 110px;
  }
  .commerce-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .commerce-heading h1 {
    font-size: 42px;
  }
  .commerce-heading > p {
    align-items: flex-start;
    line-height: 1.45;
  }
  .cart-layout,
  .checkout-layout {
    display: block;
  }
  .cart-card,
  .checkout-form {
    padding: 16px;
  }
  .order-product {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
  }
  .order-product > img {
    width: 86px;
    height: 129px;
    border-radius: 8px;
  }
  .order-product-main {
    padding: 2px 0;
  }
  .order-product-main h2 {
    font-size: 20px;
  }
  .order-product-main > p:not(.product-audience) {
    display: none;
  }
  .order-bonus {
    grid-column: 1/-1;
    margin-top: 10px;
  }
  .order-product-actions {
    grid-column: 1/-1;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .order-product-actions .remove-item {
    margin: 0;
  }
  .order-summary {
    margin-top: 16px;
    padding: 22px;
  }
  .checkout-form {
    margin-bottom: 16px;
  }
  .checkout-section {
    grid-template-columns: 1fr;
    padding-bottom: 24px;
  }
  .section-number {
    width: 34px;
    height: 34px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .form-wide {
    grid-column: auto;
  }
  .delivery-choice {
    grid-template-columns: 92px 1fr 24px;
    padding: 14px;
  }
  .cdek-logo--large {
    font-size: 16px !important;
  }
  .payment-grid {
    grid-template-columns: 1fr;
  }
  .payment-option {
    min-height: 68px;
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    justify-content: start;
    padding: 13px 44px 13px 14px;
  }
  .payment-option > strong {
    font-size: 12px;
  }
  .checkout-sidebar {
    display: block;
  }
  .checkout-sidebar > .order-product {
    margin-bottom: 16px;
  }
  .checkout-sidebar .order-product-actions {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-end;
  }
  .checkout-sidebar .order-summary {
    margin-top: 16px;
  }
}
.profile-cart-item {
  margin-top: 18px;
  padding: 16px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid #d9ddd8;
  border-radius: 14px;
  background: #fbfcfb;
}
.profile-cart-item > img {
  width: 92px;
  height: 82px;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}
.profile-cart-item .eyebrow {
  margin-bottom: 5px;
}
.profile-cart-item h3 {
  margin: 0 0 7px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.profile-cart-item div > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
}
.profile-cart-item div > span svg {
  width: 15px;
  color: var(--green-dark);
}
.profile-cart-item > strong {
  font-size: 18px;
  white-space: nowrap;
}
.profile-cart-item > button {
  grid-column: 3;
  margin-top: -30px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: none;
  color: #858a85;
  font-size: 11px;
}
.profile-cart-item > button svg {
  width: 14px;
}
.profile-suggestion {
  margin-top: 18px;
  padding: 16px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  border: 1px dashed rgba(49, 203, 34, 0.5);
  border-radius: 14px;
  background: #f9fff7;
}
.profile-suggestion > img {
  width: 70px;
  height: 62px;
  border-radius: 9px;
  object-fit: cover;
}
.profile-suggestion div {
  display: grid;
  gap: 3px;
}
.profile-suggestion .eyebrow {
  margin: 0;
}
.profile-suggestion div > strong {
  font-size: 14px;
}
.profile-suggestion div > span {
  color: var(--muted);
  font-size: 10px;
}
.profile-suggestion > b {
  font-size: 15px;
  white-space: nowrap;
}
.profile-suggestion > button {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: #fff;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.profile-cart-item--compact {
  margin: 0;
  padding: 14px;
  grid-template-columns: 58px 1fr auto;
  border-style: solid;
  background: #fff;
  box-shadow: 0 10px 28px #1422140d;
}
.profile-cart-item--compact > img {
  width: 58px;
  height: 58px;
}
.profile-cart-item--compact h3 {
  font-size: 14px;
}
.profile-cart-item--compact div > span {
  display: none;
}
.profile-cart-item--compact > strong {
  font-size: 14px;
}
.checkout-sidebar .profile-cart-item--compact {
  min-height: 151px;
  margin: 0;
  padding: 18px;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px #1422140d;
}
.checkout-sidebar .profile-cart-item--compact > img {
  width: 76px;
  height: 114px;
  border-radius: 8px;
  object-fit: cover;
}
.checkout-sidebar .profile-cart-item--compact .eyebrow {
  margin-bottom: 7px;
}
.checkout-sidebar .profile-cart-item--compact h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.checkout-sidebar .profile-cart-item--compact > strong {
  align-self: start;
  padding-top: 4px;
  font-size: 17px;
}
.cdek-plugin-slot {
  display: grid;
  gap: 10px;
}
.cdek-plugin-heading {
  min-height: 60px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 15px;
  align-items: center;
  border: 1px solid #dce1db;
  border-radius: 11px;
  background: #f9fbf8;
}
.cdek-plugin-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}
.cdek-method {
  position: relative;
  min-height: 72px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 13px;
  align-items: center;
  border: 1px solid #d7dcd6;
  border-radius: 11px;
  background: #fff;
  cursor: pointer;
}
.cdek-method.is-selected {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}
.cdek-method > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cdek-method-radio {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid #b4bab3;
  border-radius: 50%;
}
.cdek-method.is-selected .cdek-method-radio {
  border-color: var(--green);
  background: var(--green);
}
.cdek-method-radio svg {
  width: 13px;
}
.cdek-method > span:nth-of-type(2) {
  display: grid;
  gap: 4px;
}
.cdek-method strong {
  font-size: 12px;
}
.cdek-method small {
  color: var(--muted);
  font-size: 10px;
}
.cdek-method > b {
  font-size: 14px;
  white-space: nowrap;
}
.choose-pvz {
  min-height: 46px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--green);
  border-radius: 9px;
  background: #fff;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.choose-pvz svg {
  width: 17px;
}
.cdek-modal-backdrop {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
  display: grid;
  place-items: center;
  background: #121612ad;
}
.cdek-modal {
  width: min(1080px, 100%);
  max-height: calc(100vh - 56px);
  overflow: auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 34px 90px #00000059;
}
.cdek-modal > header {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #e1e5e0;
}
.cdek-modal h2 {
  margin: 0;
  font-size: 25px;
}
.cdek-modal > header button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f1f3f0;
}
.cdek-modal > header button svg {
  width: 19px;
}
.cdek-widget-frame {
  min-height: 550px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
}
.cdek-map {
  min-width: 0;
  background: #eef5e8;
}
.cdek-map img {
  width: 100%;
  height: 100%;
  min-height: 550px;
  display: block;
  object-fit: cover;
}
.cdek-pvz-list {
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 10px;
  border-left: 1px solid #e1e5e0;
  background: #fafbfa;
}
.cdek-pvz-list label {
  height: 46px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d4d9d3;
  border-radius: 9px;
  background: #fff;
}
.cdek-pvz-list label svg {
  width: 18px;
  color: var(--green-dark);
}
.cdek-pvz-list input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}
.cdek-pvz-list > button {
  padding: 14px;
  display: grid;
  gap: 5px;
  border: 1px solid #d9ddd8;
  border-radius: 10px;
  background: #fff;
  text-align: left;
}
.cdek-pvz-list > button:hover {
  border-color: var(--green);
}
.cdek-pvz-list > button strong {
  font-size: 12px;
}
.cdek-pvz-list > button span {
  color: var(--muted);
  font-size: 10px;
}
.pvz-selection {
  display: grid;
  gap: 9px;
}
.selected-pvz {
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(49, 203, 34, 0.38);
  border-radius: 9px;
  background: #f7fff5;
}
.selected-pvz > svg {
  width: 20px;
  padding: 4px;
  border-radius: 50%;
  background: var(--green);
  color: #173112;
}
.selected-pvz > span {
  display: grid;
  gap: 3px;
}
.selected-pvz strong {
  font-size: 11px;
}
.selected-pvz small {
  color: var(--muted);
  font-size: 9px;
}
.cdek-pvz-list > button:not(.confirm-pvz) {
  grid-template-columns: 24px 1fr;
}
.cdek-pvz-list > button.is-selected {
  border-color: var(--green);
  background: #f7fff5;
  box-shadow: 0 0 0 1px var(--green);
}
.pvz-check {
  width: 20px;
  height: 20px;
  grid-row: 1/3;
  display: grid;
  place-items: center;
  align-self: center;
  border: 1px solid #b9bfb8;
  border-radius: 50%;
  color: #173112 !important;
}
.is-selected .pvz-check {
  border-color: var(--green);
  background: var(--green);
}
.pvz-check svg {
  width: 12px;
}
.cdek-pvz-list > button strong {
  grid-column: 2;
}
.cdek-pvz-list > button small {
  grid-column: 2;
  color: var(--muted);
  font-size: 10px;
}
.cdek-pvz-list > .confirm-pvz {
  min-height: 48px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: var(--green);
  background: var(--green);
  color: #10230e;
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.cdek-pvz-list > .confirm-pvz:disabled,
.place-order:disabled {
  border-color: #d9ddd8;
  background: #e9ece8;
  color: #929792;
  cursor: not-allowed;
  box-shadow: none;
}
@media (max-width: 760px) {
  .profile-suggestion {
    grid-template-columns: 58px 1fr auto;
  }
  .profile-suggestion > img {
    width: 58px;
    height: 54px;
  }
  .profile-suggestion > b {
    grid-column: 2;
  }
  .profile-suggestion > button {
    grid-column: 3;
    grid-row: 1/3;
  }
  .profile-cart-item {
    grid-template-columns: 70px 1fr auto;
  }
  .profile-cart-item > img {
    width: 70px;
    height: 64px;
  }
  .profile-cart-item > button {
    grid-column: 2/4;
    margin: 0;
    justify-self: end;
  }
  .cdek-plugin-heading {
    grid-template-columns: 90px 1fr;
  }
  .cdek-method {
    grid-template-columns: 22px 1fr;
  }
  .cdek-method > b {
    grid-column: 2;
  }
  .cdek-modal-backdrop {
    padding: 10px;
  }
  .cdek-modal {
    max-height: calc(100vh - 20px);
  }
  .cdek-widget-frame {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .cdek-map img {
    min-height: 250px;
    height: 250px;
  }
  .cdek-pvz-list {
    border-left: 0;
    border-top: 1px solid #e1e5e0;
  }
}
.cdek-integration-shell {
  display: grid;
  gap: 10px;
}
.cdek-integration-shell .cdek-plugin-heading {
  min-height: 74px;
  padding: 14px 16px;
  grid-template-columns: 120px minmax(0, 1fr);
  border-color: #31cb2259;
  border-radius: 12px;
  background: #f8fff6;
}
.cdek-plugin-heading > div {
  display: grid;
  gap: 4px;
}
.cdek-plugin-heading strong {
  font-size: 12px;
}
.cdek-plugin-heading > div p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}
.woocommerce-shipping-totals {
  padding: 14px;
  border: 1px solid #d8ddd6;
  border-radius: 12px;
  background: #fff;
}
.cdek-plugin-empty {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.cdek-plugin-empty > div {
  display: grid;
  gap: 4px;
}
.cdek-plugin-empty strong {
  font-size: 12px;
}
.cdek-plugin-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}
.cdek-plugin-pulse {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border: 3px solid rgba(49, 203, 34, 0.28);
  border-top-color: var(--green-dark);
  border-radius: 50%;
}
.woocommerce-shipping-methods {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}
.woocommerce-shipping-methods:empty {
  display: none;
}
.woocommerce-shipping-totals:has(.woocommerce-shipping-methods > li)
  .cdek-plugin-empty {
  display: none;
}
.woocommerce-shipping-methods > li {
  position: relative;
  min-height: 66px;
  padding: 13px 15px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid #d8ddd6;
  border-radius: 10px;
  background: #fff;
}
.woocommerce-shipping-methods > li:has(input:checked) {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}
.woocommerce-shipping-methods input.shipping_method {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--green-dark);
}
.woocommerce-shipping-methods label {
  color: #272c27;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}
.woocommerce-shipping-methods .woocommerce-Price-amount {
  white-space: nowrap;
}
.woocommerce-shipping-methods button,
.woocommerce-shipping-methods .button {
  min-height: 44px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 9px;
  background: #fff;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.cdek-integration-note {
  margin: 0 !important;
  padding: 0 3px;
  color: #858b85 !important;
  font-size: 9px !important;
  line-height: 1.45 !important;
}
.place-order:disabled {
  border-color: #d9ddd8;
  background: #e9ece8;
  color: #929792;
  cursor: not-allowed;
  box-shadow: none;
}
.cdek-brand-row {
  min-height: 58px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(49, 203, 34, 0.38);
  border-radius: 12px;
  background: #f8fff6;
}
.cdek-local-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cdek-local-methods .cdek-method {
  grid-template-columns: 24px minmax(0, 1fr);
  min-height: 68px;
}
.cdek-local-methods .cdek-method > span:nth-of-type(2) {
  display: block;
}
.choose-pvz {
  text-decoration: none;
}
.cdek-integration-shell > .woocommerce-shipping-methods:empty {
  display: none;
}
.cdek-integration-shell .woocommerce-shipping-methods {
  display: grid;
  gap: 10px;
}
.cdek-integration-shell .woocommerce-shipping-methods > li {
  min-height: 68px;
  padding: 15px 16px;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  border-radius: 12px;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}
.cdek-integration-shell
  .woocommerce-shipping-methods
  > li:has(.shipping_method:checked) {
  border-color: var(--green);
  background: #f9fff7;
  box-shadow: 0 0 0 1px var(--green);
}
.cdek-integration-shell .shipping_method {
  width: 19px;
  height: 19px;
  margin: 0;
  accent-color: var(--green-dark);
  cursor: pointer;
}
.cdek-integration-shell .woocommerce-shipping-methods label {
  display: block;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}
.cdek-integration-shell .open-pvz-btn {
  grid-column: 1/-1;
  min-height: 46px;
  margin: 2px 0 0;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 9px;
  background: var(--green);
  color: #10230e;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  box-shadow: none;
}
.cdek-integration-shell .open-pvz-btn:hover {
  background: #27bd1c;
}
.cdek-integration-shell .open-pvz-btn a {
  color: inherit;
  font: inherit;
  text-decoration: none;
}
.cdek-integration-shell .open-pvz-btn script,
.cdek-integration-shell .cdek-office-code {
  display: none;
}
.cdek-integration-shell .cdek-office-info {
  grid-column: 1/-1;
  margin-top: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(49, 203, 34, 0.34);
  border-radius: 9px;
  background: #f7fff5;
  color: #343b34;
  font-size: 11px;
  line-height: 1.45;
}
.shipping-await-city {
  display: grid;
  gap: 10px;
}
.shipping-await-city span {
  height: 68px;
  display: block;
  border: 1px solid #e1e4e0;
  border-radius: 12px;
  background: #f7f8f7;
}
.cdek-integration-shell
  .woocommerce-shipping-methods
  > li:has(.shipping_method:disabled) {
  border-color: #e1e4e0;
  background: #f7f8f7;
  box-shadow: none;
  opacity: 0.58;
}
.cdek-integration-shell .shipping_method:disabled,
.cdek-integration-shell .shipping_method:disabled + label {
  cursor: not-allowed;
}
.shipping-await-city {
  min-height: 148px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 28px;
  align-items: center;
  border: 1px solid #d8ddd6;
  border-left: 4px solid var(--green);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px #1422140f;
}
.shipping-await-city > div:first-child {
  display: grid;
  gap: 6px;
}
.shipping-await-city > div:first-child > span {
  height: auto;
  display: block;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.shipping-await-city strong {
  font-size: 20px;
  letter-spacing: -0.025em;
}
.shipping-await-city p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.shipping-route {
  display: flex;
  align-items: center;
}
.shipping-route > span {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(49, 203, 34, 0.4);
  border-radius: 50%;
  background: #f7fff5;
  color: var(--green-dark);
}
.shipping-route svg {
  width: 20px;
  height: 20px;
}
.shipping-route i {
  height: 0;
  flex: 1;
  border-top: 2px dashed #b9c5b7;
}
.cdek-integration-shell .woocommerce-shipping-methods {
  gap: 0;
  overflow: hidden;
  border: 1px solid #d8ddd6;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 26px #1422140d;
}
.cdek-integration-shell .woocommerce-shipping-methods > li {
  min-height: 76px;
  padding: 17px 18px;
  border: 0;
  border-bottom: 1px solid #e3e6e2;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}
.cdek-integration-shell .woocommerce-shipping-methods > li:last-child {
  border-bottom: 0;
}
.cdek-integration-shell
  .woocommerce-shipping-methods
  > li:has(.shipping_method:checked) {
  border-color: #e3e6e2;
  background: #f8fff6;
  box-shadow: inset 4px 0 0 var(--green);
}
.cdek-integration-shell
  .woocommerce-shipping-methods
  > li:has(.shipping_method:disabled) {
  border-color: #e3e6e2;
  background: #fafbfa;
  box-shadow: none;
  opacity: 1;
}
.cdek-integration-shell .shipping_method:disabled {
  opacity: 0.42;
}
.cdek-integration-shell .shipping_method:disabled + label {
  color: #969c96;
}
.cdek-integration-shell .open-pvz-btn {
  margin: 5px 0 0;
}
.cdek-integration-shell .woocommerce-shipping-methods label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cdek-integration-shell .woocommerce-Price-amount {
  color: #202520;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.cdek-integration-shell
  .shipping_method:disabled
  + label
  .woocommerce-Price-amount {
  color: #969c96;
}
.order-summary .summary-subtotal {
  color: #303530;
  font-weight: 800;
}
@media (max-width: 760px) {
  .cdek-integration-shell .cdek-plugin-heading {
    grid-template-columns: 86px minmax(0, 1fr);
    padding: 13px;
  }
  .woocommerce-shipping-totals {
    padding: 11px;
  }
  .woocommerce-shipping-methods > li {
    grid-template-columns: 20px minmax(0, 1fr);
    padding: 12px;
  }
  .woocommerce-shipping-methods > li > *:last-child {
    grid-column: 2;
  }
  .cdek-plugin-empty {
    align-items: flex-start;
  }
  .cdek-plugin-pulse {
    margin-top: 2px;
  }
  .cdek-local-methods {
    grid-template-columns: 1fr;
  }
  .cdek-brand-row {
    padding: 11px 13px;
  }
}
@media (max-width: 760px) {
  .shipping-await-city {
    min-height: 0;
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .shipping-route {
    max-width: 220px;
  }
  .shipping-route > span {
    width: 42px;
    height: 42px;
  }
  .cdek-integration-shell .woocommerce-shipping-methods > li {
    min-height: 70px;
    padding: 15px;
  }
}
.profile-buy-actions > button {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  color: #10230e;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.profile-buy-actions > button svg {
  width: 17px;
}
.cart-card .profile-suggestion {
  margin-top: 22px;
  padding: 18px 0 0;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px 16px;
  border: 0;
  border-top: 1px solid #e1e4e0;
  border-radius: 0;
  background: transparent;
}
.cart-card .profile-suggestion > img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
}
.cart-card .profile-suggestion div {
  align-self: center;
  gap: 4px;
}
.cart-card .profile-suggestion div > span {
  display: none;
}
.cart-card .profile-suggestion > b {
  grid-column: 3;
  grid-row: 1;
  align-self: end;
  font-size: 14px;
}
.cart-card .profile-suggestion > button {
  grid-column: 3;
  grid-row: 2;
  min-height: 34px;
  padding: 0 12px;
  align-self: start;
  border-radius: 7px;
  background: #f8fff6;
  font-size: 9px;
}
.cart-card .profile-cart-item {
  margin-top: 22px;
  padding: 18px 0 0;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px 16px;
  border: 0;
  border-top: 1px solid #e1e4e0;
  border-radius: 0;
  background: transparent;
}
.cart-card .profile-cart-item > img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
}
.cart-card .profile-cart-item h3 {
  margin-bottom: 5px;
  font-size: 15px;
}
.cart-card .profile-cart-item > strong {
  align-self: center;
  font-size: 15px;
}
.cart-card .profile-cart-item > button {
  grid-column: 3;
  grid-row: 2;
  margin: 0;
  align-self: start;
  justify-self: end;
}
@media (max-width: 760px) {
  .cart-card .profile-suggestion {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 10px 12px;
  }
  .cart-card .profile-suggestion > img {
    width: 52px;
    height: 52px;
  }
  .cart-card .profile-suggestion > b {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
  }
  .cart-card .profile-suggestion > button {
    grid-column: 2/4;
    grid-row: 2;
    justify-self: start;
  }
  .cart-card .profile-cart-item {
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 10px 12px;
  }
  .cart-card .profile-cart-item > img {
    width: 56px;
    height: 56px;
  }
  .cart-card .profile-cart-item > button {
    grid-column: 2/4;
    grid-row: 2;
    justify-self: start;
  }
}
.cart-card .profile-suggestion {
  width: min(100%, 560px);
  margin: 20px 0 0;
  padding: 12px;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 14px;
  border: 1px solid #dfe3de;
  border-radius: 12px;
  background: #fafbfa;
}
.cart-card .profile-suggestion > img {
  width: 58px;
  height: 58px;
}
.cart-card .profile-suggestion > div:not(.profile-suggestion-actions) {
  align-self: center;
}
.cart-card .profile-suggestion-actions {
  display: grid;
  grid-template-columns: auto;
  gap: 7px;
  align-content: center;
  justify-items: end;
}
.cart-card .profile-suggestion-actions b {
  font-size: 14px;
  white-space: nowrap;
}
.cart-card .profile-suggestion-actions button {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--green);
  border-radius: 7px;
  background: var(--green);
  color: #10230e;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.cart-card .profile-suggestion .eyebrow {
  font-size: 8px;
}
.cart-card .profile-suggestion div > strong {
  font-size: 13px;
}
@media (max-width: 760px) {
  .cart-card .profile-suggestion {
    width: 100%;
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 11px;
  }
  .cart-card .profile-suggestion > img {
    width: 52px;
    height: 52px;
  }
  .cart-card .profile-suggestion-actions {
    grid-column: 1/-1;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    justify-items: stretch;
    padding-top: 2px;
  }
  .cart-card .profile-suggestion-actions button {
    min-height: 34px;
  }
}
.cart-card .profile-suggestion {
  width: 100%;
  min-height: 122px;
  margin-top: 20px;
  padding: 16px;
  grid-template-columns: 88px minmax(0, 1fr) 156px;
  gap: 20px;
  border: 1px solid #d9ddd8;
  border-radius: 14px;
  background: #fbfcfb;
}
.cart-card .profile-suggestion > img {
  width: 88px;
  height: 88px;
  border-radius: 11px;
}
.cart-card .profile-suggestion > div:not(.profile-suggestion-actions) {
  gap: 7px;
}
.cart-card .profile-suggestion .eyebrow {
  font-size: 9px;
}
.cart-card .profile-suggestion div > strong {
  font-size: 17px;
  letter-spacing: -0.02em;
}
.cart-card .profile-suggestion div > span {
  display: block;
  max-width: 390px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.cart-card .profile-suggestion-actions {
  gap: 11px;
  align-content: center;
  justify-items: stretch;
}
.cart-card .profile-suggestion-actions b {
  font-size: 18px;
  text-align: right;
}
.cart-card .profile-suggestion-actions button {
  min-height: 42px;
  padding: 0 15px;
  background: var(--green);
  font-size: 10px;
}
@media (max-width: 760px) {
  .cart-card .profile-suggestion {
    min-height: 0;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }
  .cart-card .profile-suggestion > img {
    width: 72px;
    height: 72px;
  }
  .cart-card .profile-suggestion-actions {
    grid-column: 1/-1;
    grid-template-columns: auto minmax(130px, auto);
    gap: 14px;
    align-items: center;
  }
  .cart-card .profile-suggestion-actions b {
    text-align: left;
  }
  .cart-card .profile-suggestion-actions button {
    min-height: 40px;
  }
}
.cart-card .profile-suggestion,
.cart-card .profile-cart-item:not(.profile-cart-item--compact) {
  width: 100%;
  min-height: 330px;
  margin-top: 20px;
  padding: 20px 0 0;
  grid-template-columns: 220px minmax(0, 1fr) 134px;
  gap: 28px;
  align-items: stretch;
  border: 0;
  border-top: 1px solid #dfe2de;
  border-radius: 0;
  background: transparent;
}
.cart-card .profile-suggestion > img,
.cart-card .profile-cart-item:not(.profile-cart-item--compact) > img {
  width: 220px;
  height: 330px;
  border-radius: 12px;
  object-fit: cover;
}
.cart-card .profile-suggestion > div:not(.profile-suggestion-actions),
.cart-card .profile-cart-item:not(.profile-cart-item--compact) > div {
  padding: 18px 0;
  align-self: stretch;
  align-content: start;
}
.cart-card .profile-suggestion .eyebrow,
.cart-card .profile-cart-item:not(.profile-cart-item--compact) .eyebrow {
  margin-bottom: 8px;
  font-size: 10px;
}
.cart-card .profile-suggestion div > strong,
.cart-card .profile-cart-item:not(.profile-cart-item--compact) h3 {
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.cart-card .profile-suggestion div > span,
.cart-card .profile-cart-item:not(.profile-cart-item--compact) div > span {
  max-width: 420px;
  margin-top: 14px;
  display: flex;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.cart-card .profile-suggestion-actions {
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 18px;
}
.cart-card .profile-suggestion-actions b {
  font-size: 25px;
  text-align: right;
}
.cart-card .profile-suggestion-actions button {
  min-height: 44px;
  width: 100%;
  font-size: 9px;
}
.cart-card .profile-cart-item:not(.profile-cart-item--compact) > strong {
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  margin-top: 38px;
  font-size: 25px;
  text-align: right;
}
.cart-card .profile-cart-item:not(.profile-cart-item--compact) > button {
  grid-column: 3;
  grid-row: 1;
  align-self: end;
  justify-self: end;
  margin: 0 0 18px;
}
@media (max-width: 1080px) and (min-width: 761px) {
  .cart-card .profile-suggestion,
  .cart-card .profile-cart-item:not(.profile-cart-item--compact) {
    grid-template-columns: 200px minmax(0, 1fr) 130px;
    min-height: 300px;
  }
  .cart-card .profile-suggestion > img,
  .cart-card .profile-cart-item:not(.profile-cart-item--compact) > img {
    width: 200px;
    height: 300px;
  }
}
@media (max-width: 760px) {
  .cart-card .profile-suggestion,
  .cart-card .profile-cart-item:not(.profile-cart-item--compact) {
    min-height: 0;
    padding-top: 18px;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
  }
  .cart-card .profile-suggestion > img,
  .cart-card .profile-cart-item:not(.profile-cart-item--compact) > img {
    width: 86px;
    height: 129px;
    border-radius: 8px;
  }
  .cart-card .profile-suggestion > div:not(.profile-suggestion-actions),
  .cart-card .profile-cart-item:not(.profile-cart-item--compact) > div {
    padding: 3px 0;
  }
  .cart-card .profile-suggestion div > strong,
  .cart-card .profile-cart-item:not(.profile-cart-item--compact) h3 {
    font-size: 20px;
  }
  .cart-card .profile-suggestion div > span,
  .cart-card .profile-cart-item:not(.profile-cart-item--compact) div > span {
    display: none;
  }
  .cart-card .profile-suggestion-actions {
    grid-column: 1/-1;
    padding: 0;
    display: grid;
    grid-template-columns: auto minmax(130px, auto);
    align-items: center;
    justify-content: space-between;
  }
  .cart-card .profile-suggestion-actions b {
    text-align: left;
    font-size: 18px;
  }
  .cart-card .profile-cart-item:not(.profile-cart-item--compact) > strong {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    align-self: end;
    font-size: 18px;
  }
  .cart-card .profile-cart-item:not(.profile-cart-item--compact) > button {
    grid-column: 1/-1;
    grid-row: 2;
    margin: 0;
    justify-self: end;
  }
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.contact-link {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #242824;
  border-radius: 10px;
  background: #fff;
  color: #202420;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}
.contact-link:hover {
  border-color: var(--green);
  background: #f8fff6;
  transform: translateY(-1px);
}
.phone-link {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #242824;
  border-radius: 50%;
  background: #fff;
  color: #202420;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}
.phone-link:hover {
  border-color: var(--green);
  background: #f8fff6;
  transform: translateY(-1px);
}
.phone-link svg {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}
.header-inner:has(.header-cart) {
  grid-template-columns: 170px 128px 1fr auto;
}
@media (max-width: 1080px) {
  .header-inner:has(.header-cart) {
    grid-template-columns: 160px 118px 1fr auto;
  }
  .contact-link {
    padding: 0 16px;
  }
}
@media (max-width: 760px) {
  .header-inner,
  .header-inner:has(.header-cart) {
    grid-template-columns: 1fr auto auto;
  }
  .header-actions {
    gap: 8px;
  }
  .header-inner .catalog-link {
    display: inline-flex;
    min-width: 94px;
  }
  .contact-link,
  .phone-link {
    display: none;
  }
}
.profile-official-copy {
  white-space: pre-line;
}
.home-page {
  padding-top: 64px;
  padding-bottom: 80px;
}
.home-page .home-hero {
  align-items: start;
}
@media (max-width: 760px) {
  .home-page {
    padding-top: 36px;
    padding-bottom: 56px;
  }
}
.profiles-heading-copy {
  display: grid;
  gap: 14px;
  justify-items: start;
}
.profiles-heading-copy > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.profiles-help-button {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #d4d9d3;
  border-radius: 9px;
  background: #fff;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
}
.profiles-help-button:hover,
.profiles-help-button[aria-expanded="true"] {
  border-color: var(--green);
  background: #f6fff3;
}
.profiles-help-button svg {
  width: 16px;
  height: 16px;
}
.profiles-help {
  margin-top: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(49, 203, 34, 0.34);
  border-radius: 14px;
  background: #f8fff6;
  box-shadow: 0 12px 30px #142a120f;
}
.profiles-help strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}
.profiles-help p {
  max-height: 280px;
  margin: 0;
  overflow: auto;
  color: #596059;
  font-size: 12px;
  line-height: 1.65;
  white-space: pre-line;
}
.profiles-section .profile-card--catalog {
  display: flex;
  flex-direction: column;
}
.profiles-section .profile-card-link {
  display: block;
}
.profiles-section .profile-card-link > div {
  min-height: 72px;
  padding: 16px 18px 10px;
}
.profiles-section .profile-card--catalog footer {
  margin-top: auto;
  padding: 0 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.profiles-section .profile-card--catalog footer > strong {
  color: var(--ink);
  font-size: 17px;
  white-space: nowrap;
}
.profiles-section .profile-card--catalog footer > button {
  min-height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--green);
  border-radius: 9px;
  background: var(--green);
  color: #10230e;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.profiles-section .profile-card--catalog footer > button:hover {
  background: #42d832;
  transform: translateY(-1px);
}
.profiles-section .profile-card--catalog footer > button svg {
  width: 15px;
  height: 15px;
}
@media (max-width: 760px) {
  .profiles-heading-copy {
    gap: 12px;
  }
  .profiles-help {
    padding: 18px;
  }
  .profiles-section .profile-card-link > div {
    min-height: 62px;
  }
  .profiles-section .profile-card--catalog footer > button {
    min-height: 42px;
  }
}
.profiles-heading-copy {
  align-self: stretch;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
}
.profiles-heading-copy > p {
  align-self: end;
}
.profiles-help-button {
  min-height: auto;
  padding: 0;
  justify-self: end;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  text-transform: none;
}
.profiles-help-button:hover {
  border: 0;
  background: transparent;
  color: var(--green-dark);
  transform: none;
}
.profiles-help-button svg {
  width: 17px;
  height: 17px;
  padding: 2px;
  border: 1px solid var(--green-dark);
  border-radius: 50%;
  color: var(--green-dark);
}
.profiles-help-modal {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
  display: grid;
  place-items: center;
  background: #1016107a;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.profiles-help-dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: min(720px, 86vh);
  padding: 40px 44px;
  overflow: auto;
  border: 1px solid #d6dcd4;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 80px #0a180a47;
}
.profiles-help-dialog h2 {
  margin: 0 48px 20px 0;
  font-size: 30px;
  letter-spacing: -0.035em;
}
.profiles-help-dialog > p:last-child {
  margin: 0;
  color: #565d56;
  font-size: 13px;
  line-height: 1.75;
  white-space: pre-line;
}
.profiles-help-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #d9ded8;
  border-radius: 50%;
  background: #f7f8f6;
  color: var(--ink);
}
.profiles-help-close:hover {
  border-color: var(--green);
  background: #f3fff0;
}
.profiles-help-close svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 760px) {
  .profiles-heading-copy {
    grid-template-rows: auto auto;
  }
  .profiles-heading-copy > p {
    align-self: auto;
  }
  .profiles-help-button {
    justify-self: start;
  }
  .profiles-help-modal {
    padding: 15px;
  }
  .profiles-help-dialog {
    max-height: 88vh;
    padding: 32px 22px;
  }
  .profiles-help-dialog h2 {
    font-size: 25px;
  }
}
.is-free-price {
  color: var(--green-dark) !important;
}
.profiles-section .profile-card--catalog footer > .is-free-price {
  padding: 6px 10px;
  border: 1px solid rgba(49, 203, 34, 0.32);
  border-radius: 999px;
  background: #f3fff0;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.profile-price.is-free-price {
  font-size: 28px;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.menu-toggle,
.mobile-menu-catalog {
  display: none;
}
.home-hero {
  margin-bottom: 86px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 64px;
  align-items: center;
}
.home-hero-copy h1 {
  max-width: 670px;
  margin-bottom: 24px;
  font-size: clamp(44px, 4.7vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.home-hero-copy h1 span {
  color: var(--green-dark);
}
.home-hero-lead {
  max-width: 560px;
  margin-bottom: 30px;
  color: #505650;
  font-size: 15px;
  font-weight: 700;
}
.hero-steps {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.hero-steps li {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}
.hero-steps b {
  color: var(--green-dark);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.hero-steps span {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
}
.hero-slider {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 18px;
  background: #eff1ee;
  box-shadow: 0 18px 46px #142a121f;
}
.hero-slider > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
}
.hero-slider > img.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}
.hero-slider-caption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  display: grid;
  gap: 5px;
  border-radius: 12px;
  background: #fffffff0;
  box-shadow: 0 8px 28px #00000029;
}
.hero-slider-caption strong {
  font-size: 17px;
}
.hero-slider-caption span {
  color: var(--muted);
  font-size: 12px;
}
.hero-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: #1a1f1ab8;
  color: #fff;
  transform: translateY(-50%);
}
.hero-arrow:hover {
  background: var(--green);
  color: #fff;
}
.hero-arrow svg {
  width: 20px;
}
.hero-arrow--prev {
  left: 16px;
}
.hero-arrow--next {
  right: 16px;
}
.hero-dots {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: 34px;
  display: flex;
  gap: 6px;
}
.hero-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c7cbc6;
}
.hero-dots button.is-active {
  background: var(--green-dark);
  transform: scale(1.35);
}
.profiles-section {
  margin-top: 84px;
  padding-top: 68px;
}
.profile-search {
  position: relative;
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.profile-search > svg {
  position: absolute;
  left: 20px;
  width: 21px;
  color: #555b55;
}
.profile-search input {
  width: 100%;
  height: 60px;
  padding: 0 20px 0 56px;
  border: 1px solid #aeb3ad;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: 0;
}
.profile-search input:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px #31cb2229;
}
.profile-toolbar {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.category-chips button {
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid #d8ddd6;
  border-radius: 999px;
  background: #fff;
  color: #3b403b;
  font-size: 12px;
  font-weight: 700;
}
.category-chips button:hover,
.category-chips button.is-active {
  border-color: var(--green);
  background: var(--green);
  color: #10230e;
}
.profile-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
}
.profile-sort select {
  height: 40px;
  padding: 0 34px 0 13px;
  border: 1px solid #d8ddd6;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.profile-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}
.profile-card {
  display: block;
  overflow: hidden;
  border: 1px solid #d8ddd6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px #142a1212;
  outline: 0;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.profile-card:hover {
  border-color: #31cb22a6;
  box-shadow: 0 20px 42px #142a1224;
  transform: translateY(-4px);
}
.profile-card:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
.profile-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 864/377;
  display: block;
  object-fit: contain;
  background: #f3f4f2;
}
.profile-card div {
  min-height: 90px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.profile-card h3 {
  font-size: 16px;
  line-height: 1.35;
}
.profile-card strong {
  font-size: 17px;
}
.empty-profiles {
  border-radius: 14px;
}
.profile-page {
  padding-bottom: 100px;
}
.profile-back {
  margin: -20px 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}
.profile-back svg {
  width: 17px;
}
.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: 28px;
  align-items: stretch;
}
.profile-media,
.profile-buy,
.profile-description,
.profile-devices {
  border: 1px solid #d8ddd6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px #14221412;
}
.profile-media {
  min-height: 510px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.profile-media-zoom {
  width: 100%;
  height: 100%;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: zoom-in;
}
.profile-media-zoom:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: -5px;
}
.profile-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 864/377;
  display: block;
  object-fit: contain;
}
.profile-buy {
  padding: 46px 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.profile-buy h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.profile-buy > p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.profile-price {
  margin-top: auto;
  font-size: 36px;
}
.profile-buy-actions {
  width: 100%;
  margin-top: 22px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
}
.profile-buy-actions > a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  background: var(--green);
  color: #10230e;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.profile-buy-actions > a svg {
  width: 17px;
}
.profile-info {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
}
.profile-description,
.profile-devices {
  padding: 36px;
}
.profile-info h2 {
  margin-bottom: 18px;
  font-size: 30px;
  letter-spacing: -0.035em;
}
.profile-description > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.profile-description ul {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}
.profile-description li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  font-weight: 700;
}
.profile-description li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.profile-devices > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.profile-devices article {
  min-height: 92px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #e0e4df;
  border-radius: 12px;
  background: #fbfcfb;
  outline: 0;
}
.profile-devices article:hover,
.profile-devices article:focus {
  border-color: var(--green);
  background: #f8fff6;
}
.profile-devices article > svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--green-dark);
  stroke-width: 1.65;
}
.profile-devices article > span {
  display: grid;
  gap: 4px;
}
.profile-devices article strong {
  font-size: 13px;
}
.profile-devices article small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}
.related-profiles {
  margin-top: 74px;
  padding-top: 54px;
  border-top: 1px solid var(--line);
}
.related-profiles > div:first-child h2 {
  margin: 0;
  font-size: 38px;
  letter-spacing: -0.04em;
}
@media (max-width: 1080px) {
  .home-hero {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-slider {
    min-height: 460px;
  }
  .hero-slider > img {
    height: 460px;
  }
  .menu-toggle {
    width: 46px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid #d7dbd6;
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
  }
  .menu-toggle svg {
    width: 21px;
  }
  .header-inner {
    grid-template-columns: 160px 118px 1fr auto;
  }
  .header-inner:has(.header-cart) {
    grid-template-columns: 160px 118px 1fr 48px auto;
  }
  .main-nav.is-open {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    padding: 24px max(28px, calc((100vw - 1400px) / 2));
    display: grid;
    justify-content: stretch;
    gap: 0;
    border-bottom: 1px solid #dfe3de;
    background: #fff;
    box-shadow: 0 20px 36px #121d121f;
  }
  .main-nav.is-open a {
    padding: 15px 0;
    border-bottom: 1px solid #eceeeb;
  }
  .main-nav.is-open .mobile-menu-catalog {
    display: block;
    color: var(--green-dark);
  }
  .profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .profile-hero,
  .profile-info {
    grid-template-columns: 1fr;
  }
  .profile-media {
    min-height: 0;
  }
}
@media (max-width: 760px) {
  .header-inner,
  .header-inner:has(.header-cart) {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }
  .header-inner .catalog-link {
    display: none;
  }
  .menu-toggle {
    width: 44px;
    height: 42px;
  }
  .main-nav.is-open {
    top: 70px;
    padding: 18px 20px;
  }
  .home-hero {
    margin-bottom: 60px;
  }
  .home-hero-copy h1 {
    font-size: 38px;
  }
  .home-hero-lead {
    font-size: 13px;
  }
  .hero-slider {
    min-height: 330px;
    border-radius: 14px;
  }
  .hero-slider > img {
    height: 330px;
    object-fit: cover;
  }
  .hero-slider-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px 82px 14px 14px;
  }
  .hero-dots {
    right: 24px;
    bottom: 24px;
  }
  .catalog-intro {
    margin-top: 12px;
  }
  .profiles-section {
    margin-top: 60px;
    padding-top: 48px;
  }
  .profiles-heading h2 {
    font-size: 38px;
  }
  .profile-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .category-chips {
    flex-wrap: nowrap;
    overflow: auto;
    padding-bottom: 5px;
  }
  .category-chips button {
    flex: 0 0 auto;
  }
  .profile-sort {
    justify-content: space-between;
  }
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .profile-card div {
    min-height: 80px;
  }
  .profile-page .breadcrumbs {
    padding-bottom: 30px;
    overflow: auto;
    white-space: nowrap;
  }
  .profile-back {
    margin-top: -10px;
  }
  .profile-buy {
    padding: 30px 22px;
  }
  .profile-buy h1 {
    font-size: 38px;
  }
  .profile-buy-actions {
    grid-template-columns: 1fr;
  }
  .profile-info {
    gap: 18px;
  }
  .profile-description,
  .profile-devices {
    padding: 26px 20px;
  }
  .profile-devices > div {
    grid-template-columns: 1fr;
  }
  .related-profiles {
    margin-top: 54px;
    padding-top: 40px;
  }
}
.home-page {
  padding: 0 0 86px;
  background: #fff;
}
.home-page > .page-shell:first-child {
  padding-top: 64px;
}
.home-section {
  padding-top: 104px;
  padding-bottom: 104px;
}
.home-section-heading {
  display: grid;
  gap: 10px;
}
.home-section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.052em;
  text-transform: uppercase;
}
.home-section-heading--split {
  grid-template-columns: 1fr 1fr;
  align-items: end;
}
.home-section-heading--split > p {
  margin: 0 0 8px;
  color: #9a9f9a;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}
.home-section-heading--center {
  justify-items: center;
  text-align: center;
}
.home-section-heading--reviews {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
}
.home-section-heading--reviews > p {
  margin: 0 0 6px;
  color: var(--muted);
  line-height: 1.65;
}
.home-advantages {
  padding-bottom: 86px;
}
.advantage-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.advantage-card {
  min-height: 220px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #dce0db;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px #1422140b;
}
.advantage-card--wide {
  grid-column: span 2;
}
.advantage-card > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #eaffe6;
  color: var(--green-dark);
}
.advantage-card > span svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.7;
}
.advantage-card h3 {
  max-width: 270px;
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}
.advantage-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.home-interaction {
  padding-top: 40px;
  padding-bottom: 112px;
}
.interaction-title-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
}
.interaction-title-row span {
  height: 1px;
  background: #d8ddd6;
}
.interaction-title-row h2 {
  margin: 0;
  color: #3c423c;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}
.interaction-original {
  margin-top: 38px;
  min-height: 380px;
  display: grid;
  place-items: center;
  border: 1px solid #e0e4df;
  border-radius: 16px;
  background: #fbfcfb;
  overflow: hidden;
}
.interaction-original img {
  width: 100%;
  height: 380px;
  padding: 26px;
  display: block;
  object-fit: contain;
}
.home-devices {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 22px;
}
.device-column,
.sensor-column {
  padding: 40px;
  border: 1px solid #dce0db;
  border-radius: 18px;
  background: #fff;
}
.device-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.device-grid article {
  min-height: 72px;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid #e5e8e4;
  border-radius: 12px;
  background: #fafbfa;
}
.device-grid svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--green-dark);
  stroke-width: 1.65;
}
.device-grid span {
  font-size: 12px;
  font-weight: 750;
}
.device-note {
  margin: 20px 0 0;
  color: #8b918b;
  font-size: 10px;
}
.sensor-column {
  display: flex;
  flex-direction: column;
  background: #f6f7f5;
}
.sensor-visual {
  height: 280px;
  margin-top: 26px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #242724;
}
.sensor-visual img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.4));
}
.sensor-list {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sensor-list span {
  min-height: 50px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #d9ddd7;
  border-radius: 10px;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
}
.sensor-list svg {
  width: 19px;
  color: var(--green-dark);
}
.home-functional {
  padding: 110px 0;
  background: #f3f5f2;
}
.functional-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.functional-grid article {
  position: relative;
  min-height: 350px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid #dce0db;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}
.functional-grid article > svg {
  width: 54px;
  height: 54px;
  margin-top: 72px;
  color: var(--green-dark);
  stroke-width: 1.25;
}
.functional-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #d8ddd7;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.06em;
}
.functional-grid article > div {
  margin-top: auto;
}
.functional-grid article p {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.functional-grid article h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
}
.home-reviews {
  padding-bottom: 120px;
}
.reviews-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.reviews-grid article {
  min-height: 270px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid #dce0db;
  border-radius: 16px;
  background: #fff;
}
.reviews-grid article > svg {
  width: 30px;
  height: 30px;
  color: var(--green-dark);
  stroke-width: 1.4;
}
.reviews-grid article > p {
  max-width: 520px;
  margin: 34px 0;
  color: #242824;
  font-size: 18px;
  line-height: 1.5;
}
.reviews-grid footer {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #e4e7e3;
}
.reviews-grid footer > span {
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
}
.reviews-grid footer > div {
  display: grid;
  gap: 3px;
}
.reviews-grid footer strong {
  font-size: 12px;
}
.reviews-grid footer small {
  color: var(--muted);
  font-size: 10px;
}
.home-buy {
  min-height: 470px;
  padding: 60px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: 40px;
  border-radius: 22px;
  background: #222622;
  color: #fff;
  overflow: hidden;
}
.home-buy h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.home-buy .eyebrow {
  color: var(--green);
}
.home-buy a {
  width: max-content;
  min-height: 50px;
  margin-top: 34px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border-radius: 10px;
  background: var(--green);
  color: #10230e;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.home-buy a svg {
  width: 18px;
}
.home-buy-visual {
  height: 350px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
}
.home-buy-visual img {
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 34px 32px rgba(0, 0, 0, 0.48));
}
.home-growth {
  margin-top: 22px;
  padding: 104px 0;
  background: #f2f4f1;
}
.home-growth-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  gap: 80px;
  align-items: start;
}
.home-growth ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
  border-top: 1px solid #d6dad4;
}
.home-growth li {
  min-height: 82px;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #d6dad4;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.home-growth li svg {
  width: 21px;
  color: var(--green-dark);
}
.home-download {
  margin-top: 22px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid #dce0db;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 44px #1422140f;
}
.download-copy {
  display: flex;
  align-items: center;
  gap: 22px;
}
.download-copy > span {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--green);
  color: #10230e;
}
.download-copy > span svg {
  width: 29px;
}
.download-copy h2 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.04em;
}
.download-copy > div > p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
}
.download-copy > div > p:last-child strong {
  color: #be2b2b;
}
.home-download > a {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--green);
  border-radius: 10px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.home-download > a svg {
  width: 17px;
}
.site-footer {
  padding: 72px 0 24px;
  background: #222522;
  color: #fff;
}
.site-footer .page-shell {
  width: min(1400px, calc(100% - 56px));
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 1fr;
  gap: 68px;
}
.site-footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 12px;
}
.site-footer strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer a,
.site-footer span,
.site-footer p {
  color: #aeb4ae;
  font-size: 11px;
  line-height: 1.55;
}
.site-footer a:hover {
  color: var(--green);
}
.footer-brand img {
  width: 190px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  max-width: 270px;
  margin: 24px 0 0;
}
.site-footer-bottom {
  margin-top: 58px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer-bottom span {
  margin-right: auto;
}
@media (max-width: 1080px) {
  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-devices,
  .functional-grid {
    grid-template-columns: 1fr;
  }
  .functional-grid article {
    min-height: 260px;
  }
  .home-buy {
    grid-template-columns: 1fr;
  }
  .home-growth-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .home-page {
    padding-bottom: 52px;
  }
  .home-page > .page-shell:first-child {
    padding-top: 36px;
  }
  .home-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }
  .home-section-heading h2 {
    font-size: 35px;
  }
  .home-section-heading--split,
  .home-section-heading--reviews {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .home-section-heading--split > p {
    font-size: 18px;
  }
  .advantage-grid {
    grid-template-columns: 1fr;
  }
  .advantage-card,
  .advantage-card--wide {
    grid-column: auto;
    min-height: 170px;
  }
  .home-interaction {
    padding-top: 20px;
    padding-bottom: 74px;
  }
  .interaction-title-row {
    gap: 10px;
  }
  .interaction-title-row h2 {
    font-size: 12px;
  }
  .interaction-original {
    min-height: 240px;
  }
  .interaction-original img {
    height: 240px;
    padding: 10px;
  }
  .device-column,
  .sensor-column {
    padding: 25px 20px;
  }
  .device-grid {
    grid-template-columns: 1fr;
  }
  .sensor-visual {
    height: 230px;
  }
  .home-functional {
    padding: 72px 0;
  }
  .functional-grid article {
    min-height: 240px;
    padding: 24px;
  }
  .functional-grid article > svg {
    margin-top: 42px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid article {
    min-height: 240px;
  }
  .home-buy {
    min-height: 0;
    padding: 38px 24px;
    gap: 20px;
    border-radius: 0;
  }
  .home-buy h2 {
    font-size: 40px;
  }
  .home-buy-visual {
    height: 260px;
  }
  .home-growth {
    padding: 72px 0;
  }
  .home-growth li {
    font-size: 12px;
  }
  .home-download {
    margin-top: 0;
    padding: 28px 20px;
    align-items: stretch;
    flex-direction: column;
  }
  .download-copy {
    align-items: flex-start;
  }
  .download-copy > span {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
  }
  .download-copy h2 {
    font-size: 27px;
  }
  .home-download > a {
    justify-content: center;
  }
  .site-footer {
    padding-top: 50px;
  }
  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .site-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .site-footer-bottom span {
    margin: 0;
  }
}
.home-video {
  padding-top: 22px;
  padding-bottom: 104px;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
  gap: 48px;
  align-items: end;
}
.home-video-frame {
  overflow: hidden;
  border: 1px solid #dce0db;
  border-radius: 18px;
  background: #181b18;
  box-shadow: 0 18px 48px #121e121a;
}
.home-video video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  display: block;
  object-fit: cover;
  background: #181b18;
}
.sensor-column {
  justify-content: flex-start;
}
.sensor-products {
  margin-top: 34px;
  display: grid;
  gap: 10px;
}
.sensor-products article {
  min-height: 76px;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #dde1dc;
  border-radius: 12px;
  background: #fff;
}
.sensor-products article > svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  color: var(--green-dark);
  stroke-width: 1.6;
}
.sensor-products article > div {
  display: grid;
  gap: 4px;
}
.sensor-products strong {
  font-size: 12px;
}
.sensor-products span {
  color: var(--muted);
  font-size: 10px;
}
.reviews-grid footer > img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  background: #eef0ed;
}
.reviews-grid footer > div {
  min-width: 0;
}
.reviews-grid footer > div strong {
  display: block;
}
.reviews-grid footer > div small {
  display: block;
}
.reviews-grid footer > span {
  display: none;
}
@media (max-width: 1080px) {
  .home-video {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
@media (max-width: 760px) {
  .home-video {
    padding-top: 0;
    padding-bottom: 70px;
    gap: 24px;
  }
  .home-video-frame {
    border-radius: 14px;
  }
  .sensor-products {
    margin-top: 26px;
  }
  .reviews-grid footer > img {
    width: 44px;
    height: 44px;
  }
}
.advantages-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #d8ddd6;
}
.advantages-tabs button {
  min-height: 76px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: #9a9f9a;
  font: inherit;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.035em;
  text-align: left;
  text-transform: uppercase;
  box-shadow: none;
}
.advantages-tabs button[aria-selected="true"] {
  color: var(--ink);
  box-shadow: inset 0 -3px var(--green);
}
.advantages-tabs button:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
.advantage-grid--economic {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.advantage-grid--economic .advantage-card {
  grid-column: span 2;
}
.advantage-grid--economic .advantage-card--economic-wide {
  grid-column: span 3;
}
.advantage-grid--economic .advantage-card h3 {
  text-transform: uppercase;
}
.advantage-grid--economic .advantage-card p {
  font-size: 13px;
  line-height: 1.65;
}
.device-column,
.sensor-column {
  background: #fff;
}
.device-grid article,
.sensor-products article {
  background: #fafbfa;
}
.functional-layout {
  margin-top: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(380px, 0.84fr);
  gap: 18px;
  align-items: stretch;
}
.functional-video {
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #d6dbd5;
  border-radius: 18px;
  background: #191c19;
  box-shadow: 0 18px 42px #121e121a;
}
.functional-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #191c19;
}
.functional-video video.has-started {
  object-fit: contain;
}
.functional-layout .functional-grid {
  margin: 0;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.functional-layout .functional-grid article {
  min-height: 0;
  padding: 16px 22px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 18px;
}
.functional-layout .functional-grid article > svg {
  width: 38px;
  height: 38px;
  margin: 0;
}
.functional-layout .functional-grid article > div {
  margin: 0;
}
.functional-layout .functional-grid article h3 {
  font-size: 15px;
}
.functional-layout .functional-grid article p {
  margin-bottom: 7px;
}
@media (max-width: 1080px) {
  .advantage-grid--economic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .advantage-grid--economic .advantage-card,
  .advantage-grid--economic .advantage-card--economic-wide {
    grid-column: auto;
  }
  .functional-layout {
    grid-template-columns: 1fr;
  }
  .functional-video {
    min-height: 0;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 760px) {
  .advantages-tabs {
    grid-template-columns: 1fr;
  }
  .advantages-tabs button {
    min-height: 58px;
    padding: 0;
    font-size: 20px;
  }
  .advantage-grid--economic {
    grid-template-columns: 1fr;
  }
  .functional-layout {
    margin-top: 28px;
  }
  .functional-video {
    border-radius: 14px;
  }
  .functional-layout .functional-grid article {
    grid-template-columns: 36px 1fr;
    padding: 18px;
  }
  .functional-layout .functional-grid article > svg {
    width: 31px;
    height: 31px;
  }
}

@media (max-width: 760px) {
}
.home-advantages .advantage-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.home-advantages .advantage-card {
  grid-column: span 2;
}
.home-advantages .advantage-card--technical-wide,
.home-advantages .advantage-card--economic-wide {
  grid-column: span 3;
}
@media (max-width: 1080px) {
  .home-advantages .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-advantages .advantage-card,
  .home-advantages .advantage-card--technical-wide,
  .home-advantages .advantage-card--economic-wide {
    grid-column: auto;
  }
}
@media (max-width: 760px) {
  .home-advantages .advantage-grid {
    grid-template-columns: 1fr;
  }
}
.home-functional,
.home-growth {
  background: #fff;
}
.hero-slider > img.hero-slide--contain {
  padding: 46px;
  object-fit: contain;
  background: #242724;
}
.interaction-original {
  position: relative;
  width: 100%;
  padding: 0;
  cursor: zoom-in;
  font: inherit;
}
.interaction-original > span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #1a1f1ac7;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  pointer-events: none;
}
.interaction-original:hover {
  border-color: var(--green);
}
.schema-selector {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.schema-selector button {
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid #dce0db;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.3;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.schema-selector button:hover {
  border-color: var(--green);
}
.schema-selector button[aria-selected="true"] {
  border-color: var(--green);
  background: #effbea;
  color: var(--green-dark);
}
@media (max-width: 760px) {
  .schema-selector {
    margin-right: -20px;
    margin-left: -20px;
    padding: 0 20px 4px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .schema-selector::-webkit-scrollbar {
    display: none;
  }
  .schema-selector button {
    min-width: max-content;
    min-height: 42px;
  }
}
.interaction-original:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}
.schema-lightbox {
  position: fixed;
  z-index: 150;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
  display: grid;
  place-items: center;
  background: #0c0f0cdb;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.schema-lightbox > img {
  width: min(1500px, 96vw);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 28px 90px #0000007a;
}
.schema-lightbox > button {
  position: fixed;
  z-index: 2;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: #141714b8;
  color: #fff;
}
.schema-lightbox > button:hover {
  background: var(--green);
  color: #142012;
}
.schema-lightbox > button svg {
  width: 22px;
}
.home-buy-visual img {
  border-radius: 18px;
  filter: none;
}
@media (max-width: 760px) {
  .hero-slider > img.hero-slide--contain {
    padding: 24px;
  }
  .interaction-original > span {
    right: 10px;
    bottom: 10px;
    font-size: 8px;
  }
  .schema-lightbox {
    padding: 12px;
  }
  .schema-lightbox > button {
    top: 14px;
    right: 14px;
  }
}
.home-devices {
  display: block;
}
.device-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #d8ddd6;
}
.device-tabs button {
  min-height: 76px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: #9a9f9a;
  font: inherit;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.035em;
  text-align: left;
  text-transform: uppercase;
}
.device-tabs button[aria-selected="true"] {
  color: var(--ink);
  box-shadow: inset 0 -3px var(--green);
}
.device-tabs button:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
.device-tab-panel {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid #dce0db;
  border-radius: 18px;
  background: #fff;
}
.device-tab-panel .device-grid {
  margin: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.device-tab-panel .sensor-products {
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.device-tab-panel .sensor-products .sensor-note {
  grid-column: 1 / -1;
  margin: 10px 0 0;
}
.home-devices-cta {
  width: max-content;
  min-height: 50px;
  margin: 24px auto 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 10px;
  background: var(--green);
  color: #10230e;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.home-devices-cta svg {
  width: 18px;
}
.home-devices-cta:hover {
  background: #42d832;
  transform: translateY(-1px);
}
@media (max-width: 760px) {
  .home-advantages .advantage-grid:not(.advantage-grid--economic) .advantage-card {
    min-height: 0;
    padding: 18px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }
  .home-advantages .advantage-grid:not(.advantage-grid--economic) .advantage-card > span {
    flex: 0 0 48px;
  }
  .home-advantages .advantage-grid:not(.advantage-grid--economic) .advantage-card h3 {
    max-width: none;
  }
  .device-tabs button {
    min-height: 62px;
    padding: 0 8px;
    font-size: 15px;
    line-height: 1.15;
  }
  .device-tab-panel {
    margin-top: 16px;
    padding: 14px;
    border-radius: 14px;
  }
  .device-tab-panel .device-grid,
  .device-tab-panel .sensor-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .device-tab-panel .sensor-products {
    grid-template-columns: 1fr;
  }
  .device-tab-panel .device-grid article,
  .device-tab-panel .sensor-products article {
    min-height: 86px;
    padding: 12px;
    align-items: flex-start;
    flex-direction: column;
  }
  .device-tab-panel .sensor-products article {
    min-height: 68px;
    padding: 14px 16px;
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
  .device-tab-panel .sensor-products article > div {
    gap: 2px;
  }
  .device-tab-panel .sensor-products span {
    font-size: 9px;
  }
  .home-devices-cta {
    width: 100%;
    margin-top: 16px;
  }
  .site-footer {
    padding-top: 36px;
  }
  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 22px;
  }
  .site-footer-grid .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand img {
    width: 155px;
  }
  .footer-brand p {
    max-width: 310px;
    margin-top: 12px;
  }
  .site-footer-grid > div:not(.footer-brand) {
    gap: 8px;
  }
  .site-footer-grid > div:nth-child(4) {
    grid-column: 1/-1;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
  }
  .site-footer-grid > div:nth-child(4) > strong {
    grid-column: 1/-1;
  }
  .site-footer strong {
    margin-bottom: 3px;
  }
  .site-footer a,
  .site-footer span,
  .site-footer p {
    font-size: 10px;
  }
  .site-footer-bottom {
    margin-top: 32px;
    padding-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
  }
  .site-footer-bottom span {
    grid-column: 1/-1;
  }
}
@media (max-width: 760px) {
}
@media (max-width: 760px) {
}
.home-hero {
  display: block;
}
.home-hero-top {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 64px;
  align-items: start;
}
.home-hero-lead {
  margin-bottom: 0;
}
.hero-steps {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border: 0;
  list-style: none;
}
.hero-steps li {
  min-height: 116px;
  padding: 18px;
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.hero-step-icon {
  grid-row: 1/3;
  width: 44px;
  height: 44px;
  display: grid !important;
  place-items: center !important;
  border-radius: 12px;
  background: #effbea;
  color: var(--green-dark);
}
.hero-step-icon svg {
  width: 21px;
  height: 21px;
}
.hero-steps b {
  color: var(--green-dark);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-steps li > span:last-child {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 11px;
}
.hero-steps strong {
  color: var(--ink);
  font-size: 14px;
}
@media (max-width: 1080px) {
  .home-hero-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-steps {
    grid-template-columns: 1fr 1fr;
  }
  .hero-steps li:last-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 760px) {
  .home-hero-top {
    gap: 28px;
  }
  .hero-steps {
    margin-top: 18px;
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .hero-steps li,
  .hero-steps li:last-child {
    grid-column: auto;
    min-height: 94px;
    padding: 14px;
  }
  .hero-step-icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 760px) {
}

/* Green action controls use white labels for consistent contrast. */
.buy-button,
.category-chips button.is-active,
.cart-card .profile-suggestion-actions button,
.cart-toast-copy > a,
.cdek-integration-shell .open-pvz-btn,
.cdek-pvz-list > .confirm-pvz,
.checkout-link,
.place-order,
.empty-cart a,
.home-buy a,
.home-devices-cta,
.mobile-buy-bar button,
.product-footer span,
.profile-buy-actions > a,
.profile-buy-actions > button,
.profiles-section .profile-card--catalog footer > button {
  color: #fff;
}

/* Product pages follow the rounded visual language used across the site. */
.product-page .media-stage,
.product-page .buy-panel,
.product-page .product-bonus,
.product-page .tabs-card,
.product-page .schema-card,
.product-page .other-product {
  border-radius: 18px;
}
.product-page .media-stage,
.product-page .tabs-card,
.product-page .schema-card {
  overflow: hidden;
}
.product-page .media-zoom,
.product-page .media-image {
  border-radius: inherit;
}
.product-page .quantity,
.product-page .buy-button,
.product-page .one-click,
.mobile-buy-bar button {
  border-radius: 10px;
}
.product-page .tabs-list button {
  border-radius: 10px 10px 0 0;
}
.product-page .quantity,
.product-page .delivery-rows,
.product-page .schema-carousel-frame {
  overflow: hidden;
}
.product-page .delivery-rows,
.product-page .schema-carousel-frame {
  border-radius: 12px;
}
.product-page .buy-badge {
  border-radius: 999px;
}

.product-page .media-zoom,
.product-page .schema-image-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}
.product-page .schema-image-link {
  width: 100%;
  cursor: zoom-in;
}
.product-lightbox {
  position: fixed;
  z-index: 1300;
  inset: 0;
  padding: 42px 88px 30px;
  display: grid;
  place-items: center;
  background: rgba(14, 18, 14, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  animation: product-lightbox-in 0.2s ease both;
}
.product-lightbox-figure {
  max-width: 100%;
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 14px;
}
.product-lightbox-figure img {
  max-width: min(1200px, calc(100vw - 176px));
  max-height: calc(100vh - 116px);
  display: block;
  object-fit: contain;
  border-radius: 18px;
  background: #f8faf7;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}
.product-lightbox-figure figcaption {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.product-lightbox-close,
.product-lightbox-arrow {
  position: fixed;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: background 0.18s ease, transform 0.18s ease;
}
.product-lightbox-close {
  top: 24px;
  right: 24px;
}
.product-lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
}
.product-lightbox-arrow--prev {
  left: 24px;
}
.product-lightbox-arrow--next {
  right: 24px;
}
.product-lightbox-close:hover,
.product-lightbox-arrow:hover {
  background: var(--green);
}
.product-lightbox-close:hover {
  transform: scale(1.06);
}
.product-lightbox-arrow:hover {
  transform: translateY(-50%) scale(1.06);
}
.product-lightbox-close:focus-visible,
.product-lightbox-arrow:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
.product-lightbox-close svg,
.product-lightbox-arrow svg {
  width: 22px;
  height: 22px;
}
@keyframes product-lightbox-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 760px) {
  .product-lightbox {
    padding: 72px 15px 68px;
  }
  .product-lightbox-figure img {
    max-width: calc(100vw - 30px);
    max-height: calc(100vh - 154px);
    border-radius: 14px;
  }
  .product-lightbox-close,
  .product-lightbox-arrow {
    width: 44px;
    height: 44px;
  }
  .product-lightbox-close {
    top: 14px;
    right: 14px;
  }
  .product-lightbox-arrow--prev {
    left: 12px;
  }
  .product-lightbox-arrow--next {
    right: 12px;
  }
  .product-lightbox-figure figcaption {
    font-size: 10px;
  }
}

/* Shared hover feedback for action controls across commerce pages. */
.buy-button,
.checkout-link,
.place-order,
.empty-cart a,
.profile-buy-actions > a,
.profile-buy-actions > button,
.profiles-section .profile-card--catalog footer > button,
.profile-suggestion > button,
.cart-card .profile-suggestion-actions button,
.cart-toast-copy > a,
.cdek-pvz-list > .confirm-pvz,
.cdek-integration-shell .open-pvz-btn,
.home-buy a,
.home-devices-cta,
.mobile-buy-bar button,
.product-footer span {
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}
.buy-button:hover:not(:disabled),
.checkout-link:hover,
.place-order:hover:not(:disabled),
.empty-cart a:hover,
.profile-buy-actions > a:hover,
.profile-buy-actions > button:hover:not(:disabled),
.profiles-section .profile-card--catalog footer > button:hover:not(:disabled),
.profile-suggestion > button:hover:not(:disabled),
.cart-card .profile-suggestion-actions button:hover:not(:disabled),
.cart-toast-copy > a:hover,
.cdek-pvz-list > .confirm-pvz:hover:not(:disabled),
.cdek-integration-shell .open-pvz-btn:hover,
.home-buy a:hover,
.home-devices-cta:hover,
.mobile-buy-bar button:hover:not(:disabled),
.product-footer span:hover {
  border-color: #42d832;
  background: #42d832;
  color: #fff;
  box-shadow: 0 10px 24px rgba(49, 203, 34, 0.24);
  transform: translateY(-2px);
}

/* Catalog category chips keep their white surface on hover. */
.category-chips button {
  transition:
    border-color 0.18s ease,
    color 0.18s ease;
}
.category-chips button:hover:not(.is-active) {
  border-color: var(--green);
  background: #fff;
  color: #3b403b;
  box-shadow: none;
  transform: none;
}

/* Controller cards use the full content width; their portrait sets card height. */
@media (min-width: 1201px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .product-card {
    grid-template-columns: 54% minmax(0, 46%);
    aspect-ratio: 100 / 81;
  }

  .product-card-media {
    height: 100%;
    aspect-ratio: auto;
    align-self: stretch;
  }

  .product-card-media .product-card-cover {
    object-fit: cover;
  }

  .product-content {
    height: 100%;
    box-sizing: border-box;
  }
}

@media (min-width: 761px) and (max-width: 1200px) {
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
  }

  .product-card {
    grid-template-columns: 40% minmax(0, 60%);
  }
}

/* Homepage headings use sentence case and a clear SEO heading hierarchy. */
.home-page .home-hero-copy h1,
.home-page .home-section-heading h2,
.home-page .interaction-title-row h2,
.home-page .advantages-tabs button,
.home-page .device-tabs button,
.home-page .home-buy h2,
.home-page .home-functional .eyebrow {
  text-transform: none;
}

.advantages-tabs > h2,
.device-tabs > h2 {
  margin: 0;
  font: inherit;
}

.advantages-tabs > h2 > button,
.device-tabs > h2 > button {
  width: 100%;
  height: 100%;
}

.home-functional .home-section-heading--center {
  justify-items: start;
  text-align: left;
}

/* One calm vertical rhythm between consecutive homepage blocks. */
.home-page {
  --home-section-rhythm: 96px;
}

.home-page .home-hero {
  margin-bottom: var(--home-section-rhythm);
}

.home-page .home-section,
.home-page .home-interaction,
.home-page .home-functional {
  padding-top: 0;
  padding-bottom: var(--home-section-rhythm);
}

.home-page .home-growth {
  margin-top: 0;
  padding-top: var(--home-section-rhythm);
  padding-bottom: var(--home-section-rhythm);
}

.home-page .home-download {
  margin-top: 0;
}

@media (max-width: 760px) {
  .home-page {
    --home-section-rhythm: 64px;
  }
}

/* White homepage surfaces stay visible without halos around rounded corners. */
.home-page .hero-steps > li,
.home-page .advantage-card,
.home-page .device-tab-panel,
.home-page .device-grid article,
.home-page .sensor-products article,
.home-page .functional-grid article,
.home-page .reviews-grid > article,
.home-page .home-download {
  background: #fff;
}

/* Keep the software eyebrow consistent with the other green utility labels. */
.home-page .home-functional .eyebrow {
  text-transform: uppercase;
}

/* Subtle homepage hover language: lift, soft shadow and a green edge. */
.home-page .hero-steps > li,
.home-page .advantage-card,
.home-page .device-grid article,
.home-page .sensor-products article,
.home-page .functional-grid article,
.home-page .reviews-grid > article,
.home-page .home-download {
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.home-page .hero-steps > li:hover,
.home-page .advantage-card:hover,
.home-page .device-grid article:hover,
.home-page .sensor-products article:hover,
.home-page .functional-grid article:hover,
.home-page .reviews-grid > article:hover {
  border-color: rgba(49, 203, 34, 0.58);
  box-shadow: none;
  transform: translateY(-3px);
}

.home-page .advantages-tabs button,
.home-page .device-tabs button {
  transition:
    color 0.18s ease,
    background-color 0.18s ease;
}

.home-page .advantages-tabs button:hover,
.home-page .device-tabs button:hover {
  background: transparent;
  color: var(--ink);
}

.home-page .device-grid article svg,
.home-page .sensor-products article svg,
.home-page .functional-grid article > svg,
.home-page .hero-step-icon {
  transition: transform 0.2s ease;
}

.home-page .device-grid article:hover svg,
.home-page .sensor-products article:hover svg,
.home-page .functional-grid article:hover > svg,
.home-page .hero-steps > li:hover .hero-step-icon {
  transform: scale(1.06);
}

.home-page .home-growth li {
  transition:
    color 0.18s ease,
    background-color 0.18s ease;
}

.home-page .home-growth li:hover {
  background: transparent;
  color: var(--green-dark);
}

/* Header contact form modal. */
.contact-link {
  cursor: pointer;
  font-family: inherit;
}

.contact-modal {
  position: fixed;
  z-index: 220;
  inset: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(12, 15, 12, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: contact-modal-fade 0.2s ease-out both;
}

.contact-dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  padding: 34px;
  overflow-y: auto;
  border: 1px solid #dce0db;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
  animation: contact-dialog-enter 0.24s ease-out both;
}

.contact-dialog-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid #d7ddd5;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease;
}

.contact-dialog-close:hover {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.contact-dialog-close svg {
  width: 20px;
  height: 20px;
}

.contact-dialog-header {
  padding-right: 52px;
}

.contact-dialog-header .eyebrow {
  margin-bottom: 8px;
  color: var(--green-dark);
}

.contact-dialog-header h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.contact-dialog-header > p:last-child {
  max-width: 510px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

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

.contact-form > label:not(.contact-consent) {
  display: grid;
  gap: 8px;
  color: #404640;
  font-size: 11px;
  font-weight: 750;
}

.contact-form label b {
  color: var(--green-dark);
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  padding: 0 15px;
  border: 1px solid #cfd4ce;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: 0;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.contact-form input:not([type="checkbox"]) {
  height: 52px;
}

.contact-form textarea {
  min-height: 126px;
  padding-top: 14px;
  resize: vertical;
  line-height: 1.5;
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(49, 203, 34, 0.14);
}

.contact-form-question,
.contact-captcha-slot,
.contact-consent,
.contact-privacy,
.contact-submit {
  grid-column: 1 / -1;
}

.contact-captcha-slot:empty {
  display: none;
}

.contact-captcha-slot:not(:empty) {
  min-height: 78px;
  display: grid;
  place-items: center;
  border: 1px dashed #cfd4ce;
  border-radius: 10px;
  background: #fafbfa;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #313731;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--green);
}

.contact-privacy {
  margin: -2px 0 0;
  color: #7b827b;
  font-size: 10px;
  line-height: 1.55;
}

.contact-privacy a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-submit {
  min-height: 50px;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.contact-submit:hover {
  border-color: #42d832;
  background: #42d832;
  box-shadow: 0 10px 24px rgba(49, 203, 34, 0.24);
}

@keyframes contact-modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes contact-dialog-enter {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 760px) {
  .contact-modal {
    padding: 12px;
    align-items: end;
  }

  .contact-dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: 28px 20px 22px;
    border-radius: 18px;
  }

  .contact-dialog-close {
    top: 12px;
    right: 12px;
  }

  .contact-dialog-header {
    padding-right: 44px;
  }

  .contact-dialog-header h2 {
    font-size: 34px;
  }

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

  .contact-form-question,
  .contact-captcha-slot,
  .contact-consent,
  .contact-privacy,
  .contact-submit {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-modal,
  .contact-dialog {
    animation: none;
  }
}

@media (max-width: 760px) {
  .home-page .home-buy {
    border-radius: 18px;
  }

  .home-page .home-section-heading h2,
  .home-page .home-buy h2,
  .home-page .download-copy h2 {
    font-size: 28px;
  }

  .home-page .home-functional .home-section-heading h2 {
    line-height: 1.05;
    white-space: nowrap;
  }

  .home-page .advantages-tabs,
  .home-page .device-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .advantages-tabs button,
  .home-page .device-tabs button {
    min-height: 62px;
    padding: 0 8px;
    font-size: 15px;
    line-height: 1.15;
  }

  .home-page .home-buy {
    padding: 28px 24px 24px;
    gap: 18px;
  }

  .home-page .home-buy .eyebrow {
    margin-bottom: 8px;
  }

  .home-page .home-buy a {
    margin-top: 18px;
  }

  .home-page .home-buy-visual {
    height: auto;
    min-height: 0;
    place-items: initial;
  }

  .home-page .home-buy-visual img {
    height: auto;
    max-height: none;
  }
}

.home-page .home-download:hover {
  border-color: rgba(49, 203, 34, 0.5);
  box-shadow: none;
}

.home-page .download-copy > span {
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-steps > li,
  .home-page .advantage-card,
  .home-page .device-grid article,
  .home-page .sensor-products article,
  .home-page .functional-grid article,
  .home-page .reviews-grid > article,
  .home-page .home-download,
  .home-page .advantages-tabs button,
  .home-page .device-tabs button,
  .home-page .device-grid article svg,
  .home-page .sensor-products article svg,
  .home-page .functional-grid article > svg,
  .home-page .hero-step-icon,
  .home-page .home-growth li {
    transition: none;
  }

  .home-page .hero-steps > li:hover,
  .home-page .advantage-card:hover,
  .home-page .device-grid article:hover,
  .home-page .sensor-products article:hover,
  .home-page .functional-grid article:hover,
  .home-page .reviews-grid > article:hover,
  .home-page .device-grid article:hover svg,
  .home-page .sensor-products article:hover svg,
  .home-page .functional-grid article:hover > svg,
  .home-page .hero-steps > li:hover .hero-step-icon {
    transform: none;
  }
}
.one-click,
.continue-shopping,
.home-download > a {
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}
.one-click:hover,
.continue-shopping:hover,
.home-download > a:hover {
  border-color: var(--green);
  background: #f3fff0;
  color: var(--green-dark);
  box-shadow: 0 10px 24px rgba(49, 203, 34, 0.13);
  transform: translateY(-2px);
}
.quantity button,
.menu-toggle {
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}
.quantity button:hover,
.menu-toggle:hover {
  background: #effbea;
  color: var(--green-dark);
}
.quantity button:active,
.menu-toggle:active {
  transform: scale(0.94);
}
@media (prefers-reduced-motion: reduce) {
  .buy-button,
  .checkout-link,
  .place-order,
  .empty-cart a,
  .profile-buy-actions > a,
  .profile-buy-actions > button,
  .profiles-section .profile-card--catalog footer > button,
  .profile-suggestion > button,
  .cart-card .profile-suggestion-actions button,
  .cart-toast-copy > a,
  .cdek-pvz-list > .confirm-pvz,
  .cdek-integration-shell .open-pvz-btn,
  .home-buy a,
  .home-devices-cta,
  .mobile-buy-bar button,
  .product-footer span,
  .one-click,
  .continue-shopping,
  .home-download > a,
  .quantity button,
  .menu-toggle {
    transition: none;
  }
}

/* Keep anchored sections visible below the sticky navigation. */
#about,
#schema,
#functional {
  scroll-margin-top: 110px;
}

/* The legal links stay compact on tablet and mobile. */
.site-footer-bottom {
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .site-footer {
    padding-top: 44px;
  }

  .site-footer-grid {
    gap: 32px 24px;
  }

  .site-footer-grid > div:not(.footer-brand) {
    gap: 6px;
  }

  .site-footer-grid > div:not(.footer-brand) a {
    min-height: 24px;
  }

  .site-footer-bottom {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 8px 18px;
    margin-top: 30px;
    padding-top: 16px;
  }

  .site-footer-bottom span {
    grid-column: 1 / -1;
    margin: 0;
  }

  .site-footer-bottom a {
    min-height: 0 !important;
    height: auto !important;
    display: block;
    line-height: 1.35;
  }
}

@media (max-width: 760px) {
  #about,
  #schema,
  #functional {
    scroll-margin-top: 96px;
  }

  .site-footer {
    padding-top: 32px;
  }

  .site-footer-grid {
    gap: 24px 18px;
  }

  .site-footer-grid > div:not(.footer-brand) {
    gap: 4px;
  }

  .site-footer-grid > div:not(.footer-brand) a {
    min-height: 20px;
  }

  .site-footer-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px 12px;
    margin-top: 24px;
    padding-top: 14px;
  }

  .site-footer-bottom span {
    grid-column: 1 / -1;
  }

  .site-footer-bottom a {
    min-height: 0 !important;
    height: auto !important;
    font-size: 9px;
  }
}

.gallery-drag-surface {
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  overscroll-behavior-inline: contain;
}

.gallery-drag-surface.is-dragging {
  cursor: grabbing;
}

.gallery-drag-surface img {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

@keyframes gallery-slide-out-next {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(-7%, 0, 0);
    opacity: 0;
  }
}

@keyframes gallery-slide-out-prev {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(7%, 0, 0);
    opacity: 0;
  }
}

@keyframes gallery-slide-in-next {
  from {
    transform: translate3d(7%, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes gallery-slide-in-prev {
  from {
    transform: translate3d(-7%, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.hero-slider > img[class*="is-sliding-"],
.hero-slider-caption[class*="is-sliding-"],
.media-zoom[class*="is-sliding-"],
.schema-image-link[class*="is-sliding-"],
.product-lightbox-figure[class*="is-sliding-"] {
  will-change: transform, opacity;
}

.is-sliding-out-next {
  animation: gallery-slide-out-next 135ms cubic-bezier(0.55, 0, 1, 0.45) both;
}

.is-sliding-out-prev {
  animation: gallery-slide-out-prev 135ms cubic-bezier(0.55, 0, 1, 0.45) both;
}

.is-sliding-in-next {
  animation: gallery-slide-in-next 215ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.is-sliding-in-prev {
  animation: gallery-slide-in-prev 215ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .is-sliding-out-next,
  .is-sliding-out-prev,
  .is-sliding-in-next,
  .is-sliding-in-prev {
    animation: none;
  }
}

/* Carousel pagination stays compact despite the global mobile tap-target rule. */
.schema-carousel-frame .schema-dots {
  gap: 6px !important;
  column-gap: 6px !important;
  padding: 5px 7px;
}

.schema-dots button {
  width: 7px !important;
  height: 7px !important;
  min-width: 7px !important;
  min-height: 7px !important;
  inline-size: 7px !important;
  max-width: 7px !important;
  flex: 0 0 7px !important;
}

/* Compact cart media: portrait controllers and landscape plant profiles. */
.cart-card > .order-product,
.cart-card > .profile-cart-item:not(.profile-cart-item--compact) {
  min-height: 0;
  margin: 0;
  padding: 20px 0;
  align-items: center;
  border: 0;
  border-top: 1px solid #dfe2de;
  border-radius: 0;
  background: transparent;
}

.cart-card > .order-product {
  grid-template-columns: 148px minmax(0, 1fr) 134px;
  gap: 24px;
}

.cart-card > .order-product > img {
  width: 148px;
  height: 178px;
  padding: 10px;
  border-radius: 12px;
  object-fit: contain;
  background: #f2f4f1;
}

.cart-card > .order-product .order-product-main {
  min-height: 178px;
  padding: 6px 0;
}

.cart-card > .order-product .order-product-main h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.cart-card > .order-product .order-product-main > p:not(.product-audience) {
  margin-bottom: 12px;
  line-height: 1.45;
}

.cart-card > .order-product .order-bonus {
  margin-top: auto;
}

.cart-card > .order-product .order-product-actions,
.cart-card > .profile-cart-item:not(.profile-cart-item--compact)
  .profile-cart-item-actions {
  min-height: 0;
  padding: 6px 0;
  align-self: stretch;
  gap: 12px;
}

.cart-card > .order-product .order-product-actions .remove-item,
.cart-card > .profile-cart-item:not(.profile-cart-item--compact)
  .profile-cart-item-actions
  .remove-item {
  margin-top: auto;
}

.cart-card > .profile-cart-item:not(.profile-cart-item--compact) {
  grid-template-columns: 184px minmax(0, 1fr) 134px;
  gap: 24px;
}

.cart-card > .profile-cart-item:not(.profile-cart-item--compact) > img {
  width: 184px;
  height: 132px;
  border-radius: 12px;
  object-fit: cover;
  background: #f2f4f1;
}

.cart-card > .profile-cart-item:not(.profile-cart-item--compact)
  > div:first-of-type {
  padding: 4px 0;
  align-self: center;
}

.cart-card > .profile-cart-item:not(.profile-cart-item--compact) h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.cart-card > .profile-cart-item:not(.profile-cart-item--compact)
  .profile-cart-item-actions {
  grid-column: 3;
  grid-row: 1;
  align-items: flex-end;
}

@media (max-width: 760px) {
  .cart-card > .order-product,
  .cart-card > .profile-cart-item:not(.profile-cart-item--compact) {
    padding: 16px 0;
    gap: 12px 14px;
    align-items: start;
  }

  .cart-card > .order-product {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .cart-card > .order-product > img {
    width: 82px;
    height: 108px;
    padding: 6px;
    border-radius: 9px;
  }

  .cart-card > .order-product .order-product-main {
    min-height: 108px;
    padding: 2px 0;
  }

  .cart-card > .order-product .order-product-main h2 {
    font-size: 18px;
  }

  .cart-card > .order-product .order-product-main > p:not(.product-audience),
  .cart-card > .order-product .order-bonus {
    display: none;
  }

  .cart-card > .order-product .order-product-actions,
  .cart-card > .profile-cart-item:not(.profile-cart-item--compact)
    .profile-cart-item-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 0;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cart-card > .order-product .order-product-actions .remove-item,
  .cart-card > .profile-cart-item:not(.profile-cart-item--compact)
    .profile-cart-item-actions
    .remove-item {
    margin: 0;
  }

  .cart-card > .profile-cart-item:not(.profile-cart-item--compact) {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .cart-card > .profile-cart-item:not(.profile-cart-item--compact) > img {
    width: 96px;
    height: 72px;
    border-radius: 9px;
  }

  .cart-card > .profile-cart-item:not(.profile-cart-item--compact)
    > div:first-of-type {
    padding: 2px 0;
  }

  .cart-card > .profile-cart-item:not(.profile-cart-item--compact) h3 {
    font-size: 18px;
  }
}

/* Linked cart media and a single-line price/quantity cluster. */
.cart-item-media,
.cart-item-title {
  color: inherit;
  text-decoration: none;
}

.cart-item-media {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #f2f4f1;
  transition:
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.cart-item-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.cart-item-media:hover {
  box-shadow: 0 0 0 2px #28cf2438;
  transform: translateY(-1px);
}

.cart-item-title:hover {
  color: var(--green-dark);
}

.cart-item-media:focus-visible,
.cart-item-title:focus-visible {
  outline: 2px solid var(--green-dark);
  outline-offset: 3px;
}

.order-product > .cart-item-media {
  width: 220px;
  height: 330px;
}

.order-product > .cart-item-media img {
  object-fit: contain;
}

.profile-cart-item > .cart-item-media {
  width: 92px;
  height: 82px;
}

.profile-cart-item > .cart-item-media img {
  object-fit: cover;
}

.checkout-sidebar .order-product > .cart-item-media {
  width: 76px;
  height: 114px;
  border-radius: 8px;
}

.cart-card > .order-product {
  grid-template-columns: 126px minmax(0, 1fr) minmax(252px, 270px);
}

.cart-card > .order-product > .cart-item-media {
  width: 126px;
  height: 178px;
  padding: 0;
}

.cart-card > .profile-cart-item:not(.profile-cart-item--compact) {
  grid-template-columns: 184px minmax(0, 1fr) minmax(252px, 270px);
}

.cart-card
  > .profile-cart-item:not(.profile-cart-item--compact)
  > .cart-item-media {
  width: 184px;
  height: 132px;
}

.cart-card > .order-product .order-product-actions,
.cart-card > .profile-cart-item:not(.profile-cart-item--compact)
  .profile-cart-item-actions {
  padding: 6px 0;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: flex-end;
  column-gap: 12px;
  row-gap: 10px;
}

.cart-card > .order-product .order-product-actions > strong,
.cart-card > .profile-cart-item:not(.profile-cart-item--compact)
  .profile-cart-item-actions
  > strong {
  flex: 0 0 auto;
  font-size: 22px;
}

.cart-card > .order-product .order-product-actions .cart-quantity,
.cart-card > .profile-cart-item:not(.profile-cart-item--compact)
  .profile-cart-item-actions
  .cart-quantity {
  flex: 0 0 120px;
}

.cart-card > .order-product .order-product-actions .remove-item,
.cart-card > .profile-cart-item:not(.profile-cart-item--compact)
  .profile-cart-item-actions
  .remove-item {
  flex: 0 0 100%;
  margin: auto 0 0;
  justify-content: flex-end;
}

@media (max-width: 760px) {
  .cart-card > .order-product > .cart-item-media,
  .checkout-sidebar .order-product > .cart-item-media {
    width: 82px;
    height: 108px;
    border-radius: 9px;
  }

  .cart-card
    > .profile-cart-item:not(.profile-cart-item--compact)
    > .cart-item-media,
  .checkout-sidebar .profile-cart-item > .cart-item-media {
    width: 96px;
    height: 72px;
    border-radius: 9px;
  }

  .cart-card > .order-product {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .cart-card > .profile-cart-item:not(.profile-cart-item--compact) {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .cart-card > .order-product .order-product-actions,
  .cart-card > .profile-cart-item:not(.profile-cart-item--compact)
    .profile-cart-item-actions {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .cart-card > .order-product .order-product-actions > strong,
  .cart-card > .profile-cart-item:not(.profile-cart-item--compact)
    .profile-cart-item-actions
    > strong {
    font-size: 18px;
  }

  .cart-card > .order-product .order-product-actions .remove-item,
  .cart-card > .profile-cart-item:not(.profile-cart-item--compact)
    .profile-cart-item-actions
    .remove-item {
    flex: 0 0 auto;
    margin: 0 0 0 auto;
  }
}

/* Plant-profile titles start at the top, aligned with price and quantity. */
.cart-card
  > .profile-cart-item:not(.profile-cart-item--compact)
  > div:first-of-type {
  padding-top: 6px;
  align-self: start;
}

/* Checkout profiles reserve a true landscape media column. */
.checkout-sidebar > .profile-cart-item {
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.checkout-sidebar > .profile-cart-item > .cart-item-media {
  width: 96px;
  height: 72px;
  grid-column: 1;
  grid-row: 1;
}

.checkout-sidebar
  > .profile-cart-item
  > div:not(.profile-cart-item-actions) {
  min-width: 0;
  padding: 4px 0;
}

.checkout-sidebar > .profile-cart-item .cart-item-title {
  display: block;
  line-height: 1.2;
  overflow-wrap: break-word;
}

.checkout-sidebar > .profile-cart-item .profile-cart-item-actions {
  grid-column: 3;
  grid-row: 1;
  min-width: max-content;
}

@media (max-width: 440px) {
  .checkout-sidebar > .profile-cart-item {
    grid-template-columns: 82px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .checkout-sidebar > .profile-cart-item > .cart-item-media {
    width: 82px;
    height: 62px;
  }
}

/* Cart navigation actions reuse the site's lifted CTA interaction. */
.checkout-link,
.continue-shopping {
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.checkout-link svg,
.continue-shopping svg {
  transition: transform 0.18s ease;
}

.checkout-link:hover {
  border-color: #42d832;
  background: #42d832;
  box-shadow: 0 10px 24px #28cf2429;
  transform: translateY(-2px);
}

.checkout-link:hover svg {
  transform: translateX(3px);
}

.continue-shopping:hover {
  border-color: var(--green);
  background: #f4fff2;
  color: var(--green-dark);
  box-shadow: 0 8px 20px #1f7f1a17;
  transform: translateY(-2px);
}

.continue-shopping:hover svg {
  transform: translateX(-3px);
}

.checkout-link:active,
.continue-shopping:active {
  box-shadow: none;
  transform: translateY(0) scale(0.99);
}

.checkout-link:focus-visible,
.continue-shopping:focus-visible {
  outline: 2px solid var(--green-dark);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .checkout-link,
  .continue-shopping,
  .checkout-link svg,
  .continue-shopping svg {
    transition: none;
  }

  .checkout-link:hover,
  .continue-shopping:hover,
  .checkout-link:hover svg,
  .continue-shopping:hover svg {
    transform: none;
  }
}

/* Product-page contrast refinements. */
.product-page .gallery-arrow:hover {
  color: #fff;
}

.product-page .buy-badge,
.product-page .product-bonus-icon {
  color: #fff;
}

.product-page .product-bonus {
  background: #fff;
  box-shadow: none;
}

/* Prevent off-screen entrance transforms from creating a horizontal scrollbar. */
html.combainer-motion-active,
html.combainer-motion-active body {
  overflow-x: clip;
}

/* Profile-only checkout: payment handoff without delivery controls. */
.digital-checkout-page {
  padding-top: 42px;
  padding-bottom: 52px;
}

.digital-checkout-card {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(25, 35, 25, 0.08);
}

.digital-checkout-summary,
.digital-payment-panel {
  padding: 52px 48px;
}

.digital-checkout-summary {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.digital-checkout-summary h1 {
  margin: 12px 0 34px;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.05;
}

.digital-order-lines {
  margin: 0;
}

.digital-order-lines > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.digital-order-lines dt,
.digital-order-lines dd {
  margin: 0;
}

.digital-order-lines dd,
.digital-goods-total {
  font-weight: 700;
}

.digital-grand-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
  padding: 52px 0 28px;
  font-size: 21px;
}

.digital-grand-total b {
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1;
}

.digital-payment-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 20px;
  border-radius: 14px;
  background: #f7faf6;
}

.digital-payment-benefits > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.digital-payment-benefits svg {
  width: 23px;
  min-width: 23px;
  color: var(--green-dark);
}

.digital-payment-benefits span,
.digital-payment-benefits strong {
  display: block;
}

.digital-payment-benefits strong {
  margin-bottom: 3px;
  color: var(--text);
  font-size: 12px;
}

.digital-payment-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, #fff 0%, #fbfef9 100%);
}

.digital-payment-visual {
  display: block;
  width: min(100%, 440px);
  max-height: 260px;
  margin: -22px auto 18px;
  object-fit: contain;
}

.digital-payment-panel h2 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.2;
}

.digital-payment-methods {
  display: grid;
  gap: 10px;
}

.digital-payment-methods > div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 12px 18px;
  border: 1px solid #d7ddd4;
  border-radius: 12px;
  background: #fff;
  cursor: default;
  user-select: none;
}

.digital-payment-methods svg,
.digital-payment-methods img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  color: var(--green-dark);
}

.digital-payment-methods span,
.digital-payment-methods strong,
.digital-payment-methods small {
  display: block;
}

.digital-payment-methods strong {
  font-size: 15px;
}

.digital-payment-methods small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.digital-pay-button {
  width: 100%;
  min-height: 52px;
  margin-top: 16px;
  border: 0;
  border-radius: 11px;
  background: var(--green);
  color: #071307;
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.digital-pay-button:hover {
  background: #42d832;
  box-shadow: 0 10px 24px rgba(40, 207, 36, 0.2);
  transform: translateY(-1px);
}

.digital-payment-consent {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.digital-payment-consent a {
  color: var(--green-dark);
}

@media (max-width: 980px) {
  .digital-checkout-card {
    grid-template-columns: 1fr;
  }

  .digital-checkout-summary {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .digital-grand-total {
    margin-top: 24px;
  }
}

@media (max-width: 760px) {
  .digital-checkout-page {
    padding-top: 18px;
    padding-bottom: 32px;
  }

  .digital-checkout-card {
    border-radius: 14px;
  }

  .digital-checkout-summary,
  .digital-payment-panel {
    padding: 28px 20px;
  }

  .digital-checkout-summary h1 {
    margin-bottom: 22px;
  }

  .digital-grand-total {
    padding: 32px 0 22px;
  }

  .digital-payment-benefits {
    grid-template-columns: 1fr;
  }

  .digital-payment-visual {
    max-height: 210px;
    margin-top: -8px;
  }
}

/* Mobile device cards keep the icon and label on one clear baseline. */
@media (max-width: 760px) {
  .home-page .device-tab-panel .device-grid article {
    min-height: 76px;
    padding: 14px 12px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 11px;
  }

  .home-page .device-tab-panel .device-grid article > svg {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
  }

  .home-page .device-tab-panel .device-grid article > span {
    min-width: 0;
    line-height: 1.25;
  }
}

/* Economic-benefit cards follow the same compact mobile icon/text alignment. */
@media (max-width: 760px) {
  .home-page .advantage-grid--economic .advantage-card {
    min-height: 0;
    padding: 18px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }

  .home-page .advantage-grid--economic .advantage-card > span {
    flex: 0 0 48px;
  }

  .home-page .advantage-grid--economic .advantage-card > div {
    min-width: 0;
  }

  .home-page .advantage-grid--economic .advantage-card h3 {
    max-width: none;
  }
}
