@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap");

/* icons font */

@font-face {
  font-family: "booba-font";
  src: url("../fonts/booba-font.eot?ize0un");
  src: url("../fonts/booba-font.eot?ize0un#iefix") format("embedded-opentype"),
    url("../fonts/booba-font.ttf?ize0un") format("truetype"),
    url("../fonts/booba-font.woff?ize0un") format("woff"),
    url("../fonts/booba-font.svg?ize0un#booba-font") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="boobicon-"],
[class*=" boobicon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "booba-font" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.boobicon-unisex:before {
  content: "\e900";
}
.boobicon-gear:before {
  content: "\e901";
}
.boobicon-female:before {
  content: "\e902";
}
.boobicon-house:before {
  content: "\e903";
}
.boobicon-sun:before {
  content: "\e904";
}
.boobicon-map:before {
  content: "\e905";
}
.boobicon-smile-1:before {
  content: "\e906";
}
.boobicon-smile-2:before {
  content: "\e907";
}
.boobicon-apple:before {
  content: "\e908";
}
.boobicon-cup:before {
  content: "\e909";
}
.boobicon-foto:before {
  content: "\e90a";
}
.boobicon-thc:before {
  content: "\e90b";
}
.boobicon-cbd:before {
  content: "\e90c";
}
.boobicon-cbn:before {
  content: "\e90d";
}
.boobicon-harvest:before {
  content: "\e90e";
}
.boobicon-cvet:before {
  content: "\e90f";
}
.boobicon-opengrunt:before {
  content: "\e910";
}
.boobicon-rost:before {
  content: "\e911";
}
.boobicon-cycle:before {
  content: "\e912";
}
.boobicon-effect:before {
  content: "\e913";
}
.boobicon-genes:before {
  content: "\e914";
}
.boobicon-seedbank:before {
  content: "\e915";
}
.boobicon-medical:before {
  content: "\e916";
}
.boobicon-seed:before {
  content: "\e917";
}
.boobicon-seed2:before {
  content: "\e918";
}
.boobicon-seed3:before {
  content: "\e919";
}
.boobicon-seed4:before {
  content: "\e91a";
}
.boobicon-seed5:before {
  content: "\e91b";
}
.boobicon-aphrodisiacs:before {
  content: "\e91c";
}
.boobicon-bioseeds:before {
  content: "\e91d";
}
.boobicon-fruit:before {
  content: "\e91e";
}
.boobicon-42:before {
  content: "\e91f";
}
.boobicon-funny:before {
  content: "\e920";
}
.boobicon-glowerz:before {
  content: "\e921";
}
.boobicon-heavy:before {
  content: "\e922";
}
.boobicon-low-smelling:before {
  content: "\e923";
}
.boobicon-violet:before {
  content: "\e924";
}
.boobicon-simple:before {
  content: "\e925";
}
.boobicon-low:before {
  content: "\e926";
}

/* 0 */

*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
button,
textarea {
  display: block;
  font-family: inherit;
  font-size: 14px;
  border-radius: 8px;
}

button {
  display: block;
  color: #fff;
  background-color: #6aab2f;
  cursor: pointer;
  transition: all 0.2s ease;
}

button:hover {
  background-color: #ff611a;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

li {
  list-style: none;
}

h1,
h2 {
  font-size: 26px;
  font-weight: 500;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  background-color: #fff;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.125;
  color: #3c3d3c;
  text-align: left;
  position: relative;
  scroll-behavior: smooth;
}

body.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.container {
  max-width: 1260px;
  height: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

/* HEADER */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.header__top-panel {
  width: 100%;
  height: 100px;
  position: relative;
  z-index: 2;
  background-color: #fff;
  transition: all 0.2s ease;
}

.header__top-panel .header__main-menu {
  display: none;
  visibility: hidden;
  transform: translateX(-100%);
  transition: all 0.2s ease;
}

.header__top-panel .header__main-menu.active {
  display: none;
  visibility: visible;
  transform: translateX(0);
}

.header__top-panel .header__main-menu .full-menu__container {
  margin: 0;
  padding: 30px;
  max-height: calc(100vh - 80px);
}

.header__top-panel .header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* burger */

.header__burger {
  margin-top: 5px;
  display: none;
  flex-shrink: 0;
  position: relative;
  z-index: 119;
  width: 24px;
  height: 20px;
  cursor: pointer;
}

.header__burger::before,
.header__burger::after,
.header__burger span {
  content: "";
  background-color: #3c3d3c;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  transition: all 0.2s ease;
}

.header__burger::before {
  top: 0;
}

.header__burger::after {
  bottom: 0;
}

.header__burger span {
  top: 9px;
}

.header__burger.active::before {
  transform: rotate(45deg);
  top: 9px;
}

.header__burger.active::after {
  transform: rotate(-45deg);
  bottom: 9px;
}

.header__burger.active span {
  transform: scale(0);
}

.header__logo {
  margin-right: 50px;
  transition: all 0.2s ease;
}

.logo {
  flex: 0 0 164px;
  transition: all 0.2s ease;
}

.logo__img {
  max-width: 100%;
  display: block;
}

.logo__img_mob {
  display: none;
}

.header__search {
  margin-top: 5px;
  flex-grow: 1;
  transition: all 0.2s ease;
}

.search form {
  display: block;
  position: relative;
}

.search__input {
  padding: 13px 100px 13px 15px;
  width: 100%;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  color: inherit;
  outline: 0;
  transition: all 0.2s ease;
}

.search__input:focus {
  border: 1px solid #6aab2f;
}

.search__input::placeholder {
  color: #b0b0b8;
}

.search__btn {
  position: absolute;
  height: 100%;
  padding: 13px 25px;
  right: 0;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  border-radius: 8px;
  color: #fff;
  background-color: #6aab2f;
  cursor: pointer;
  transition: all 0.2s ease;
}

.search__btn:hover {
  background-color: #ff611a;
}

.header__bottom-panel {
  width: 100%;
  height: 70px;
  position: relative;
  background-color: #216839;
  transition: all 0.2s ease;
}

.header__bottom-panel .header__container {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.header__bottom-panel > .header__catalog-menu {
  display: none;
  visibility: hidden;
  transform: translateX(-100%);
  transition: all 0.2s ease;
}

.header__bottom-panel .header__catalog-menu.active {
  display: none;
  visibility: visible;
  transform: translateX(0);
}

.header__bottom-panel .header__catalog-menu .full-menu__container {
  margin: 0;
  padding: 30px;
  max-height: calc(100vh - 140px);
}

.header__bottom-panel .header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* header__catalog-btn */

.header__catalog-btn {
  margin: 0 auto;
  padding-left: 35px;
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-size: 18px;
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s ease;
}

.header__catalog-burger {
  display: block;
  position: absolute;
  top: 14px;
  left: 0;
  width: 24px;
  height: 20px;
}

.header__catalog-burger::before,
.header__catalog-burger::after,
.header__catalog-burger span {
  content: "";
  background-color: #ffffff;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  transition: all 0.2s ease;
}

.header__catalog-burger::before {
  top: 0;
  width: 50%;
}

.header__catalog-burger::after {
  bottom: 0;
  width: 50%;
}

.header__catalog-burger span {
  top: 9px;
}

.header__catalog-burger.active::before {
  transform: rotate(45deg);
  top: 9px;
  width: 100%;
}

.header__catalog-burger.active::after {
  transform: rotate(-45deg);
  bottom: 9px;
  width: 100%;
}

.header__catalog-burger.active span {
  transform: scale(0);
}

.header__menu-list {
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.header__menu-list > li:not(:last-child) {
  margin-right: 20px;
}

@media (max-width: 960px) {
  .header__menu-list > li:nth-last-child(2) {
    display: none;
  }
}

.header__link {
  font-size: 18px;
  color: #fff;
  transition: all 0.2s ease;
}

.header__menu-list li:hover .header__link {
  color: #ff611a;
}

.btn {
  padding: 13px 25px;
  display: inline-block;
  font-size: 14px;
  color: #fff;
  background-color: #6aab2f;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.btn--big {
  padding: 26px 50px;
  font-size: 28px;
}

.btn:hover {
  background-color: #ff611a;
}

.about__btn-container,
.advantages__btn-container,
.main-collections__btn-container {
  margin-top: 30px;
  text-align: center;
}

.title {
  font-size: 26px;
  font-weight: 500;
}

.subtitle {
  font-size: 18px;
  font-weight: 500;
}

.header__full-menu {
  margin-top: -25px;
  padding-top: 25px;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

.header__menu-list li:hover .header__full-menu {
  display: block;
}

.full-menu__container {
  margin: 0 15px;
  padding: 30px;
  max-height: calc(100vh - 210px);
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  border-radius: 0 0 8px 8px;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}

.full-menu__items {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
}

.full-menu__item {
  margin-right: 15px;
  width: calc(100% / 5 - 15px);
  min-width: 200px;
  transition: all 0.2s ease;
}

@media (max-width: 1210px) {
  .full-menu__item {
    width: calc(100% / 4 - 15px);
  }
}

@media (max-width: 980px) {
  .full-menu__item {
    width: calc(100% / 3 - 15px);
  }
}

@media (max-width: 770px) {
  .full-menu__item {
    width: calc(100% / 2 - 15px);
  }
}

@media (max-width: 540px) {
  .full-menu__item {
    width: calc(100% / 1 - 15px);
  }
}

.full-menu__subtitle {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 500;
}

.full-menu__menu-list li:not(:last-child) {
  margin-bottom: 10px;
}

.full-menu__link {
  font-size: 18px;
  color: inherit;

  transition: all 0.2s ease;
}

.full-menu__link:hover {
  color: #ff611a;
}

.full-menu__link span {
  font-weight: 500;
  white-space: nowrap;
}

.full-menu__items_direction_column {
  margin-right: 0;
  flex-direction: column;
  flex-wrap: nowrap;
}

.full-menu__items_direction_column .full-menu__item {
  margin-right: 0;
  width: 100%;
}

.full-menu__items_direction_column .full-menu__menu-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
}

.full-menu__items_direction_column .full-menu__menu-list li {
  margin-right: 15px;
  width: calc(100% / 5 - 15px);
  min-width: 220px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

@media (max-width: 1260px) {
  .full-menu__items_direction_column .full-menu__menu-list li {
    width: calc(100% / 4 - 15px);
  }
}

@media (max-width: 1020px) {
  .full-menu__items_direction_column .full-menu__menu-list li {
    width: calc(100% / 3 - 15px);
  }
}

@media (max-width: 790px) {
  .full-menu__items_direction_column .full-menu__menu-list li {
    width: calc(100% / 2 - 15px);
  }
}

@media (max-width: 560px) {
  .full-menu__items_direction_column .full-menu__menu-list li {
    width: calc(100% / 1 - 15px);
  }
}

.full-menu__link i {
  font-size: 30px;
  vertical-align: middle;
}

@media (max-width: 840px) {
  .header__top-panel {
    height: 80px;
  }
  .header__top-panel .header__main-menu {
    display: block;
  }

  .header__top-panel .header__main-menu.active {
    display: block;
  }

  .header__burger {
    display: block;
  }
  .header__logo {
    margin: 0 20px;
  }
  .logo {
    flex: 0 0 116px;
  }
  .logo__img {
    display: none;
  }
  .logo__img_mob {
    display: block;
  }

  .search__input {
    padding: 13px 45px 13px 15px;
  }

  .search__btn {
    font-size: 0;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: 50%;
    background-image: url(../img/search-header.svg);
    background-size: 25px auto;
    background-color: transparent;
  }

  .search__btn:hover {
    background-color: transparent;
  }

  .actions__cart-info {
    display: none;
  }

  .header__bottom-panel {
    height: 60px;
  }

  .header__bottom-panel .header__catalog-menu {
    display: block;
  }

  .header__bottom-panel .header__catalog-menu.active {
    display: block;
  }

  .header__catalog-btn {
    display: flex;
  }

  .header__menu {
    display: none;
  }
}

@media (max-width: 640px) {
  .logo {
    flex: 0 1 116px;
    max-width: 116px;
  }
  .header__logo {
    margin: auto;
  }
  .header__top-panel .header__search {
    display: none;
  }

  .actions__container:not(:first-child) {
    margin-left: 0;
  }
}

/* MAIN */

.main {
  margin-top: 170px;
  flex: 1;
  transition: all 0.2s ease;
}

@media (max-width: 840px) {
  .main {
    margin-top: 140px;
  }
}

.title {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
}

.title h1,
.title h2 {
  margin: 0 15px 5px 0;
  display: block;
}

.title a {
  display: block;

  font-size: 16px;
  font-weight: 400;

  text-decoration: underline;
  color: inherit;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.title a:hover {
  color: #ff611a;
}

/* BANNER */

.banner {
  padding: 30px 0 40px;
  transition: all 0.2s ease;
}

.banner__box {
  border-radius: 8px;
  overflow: hidden;
}

.banner__img,
.banner__mob-img {
  display: block;
  width: 100%;
  height: auto;
}

.banner__mob-img {
  display: none !important;
}

@media (max-width: 840px) {
  .banner {
    padding: 15px 0 40px;
  }
}

@media (max-width: 640px) {
  .banner__img {
    display: none !important;
  }

  .banner__mob-img {
    display: block !important;
  }
}

/* ABOUT */

.about {
  padding: 40px 0;
}

.about__title h1,
.about__title h2 {
  margin: 0;
}

.about__text {
  margin-bottom: 5px;
}
.about__subtitle {
  margin: 15px 0 5px;
}

/* ADVANTAGES */

.advantages {
  padding: 40px 0;
}

.advantages__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  text-align: center;
  gap: 30px 60px;
}

@media (min-width: 960px) {
  .advantages--two-columns .advantages__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.advantages__advantage {
  min-width: 200px;
  flex: 0 0 30%;
}

.advantages__advantage-img {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
}

.advantages__advantage-img img {
  max-height: 100%;
}

.advantages__subtitle {
  margin: 15px 0 5px;
}

/* PRODUCTS */

.products {
  padding: 40px 0;
}

.products__slider {
  margin: 0 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  transition: all 0.2s ease;
}
.products__slider.slick-initialized {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 840px) {
  .products__slider {
    margin: 0 -15px;
  }
}

.products__slide {
  margin: 0 10px;
  height: auto;
  margin-bottom: 1px;
}

.product-item {
  position: relative;
  min-width: 180px;
  max-width: 470px;
  padding: 50px 15px 15px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background-color: #ffffff;
  transition: all 0.2s ease;
}

.product-item__photo-container {
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.product-item__photo {
  width: auto;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.product-item__photo img {
  width: auto;
  max-height: 100%;
  display: block;
}

.product-item__title-link {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.product-item__title-link:hover {
  text-decoration: none;
  color: #ff611a;
}

.product-item__title {
  margin-bottom: 5px;
  text-align: center;
}

.rating-stars {
  display: flex;
}

.rating-stars__star,
.rating-stars__star-negative {
  margin-right: 2px;
  display: block;
  width: 18px;
  height: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.rating-stars__star {
  background-image: url(../img/rating/star-positive.svg);
}

.rating-stars__star-negative {
  background-image: url(../img/rating/star-negative.svg);
}

.product-item__parameters {
  margin-bottom: 15px;
  font-size: 12px;
}

.product-item__parameters li {
  margin-bottom: 3px;
  padding-left: 10px;
  position: relative;
}

.product-item__parameters li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #ff611a;
}

.product-item__rating {
  text-align: center;
  margin-bottom: 15px;
}

.product-item__rating-stars {
  margin-bottom: 3px;
  justify-content: center;
}

.product-item__rating-link {
  color: inherit;
  text-decoration: underline;
  transition: all 0.2s ease;
}

.product-item__rating-link:hover {
  color: #ff611a;
  text-decoration: underline;
}

.product-item__price {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-weight: 500;
}

.product-item__new-price {
  font-size: 26px;
  margin-right: 10px;
}

.product-item__old-price {
  font-size: 18px;
  text-decoration: line-through;
  color: #ff2600;
}

.product-item__btn-container {
  text-align: center;
}

.product-item__labels {
  position: absolute;
  top: 15px;
  left: 15px;
  width: calc(50% - 15px);
}

.product-item__label-sale,
.product-item__label-bestseller,
.product-item__label-discont,
.product-item__label-cashback {
  margin-bottom: 2px;
  margin-right: 0;
  padding: 4px 8px;
  display: inline-block;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  white-space: nowrap;
}

.product-item__label-sale {
  background-color: #67c0be;
}

.product-item__label-bestseller {
  background-color: #9b5edd;
}

.product-item__label-discont {
  background-color: #ff2600;
}

.product-item__label-cashback {
  background-color: #00ca8a;
}

/* MAIN-COLLECTIONS */

.main-collections {
  padding: 40px 0;
}

.main-collections__title h1 {
  margin: 0;
}

.main-collections__bestsellers {
  margin-bottom: 40px;
}

.main-collections__article h2 {
  margin: 0;
}

.main-collections__text {
  margin-bottom: 5px;
}
.main-collections__subtitle {
  margin: 15px 0 5px;
}

.main-collections__img {
  margin: 5px 15px 5px 0;
  width: 50%;
  height: 337px;
  object-fit: cover;
  display: block;
  float: left;
  border-radius: 8px;
  transition: all 0.2s ease;
}

@media (max-width: 640px) {
  .main-collections__img {
    margin: 5px 0 10px;
    width: 100%;
    height: 200px;
  }
}

/* FOOTER */

.footer {
  padding: 50px 0;
  background-color: #216839;
  color: #fff;
}

.footer__menu {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  transition: all 0.2s ease;
}

.footer__item {
  margin-right: 20px;
  margin-bottom: 35px;
  width: calc(100% / 5 - 20px);
}

@media (max-width: 1100px) {
  .footer__item {
    width: calc(100% / 4 - 20px);
  }
}

@media (max-width: 900px) {
  .footer__item:first-child {
    width: 100%;
  }
  .footer__item {
    width: calc(100% / 3 - 20px);
  }
}

@media (max-width: 360px) {
  .footer__item:first-child,
  .footer__item:last-child {
    margin-bottom: 35px;
  }
  .footer__item {
    margin-bottom: 10px;
    width: 100%;
  }
}

.footer__logo {
  width: 112px;
  display: block;
}

.footer__subtitle {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.footer__social-container {
  display: flex;
}

.footer__menu-list li:not(:last-child) {
  margin-bottom: 10px;
}

.footer__link {
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease;
}

.footer__link span {
  font-weight: 500;
}

.footer__link:hover {
  color: #ff611a;
}

.footer__copy {
  margin-bottom: 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__copy a {
  color: inherit;
}

/* UP BUTTON */

#up {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1000;
  display: none;
  position: fixed;
  bottom: 30px;
  right: 15px;
  cursor: pointer;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}

#up svg {
  width: 100%;
  height: 100%;
  color: #6aab2f;
  transition: all 0.2s ease;
}

#up:hover svg {
  color: #ff611a;
}
