.benefits,
.def-products,
.def-banner,
.def-assortment,
.def-cats,
.def-products {
  padding: 24px 0;

}

.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: calc((100vw - 800px)/2);
  width: 90%;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: inset 0px 0px 2px rgba(255, 255, 255, 0.6);
  box-shadow: inset 0px 0px 2px rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(45px);
  padding: 20px;
  z-index: 1000;
  display: none;
}


/* @media (min-width:1600px) {

  .cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 35%;
    width: 90%;
  }
} */

.cookie-consent.visible {
  display: flex;
	align-items:center;
  -webkit-animation: slideUpCookie 0.5s ease-out alternate;
  animation: slideUpCookie 0.5s ease-out alternate;
}

.cookie-title {
  font-family: var(--ff-sec);
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cookie-text {
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}

.cookie-switches {
  margin: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.cookie-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.cookie-switch input {
  display: none;
}

.cookie-switch input:active:after {
  width: 35px;
}

.cookie-switch input:disabled + label.cookie-switch-icon {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-switch input:focus + label.cookie-switch-icon {
  outline: 2px solid #007aff;
  outline-offset: 2px;
}

.cookie-switch label.cookie-switch-icon {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
}

.cookie-switch label.cookie-switch-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-switch label.cookie-label {
  font-size: 20px;
  line-height: 100%;
  color: #fff;
  padding: 10px;
  margin: -10px;
  cursor: pointer;
}

.cookie-switch input:checked + label.cookie-switch-icon {
  background-color: #000;
}

.cookie-switch input:checked + label.cookie-switch-icon::after {
  left: calc(100% - 2px);
  -webkit-transform: translateX(-100%) translateY(-50%);
  -ms-transform: translateX(-100%) translateY(-50%);
  transform: translateX(-100%) translateY(-50%);
}

.cookie-btn {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cookie-btn.accept {
  opacity: 1;
	white-space: nowrap;
}

.cookie-btn.accept:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@-webkit-keyframes slideUpCookie {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideUpCookie {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.bprods#hits {
  padding-top: 0;
}

.benefits {
  border-bottom: 1px solid rgba(50, 50, 50, 0.2);
  padding: 40px 0px;
  background: #323232;
  margin-top: 0;
}
main:has(.benefits:last-child) + footer {
  margin-top: 0;
}

.benefits .section-headings > * {
  color: #fff;
}

.benefits__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 40px;
}

.benefits__item {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
}

.benefits__item h3,
.benefits__item h4,
.benefits__h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}

.benefits__item p {
  font-size: 20px;
  line-height: 120%;
  color: #fff;
  opacity: 0.8;
  margin-top: 16px;
}

.def-products__inner {
  position: relative;
}

.def-products__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}

.def-products__list .def-product {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 30%;
  flex: 1 1 30%;
}

.def-products__list:not(._hits) .def-product:nth-child(1) .def-product__content,
.def-products__list:not(._hits) .def-product:nth-child(2) .def-product__content {
  padding: 16px;
}

.def-products__list._hits .def-product {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 20%;
  flex: 1 1 20%;
}

.def-products__list._hits .def-product .def-product__title {
  font-size: 24px !important;
}

.def-products__list._hits .def-product .def-product__price {
  font-size: 16px !important;
}

.def-product {
  position: relative;
}

.def-product__image {
  overflow: hidden;
  position: relative;
  padding: 0 0 122% 0;
}

.def-product__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.def-product__content {
  background: #f2f2f2;
  padding: 16px 32px;
}

.def-product__title {
  font-family: var(--ff-sec);
  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase;
  color: #323232;
}

.def-product__title::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.def-product__price {
  font-size: 16px;
  color: #323232;
  margin-top: 8px;
}

.def-products__more {
  margin-top: 24px;
  width: 100%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  position: relative;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}

.def-banner__slider .swiper-wrapper {

}

.def-banner__slider .swiper-slide {
  display: -ms-grid;
  display: flex;
  flex-direction: column;
  background: transparent;

  cursor: pointer;
}

.def-banner__image {
  height: 330px;
}

.def-banner__slider .swiper-pagination {
  top: auto;
  bottom: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.def-banner__slider .swiper-pagination span {
  border: 1px solid #323232;
  width: 40px;
  height: 8px;
  border-radius: 0;
  background: none;
  opacity: 1;
  margin: 0 8px !important;
}

.def-banner__slider .swiper-pagination span.swiper-pagination-bullet-active {
  background: #323232;
}

.def-banner__slider .swiper-button-prev,
.def-banner__slider .swiper-button-next {
  width: 40px;
  height: 40px;
  top: auto;
  bottom: 0;
}

.def-banner__slider .swiper-button-prev::after,
.def-banner__slider .swiper-button-next::after {
  display: none !important;
}

.def-banner__slider .swiper-button-prev svg,
.def-banner__slider .swiper-button-next svg {
  width: 24px;
  height: 24px;
}

.def-banner__slider .swiper-button-prev {
  left: 0;
}

.def-banner__slider .swiper-button-next {
  right: 0;
}

.def-banner__content {
  padding: 40px;
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.def-banner__text h4,
.def-banner__text p,
.def-banner__h4 {
  font-family: var(--ff-sec);
  font-weight: 500;
  font-size: 48px;
  line-height: 100%;
  text-transform: uppercase;
  color: #323232;
}

.def-banner__text h3,
.def-banner__h3 {
  font-family: var(--ff-sec);
  font-weight: 700;
  font-size: 96px;
  line-height: 100%;
  text-transform: uppercase;
  color: #323232;
}

.def-banner__text sub {
  font-size: 45%;
}

.def-banner__btn {
  margin-top: auto;
}
.def-banner__price-old {
  text-decoration-thickness: 1px !important;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid var(--black);
}
.def-banner__price {
  font-family: var(--ff-sec);
  font-weight: 400;
  font-size: 32px;
  text-transform: uppercase;
  line-height: 1.2em;
}



@media (max-width:767px) {
    .def-banner__price {
      display:none
  }
}

.def-banner__image {
  overflow: hidden;
  padding: 0;
}

.def-banner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;

  top: 0;
  left: 0;
  object-fit: cover;
}

.def-assortment__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 24px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.def-assortment-card {
  height: 100%;
  background: #f5f5f5;
  padding: 40px;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.def-assortment-card__img {
  overflow: hidden;
  position: relative;
  border-radius: 100px;
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
}

.def-assortment-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.def-assortment-card__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  text-transform: uppercase;
  color: #323232;
  margin-bottom: 16px;
  width: 100%;
}

.def-assortment-card__desc {
  font-size: 20px;
  line-height: 120%;
  color: #323232;
  opacity: 0.8;
}

.def-cats__inner {
  position: relative;
}

.def-cats__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 24px;
}

.def-cat {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #f2f2f2;
}

.def-cat__img {
  overflow: hidden;
  position: relative;
  padding: 0 0 100% 0;
}

.def-cat__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.def-cat__title {
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #323232;
  padding: 16px;
}

.def-cat__title::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.def-cats__more {
  margin-top: 24px;
  width: 100%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.def-subscrip {
  background: #323232;
  margin-bottom: calc(var(--main-section-paddings) * -1);
}

.def-subscrip .section-headings > * {
  color: #fff;
}

.def-subscrip__form .main-forms__item-email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}

.def-subscrip__form .main-forms__label {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.def-subscrip__form .main-forms__label .main-forms__span {
  top: -14px;
  color: #fff;
}

.def-subscrip__form .main-forms__label input {
  height: 53.2px !important;
  padding: 0 16px !important;
  height: 100%;
  color: #fff;
  border: none;
  border-bottom: 1px solid #fff;
}

.def-subscrip__form .main-forms__bottom {
  display: none !important;
}

@media (min-width: 767px) {
  .def-assortment__list {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 32px;
  }
}

@media (min-width: 768px) {
  .def-cat__title {
    padding: 24px;
  }
}

@media (min-width: 1072px) {
  .benefits,
  .def-products,
  .def-banner,
  .def-assortment,
  .def-cats,
  .def-products {
    padding: 0;
  }

  .benefits__list {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .def-products__more {
    position: absolute;
    top: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    left: auto;
    margin: 0;
    width: auto;
    transform: none;
  }



  .def-banner__slider .swiper-wrapper {
    padding-bottom: 0;
  }

  .def-banner__slider .swiper-slide {
    padding: 0;

  }

  .def-banner__image{
    height: 450px;
  }

  .def-banner__slider .swiper-pagination {
    height: auto;
  }

  .def-banner__slider .swiper-button-prev,
  .def-banner__slider .swiper-button-next {
    width: 56px;
    height: 56px;
    top: 50%;
  }

  .def-banner__slider .swiper-button-prev {
    left: 35px;
  }

  .def-banner__slider .swiper-button-next {
    right: 35px;
  }

  .def-banner__content {
    padding: 56px;
  }

  .def-assortment__list {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px;
  }

  .def-cats__list {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 40px;
  }

  .def-cats__more {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    width: auto;
  }
}

@media (min-width: 1281px) {
  .def-banner__slider .swiper-slide {
    padding: 0;
  }

  .def-banner__slider .swiper-button-prev {
    left: 40px;
  }

  .def-banner__slider .swiper-button-next {
    right: 40px;
  }
}

@media (max-width: 767px) {


    .def-products__more {
      display: none !important;
    }
  
  .cookie-title {
    font-size: 20px;
  }
  .cookie-text {
    font-size: 13px;
  }
  .cookie-switches {
    gap: 10px;
  }
  .cookie-consent {
	flex-direction: column;
    padding: 14px;
/*     right: auto; */
    left: 20px;
    bottom: 10px;
    width: calc(100% - 40px);
  }

  .cookie-switch label.cookie-label {
    font-size: 16px;
  }

  .cookie-btn {
    width: 100%;
	  padding: 15px !important;
	  min-height: auto;
	  margin-top:15px;
	  margin-left:auto;
	  margin-right:auto;
  }

  .def-products__list {
    gap: 24px;
  }

  .def-products__list .def-product {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35%;
    flex: 1 1 35%;
  }

  .def-products__list._hits .def-product {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 55%;
    flex: 1 1 55%;
  }

  .def-product__title {
    font-size: 16px;
  }

  .def-product__price {
    font-size: 12px;
  }

  .def-banner__slider .swiper-slide {
    padding: 0;
    grid-gap: 16px;
    position: relative;
  }

  .def-banner__content {
    padding: 0;
  }

  .def-banner__text h4,
  .def-banner__text p,
  .def-banner__h4 {
    font-size: 32px;
  }

  .def-banner__text h3,
  .def-banner__h3  {
    font-size: 56px;
    display: inline-block;
  }
  
  .def-banner__text sub {
      font-size: 45%;
      display: inherit;
    }

  .def-banner__btn {
    width: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
  }

  .def-subscrip__form .main-forms__item-email .btn {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
  }

  .def-subscrip__form .main-forms__label input {
    height: 50px !important;
  }



  .def-banner__text__new{
   display: none;
  }


}


.def-banner__text__new{
  padding: 40px 0;
  text-align: center;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(16px, 2vw + 0.5rem, 24px);
  line-height: clamp(14px, 1.5vw + 0.3rem, 20px);
  letter-spacing: 0;
  text-transform: uppercase;
}

