:root {
  --bg: #f6f7f4;
  --text: #161817;
  --muted: #66706a;
  --line: #d9ded8;
  --surface: #ffffff;
  --accent: #2f6b4f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  padding-bottom: 70px;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

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

.page {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--bg);
  overflow: hidden;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.promo-bar {
  background: #f4f1e9;
  color: var(--text);
}

.promo-bar__headline-band {
  background: #f36b2f;
  color: #ffffff;
  text-align: center;
}

.promo-bar__headline {
  margin: 0;
  padding: 11px 0;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.12;
}

.promo-bar__top {
  background: #257144;
  color: #ffffff;
  text-align: center;
}

.hero__timer-band {
  background: #257144;
  color: #ffffff;
}

.promo-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 0 12px;
}

.promo-timer__label {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.promo-timer__label em {
  font-style: italic;
  color: #ffb23a;
}

.promo-timer__items {
  display: flex;
  gap: 6px;
}

.promo-timer__item {
  display: grid;
  place-items: center;
  min-width: 38px;
  padding: 5px 6px 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.promo-timer__item strong {
  font-size: 20px;
  line-height: 1;
}

.promo-timer__item small {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.promo-bar__image-wrap {
  width: 100%;
  margin: 0 auto;
  background: #e7eadb;
}

.promo-bar__image {
  width: 100%;
  height: auto;
}

.promo-trust {
  display: flex;
  gap: 8px;
  padding: 12px 0 16px;
}

.promo-trust span {
  flex: 1 1 0;
  min-height: 36px;
  padding: 9px 12px;
  border: 1px solid #e2e5dc;
  border-radius: 999px;
  background: #ffffff;
  color: #0f5130;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 4px 14px rgba(24, 46, 33, 0.06);
}

main > section {
  border-bottom: 1px solid var(--line);
}

.hero {
  background: #f4f1e9;
}

.order-box {
  margin: 0 -16px;
  padding: 28px 16px 32px;
  background: #287d4a;
  color: #ffffff;
}

.order-box__head {
  text-align: center;
}

.order-box__head h2 {
  margin: 0 0 9px;
  font-size: 27px;
  line-height: 1.1;
}

.order-box__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.35;
}

.order-box__head strong {
  color: #ffbd35;
}

.order-box__stock {
  margin-top: 15px;
  padding: 11px 12px;
  border-radius: 9px;
  background: #1f6a3c;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.order-box__stock b {
  color: #ffbd35;
}

.order-card {
  margin-top: 20px;
  padding: 14px;
  border-radius: 18px;
  background: #f7f2e8;
  color: var(--text);
  box-shadow: 0 14px 32px rgba(20, 54, 33, 0.18);
}

.buy-mode-note {
  display: flex;
  justify-content: flex-end;
  min-height: 28px;
  padding-right: 14px;
  color: #f37531;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.buy-mode-note span {
  display: inline-block;
  padding: 7px 15px 6px;
  border: 2px solid #f37531;
  border-radius: 999px;
  background: #fff7ef;
}

.buy-mode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.buy-mode__option {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 9px 8px;
  border: 1px solid #ded6c7;
  border-radius: 13px;
  background: #ffffff;
  color: #45524b;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.buy-mode__option input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.buy-mode__option::before {
  content: "○";
  margin-right: 5px;
  color: #7b877f;
  font-size: 15px;
}

.buy-mode__option.is-active {
  border-color: #24915a;
  background: #eaf6ef;
  color: #0c6437;
}

.buy-mode__option.is-active::before {
  content: "●";
  color: #24915a;
}

.order-products {
  display: grid;
  gap: 10px;
}

.product-card {
  position: relative;
  padding: 13px 12px 12px;
  border: 1px solid #dfd8c9;
  border-radius: 12px;
  background: #ffffff;
}

.product-card.is-selected {
  border-color: #24915a;
  background: #f2fbf5;
  box-shadow: inset 0 0 0 1px #24915a;
}

.product-card__main {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 9px;
  align-items: start;
}

.product-card__main input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.product-card__radio {
  width: 22px;
  height: 22px;
  border: 2px solid #dfd8c9;
  border-radius: 50%;
  background: #ffffff;
}

.product-card.is-selected .product-card__radio {
  border: 6px solid #24915a;
}

.product-card__text strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}

.product-card__text small {
  display: block;
  margin-top: 3px;
  color: #657169;
  font-size: 12px;
  line-height: 1.25;
}

.product-card__bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: end;
  margin-top: 14px;
}

.qty-control {
  display: grid;
  grid-template-columns: 38px 54px 38px;
  gap: 7px;
  align-items: center;
}

.qty-control button,
.qty-control span {
  display: grid;
  place-items: center;
  height: 38px;
  border-radius: 10px;
  font-weight: 900;
}

.qty-control button {
  border: 0;
  background: #eef4ef;
  color: #1f7b49;
  font-size: 20px;
}

.qty-control span {
  border: 1px solid #e0e8df;
  background: #ffffff;
  color: #0e5a36;
  font-size: 16px;
}

.product-card__prices {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: end;
  align-items: end;
  gap: 4px 7px;
  text-align: right;
}

.product-card__prices del {
  grid-column: 1 / -1;
  color: #a9b1aa;
  font-size: 13px;
}

.product-card__prices small {
  color: #118039;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-card__prices strong {
  color: #118039;
  font-size: 22px;
  line-height: 1;
}

.product-card.is-promo-mode .product-card__prices strong,
.order-total strong.is-promo-price {
  color: #f37531;
}

.product-card__prices span {
  align-self: center;
  padding: 4px 7px;
  border-radius: 6px;
  background: #f37531;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 15px;
  border: 1px solid #dfd8c9;
  border-radius: 12px;
  background: #ffffff;
}

.order-total span {
  color: #536158;
  font-size: 14px;
  line-height: 1.3;
}

.order-total div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.order-total del {
  color: #a9b1aa;
  font-size: 14px;
}

.order-total strong {
  color: #118039;
  font-size: 24px;
  line-height: 1;
}

.order-fields {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #dfd8c9;
}

.order-fields label {
  display: grid;
  gap: 8px;
}

.order-fields span {
  color: #536158;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.order-fields input {
  width: 100%;
  height: 60px;
  padding: 0 16px;
  border: 1px solid #dfd8c9;
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  font-size: 18px;
  outline: none;
}

.order-fields input:focus {
  border-color: #24915a;
  box-shadow: 0 0 0 3px rgba(36, 145, 90, 0.14);
}

.order-fields input::placeholder {
  color: #9aa59e;
}

.order-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 17px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(180deg, #fa813c, #e66326);
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(221, 88, 31, 0.24);
}

.order-submit:disabled {
  background: #e6e9ef;
  color: #9aa3b2;
  box-shadow: none;
}

.order-submit-note {
  margin: 14px 0 0;
  color: #536158;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.order-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.order-form-status {
  min-height: 20px;
  margin-top: 10px;
  color: #0d5b35;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.reviews,
.order-cta {
  min-height: 220px;
  padding: 32px 0;
}

.faq {
  padding: 38px 0 40px;
  background: #ffffff;
}

.faq-block h2 {
  margin: 0 0 26px;
  color: #0d4f2e;
  font-size: 32px;
  line-height: 1.12;
  text-align: center;
}

.faq-block h2 span {
  color: #f37531;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.delivery-card {
  display: grid;
  place-items: center;
  min-height: 164px;
  padding: 24px 14px 20px;
  border: 1px solid #dfece4;
  border-radius: 15px;
  background: #f0f8f3;
  text-align: center;
}

.delivery-card span {
  font-size: 34px;
  line-height: 1;
}

.delivery-card h3 {
  margin: 18px 0 7px;
  color: #07552d;
  font-size: 18px;
  line-height: 1.18;
}

.delivery-card p {
  margin: 0;
  color: #4f5f56;
  font-size: 14px;
  line-height: 1.3;
}

.order-steps {
  margin-top: 42px;
}

.order-steps h2 {
  margin-bottom: 26px;
}

.order-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: start;
  padding: 18px 0;
}

.order-step + .order-step {
  border-top: 1px solid #dfe7de;
}

.order-step > span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #267a49;
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.order-step h3 {
  margin: 2px 0 8px;
  color: #07552d;
  font-size: 22px;
  line-height: 1.15;
}

.order-step p {
  margin: 0;
  color: #4f5f56;
  font-size: 18px;
  line-height: 1.45;
}

.reviews {
  padding: 38px 0 36px;
  background: #ffffff;
}

.reviews-block h2 {
  margin: 0 0 28px;
  color: #0d4f2e;
  font-size: 35px;
  line-height: 1.1;
  text-align: center;
}

.reviews-block h2 span {
  color: #f37531;
}

.reviews-summary {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  align-items: center;
  padding: 26px 24px;
  border: 1px solid #dfece4;
  border-radius: 17px;
  background: #f0f8f3;
}

.reviews-summary__score strong {
  display: block;
  color: #0d6a3d;
  font-size: 58px;
  line-height: 0.95;
}

.reviews-summary__score span,
.review-card__stars {
  color: #f7a51b;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
}

.reviews-summary p {
  margin: 0;
  color: #4f5f56;
  font-size: 18px;
  line-height: 1.35;
}

.reviews-summary p strong {
  color: #07552d;
}

.review-card {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid #dfece4;
  border-radius: 17px;
  background: #ffffff;
}

.review-card__author {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: center;
}

.review-card__author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card__author h3 {
  margin: 0 0 4px;
  color: #07552d;
  font-size: 24px;
  line-height: 1.1;
}

.review-card__author p {
  margin: 0 0 8px;
  color: #4f5f56;
  font-size: 17px;
  line-height: 1.2;
}

.review-card__author strong {
  color: #0d7b43;
  font-size: 16px;
}

.review-card__stars {
  margin-top: 24px;
}

.review-card__photo {
  width: 100%;
  max-width: 356px;
  margin-top: 22px;
  border-radius: 14px;
  object-fit: cover;
}

.review-card__text {
  margin: 20px 0 0;
  color: #24322a;
  font-size: 19px;
  line-height: 1.55;
}

.benefits {
  padding: 0 0 36px;
  background: #ffffff;
}

.benefits-problem {
  margin: 0 -16px;
  padding: 34px 20px 30px;
  background: #1f633b;
  color: #ffffff;
}

.benefits-problem h2 {
  margin: 0 0 28px;
  font-size: 29px;
  line-height: 1.14;
  text-align: center;
}

.benefits-problem h2 span {
  color: #ffb23a;
}

.benefits-problem ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits-problem li {
  position: relative;
  padding-left: 36px;
  font-size: 18px;
  line-height: 1.3;
}

.benefits-problem li::before {
  content: "×";
  position: absolute;
  top: -2px;
  left: 0;
  color: #ff7b3a;
  font-size: 32px;
  line-height: 1;
}

.benefits-problem p {
  margin: 32px 0 0;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.convenience-block {
  padding-top: 32px;
}

.convenience-block h2 {
  margin: 0 0 18px;
  color: #0d4f2e;
  font-size: 30px;
  line-height: 1.12;
  text-align: center;
}

.convenience-block h2 span {
  color: #f37531;
}

.convenience-list {
  display: grid;
  gap: 14px;
}

.convenience-list img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(17, 61, 35, 0.1);
}

.support-benefits {
  padding-top: 34px;
}

.support-benefits h2 {
  margin: 0 0 22px;
  color: #0d4f2e;
  font-size: 30px;
  line-height: 1.12;
  text-align: center;
}

.support-benefits h2 span {
  color: #f37531;
}

.support-benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.support-benefit-card {
  min-height: 168px;
  padding: 24px 16px 18px;
  border: 1px solid #dfece4;
  border-radius: 14px;
  background: #ffffff;
}

.support-benefit-card span {
  display: block;
  margin-bottom: 22px;
  font-size: 30px;
  line-height: 1;
}

.support-benefit-card h3 {
  margin: 0 0 6px;
  color: #07552d;
  font-size: 18px;
  line-height: 1.15;
}

.support-benefit-card p {
  margin: 0;
  color: #4f5f56;
  font-size: 14px;
  line-height: 1.35;
}

.comparison-block {
  padding-top: 36px;
}

.comparison-block h2 {
  margin: 0 0 20px;
  color: #0d4f2e;
  font-size: 29px;
  line-height: 1.12;
  text-align: center;
}

.comparison-block h2 span {
  color: #f37531;
}

.comparison-table {
  overflow: hidden;
  border-top: 1px solid #ddd7ca;
  border-bottom: 1px solid #ddd7ca;
  background: #ffffff;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 1fr 1fr;
  min-height: 54px;
  border-top: 1px solid #ddd7ca;
}

.comparison-row--head {
  min-height: 52px;
  border-top: 0;
}

.comparison-row > div {
  display: grid;
  align-items: center;
  padding: 10px 7px;
  color: #d73525;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
}

.comparison-row > div:first-child {
  color: #102319;
  font-weight: 800;
  text-align: left;
}

.comparison-row--head > div {
  color: #536158;
  font-size: 13px;
  font-weight: 900;
}

.comparison-row .is-best {
  background: #eef7f1;
  color: #07552d;
  font-weight: 900;
}

.comparison-row--head .is-best {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.comparison-row:last-child .is-best {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.sizes {
  padding: 32px 0 36px;
  background: #f4f1e9;
}

.sizes-heading {
  padding: 23px 14px 22px;
  border-radius: 15px;
  background: #1f633b;
  text-align: center;
}

.sizes-heading h2 {
  margin: 0;
  color: #ffb23a;
  font-size: 32px;
  line-height: 1.08;
}

.sizes-heading p {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.sizes-block__image {
  margin-top: 18px;
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 61, 35, 0.08);
}

.sizes-info {
  margin-top: 18px;
  padding: 2px 0;
  background: #ffffff;
  border-radius: 14px;
}

.sizes-info__item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: start;
  padding: 15px 14px;
}

.sizes-info__item + .sizes-info__item {
  border-top: 1px solid #e0e8df;
}

.sizes-info__item span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #5bb36b;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.sizes-info__item p {
  margin: 0;
  color: #173126;
  font-size: 16px;
  line-height: 1.38;
}

.sizes-info__item strong {
  color: #07552d;
}

.usage-block {
  margin-top: 32px;
}

.usage-block h2 {
  margin: 0;
  color: #0d4f2e;
  font-size: 32px;
  line-height: 1.08;
  text-align: center;
  margin-bottom: 22px;
}

.usage-block h2 span {
  color: #f37531;
}

.usage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.usage-card {
  overflow: hidden;
  border: 1px solid #dfece4;
  border-radius: 14px;
  background: #ffffff;
}

.usage-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
}

.usage-card div {
  padding: 12px 12px 16px;
}

.usage-card h3 {
  margin: 0 0 5px;
  color: #07552d;
  font-size: 18px;
  line-height: 1.15;
}

.usage-card p {
  margin: 0;
  color: #4f5f56;
  font-size: 14px;
  line-height: 1.3;
}

.advantages {
  padding: 28px 0 34px;
  background: #ffffff;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.advantage-tile {
  display: grid;
  place-items: center;
  min-height: 148px;
  padding: 18px 12px;
  border: 1px solid #dfece4;
  border-radius: 15px;
  background: #f0f8f3;
  color: #07552d;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(16, 101, 55, 0.03);
}

.advantage-tile span {
  font-size: 35px;
  line-height: 1;
}

.advantage-tile strong {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.18;
}

.specs-block {
  margin-top: 30px;
}

.specs-block h2 {
  margin: 0 0 18px;
  color: #f37531;
  font-size: 31px;
  line-height: 1.1;
  text-align: center;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.spec-card {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 15px 10px;
  border: 1px solid #dfece4;
  border-radius: 12px;
  background: #f0f8f3;
  text-align: center;
}

.spec-card--wide {
  grid-column: 1 / -1;
}

.spec-card strong {
  color: #07552d;
  font-size: 20px;
  line-height: 1.15;
}

.spec-card span {
  margin-top: 7px;
  color: #4f5f56;
  font-size: 14px;
  line-height: 1.25;
}

.video-review {
  margin-top: 28px;
}

.video-review h2,
.magazine-flowerbed h2 {
  margin: 0 0 14px;
  color: #0d4f2e;
  font-size: 25px;
  line-height: 1.12;
  text-align: center;
}

.video-review__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: #0b1d13;
  box-shadow: 0 10px 24px rgba(11, 40, 24, 0.15);
}

.video-review__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.magazine-flowerbed {
  margin-top: 30px;
}

.magazine-flowerbed img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(17, 61, 35, 0.14);
}

.magazine-flowerbed p {
  margin: 15px 0 0;
  color: #4f5f56;
  font-size: 16px;
  line-height: 1.48;
}

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

.order-cta {
  padding: 0;
  background: #287d4a;
}

.order-box--bottom {
  margin-top: 0;
  padding-top: 30px;
}

.sticky-order-bar {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 10px;
  align-items: center;
  width: min(100%, 430px);
  padding: 8px 12px;
  background: #ffffff;
  border-top: 1px solid #ddd7ca;
  box-shadow: 0 -8px 22px rgba(20, 54, 33, 0.13);
  transform: translateX(-50%);
}

.sticky-order-bar__price {
  display: grid;
  gap: 2px;
}

.sticky-order-bar__price del {
  color: #6c766f;
  font-size: 12px;
  line-height: 1;
}

.sticky-order-bar__price strong {
  color: #0d5b35;
  font-size: 20px;
  line-height: 1;
}

.sticky-order-bar a {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 12px;
  background: #ed6b2d;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.lead-popup.is-open {
  display: flex;
}

.lead-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 31, 21, 0.58);
}

.lead-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  padding: 26px 18px 20px;
  border-radius: 18px;
  background: #f7f2e8;
  color: var(--text);
  box-shadow: 0 20px 48px rgba(9, 35, 21, 0.28);
}

.lead-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #0d4f2e;
  font-size: 24px;
  line-height: 1;
}

.lead-popup__eyebrow {
  width: fit-content;
  margin: 0 auto 12px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #fff1e7;
  color: #f37531;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.lead-popup h2 {
  margin: 0;
  color: #0d4f2e;
  font-size: 26px;
  line-height: 1.12;
  text-align: center;
}

.lead-popup__text {
  margin: 12px 0 18px;
  color: #536158;
  font-size: 15px;
  line-height: 1.38;
  text-align: center;
}

.lead-popup__form {
  display: grid;
  gap: 12px;
}

.lead-popup__form label {
  display: grid;
  gap: 7px;
}

.lead-popup__form label span {
  color: #536158;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lead-popup__form input {
  width: 100%;
  height: 54px;
  padding: 0 14px;
  border: 1px solid #dfd8c9;
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  font-size: 17px;
  outline: none;
}

.lead-popup__form button {
  min-height: 54px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(180deg, #fa813c, #e66326);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.lead-popup__form button:disabled {
  background: #e6e9ef;
  color: #9aa3b2;
}

.lead-popup__status {
  min-height: 19px;
  color: #0d5b35;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

@media (min-width: 768px) {
  .container {
    padding: 0 18px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  body {
    padding-bottom: 62px;
  }

  .sticky-order-bar {
    grid-template-columns: 102px 1fr;
    gap: 8px;
    padding: 7px 10px;
  }

  .sticky-order-bar__price strong {
    font-size: 18px;
  }

  .sticky-order-bar a {
    min-height: 44px;
    font-size: 16px;
  }

  .benefits-problem {
    margin-right: -12px;
    margin-left: -12px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .benefits-problem h2 {
    font-size: 26px;
  }

  .benefits-problem li {
    font-size: 16px;
  }

  .support-benefits__grid {
    gap: 10px;
  }

  .support-benefit-card {
    min-height: 150px;
    padding: 18px 12px 15px;
  }

  .support-benefit-card span {
    margin-bottom: 16px;
    font-size: 26px;
  }

  .support-benefit-card h3 {
    font-size: 16px;
  }

  .support-benefit-card p {
    font-size: 13px;
  }

  .comparison-row {
    grid-template-columns: 1.22fr 0.68fr 0.9fr 0.9fr;
  }

  .comparison-row > div {
    padding-right: 4px;
    padding-left: 4px;
    font-size: 11px;
  }

  .comparison-row > div:first-child {
    font-size: 12px;
  }

  .reviews-summary {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .reviews-summary__score strong {
    font-size: 50px;
  }

  .reviews-summary p,
  .review-card__text {
    font-size: 16px;
  }

  .review-card {
    padding: 18px;
  }

  .review-card__author h3 {
    font-size: 21px;
  }

  .delivery-grid {
    gap: 10px;
  }

  .delivery-card {
    min-height: 146px;
    padding: 18px 10px 16px;
  }

  .delivery-card h3 {
    font-size: 16px;
  }

  .delivery-card p {
    font-size: 13px;
  }

  .order-step {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .order-step > span {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .order-step h3 {
    font-size: 19px;
  }

  .order-step p {
    font-size: 16px;
  }

  .promo-bar__headline {
    font-size: 21px;
  }

  .promo-timer__label {
    font-size: 16px;
  }

  .promo-timer__item {
    min-width: 36px;
    padding-right: 5px;
    padding-left: 5px;
  }

  .promo-timer__item strong {
    font-size: 18px;
  }

  .order-box {
    margin-right: -12px;
    margin-left: -12px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .order-card {
    padding: 12px;
  }

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

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

  .product-card__prices {
    justify-content: start;
    text-align: left;
  }

  .sizes-heading h2,
  .usage-block h2 {
    font-size: 28px;
  }

  .usage-card div {
    padding: 10px 10px 13px;
  }

  .usage-card img {
    height: 162px;
  }

  .usage-card h3 {
    font-size: 16px;
  }

  .usage-card p {
    font-size: 13px;
  }

  .advantages-grid {
    gap: 10px;
  }

  .advantage-tile {
    min-height: 132px;
    padding: 14px 9px;
  }

  .advantage-tile strong {
    font-size: 14px;
  }

  .specs-grid {
    gap: 10px;
  }

  .spec-card strong {
    font-size: 17px;
  }

  .spec-card span {
    font-size: 13px;
  }
}
