@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Share+Tech&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Share+Tech&display=swap");
* {
  font-family: "Roboto", sans-serif;
}

html, body {
  overflow-x: clip;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}
html ::-webkit-scrollbar, body ::-webkit-scrollbar {
  width: 8px;
}
html ::-webkit-scrollbar-track, body ::-webkit-scrollbar-track {
  background: #fff;
}
html ::-webkit-scrollbar-thumb, body ::-webkit-scrollbar-thumb {
  background-color: #2c6c4c;
  border-radius: 20px;
}

#app:not(.ready) {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

#app.ready {
  opacity: 1;
}

.body--hidden {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

.header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  max-width: 90%;
  width: 100%;
  margin: auto;
  height: 80px;
  border-radius: 20px;
  padding: 0 20px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 1000;
  background: #fff;
  -webkit-box-shadow: 0 2px 5px rgba(44, 108, 76, 0.18);
          box-shadow: 0 2px 5px rgba(44, 108, 76, 0.18);
}
.header-wrapper .logo {
  position: relative;
  display: block;
  max-width: 220px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 2;
}
.header-wrapper .logo img {
  width: 100%;
}

.header-wrapper.hidden {
  height: 60px;
  top: 0;
  border-radius: 0 0 20px 20px;
}
.header-wrapper.hidden .nav-link {
  font-size: 16px;
}
.header-wrapper.hidden .cart-btn {
  font-size: 16px;
}
.header-wrapper.hidden .logo {
  max-width: 160px;
}
.header-wrapper.hidden .lang-switcher__text {
  font-size: 16px;
}
.header-wrapper.hidden .lang-switcher__img {
  width: 18px;
  height: 18px;
}

nav {
  position: absolute;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  padding: 15px 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.nav-link {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.nav-link:before {
  position: absolute;
  bottom: -3px;
  left: 50%;
  content: "";
  width: 0;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(95, 189, 94)), to(rgb(48, 191, 193)));
  background: linear-gradient(90deg, rgb(95, 189, 94) 0%, rgb(48, 191, 193) 100%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.nav-link:after {
  position: absolute;
  bottom: -3px;
  right: 50%;
  content: "";
  width: 0;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(95, 189, 94)), to(rgb(48, 191, 193)));
  background: linear-gradient(90deg, rgb(95, 189, 94) 0%, rgb(48, 191, 193) 100%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.nav-link:hover:before {
  width: 50%;
}
.nav-link:hover:after {
  width: 50%;
}

.cart-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  height: 48px;
  min-width: 150px;
  font-weight: bold;
  border: 1px solid #2c6c4c;
  color: #2c6c4c;
  border-radius: 100px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 20px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 3;
  cursor: pointer;
}

.cart-icon {
  position: relative;
  width: 20px;
  height: 20px;
  -webkit-animation: infinite counterPulse 1s ease-in-out;
          animation: infinite counterPulse 1s ease-in-out;
}

.cart-counter {
  position: absolute;
  top: -2px;
  right: -2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #f69946;
  color: #000;
  font-size: 8px;
}

@-webkit-keyframes counterPulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes counterPulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.cart-btn-title {
  text-transform: uppercase;
}

.lang-switcher {
  margin-left: auto;
  position: relative;
}
.lang-switcher__current {
  padding: 16px;
}
.lang-switcher__current .lang-switcher__text {
  font-weight: 600;
}
.lang-switcher__current .lang-switcher__item {
  min-width: 60px;
  border-top: none;
  padding: 0;
}
.lang-switcher__list {
  padding: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 16px;
  position: absolute;
  bottom: -56px;
  right: 0;
  background-color: #fff;
}
.lang-switcher__item {
  min-width: 60px;
  padding: 0;
  padding-top: 12px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: transparent;
  border-top: 1px solid #e6ebe8;
  border-radius: 0;
  color: #000;
}
.lang-switcher__img {
  width: 20px;
  height: 20px;
}
.lang-switcher__text {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 400;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.lang-switcher__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.lang-switcher__row .lang-switcher__item {
  padding: 0;
  border-top: none;
  gap: 4px;
}
.lang-switcher__row .current-lang.lang-switcher__item {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lang-switcher__row .current-lang.lang-switcher__item .lang-switcher__text {
  font-weight: 600;
  -webkit-transition: 100ms;
  transition: 100ms;
}

footer {
  background: #111;
  padding: 20px 0;
}
footer .logo {
  max-width: 300px;
  width: 100%;
  margin: 20px auto;
}
footer .logo img {
  width: 100%;
}

.copyright {
  font-size: 14px;
  color: #fff;
  text-align: center;
}

.privacy-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  text-align: center;
  margin-top: 10px;
}

.pp-link {
  color: #2c6c4c;
  text-decoration: none;
  font-size: 14px;
}

.section-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  font-family: "Dosis", sans-serif;
}
.section-title .prefix {
  position: absolute;
  top: -32px;
  color: #F69946;
  font-size: 14px;
  background: rgba(246, 153, 70, 0.2);
  border-radius: 3px;
  padding: 3px 5px;
  font-family: "Dosis", sans-serif;
  font-weight: 600;
}
.section-title span {
  display: block;
  width: 100%;
  font-family: "Dosis", sans-serif;
}
.section-title:before {
  content: "";
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  width: 100%;
  height: 4px;
}
.section-title:after {
  content: "";
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  width: 100%;
  height: 4px;
}

.subpage {
  margin-top: 150px;
}
.subpage .btn {
  margin: auto;
  max-width: 340px;
}

.btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  background: #18c2e2;
  max-width: 280px;
  width: 100%;
  height: 60px;
  z-index: 2;
  font-weight: bold;
  font-size: 22px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 30px auto 0 auto;
}
.btn span {
  color: inherit;
  text-align: right;
}
.btn div {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-weight: bold;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.btn div svg {
  margin-left: 3px;
}
.btn div svg path {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.btn:hover {
  background: #faa320;
}
.btn:hover div {
  -webkit-transform: translateX(40px);
      -ms-transform: translateX(40px);
          transform: translateX(40px);
}
.btn:hover div svg path {
  fill: #faa320;
}

.btn.back svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-left: 0;
}
.btn.back:hover div {
  -webkit-transform: translateX(-40px);
      -ms-transform: translateX(-40px);
          transform: translateX(-40px);
}

.burger {
  display: none;
}

.iti {
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 1280px) {
  .header-wrapper .logo {
    max-width: 180px;
  }
  .cart-btn-title {
    display: none;
  }
  .cart-btn-total {
    display: none;
  }
  .cart-btn {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: static;
    min-width: unset;
    width: 45px;
    height: 45px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 2px solid #2c6c4c;
    border-radius: 50%;
    padding: 0;
  }
}
@media screen and (max-width: 1024px) {
  nav {
    top: 80px;
    left: 0;
    width: 100%;
    position: fixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    background: #fff;
    -webkit-box-shadow: 0px 20px 40px 1px rgba(48, 46, 46, 0.2);
            box-shadow: 0px 20px 40px 1px rgba(48, 46, 46, 0.2);
    gap: 0;
    z-index: 1;
    padding: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  nav.open {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .nav-link {
    border-top: 2px solid #2c6c4c;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
  .header-wrapper {
    max-width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    top: 0;
    border-radius: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .header-wrapper.hidden {
    height: 80px;
    border-radius: 0;
  }
  .header-wrapper.hidden .logo {
    max-width: 180px;
  }
  .header-wrapper.hidden .cart-btn {
    font-size: 20px;
  }
  .header-wrapper.hidden .nav-link {
    font-size: 20px;
  }
  .burger {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
    display: block;
    width: 40px;
    height: 24px;
    z-index: 100;
  }
  .burger span {
    position: absolute;
    height: 3px;
    width: 100%;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    border-radius: 2px;
    background: #2c6c4c;
    z-index: 110;
  }
  .burger span:nth-child(1) {
    top: 0;
    left: 0;
  }
  .burger span:nth-child(2) {
    top: 12px;
  }
  .burger span:nth-child(3) {
    top: 12px;
  }
  .burger span:nth-child(4) {
    top: 24px;
    left: 0;
  }
  .open.burger span:nth-child(1) {
    width: 0;
    left: 50%;
  }
  .open.burger span:nth-child(2) {
    top: 12px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .open.burger span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .open.burger span:nth-child(4) {
    top: 24px;
    width: 0;
    left: 50%;
  }
  .section-title {
    font-size: 28px;
  }
  .section-title .prefix {
    font-size: 10px;
  }
}
@media screen and (max-width: 600px) {
  .lang-switcher.mobile {
    margin: 0 auto;
    padding: 24px 0;
  }
}