@import url("https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap");

*,
*: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: 30px;
}

button {
  display: block;
  color: #fff;
  background-color: #3e9273;
  cursor: pointer;
  transition: all 0.2s ease;
}

button:hover {
  background-color: #199f83;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

li {
  list-style: none;
}

h1,
h2 {
  font-size: 40px;
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;

  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.125;
  color: #3c3c3c;
  text-align: left;
  position: relative;
  scroll-behavior: smooth;
  background-color: #fff;
}

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;
  position: relative;
}

/* 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);
}

/* /burger */

.header__logo {
  margin-right: 30px;
  transition: all 0.2s ease;
}

.logo {
  flex: 0 0 222px;
  transition: all 0.2s ease;
}

.logo__img {
  max-width: 100%;
  display: block;
}



.header__bottom-panel {
  width: 100%;
  height: 70px;
  position: relative;
  background-color: #3e9273;
  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;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  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: #fff;
  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__catalog-btn */

.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;
  font-weight: 700;
  color: #fff;
  transition: all 0.2s ease;
}

.header__menu-list li:hover .header__link {
  color: #ffd64d;
}

.btn {
  min-width: 160px;
  padding: 12px 25px;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.125;
  text-align: center;
  color: #fff;
  border: 1px solid #3e9273;
  background-color: #3e9273;
  border-radius: 30px;
  transition: all 0.2s ease;
}

.btn:hover {
  border: 1px solid #199f83;
  background-color: #199f83;
}

.btn--border {
  font-weight: 400;
  color: #3c3c3c;
  background-color: #fff;
  border: 1px solid #3c3c3c;
}

.btn--border:hover {
  color: #199f83;
  border: 1px solid #199f83;
  background-color: #fff;
}

.btn--disabled {
  cursor: auto;
  color: #b0b0b8;
  border: 1px solid #f5f5f5;
  background-color: #f5f5f5;
}

.btn--disabled:hover {
  color: #b0b0b8;
  border: 1px solid #f5f5f5;
  background-color: #f5f5f5;
}

.btn-label {
  margin-bottom: -7px;
  display: flex;
  justify-content: center;
}

.btn-label__box {
  padding: 4px 10px 10px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-color: #20bc9b;
}

.title {
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 640px) {
  h1,
  h2 {
    font-size: 30px;
    font-weight: 700;
  }

  .title {
    margin-bottom: 30px;
    font-size: 30px;
  }
}

.old-price {
  font-size: 16px;
  font-weight: 700;
  color: #6e6e73;
  text-decoration: line-through;
}

.subtitle {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

/* full-menu */

.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 30px 30px;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}

.full-menu__items {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-bottom: -25px;
}

.full-menu__item {
  margin-right: 15px;
  margin-bottom: 25px;
  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: 20px;
  font-size: 26px;
  font-weight: 700;
}

.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: #199f83;
}

.full-menu__sub-item {
  display: flex;
  align-items: center;
}

.full-menu__sub-item-img {
  margin-right: 5px;
  width: 32px;
  height: auto;
}

.full-menu__sub-item-title {
  white-space: nowrap;
}

/* full menu catalog */

.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 15px;
    position: relative;
    bottom: -3px;
  }

  .logo {
    flex: 0 1 167px;
  }



  .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;
  }
}





/* MAIN */

.main {
  margin-top: 170px;
  flex: 1;
  transition: all 0.2s ease;
}

/* BANNER */

.banner {
  padding: 30px 0 80px;
  transition: all 0.2s ease;
}

.banner__slide {
  border-radius: 30px;
  overflow: hidden;
}

.slider-nav,
.slider-for,
.categories__slider,
.products__slider,
.site-reviews__slider,
.banner__slider {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.slider-nav.slick-initialized,
.slider-for.slick-initialized,
.categories__slider.slick-initialized,
.products__slider.slick-initialized,
.site-reviews__slider.slick-initialized,
.banner__slider.slick-initialized {
  visibility: visible;
  opacity: 1;
}

.banner__img,
.banner__mob-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.banner__mob-img {
  display: none !important;
}

@media (max-width: 840px) {
  .banner {
    padding: 0 0 40px;
  }
}

@media (max-width: 640px) {
  .banner__img {
    display: none !important;
  }

  .banner__mob-img {
    display: block !important;
  }
}

/* see-more-btn */

.see-more-btn {
  margin-top: 50px;
  text-align: center;
}

.see-more-btn__btn {
  font-weight: 400;
    color: #3c3c3c;
    background-color: #fff;
    border: 1px solid #3c3c3c;
}

.see-more-btn__btn:hover {
    color: #199f83;
    border: 1px solid #199f83;
    background-color: #fff;
}



/* ABOUT */

.about {
  padding: 80px 0;
}

.about__text {
  margin-bottom: 10px;
}
.about__subtitle {
  margin: 30px 0 10px;
}

/* ADVANTAGES */

.advantages {
  padding: 80px 0;
}

.advantages__content {
  margin: -20px 0;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.advantages__advantage {
  padding: 20px 10px;
  min-width: 200px;
  flex: 1 0 30%;
}

.advantages__advantage-img {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
}

.advantages__advantage-img img {
  max-height: 100%;
}

.advantages__subtitle {
  margin: 30px 0 10px;
}

@media (max-width: 640px) {
  .advantages__content {
    margin: 0;
    gap: 40px;
  }

  .advantages__advantage {
    padding: 0;
    flex: 1 0 100%;
  }
}

/* SITE-REVIEW */

.site-reviews {
  padding: 80px 0;
}

.site-reviews__title h2 {
  margin-bottom: 10px;
}

.site-reviews__title-stars {
  justify-content: center;
}

.site-reviews__title-stars .rating-stars__star,
.site-reviews__title-stars .rating-stars__star-negative {
  width: 24px;
  height: 24px;
}

.site-reviews__num {
  margin-left: 10px;
  align-self: flex-end;
  font-size: 18px;
  font-weight: 700;
}

.site-reviews__slider {
  margin: 0 20px;
  transition: all 0.2s ease;
}

@media (max-width: 840px) {
  .site-reviews__slider {
    margin: 0 -15px;
  }
}

.site-reviews__slide {
  margin: 0 10px;
  height: auto;
  margin-bottom: 1px;
}

.site-reviews__slider .slick-track {
  display: flex;
}

.site-reviews__site-review {
  height: 100%;
}

.site-review {
  padding: 20px 15px;
  border-radius: 30px;
  border: 1px solid #d9d9d9;
  flex: 1 0 20%;
}

.site-review__title {
  margin-bottom: 5px;
}

.site-review__date {
  margin-bottom: 5px;
  text-align: center;
}

.site-review__rating-stars {
  justify-content: center;
  margin-bottom: 15px;
}

.rating-stars {
  display: flex;
}

.rating-stars__star,
.rating-stars__star-negative {
  margin-right: 2px;
  display: block;
  width: 24px;
  height: 24px;
  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);
}

/* PRODUCTS */

.products {
  padding: 80px 0;
}

.products__slider {
  margin: 0 20px;
  transition: all 0.2s ease;
}

@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 20px;
  border: 1px solid #d9d9d9;
  border-radius: 30px;
  background-color: #fff;
  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: #199f83;
}

.product-item__title {
  margin-bottom: 5px;
  text-align: center;
}

.product-item__parameters {
  margin-bottom: 15px;
  font-size: 14px;
}

.product-item__parameters li {
  margin-bottom: 3px;
  position: relative;
}

.product-item__parameters li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  display: none;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #199f83;
}

.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: #199f83;
  text-decoration: underline;
}

.product-item__price {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-weight: 700;
}

.product-item__new-price {
  font-size: 26px;
  margin-right: 10px;
}

.product-item__old-price {
  font-size: 18px;
  text-decoration: line-through;
  color: #6e6e73;
}

.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: 4px;
  margin-right: 0;
  padding: 3px 8px;
  display: inline-block;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

.product-item__label-sale {
  background-color: #20bc9b;
}

.product-item__label-bestseller {
  background-color: #ebb500;
}

.product-item__label-discont {
  background-color: #f32121;
}

.product-item__label-cashback {
  background-color: #199f97;
}

.product-item__actions {
  position: absolute;
  top: 15px;
  right: 15px;
  width: calc(50% - 25px);
  display: flex;
  justify-content: flex-end;
}

.product-item__quick-view-btn {
  position: absolute;
  top: 47px;
  right: 0;
  color: inherit;
  transition: all 0.2s ease;
}

.product-item__quick-view-btn:hover {
  color: #199f83;
}

.product-item__favorites-btn,
.product-item__compare-btn {
  display: block;
  overflow: hidden;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  outline: none;
  text-decoration: none;
  transition: all 0.2s ease;
}

.product-item__favorites-btn {
  margin-right: 25px;
  color: inherit;
}

.product-item__compare-btn {
  color: inherit;
}

.product-item__compare-btn:hover,
.product-item__favorites-btn:hover {
  color: #199f83;
  background: none;
}

.product-item__compare-btn.active,
.product-item__favorites-btn.active {
  color: #3e9273;
  background: none;
}

/* COLLECTIONS */

.main-collections {
  padding: 80px 0;
}

.main-collections__title h1 {
  margin: 0;
}

.main-collections__bestsellers {
  margin-bottom: 40px;
}

.main-collections__article {
  margin-top: 80px;
}

.main-collections__text {
  margin-bottom: 10px;
}

.main-collections__subtitle {
  margin: 30px 0 10px;
}

.main-collections__img {
  margin: 5px 15px 5px 0;
  width: 50%;
  height: 300px;
  object-fit: cover;
  display: block;
  float: left;
  border-radius: 30px;
  transition: all 0.2s ease;
}

@media (max-width: 640px) {
  .main-collections {
    padding: 0 0 80px 0;
  }

  .main-collections__img {
    margin: 5px 0 10px;
    width: 100%;
    height: 200px;
  }
}

/* FOOTER */

.footer {
  padding: 75px 0;
  background-color: #3c3c3c;
  color: #fff;
}

.footer__menu {
  margin-bottom: 40px;
  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 {
    width: calc(100% / 3 - 20px);
  }
}

@media (max-width: 700px) {
  .footer__item {
    width: calc(100% / 2 - 20px);
  }
}

@media (max-width: 410px) {
  .footer__item {
    width: calc(100% / 1 - 20px);
  }
}

.footer__logo {
  width: 167px;
  display: block;
  margin-bottom: 35px;
}

.footer__subtitle {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.footer__social-container {
  display: flex;
}

.social-btn {
  width: 24px;
  height: 24px;
  color: #fff;
  transition: all 0.3s ease;
}

.social-btn:hover {
  color: #199f83;
}

.social-btn:not(:last-child) {
  margin-right: 10px;
}

.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: 700;
}

.footer__link:hover {
  color: #199f83;
}

.footer__copy {
  margin-bottom: 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__copy a {
  color: inherit;
}

.footer__age-restriction {
  width: 24px;
  height: auto;
}

.footer__age-link {
  transition: all 0.2s ease;
}

.footer__age-link:hover {
  opacity: 0.8;
}

/* #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: #3e9273;
  transition: all 0.2s ease;
}

#up:hover svg {
  color: #199f83;
}
