/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Sora:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}


:root {
  --colorTextInvert: #ffffff;
  --colorTextPrimary: #15171b;
  --colorTextMuted: #888888;
  --colorGraphite950: #0e1013;
  --colorGreen500: #00b67a;
  --colorGreen600: #00a26c;
  --colorYellow500: #ffcc00;
  --colorRed700: #bf1c1a;
  --colorRed400: #ff5a4d;
  --colorSage50: #f4f7f2;
  --colorSage100: #e7ece3;
  --colorSage500: #5c7355;
  --colorSage600: #4c6245;
  --colorSage700: #3f5238;
  --colorSage800: #2c3a26;
  --colorGreenStrong900: #142019;
  --colorBgPage: #ffffff;
  --colorBgCard: #f6f6f6;
  --colorBgSurfaceAlt: #e7e7e7;
  --colorSlate50: #f7f8f9;
  --colorSlate200: #e6e8eb;
  --colorNeutral800: #454545;
  --fontPrimary: "Open Sans", sans-serif;
  --fontSecondary: "Sora", sans-serif;
  --containerWidth: 1200px;
  --sectionPaddingX: 32px;
  --radiusXs: 8px;
  --radiusSm: 12px;
  --radiusMd: 16px;
  --radiusLg: 24px;
  --radiusXl: 32px;
}

@media (max-width: 768px) {
  :root {
    --sectionPaddingX: 16px;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--fontPrimary);
  color: var(--colorTextPrimary);
  background-color: var(--colorBgPage);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--fontSecondary);
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

p {
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

a,
button {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  transition: all 0.2s ease-in-out;
}

ul {
  padding: 0;
}

img {
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  height: auto;
}

a:hover,
button:hover {
  filter: brightness(90%);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111111;
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .cookie-banner-content {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-banner .cookie-banner-text {
  flex: 1;
  line-height: 20px;
}
.cookie-banner .cookie-banner-text p {
  margin: 0;
  color: white;
  font-size: 12px;
  line-height: 1.5;
}
.cookie-banner .cookie-banner-text a {
  color: #85ccb1;
  text-decoration: underline;
}
.cookie-banner .cookie-banner-text a:hover {
  color: #85a9b3;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-buttons {
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.cookie-btn-accept {
  background-color: #19ae30;
  color: white;
}
.cookie-btn-accept:hover {
  background-color: #158026;
}
.cookie-btn-essential {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-essential:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.cookie-btn-settings {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.cookie-modal-overlay.show {
  opacity: 1;
}

.cookie-modal {
  background-color: white;
  color: #333;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-family: "Roboto", sans-serif;
}
.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h2 {
  margin: 0;
  font-size: 20px;
  color: #2e3641;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.cookie-modal-close:hover {
  color: #333;
}
.cookie-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}
.cookie-modal-body p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}
.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.cookie-category-title {
  font-weight: 700;
  font-size: 16px;
  color: #2e3641;
}
.cookie-category-desc {
  font-size: 13px;
  line-height: 18px;
  color: #777;
  margin: 0;
}

/* Switch Styles */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #19ae30;
}
.cookie-switch input:focus + .cookie-slider {
  box-shadow: 0 0 1px #19ae30;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.clause {
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.clause p {
  font-size: 14px;
}
.clause a {
  color: #7f919e;
  text-decoration: underline;
}
.clause a:hover {
  color: #7f919e;
}

.terms {
  margin-top: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.terms p {
  font-size: 14px;
}
.terms label {
  cursor: pointer;
}
.terms input[type=checkbox] {
  margin-top: 2px;
  margin-left: 0px;
  cursor: pointer;
  flex-shrink: 0;
}
.terms a {
  color: #7f919e;
  text-decoration: underline;
}

.terms-error {
  color: #e70000;
  font-size: 14px;
  margin: 8px 0;
  display: none;
}
.terms-error.show {
  display: block;
}

.disclaimer {
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.disclaimer p {
  font-size: 14px;
}

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

.flex {
  display: flex;
  flex-direction: column;
}

.flex-center {
  align-items: center;
}

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

.text-red {
  color: #ff0000;
}

.text-green {
  color: #0C9E11;
}

.text-bold {
  font-weight: 700;
}

.header {
  width: 100%;
}

.shippingBar {
  width: 100%;
  background-color: var(--colorGraphite950);
  padding: 24px var(--sectionPaddingX);
}
.shippingBar .container {
  padding: 0;
}
.shippingBar__text {
  margin: 0;
  color: var(--colorTextInvert);
  text-align: center;
  font-size: clamp(0.875rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.5;
}
.shippingBar__highlight {
  color: var(--colorYellow500);
  font-weight: 700;
}
@media (max-width: 768px) {
  .shippingBar {
    padding: 16px;
  }
}

.main {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.hero {
  position: relative;
  width: 100%;
  padding: 5vw 0 60vh;
  overflow: hidden;
  background-color: #2f3515;
  background-image: url("../img/hero/hero.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media (max-width: 1700px) {
  .hero {
    padding: 5vw 0 40vh;
  }
}
.hero__container {
  position: relative;
  z-index: 1;
}
.hero__mobileImg {
  display: none;
  width: 100%;
  max-width: none;
  height: auto;
}
.hero__info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  min-width: 250px;
}
.hero__radial {
  position: absolute;
  left: -313px;
  top: -73px;
  width: 1155px;
  max-width: none;
  height: 761px;
  pointer-events: none;
  z-index: 0;
}
.hero__titleWrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.hero__title {
  font-family: var(--fontSecondary);
  font-weight: 700;
  font-size: 3.375rem;
  line-height: 1.4;
  color: var(--colorTextInvert);
  text-shadow: 0 0 24px rgba(47, 53, 21, 0.9), 0 0 48px rgba(47, 53, 21, 0.55), 0 4px 12px rgba(0, 0, 0, 0.45);
}
.hero__name {
  font-family: var(--fontSecondary);
  font-weight: 700;
  font-size: 3.375rem;
  line-height: 1.4;
  color: var(--colorTextInvert);
  text-shadow: 0 0 24px rgba(47, 53, 21, 0.9), 0 0 48px rgba(47, 53, 21, 0.55), 0 4px 12px rgba(0, 0, 0, 0.45);
}
.hero__nameRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  row-gap: 0;
}
.hero__nameGroup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 1.4em;
  padding: 0 20px;
  background-color: var(--colorRed700);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radiusXs);
  font-family: var(--fontSecondary);
  font-weight: 700;
  font-size: 3.375rem;
  line-height: 1;
  color: var(--colorTextInvert);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.hero__review {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.hero__reviewText, .hero__reviewCount {
  color: var(--colorTextInvert);
  font-size: 16px;
  line-height: 1.5;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.35);
}
.hero__reviewText strong {
  font-size: 20px;
  font-weight: 700;
}
.hero__stars {
  display: flex;
  align-items: center;
}
.hero__stars img {
  width: 150px;
  height: 30px;
  max-width: 150px;
}
.hero__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin: 0;
  list-style: none;
}
.hero__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  color: var(--colorTextInvert);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.35);
}
.hero__tick {
  width: 24px;
  max-width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}
.hero__priceRow {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding-bottom: 16px;
}
.hero__priceOld {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0 2px;
  color: var(--colorSlate200);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}
.hero__priceStrike {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 3px;
  background-color: var(--colorRed400);
  transform: translateY(-50%) rotate(-7deg);
  pointer-events: none;
}
.hero__price {
  margin: 0;
  color: var(--colorYellow500);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
}
.hero__delivery {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__deliveryIcon {
  width: 30px;
  max-width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.hero__deliveryText {
  color: var(--colorSlate200);
  font-size: clamp(1rem, 2vw, 1.375rem);
  line-height: 1.5;
}
.hero__deliveryText .product-price {
  font-weight: 700;
}
.hero__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 77px;
  padding: 24px 32px;
  border-radius: var(--radiusSm);
  background: linear-gradient(180deg, #f54a3d 0%, #dc2421 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18), inset 0 2px 0 rgba(255, 255, 255, 0.2);
  color: var(--colorTextInvert);
  font-weight: 700;
  line-height: 1.1;
  transition: all 0.2s ease-in-out;
  font-size: 24px;
}
.hero__btn img {
  width: 24px;
  max-width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.hero__btn:hover {
  filter: none;
  background: linear-gradient(180deg, #ff5c4d 0%, #ed2e29 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18), 0 8px 20px 2px rgba(219, 36, 33, 0.45), inset 0 2px 0 rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .hero {
    padding: 0 0 48px;
    background-color: #696b0c;
    background-image: linear-gradient(180deg, rgba(244, 247, 242, 0) 71.163%, #f4f7f2 100%);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 100%;
  }
  .hero__mobileImg {
    display: block;
  }
  .hero__radial {
    display: none;
  }
  .hero__container {
    margin-top: -20px;
  }
  .hero__info {
    max-width: 100%;
    gap: 20px;
    align-items: center;
  }
  .hero__title {
    font-size: 1.625rem;
  }
  .hero__name, .hero__badge {
    font-size: 2.25rem;
  }
  .hero__badge {
    padding: 0 16px;
  }
  .hero__list {
    gap: 8px;
  }
  .hero__item {
    font-size: 1.125rem;
  }
  .hero__titleWrap, .hero__review, .hero__list {
    width: 100%;
  }
  .hero__priceRow {
    align-items: center;
  }
  .hero__btn {
    width: 100%;
    max-width: 269px;
    font-size: 26px;
  }
}

.intro {
  width: 100%;
  padding: clamp(32px, 5vw, 64px) 0;
  background-color: var(--colorSage50);
  text-align: center;
  margin-top: -10vw;
  z-index: 2;
}
@media (max-width: 768px) {
  .intro {
    margin-top: 0;
  }
}
.intro__title {
  margin-bottom: 24px;
  font-family: var(--fontSecondary);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 3.375rem);
  line-height: 1.2;
  color: var(--colorTextPrimary);
}
.intro__accent {
  color: var(--colorRed400);
}
.intro__line {
  display: block;
}
.intro__lead {
  max-width: 1004px;
  margin: 0 auto;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  line-height: 1.5;
  color: var(--colorTextPrimary);
}
.intro__lead strong {
  font-weight: 700;
}

.functions {
  width: 100%;
  padding: 24px 0 64px;
  background-color: var(--colorSage50);
}
.functions__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  text-align: center;
}
.functions__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  color: var(--colorTextPrimary);
}
.functions__divider {
  width: 78px;
  height: 3px;
  background-color: var(--colorRed400);
}
.functions__bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, minmax(200px, 282px));
  gap: 12px;
}
.functions__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  overflow: hidden;
  border-radius: var(--radiusMd);
  background-color: #393937;
  cursor: pointer;
}
.functions__tile--tall {
  grid-row: span 2;
  min-height: 400px;
}
.functions__tile:hover .functions__label::after {
  opacity: 1;
}
.functions__img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.functions__label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 32px 24px 12px;
  background: linear-gradient(180deg, rgba(35, 39, 46, 0) 0%, rgba(35, 39, 46, 0.77) 63%);
}
.functions__label::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 39, 46, 0) 0%, rgba(35, 39, 46, 0.55) 63%);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}
.functions__label > * {
  position: relative;
  z-index: 1;
}
.functions__num {
  color: var(--colorRed400);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.5;
  white-space: nowrap;
}
.functions__sep {
  align-self: stretch;
  width: 1px;
  background-color: var(--colorRed400);
}
.functions__name {
  color: var(--colorTextInvert);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .functions__bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }
  .functions__tile--tall {
    grid-row: span 1;
    min-height: 280px;
  }
}
@media (max-width: 768px) {
  .functions {
    padding: 24px 0 40px;
  }
  .functions__header {
    margin-bottom: 24px;
  }
  .functions__bento {
    grid-template-columns: 1fr;
  }
  .functions__tile, .functions__tile--tall {
    min-height: 240px;
  }
}

.featureDark {
  position: relative;
  width: 100%;
  padding: 64px 0;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #4c6245 0%, #3f5238 100%);
}
.featureDark__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.featureDark__texture {
  width: 100%;
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.15;
  mix-blend-mode: hard-light;
}
.featureDark .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.featureDark__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
}
.featureDark__text {
  flex: 1 1 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 520px;
  padding-right: clamp(0px, 4vw, 80px);
}
.featureDark__text--right {
  padding-right: 0;
  padding-left: clamp(0px, 4vw, 80px);
}
.featureDark__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 385px;
}
.featureDark__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  color: var(--colorTextInvert);
}
.featureDark__divider {
  width: 78px;
  height: 3px;
  background-color: var(--colorRed400);
}
.featureDark__desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.5;
  color: var(--colorTextInvert);
}
.featureDark__desc strong {
  font-weight: 700;
}
.featureDark__desc em {
  font-style: italic;
}
.featureDark__media {
  flex: 1 1 80px;
  overflow: hidden;
  border-radius: var(--radiusXl);
  border: 2px solid rgba(255, 255, 255, 0.7);
  background-color: var(--colorBgSurfaceAlt);
  aspect-ratio: 576/380;
}
.featureDark__media img,
.featureDark__media video {
  width: 100%;
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.featureDark__video {
  width: 100%;
  min-height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .featureDark {
    padding: 40px 0;
  }
  .featureDark__row {
    flex-direction: column;
  }
  .featureDark__row--reverse {
    flex-direction: column-reverse;
  }
  .featureDark__text, .featureDark__text--right {
    max-width: 100%;
    padding: 0;
  }
  .featureDark__media {
    width: 100%;
    min-height: 240px;
  }
  .featureDark__video {
    min-height: 240px;
  }
}

.featureLight {
  width: 100%;
  padding: 64px 0;
  background-color: var(--colorBgPage);
}
.featureLight__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
}
.featureLight__text {
  flex: 1 1 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 520px;
  padding-right: clamp(0px, 4vw, 80px);
}
.featureLight__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 384px;
}
.featureLight__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  color: var(--colorTextPrimary);
}
.featureLight__divider {
  width: 78px;
  height: 3px;
  background-color: var(--colorRed400);
}
.featureLight__desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.5;
  color: var(--colorTextPrimary);
}
.featureLight__media {
  flex: 1 1 80px;
  overflow: hidden;
  border-radius: var(--radiusXl);
  background-color: var(--colorBgSurfaceAlt);
  aspect-ratio: 576/380;
}
.featureLight__media img,
.featureLight__media video {
  width: 100%;
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.featureLight__video {
  width: 100%;
  min-height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .featureLight {
    padding: 40px 0;
  }
  .featureLight__row {
    flex-direction: column;
  }
  .featureLight__text {
    max-width: 100%;
    padding: 0;
  }
  .featureLight__media {
    width: 100%;
    min-height: 240px;
  }
  .featureLight__video {
    min-height: 240px;
  }
}

.specs {
  width: 100%;
  padding: 64px 0;
  background-color: var(--colorGreenStrong900);
}
.specs__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 384px;
  margin-bottom: 24px;
}
.specs__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  color: var(--colorTextInvert);
}
.specs__divider {
  width: 78px;
  height: 3px;
  background-color: var(--colorRed400);
}
.specs__subtitle {
  margin-bottom: 24px;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.5;
  color: var(--colorTextInvert);
}
.specs__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.specs__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  grid-column: span 2;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radiusLg);
  background: radial-gradient(ellipse at 10% 10%, rgba(55, 90, 66, 0.2) 0%, transparent 60%), #18281d;
  transition: 200ms;
}
.specs__card:hover {
  background: radial-gradient(ellipse at 0% 20%, rgba(138, 186, 153, 0.2) 0%, transparent 60%), #18281d;
  border-color: rgba(255, 255, 255, 0.15);
}
.specs__card--row {
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
}
.specs__card--half {
  grid-column: span 3;
}
.specs__icon {
  width: 64px;
  max-width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.specs__value {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--colorTextInvert);
}
.specs__value span {
  color: #aebda7;
}
.specs__unit {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #aebda7;
}
.specs__unit--sm {
  font-size: clamp(1rem, 2vw, 1.375rem);
}
.specs__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.specs__name {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--colorTextInvert);
}
.specs__label {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.5;
  color: #aebda7;
}
@media (max-width: 1024px) {
  .specs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .specs__card, .specs__card--half {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  .specs {
    padding: 40px 0;
  }
  .specs__grid {
    grid-template-columns: 1fr;
  }
}

.kit {
  position: relative;
  width: 100%;
  padding: clamp(48px, 8vw, 120px) 0;
  overflow: hidden;
  background-color: #e6e7e1;
}
.kit__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.kit__bg img {
  width: 100%;
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.kit__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
}
.kit__card {
  flex: 1 1 250px;
  max-width: 462px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 48px 24px;
  background-color: var(--colorBgCard);
  border: 1px solid var(--colorSage100);
  border-radius: var(--radiusXl);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}
.kit__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.kit__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  color: var(--colorTextPrimary);
}
.kit__divider {
  width: 78px;
  height: 3px;
  background-color: var(--colorRed400);
}
.kit__intro {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.5;
  color: var(--colorTextPrimary);
}
.kit__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  list-style: none;
}
.kit__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid #d3ddcd;
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--colorTextPrimary);
}
.kit__item img {
  width: 36px;
  max-width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.kit__item--last,
.kit__item:last-child {
  border-bottom: none;
}
.kit__media {
  flex: 1 1 250px;
  min-width: 250px;
  aspect-ratio: 690/502;
}
.kit__media img {
  display: none;
  width: 100%;
  max-width: 690px;
  height: auto;
}
@media (max-width: 768px) {
  .kit {
    padding-bottom: 0;
  }
  .kit__bg {
    display: none;
  }
  .kit__container {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .kit__card {
    max-width: 100%;
    flex: none;
    width: 100%;
    padding: 32px 24px;
  }
  .kit__media {
    position: relative;
    flex: none;
    width: 100vw;
    max-width: none;
    min-width: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    aspect-ratio: auto;
  }
  .kit__media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 28%;
    background: linear-gradient(to bottom, #e6e7e1 0%, rgba(230, 231, 225, 0) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .kit__media img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
  }
}

.trust {
  width: 100%;
  padding: 32px 0;
  background-color: #e7efe4;
}
.trust__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 996px;
}
@media (max-width: 768px) {
  .trust__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
  }
}

.trustBadge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  padding: 24px 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #fff;
  border-radius: var(--radiusMd);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 9.4px rgba(76, 98, 69, 0.05);
}
.trustBadge__icon {
  width: 75px;
  max-width: 75px;
  height: 72px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.trustBadge__divider {
  width: 39px;
  height: 3px;
  background-color: var(--colorRed400);
  flex-shrink: 0;
}
.trustBadge__text {
  width: 100%;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: var(--colorSage700);
}

.comments {
  width: 100%;
  padding: 64px 0;
  background-color: var(--colorBgPage);
}
.comments__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 32px;
}
.comments__rating {
  font-family: var(--fontSecondary);
  font-size: 32px;
  line-height: 1.2;
  color: var(--colorTextPrimary);
  white-space: nowrap;
}
.comments__ratingLabel {
  font-weight: 400;
}
.comments__ratingValue {
  font-weight: 700;
}
.comments__stars {
  display: flex;
  align-items: center;
}
.comments__stars img {
  width: 150px;
  height: 30px;
  max-width: 150px;
}
.comments__count {
  padding-top: 4px;
  font-family: var(--fontSecondary);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  color: var(--colorTextPrimary);
  white-space: nowrap;
}
.comments__lead {
  margin-bottom: 32px;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  color: var(--colorTextPrimary);
}
.comments__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.comments__column {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 250px;
}
@media (max-width: 1024px) {
  .comments__rating, .comments__count {
    font-size: 24px;
  }
  .comments__lead {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .comments {
    padding: 40px 0;
  }
  .comments__summary {
    margin-bottom: 24px;
  }
  .comments__lead {
    margin-bottom: 24px;
    font-size: 16px;
  }
  .comments__grid {
    flex-direction: column;
  }
  .comments__column {
    min-width: 0;
    width: 100%;
  }
}

.commentsCard {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 16px 16px 0;
  overflow: hidden;
  border: 1px solid var(--colorSlate200);
  border-radius: var(--radiusLg);
  background-color: var(--colorSlate50);
}
.commentsCard__media {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radiusSm);
}
.commentsCard__media img {
  display: block;
  width: 100%;
  max-width: none;
  height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
}
.commentsCard__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px 24px;
}
.commentsCard__top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.commentsCard__authorRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-width: 0;
}
.commentsCard__author {
  min-width: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--colorTextPrimary);
}
.commentsCard__badge {
  max-width: 100%;
  padding: 4px 12px;
  border-radius: 999px;
  background-color: var(--colorGreen600);
  color: var(--colorSage50);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.72px;
  white-space: nowrap;
}
.commentsCard__stars {
  display: flex;
  align-items: center;
}
.commentsCard__stars img {
  width: 80px;
  height: 16px;
  max-width: 80px;
}
.commentsCard__text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--colorNeutral800);
}

.ctaBanner {
  width: 100%;
  padding: 32px 0;
  background-color: var(--colorSage50);
}
.ctaBanner__box {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 996px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border: 3px solid #82967b;
  border-radius: var(--radiusLg);
  background: linear-gradient(93deg, #82967b 14%, #2c3a26 144%);
  box-shadow: 0 0 27px rgba(0, 0, 0, 0.1);
}
.ctaBanner__media {
  flex: 1 1 80px;
  min-height: 280px;
  overflow: hidden;
  min-width: 260px;
}
.ctaBanner__media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.ctaBanner__media img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ctaBanner__content {
  flex: 1 1 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 24px 40px 32px;
  max-width: 520px;
}
.ctaBanner__content .hero__btn {
  align-self: flex-start;
}
.ctaBanner__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.ctaBanner__titleWrap {
  display: flex;
  flex-direction: column;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
}
.ctaBanner__title,
.ctaBanner__name {
  margin: 0;
  font-family: var(--fontSecondary);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--colorTextInvert);
}
.ctaBanner__nameRow {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  row-gap: 0;
}
.ctaBanner__nameGroup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ctaBanner__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 1.2em;
  padding: 0 20px;
  background-color: var(--colorRed700);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radiusXs);
  font-family: var(--fontSecondary);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: var(--colorTextInvert);
  flex-shrink: 0;
  white-space: nowrap;
}
.ctaBanner__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding-left: 16px;
  list-style: none;
}
.ctaBanner__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: var(--colorTextInvert);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
}
.ctaBanner__tick {
  width: 24px;
  max-width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .ctaBanner__box {
    flex-direction: column;
  }
  .ctaBanner__media {
    flex: none;
    width: 100%;
    min-width: 0;
    min-height: 0;
    aspect-ratio: 490/429;
  }
  .ctaBanner__media img {
    -o-object-position: 60% center;
       object-position: 60% center;
  }
  .ctaBanner__content {
    flex: none;
    width: 100%;
    max-width: 100%;
    align-items: center;
    padding: 24px 16px;
  }
  .ctaBanner__content .hero__btn {
    width: 100%;
    max-width: 269px;
    align-self: center;
  }
  .ctaBanner__titleWrap,
  .ctaBanner__list {
    width: 100%;
  }
  .ctaBanner__title,
  .ctaBanner__name,
  .ctaBanner__badge {
    font-size: 1.75rem;
  }
  .ctaBanner__nameRow {
    flex-wrap: wrap;
  }
}

.footer {
  background-color: #15171B;
  color: #888;
  width: 100%;
  padding: 20px 0 40px;
}

footer .attachments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

footer .attachments a {
  text-decoration: underline;
}

footer .text-gray {
  color: #888;
  margin-top: 15px;
  text-align: center;
  line-height: 1.5;
  font-size: 12px;
}/*# sourceMappingURL=styles.css.map */