@import url(/css/styles.null.css);

html, body {
  font-family: 'Alef', sans-serif;
  height: 100%;
}
.wrapper {
    overflow: hidden;
    height: 100%;
}
.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.flexbox {
  display: flex;
}
input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
  visibility: hidden;
}
input::placeholder,
textarea::placeholder {
  transition: 0.3s;
}
a {
  transition: 0.3s;
}
a:hover {
  text-shadow: 0 0 0.7px;
}
button,
.yellow__btn {
  transition: 0.3s;
}
button:hover,
.yellow__btn:hover {
  background: #3D2E08;
  color: #FFE925;
}
.lat {
  font-family: 'Montserrat', sans-serif;
}
.breadcrumbs {
  border-bottom: 1px solid #E5E5E5;
  padding: 12px 0;
}
.breadcrumbs .flexbox {
  align-items: center;
}
.breadcrumbs__main {
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.breadcrumbs__arrow {
  margin: 0 10px;
}
.breadcrumbs__current {
  color: #A4A4A4;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.yellow__btn {
  background: #FFE925;
}
.round {
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.round svg {
  transition: 0.3s;
}
.round:hover svg {
  transform: scale(1.2);
}
/* Burger */
.brgr {
  background: #FCD150;
  width: max-content;
  height: 33px;
  display: none;
}
.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 33px;
  height: 33px;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke:#291F04;
  stroke-width:5.5;
  stroke-linecap:round;
}
.ham7 .top {
  stroke-dasharray: 40 82;
}
.ham7 .middle {
  stroke-dasharray: 40 111;
}
.ham7 .bottom {
  stroke-dasharray: 40 161;
}
.ham7.active .top {
  stroke-dasharray: 17 82;
  stroke-dashoffset: -62px;
}
.ham7.active .middle {
  stroke-dashoffset: 23px;
}
.ham7.active .bottom {
  stroke-dashoffset: -83px;
}

/* Popup */
.popup__bg {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(61, 46, 8, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s all;
  transition-delay: 0s;
}
.popup__bg._active {
  pointer-events: all;
  opacity: 1;
  transition: 0.5s all;
  transition-delay: 0.2s;
}
.popup {
  height: max-content;
  max-height: 70vh;
  width: max-content;
  max-width: 50vw;
  background: #FFFEF4;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) 
  scale(0);
  transition: 0.3s;
}
.popup._active {
  transform: translate(-50%, -50%) scale(1);
}
.popup__wrapper {
  position: relative;
  padding: 35px 35px 70px 35px;
}
.close-popup {
  display: block;
  margin-left: auto;
  width: 24px;
  height: 24px;
  color: #FFE925;
  font-size: 44px;
  line-height: 24px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
  position: absolute;
  left: 10px;
  top: 10px;
}
.close-popup span {
  display: block;
  transform: rotate(45deg);
}
.close-popup:hover {
  color: #3D2E08;
  text-shadow: 0 0 0.7px #000;
  transition: 0.3s;
}

/* gift */
.popup__title {
  text-align: center;
  margin-bottom: 25px;
}
.gift__title {
  color: #291F04;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
}
.popup__subtitle {
  text-align: center;
  margin-bottom: 34px;
}
.gift__subtitle {
  color: #291F04;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.popup__picture {
  display: block;
  max-width: 70%;
  overflow: hidden;
}
.popup__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  transform: scaleX(-1);
}
.gift__img {
}
.popup__form.gift__form {
  top: 50%;
  left: 35px;
}
.gift__form {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 50px;
  background-color: #fff;
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.15);
  transform: translate(0, -35%);
}
.popup__form-label {
}
.gift__form-label {
  display: flex;
  flex-direction: column;
  color: #291F04;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  margin-bottom: 22px;
  position: relative;
}
.pseudo-select {
  display: block;
  width: 0; 
  height: 0;
  position: absolute;
  top: 53%;
  left: 30px;
  z-index: 2;
  transform: translate(0, -50%);
}
.pseudo-select svg {
  transition: 0.3s;
  cursor: pointer;
}
.pseudo-select.show svg {
  transform: rotate(180deg);
}
.gift__form-input {
  padding: 16px;
  border: 1px solid #E5E5E5;
  background: #FFF;
  margin-top: 6px;
  color: #A4A4A4;
  cursor: pointer;
}
.popup__form-input {
}
.popup__btn {
  width: 70%;
  display: block;
  margin: 0 auto;
}
.gift__btn {
  color: var(--Dark, #291F04);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 15px 30px;
}
/* Pseudo select */
.gift__radious-wrapper {
  position: absolute;
  z-index: 4;
  top: 80px;
  border: 1px solid #E5E5E5;
  color: #A4A4A4;
  width: 100%;
}
.gift__form-label:last-of-type .gift__radious-wrapper {
  z-index: 3;
}
.pseudoselect__radious-wrapper {
  text-align: center;
  color: #A4A4A4;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: #fff;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pseudoselect__radious-wrapper.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.forwhom {
}
.gift__radious-label {
  border-bottom: 1px solid #E5E5E5;
}
.pseudoselect__radious-label {
  cursor: pointer;
  transition: 0.3s;
}
.pseudoselect__radious-label:last-of-type {
  border-bottom: none;
}
.gift__radious-text {
  cursor: pointer;
  transition: 0.3s;
  padding: 5px 16px;
  text-align: right;
}
.gift__radious-text:hover {
  background: #3D2E08;
  color: #FFE925;
}
.pseudoselect__radious-label:hover .gift__radious-text,
.gift__radious-text:hover {
  text-shadow: 0 0 0.7px #A4A4A4;
}
.gift__radious-input {
}
.pseudoselect__radious-input {
  position: absolute;
  top: 50%;
  opacity: 0;
  pointer-events: none;
}

.hdr {
}
.hdr__upper {
  background: #3D2E08;
  height: 36px;
}
.content {
  width: 59.375%;
  max-width: 1140px;
  margin: 0 auto;
}
.content-small {
  width: 43.229%;
  max-width: 830px;
  margin: 0 auto;
}
.hdr__upper .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}
.hdr__upper .content>* {
  height: 100%;
}
.upper__blog_and_delivery {
}
.hdr__blog_link {
  border-right: 1px solid rgb(255, 255, 255, 0.15);
}
.upper-link {
  padding: 0 22px;
  color: #fff;
  font-family: 'Alef', sans-serif;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hdr__delivery_link {
  border-left: 1px solid rgb(255, 255, 255, 0.15);
  border-right: 1px solid rgb(255, 255, 255, 0.15);
}
.hdr__upper-text {
  font-family: 'Alef', sans-serif;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.hdr__upper-text span {
  color: #FFE925;
}
.upper__contacts {
  display: flex;
  align-items: center;
  height: max-content;
}
.upper__contacts-item,
.hdr__upper-text,
.upper__blog_and_delivery {
  display: flex;
  align-items: center;
  justify-content: center;
}
.upper__contacts-item {
  height: 100%;
}
.upper__contacts-item:first-of-type {
  border-left: 1px solid rgb(255, 255, 255, 0.15);
}
.upper__contacts-item:last-of-type {
  border-left: 1px solid rgb(255, 255, 255, 0.15);
}
.upper__contacts-link {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  display: block;
  margin-right: 20px;
  position: relative;
  top: 2px;
}
.upper__contacts-item:first-of-type .upper__contacts-link {
  margin-right: 0;
}
.upper__contacts-item:last-of-type .upper__contacts-link {
  margin-left: 20px;
}
.upper__contacts-link svg {
  width: 16px;
}
.upper__contacts-link span {
  display: block;
  line-height: 0.75;
  margin-left: 16px;
  margin-right: 12px;
  position: relative;
  top: 1px;
}
.upper__contacts-item:first-of-type .upper__contacts-link {
  align-items: center;
  display: flex;
}
.upper__contacts-item:first-of-type .upper__contacts-link {
  position: static;
}
.upper__contacts-item:last-of-type svg {
  width: 20px;
}
.hdr__logo_and_cart {
  background: #fffef4;
}
.hdr__logo_and_cart .content {
  justify-content: space-between;
  padding: 9px 0;
}
.content {
}
.hdr__logo-wrapper {
  align-items: center;
}
.hdr__logo {
  display: block;
  width: 70px;
  height: 73px;
}
.hdr__page_slogan {
  margin-right: 16px;
  max-width: 150px;
  color: #3D2E08;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
}
.hdr__cart {
  align-items: center;
}
.hdr__cart-wrapper {
}
.hdr__cart-text {
  color: #3D2E08;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
}
.hdr__cart-sum_and_quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  margin-top: 5px;
}
.hdr__cart-sum {
  display: flex;
  align-items: center;
}
.hdr__cart-quantity {
  color: #FFE925;
}
.hdr__cart-quantity span {
  color: #3D2E08;
}
.hdr__cart-logo {
  margin-right: 30px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #FFE925;
  position: relative;
  cursor: pointer;
}
.hdr__cart-logo svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-60%, -50%);
}

.hdr__menus {
  background: #FFE925;
}
.hdr__menus .content {
  justify-content: space-between;
  height: 33px;
}
.hdr__nav {
  position: relative;
}
.hdr__nav-list {
  height: 100%;
  align-items: center;
}
.hdr__nav-item {
  border-left: 1px solid rgba(61, 46, 8, 0.15);
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 23px;
}
.hdr__nav-item:first-of-type {
  border-right: 1px solid rgba(61, 46, 8, 0.15);
}
.hdr__nav-link {
  color: #3D2E08;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}
.hdr__choice_gift {
  background: #3D2E08;
  color: #fff;
  height: 100%;
  padding: 0 32px;
}
.hdr__nav-item .hdr__arrow_down {
  width: 16px;
  margin-right: 8px;
  cursor: pointer;
}
.hdr__nav-item .hdr__arrow_down path {
  fill: #000;
}
.hdr__arrow_down path {
  fill: #FFE925;
}
.open_categories {
  position: relative;
}
.open_categories:hover > .hdr__nav-categories_wrapper,
.open_categories:hover > .hdr__nav-categories_wrapper > .has-products:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.hdr__nav-categories_wrapper {
  z-index: 12;
  position: absolute;
  top: 33px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
}
.hdr__nav-categories {
  background: #3D2E08;
  padding: 15px 15px 15px 0;
  width: auto;
  min-width: max-content;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  position: relative;
}
.hdr__nav-category_wrapper,
.hdr__category-product {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}
.hdr__nav-category {
  padding: 0 0 0 15px;
}
.hdr__nav-category_wrapper {
  padding: 8px 0 8px 15px;
  display: flex;
  justify-content: space-between;
}
.hdr__nav-category:last-of-type .hdr__nav-category_wrapper {
  border-bottom: none;
  padding: 8px 0 0 15px;
}
.hdr__nav-category:first-of-type .hdr__nav-category_wrapper {
  padding: 0 0 8px 15px;
}
.menu-arrow {
  display: block;
  margin-right: 16px;
  width: max-content;
  order: 2;
}
.menu-arrow:before {
  content: url('/img/menu_arrow_white.svg');
  transition: 0.3s;
  display: block;
}
.hdr__nav-category_link {
  color: #fff;
  transition: 0.3s;
}
.hdr__nav-category:hover .menu-arrow:before {
  content: url('/img/menu_arrow_yellow.svg');
  transform: rotate(90deg);
  display: block;
  transition: 0.3s;
}
.hdr__nav-category:hover .hdr__nav-category_link,
.hdr__category-product:hover .hdr__product-link {
  color: #FFE925;
}
.hdr__category-products {
  background: #3D2E08;
  padding: 15px;
  gap: 10px 20px;
  position: absolute;
  top: 0;
  right: 100%;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: 0.3s;
  height: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: max-content;
}
.has-products:hover > .hdr__nav-category_wrapper > .hdr__category-products {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}
.hdr__category-product {
  min-width: 150px;
  height: max-content;
  padding-bottom: 8px;
  width: max-content;
}
.hdr__product-link {
  color: #fff;
  transition: 0.3s;
}


.main {
  flex: 1 1 auto;
}
.page__title {
  color: #291F04;
  text-align: center;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  margin-top: 30px;
}
.page__subtitle {
  color: #291F04;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
}
.main__columns {
  margin-top: 70px;
  align-items: stretch;
  margin-bottom: 100px;
}
.main__column {
  /* margin-right: 70px;
  width: calc(100% - 70px); */
  width: 100%;
}
.main__column:first-of-type {
  margin-left: 40px;
}
.main__column:last-of-type {
  margin-right: 40px;
}
.main__column {
  display: grid;
  gap: 40px 0;
  grid-template-columns: repeat();
}
.main__column-text {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.main__column-picture {
}
.main__column-picture img {
  display: block;
  object-fit: cover;
  margin: 0 0 0 auto;
}

/* MAIN */
.main__slider {
  position: relative;
  margin-top: 48px;
  margin-bottom: 80px;
}
.main__slider-slider {
  /* padding: 0 12px; */
  overflow: hidden;
  min-height: 1px;
}
.main__slider-wrapper {
}
.main__slider-slide {
  gap: 20px 0;
  justify-content: space-between;
}
.slider__slide-texts {
  width: calc(50% - 10px);
  padding: 105px 50px 17px 50px;
}
.slide__title {
  color: #291F04;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
}
.slide__link {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  padding: 15px 30px;
  display: block;
  margin: 70px auto 0;
  width: max-content;
}
.yellow__btn {
}
.main__slider-picture {
  width: calc(50% - 10px);
  overflow: hidden;
  height: 100%;
}
.slide__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}
.main__self_presentation-list {
  justify-content: space-between;
  gap: 0 68px;
  margin-bottom: 80px;
}
.main__self_presentation-item {
  width: calc((100% / 3) - (136px / 3));
}
.main__self_presentation-wrapper {
  margin-right: 20px;
  min-width: 255px;
}
.main__self_presentation-title {
  color: #291F04;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
}
.main__self_presentation-text {
  color: #291F04;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.category__text.main__category-text {
  margin-bottom: 24px;
}
.main__category-link_wrapper {
  align-items: center;
}
.main__category-link {
  position: relative;
  color: #424242;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  display: block;
  /* padding-left: 32px; */
  margin-left: 10px;
  width: max-content;
  transition: 0.3s;
}
.main__slider .swiper-pagination {
  display: block;
  margin-top: 24px;
  margin-bottom: 8px;
}
/* .main__category-link:before {
  content: url(/img/link_arrow.svg);
  display: block;
  position: absolute;
  left: 13px;
  top: 58%;
  transform: translate(0, -50%);
  transition: 0.3s;
  width: 10px;
} */
.main__category-link:after {
  content: '';
  width: calc(100% + 32px);
  right: 0;
  bottom: -9px;
  height: 0px;
  display: block;
  position: absolute;
  background: #FFE925;
  transition: 0.3s;
}
.main__category-link_wrapper:hover .main__category-link::after {
  height: 5px;
}
.main__category-link_wrapper svg {
  transition: 0.3s;
}
.main__category-link_wrapper:hover svg {
  transform: scaleX(1.5);
}
.main__form-wrapper {
  position: relative;
  aspect-ratio: 1.32;
}
.gift__picture {
  max-width: 100%;
}
.gift__form {
  top: 26%;
  left: -14%;
}
.main__products_sliders {
  margin-bottom: 90px;
  background: #F9F8F7;
  padding: 50px 0 100px 0;
}
.products_sliders__btns {
  margin-top: 40px;
}
.products_sliders-btn {
  display: block;
  padding: 10px 18px;
  border: 2px solid #E5E5E5;
  margin-left: 15px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  cursor: pointer;
  transition: 0.3s;
}
.products_sliders-btn:hover {
  border: 2px solid #FFE925;
  text-shadow: 0 0 0.7px #000;
}
.products_sliders-btn.active {
  border: 2px solid #FFE925;
  text-shadow: 0 0 0.7px #000;
}
.products_sliders-wrapper {
  width: 100%;
  position: relative;
  height: var(--bigger-height);
  margin: 20px 0 0 0;
}
.overflow-wrapper {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.products_sliders-wrapper .overflow-wrapper {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
  transition-delay: 0s;
}
.products_sliders-wrapper .overflow-wrapper.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition-delay: 0.3s;
}
.products_slider {
  overflow: hidden;
  min-height: 1px;
  padding: 10px;
}
.main__products_slider {
  
}
.swiper-container {
}
.products_slider-wrapper {
  /* position: relative;
  overflow-y: visible;
  overflow-x: hidden; */
  padding-bottom: 10px;
}
.swiper-wrapper {
}
.products_slider-slide {
}
.product_card {
  transition: 0.3s;
}
.product_card:hover {
  box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.15);
}
.swiper-slide {
}
.products_slider-picture {
}
.product_card-picture {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: block;
  height: 255px;
}
.products_slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center top;
}
.product_card-img {
}
.products_slider-texts {
}
.product_card-texts {
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  border-radius: 0 0 5px 5px;
  background-color: #fff;
}
.products_slider-title {
}
.product_card-title {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
}
.products_slider-text {
}
.product_card-text {
  color: #A4A4A4;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  margin-top: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #E5E5E5;
}
.products_slider-price_and_quickcart {
}
.product_card-price_and_quickcart {
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}
.product_card-price {
  color: #3D2E08;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.product_card-price span {
  margin-left: 6px;
}
.product_card-quickcart_wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.product_card-quickcart {
  color: #3D2E08;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  text-transform: uppercase;
  margin-left: 10px;
  transition: 0.1s;
}
.product_card-quickcart:hover {
  border-bottom: 5px solid #FFE925;
}
.promo {
  margin: 100px auto 180px auto;
  justify-content: space-between;
  gap: 110px 0;
  align-items: center;
}
.promo__wrapper {
  width: calc(50% - 55px);
}
.promo__picture {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.promo__picture:before {
  content: '';
  display: block;
  position: absolute;
  width: calc(50% + 50px);
  bottom: 50%;
  right: -50px;
  z-index: -1;
  height: calc(100% + 100px);
  border: 20px solid #FFE925;
  transform: translate(0, 50%);
}
.promo__img {
  display: block;
  width: 100%;
}
.promo__title {
  padding-bottom: 16px;
}
.promo__text {
  margin-top: 24px;
  color: #A4A4A4;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.videofeedbacks {
  background: #F9F8F7;
  padding: 66px 0;
}
.videofeedbacks .content {
  position: relative;
}
.videofeedbacks__titles {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.flexbox {
}
.videofeedbacks__title-wrapper {
  align-items: center;
}
.article__title-small {
}
.videofeedbacks__title {
  margin-right: 22px;
}
.videofeedbacks__link {
  padding: 15px 30px;
  border-radius: 10px;
  background: #007BFF;
  display: block;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: 0.3s;
}
.videofeedbacks__link:hover {
  background: #3D2E08;
  color: #FFE925;
}
.videofeedbacks__slider {
  overflow: hidden;
  min-height: 1px;
}
.videofeedbacks__slider-wrapper {
}
.videofeedbacks__slider-slide {
}
.videofeedbacks__story {
  width: max-content;
  margin: 0 auto;
  /* padding-right: 20px; */
  height: 472px;
}
.videofeedbacks .slider-next,
.videofeedbacks .slider-prev {
  top: 56%;
}
.recommended_articles {
  padding: 50px 0 90px 0;
}

/* CONTACTS PAGE */
.contacts .main__columns > .flexbox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 7%;
}
.contacts .main__column:last-of-type {
  margin-right: 0;
  width: auto;
  margin-left: 0;
}
.contacts .main__column {
  /* width: calc((100% - 6.4%) / 3); */
}
.contacts .main__column:last-of-type {
  /* margin-right: 0; */
}
.contacts__introduce {
  display: grid;
  grid-template-columns: repeat(1, auto);
  gap: 22px 0;
}
.contacts__introduce-logo_and_title {
  align-items: center;
}
.contacts__introduce-picture {
  width: 85px;
  height: 85px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin-left: 16px;
}
.contacts__introduce-img {
  height: 85px;
  width: auto;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}
.contacts__introduce-title {
  color: #000;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  border-bottom: 5px solid #FFE925;
}
.contacts__introduce-text {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.main__column {
}
.contacts__list {
  height: max-content;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: end;
}
.contacts__list-item {
  margin-bottom: 25px;
}
.contacts__list-item:last-of-type {
  margin-bottom: 0;
}
.contacts__list-item_wrapper {
  justify-content: center;
}
.contacts__list-svg_wrapper {
  margin-left: 30px;
}
.contacts__list-item:first-of-type .contacts__list-svg_wrapper,
.contacts__list-item:nth-of-type(2) .contacts__list-svg_wrapper {
  display: block;
  height: 30px;
  width: 30px;
  display: block;
  border-radius: 50%;
  background: #000;
  position: relative;
}
.contacts__list-item:first-of-type .contacts__list-svg_wrapper svg,
.contacts__list-item:nth-of-type(2) .contacts__list-svg_wrapper svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contacts__list-link {
  text-align: center;
  /* width: calc(100% - 30px - 16px); */
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  transition: 0.3s;
}
.contacts__list-link:hover {
  text-decoration: underline;
}
.contacts__form {
  display: grid;
  grid-template-rows: max-content max-content 1fr max-content;
  /* padding-left: 70px; */
}
.contacts__form-label {
}
.contacts__form-input {
  border: 1px solid var(--Input-border, #E5E5E5);
  background: #FFF;
  width: 100%;
  min-height: 40px;
  padding: 12px 18px;
}
input::placeholder {
  color: #747474;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}
textarea.contacts__form-input {
  height: 100%;
  position: relative;
  word-break: break-all;
  resize: none;
  transition: 0.3s;
}
input:focus {
  border: 1px solid #cccccc;
  caret-color: #A4A4A4;
}
textarea.contacts__form-input::placeholder {
  position: absolute;
  top: 12px;
  right: 18px;
}
.contacts__form-button {
  padding: 15px 0;
  background: #FFE925;
  color: #291F04;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.72px;
  text-transform: uppercase;
}

/* BLOG */
.blog .main__columns {
  margin-top: 70px;
  display: block;
  margin-bottom: 100px;
}
.blog__list {
  justify-content: space-between;
  flex-wrap: wrap;
}
.blog__list-item {
  width: calc(50% - 15px);
  margin-bottom: 30px;
  transition: 0.3s;
}
.blog__list-item:hover {
  box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.15);
}
.blog__article_preview {
}
.blog__article-picture {
  display: block;
  width: 100%;
  height: 310px;
  overflow: hidden;
}
.blog__article-img {
  display: block;
  object-fit: cover;
  object-position: center top;
  height: 100%;
  width: 100%;
}
.blog__article-text_wrapper {
  padding: 20px 40px;
  border: 1px solid #e5e5e5;
  border-top: none;
}
.blog__article-title {
  color: #3D2E08;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  margin: 0 0 10px 0;
}
.blog__article-text {
  color: #A4A4A4;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  width: 100%;
}
.blog__article-text:last-of-type {
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E5E5;
}
.blog__article-link {
  display: block;
  color: #3D2E08;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  padding-right: 12px;
  border-right: 5px solid #FFE925;
  margin-top: 15px;
}

/* SINGLE */
.article {
  margin-bottom: 40px;
  margin-top: 46px;
}
.article__picture {
  display: block;
  width: 100%;
  overflow: hidden;
  max-height: 450px;
  position: relative;
}
.article__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.article__title_and_decor {
  position: relative;
}
.article__title-wrapper {
  padding: 25px 35px;
  background: #291F04;
  width: 100%;
  max-width: 61.4%;
  position: relative;
  z-index: 3;
  bottom: 70px;
}
.article__decoration {
  display: block;
  width: 185px;
  height: 185px;
  background: #FFE925;
  position: absolute;
  bottom: 90px;
  right: -50px;
  z-index: 2;
}
.article__title {
  color: #FFF;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
}
.article__title-small_wrapper {
  align-items: center;
  margin-bottom: 36px;
}
.article__title-small {
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
}
.title__decor_line {
  flex: 1 1 auto;
  height: 1px;
  margin-right: 23px;
  background: #E5E5E5;
}
.article__paragraph {
  margin-bottom: 36px;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}
.article__subtitle {
  color: #000;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  margin-bottom: 15px;
}
.article__underline {
  height: 1px;
  width: 100%;
  background: #E5E5E5;
  display: block;
}
.article__share {
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 46px 0;
}
.article__share-list {
}
.article__share-item {
  margin-right: 15px;
  position: relative;
  top: 1px;
}
.article__share-link {
  display: block;
  width: 30px;
  height: 30px;
}
.article__share-text {
  color: var(--Dark, #291F04);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.another_articles {
  padding-top: 66px;
  padding-bottom: 38px;
  background: #F9F8F7;
}
.another_articles .article__title-small_wrapper {
  margin-bottom: 42px;
}
.another_articles  .article__title-small {
  margin-bottom: 0;
}
.title__decor_line {
}
.article__recommended {
  position: relative;
}
.article__recommended-slider {
  padding: 0 12px 12px;
  overflow: hidden;
  min-height: 1px;
}
.swiper-wrapper {
}
.blog__list-item {
}
.swiper-slide {
}
.blog__article_preview {
}
.blog__article-picture {
}
.blog__article-img {
}
.blog__article-text_wrapper {
}
.blog__article-title {
}
.blog__article-text {
}
.blog__article-link {
}
.swiper-pagination {
  position: static;
  margin: 50px auto 0;
}
.slider__btns {
}
.slider-next {
  position: absolute;
  top: 50%;
  left: -125px;
  transform: translate(0, -50%);
}
.slider-prev {
  position: absolute;
  top: 50%;
  right: -125px;
  transform: translate(0, -50%);
}
/* BUSINESS */
.page__text {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.business .page__subtitle {
  font-weight: 400;
}
.page__text:first-of-type {
  margin-top: 60px;
}
.categories__grid {
}
.categories__list {
  justify-content: space-between;
  gap: 28px 30px;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 40px;
}
.categories__list-item {
  width: calc((100% / 3) - 20px);
  display: grid;
  grid-template-rows: auto 1fr;
  transition: 0.3s;
}
.categories__list-item:hover {
  box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.15);
}
.category__picture {
  max-height: 255px;
  overflow: hidden;
  position: relative;
  border-radius: 5px 5px 0 0;
}
.category__picture-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}
.category__wrapper {
  padding: 20px;
  /* display: flex;
  flex-direction: column; */
  display: grid;
  grid-template-rows: max-content 1fr max-content;
  border-bottom: 1px solid #E5E5E5;
  border-right: 1px solid #E5E5E5;
  border-left: 1px solid #E5E5E5;
  border-radius: 0 0 5px 5px;
}
.category__title {
  color: #ACCE75;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  margin-bottom: 10px;
}
.categories__list-item:nth-of-type(6n + 2) .category__title {
  color: #EAC088;
}
.categories__list-item:nth-of-type(6n + 3) .category__title {
  color: #833F83;
}
.categories__list-item:nth-of-type(6n + 4) .category__title {
  color: #B6B44C;
}
.categories__list-item:nth-of-type(6n + 5) .category__title {
  color: #F2A0BC;
}
.categories__list-item:nth-of-type(6n + 6) .category__title {
  color: #4E85B8;
}
.category__text {
  color: #A4A4A4;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  margin-bottom: 20px;
}
.category__link {
  display: block;
  padding: 15px 30px;
  width: max-content;
  color: #291F04;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: auto auto 0;
}
.business__steps {
  background: #F9F8F7;
  padding: 50px 26px 50px 26px;
}
.content {
}
.steps__list {
  gap: 0 30px;
  flex-wrap: wrap;
}
.steps__list-item {
  width: calc((100% / 4) - (90px / 4));
  position: relative;
}
.steps__list-item:before {
  display: block;
  position: absolute;
  right: 73%;
  top: 17%;
  width: calc(50% + 40px);
  height: auto;
}
.steps__list-item:nth-of-type(odd):before {
  content: url(/img/steps_arrows1.svg);
}
.steps__list-item:nth-of-type(even):before {
  content: url(/img/steps_arrows2.svg);
}
.steps__list-item:last-of-type:before {
  display: none;
}
.steps__list-wrapper {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  border: 5px solid #FFE925;
  margin: 0 auto 0px auto;
  position: relative;
}
.steps__list-wrapper svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
}
.steps__list-text {
  color: #291F04;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  min-height: 2em;
  white-space: pre-line;
}
.section__title {
  color: #291F04;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  width: max-content;
  margin: 40px auto 40px;
}
.desc__accordion {
}
.desc__accordion-item {
  margin-bottom: 12px;
}
.desc__accordion-item:last-of-type {
  margin-bottom: 0;
}
.desc__accordion-title {
  background-color: transparent;
  color: #291F04;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}
.desc__accordion-title:hover {
  background-color: transparent;
  color: inherit;
  text-shadow: 0 0 0.7px #000;
}
.desc__accordion-title._active {
  text-shadow: 0 0 0.7px #000 !important;
}
.desc__accordion-title span {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  background: rgba(113, 113, 113, 0.15);
  border-radius: 50%;
  transition: 0.3s;
}
.desc__accordion-title span.yellow__btn {
  background: #FFE925 !important;
}
.desc__accordion-title span:before {
  content: '';
  display: block;
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: #3D2E08;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.desc__accordion-title span:after {
  content: '';
  display: block;
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: #3D2E08;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: 0.3s;
}
.desc__accordion-title._active span:after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.desc__accordion-text_wrapper {
  border-radius: 10px;
  background: #F7F7F7;
  width: calc(100% - 50px - 10px);
  padding: 20px 0 30px 0;
}
.desc__accordion-text_list {
  max-width: 70%;
}
.desc__accordion-text_item {
  color: #291F04;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  padding-right: 30px;
  position: relative;
}
.desc__accordion-text_item:after {
  content: '';
  display: block;
  position: absolute;
  background: #291F04;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  top: calc(50% - 2px);
  right: 13px;
}
/* ARCHIVE */
.archive__categories-list {
  justify-content: center;
  margin-top: 50px;
}
.archive__categories-item {
}
.archive__categories-link {
  display: block;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  padding: 10px 20px;
  background: #F9F8F7;
  margin: 0 10px;
  cursor: pointer;
  transition: 0.3s;
}
.archive__categories-link.active,
.archive__categories-link:hover {
  background: #FFE925;
}
.archive__active_category-wrapper {
  margin-top: 24px;
}
.archive__active_category-overview {
  color: #A4A4A4;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.active_category-grid {
  margin-top: 50px;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 40px 30px;
}
.active_category-grid .product_card {
  width: calc((100% / 3) - 20px);
}
.active_category-grid .product_card:last-of-type {
  margin-right: 0;
}
.recommended__products {
  background: #F9F8F7;
  padding: 40px 0;
}
.article__title-small_wrapper {
}
.flexbox {
}
.article__title-small {
}
.title__decor_line {
}
.recommended__slider {
  position: relative;
}
.products_slider {
}
.main__products_slider {
}
.swiper-container {
}
.products_slider-wrapper {
}
.swiper-wrapper {
}
.products_slider-slide {
}
.product_card {
}
.swiper-slide {
}
.product_card-link {
}
.products_slider-picture {
}
.product_card-picture {
}
.products_slider-img {
}
.product_card-img {
}
.products_slider-texts {
}
.product_card-texts {
}
.products_slider-title {
}
.product_card-title {
}
.products_slider-text {
}
.product_card-text {
}
.products_slider-price_and_quickcart {
}
.product_card-price_and_quickcart {
}
.product_card-quickcart_wrapper {
}
.product_card-quickcart {
}
.product_card-price {
}
.slider__btns {
}
.slider-next {
}
.round {
}
.yellow__btn {
}
.slider-prev {
}
/* CART */
.cart__items-wrapper {
}
.cart__titles-wrapper {
  padding: 10px 0;
  border: 1px solid #D1D1D1;
}
.cart__titles-list {
  justify-content: space-evenly;
  margin-right: -60px;
}
.cart__titles-item {
}
.cart-titles-title {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.cart__products-list {
}
.cart__products-item {
  /* padding: 0 20px 0 70px; */
  border-bottom: 1px solid #D1D1D1;
  border-left: 1px solid #D1D1D1;
  border-right: 1px solid #D1D1D1;
  transition: 0.3s;
}
.cart__products-item.hide {
  opacity: 0;
}
.cart__product-list {
  justify-content: space-evenly;
  margin-right: -60px;
}
.cart__product-list:first-of-type .cart__product-item > svg {
  margin-left: 30px;
  cursor: pointer;
}
.cart__product-item {
  align-items: center;
}
.cart__product-item:last-of-type,
.cart__product-item:nth-of-type(2) {
  max-width: 58px;
}
.cart__product-link {
  color: #000;
  max-width: 220px;
}
.cart__product-picture {
  display: block;
  overflow: hidden;
  position: relative;
  width: 80px;
  height: 60px;
  margin-left: 24px;
  padding: 2px 0;
}
.cart__product-img {
  width: 100%;
  object-fit: cover;
  object-position: center top;
}
.cart__product-title {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  text-transform: uppercase;
}
.cart__product_price {
  align-items: center;
}
.cart__product_price-price {
  color: #222;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  text-transform: uppercase;
}
.cart__product_quantity {
  align-items: center;
}
.cart__product_quantity-plus,
.cart__product_quantity-minus {
  width: 32px;
  height: 26px;
  border: 1px solid #606060;
  font-size: 36px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0.75;
  background: transparent;
}
.cart__product_quantity-minus {
  
}
.cart__product_quantity-minus:before {
  content: '';
  display: block;
  height: 3px;
  width: 40%;
  background: #000;
  border-radius: 2px;
  transition: 0.3s;
}
.cart__product_quantity-minus:hover:before {
  background: #FFE925;
}
.cart__product_quantity-input {
  width: 60px;
  height: 45px;
  border: 1px solid #B5B5B5;
  text-align: center;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  text-transform: uppercase;
  margin: 0 16px;
  background: transparent;
}
.cart__product_quantity-plus {

}
.cart__product_quantity-plus svg path {
  transition: 0.3s;
}
.cart__product_quantity-plus:hover svg path {
  fill: #FFE925;
}
.cart__product_amount {
  align-items: center;
}
.cart__product_amount-amount {
  color: #222;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  text-transform: uppercase;
}
.promocode_refresh {
  justify-content: space-between;
  padding: 24px 70px;
  border-bottom: 1px solid #D1D1D1;
  border-left: 1px solid #D1D1D1;
  border-right: 1px solid #D1D1D1;
}
.promocode-wrapper {
  align-items: center;
  margin-right: -60px;
}
.promocode-input {
  display: block;
  margin-left: 30px;
  width: 100%;
  max-width: 200px;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #B5B5B5;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  height: 50px;
  transition: 0.3s;
}
.promocode-input:focus {
  border: 1px solid #6D6D6D;
}
.promocode-input::placeholder {
  color: #B5B5B5;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  text-transform: uppercase;
}
.promocode-button {
  display: block;
  border-radius: 5px;
  border: 1px solid #040404;
  background: transparent;
  padding: 12px 30px;
  min-width: max-content;
  height: 50px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.75;
  text-transform: uppercase;
}
.refreshcart-button {
  height: 50px;
  padding: 6px 16px;
  color: #6D6D6D;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  text-transform: uppercase;
  border-radius: 5px;
}

.summary {
  margin-top: 60px;
}
.article__title-small {
}
.summary__subtotal-wrapper {
  margin-top: 20px;
  border: 1px solid #B5B5B5;
  padding: 20px 40px;
}
.subtotal-wrapper {
  align-items: center;
  justify-content: space-between;
  width: 23.5%;
  min-width: max-content;
}
.flexbox {
}
.summary__subtotal-title {
}
.cart-h3 {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  text-transform: uppercase;
}
.summary__subtotal-sum {
  align-items: center;
  display: flex;
}
.summary__subtotal-cost {
  color: #222;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 0.75;
  text-transform: uppercase;
  margin-left: 2px;
  position: relative;
  bottom: 2px;
}
.delivery_choice {
  padding: 26px 40px;
  border-left: 1px solid #B5B5B5;
  border-right: 1px solid #B5B5B5;
  border-bottom: 1px solid #B5B5B5;
}
.delivery_choice-title {
  margin-left: 70px;
}
.delivery_choice-form {
}
.delivery_choice-wrapper {
  margin-bottom: 10px;
  align-items: center;
  position: relative;
}

.delivery_choice-input {
  display: block;
  width: 30px;
  height: 30px;
  opacity: 0;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.delivery_choice-wrapper:before {
  content: '';
  display: block;
  height: 30px;
  width: 30px;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 1px;
  border: 1px solid #B5B5B5;
  background: transparent;
  cursor: pointer;
}
.delivery_choice-wrapper.has-checked:before {
  /* filter: drop-shadow(6px 6px 0.8px rgba(0, 0, 0, 0.5));
  background: #ffffff; */
  opacity: 0;
}
.delivery_choice-wrapper.has-checked:after {
  content: url(/img/checkmark_checked.svg);
  display: block;
  height: 49px;
  width: 42px;
  position: absolute;
  right: -10px;
  top: -10px;
  cursor: pointer;
}
.delivery_choice-label {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  text-transform: uppercase;
  margin-right: 24px;
  display: flex;
  align-items: center;
}
.delivery-cost {
  margin-right: 10px;
  color: #3D2E08;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.75;
  text-transform: uppercase;
  position: relative;
  bottom: 2px;
}
.delivery-text {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  text-transform: uppercase;
}
.summary__total {
  padding: 26px 40px;
  border-left: 1px solid #B5B5B5;
  border-right: 1px solid #B5B5B5;
  border-bottom: 1px solid #B5B5B5;
  align-items: center;
}
.summary__total-title {
}
.summary__total-wrapper {
  width: 23.5%;
  min-width: max-content;
  justify-content: space-between;
}
.total-wrapper {
  align-items: center;
}
.summary__total-sum {
  color: #222;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  text-transform: uppercase;
  position: relative;
  bottom: 2px;
}
.cart__links {
  justify-content: space-between;
  margin-top: 30px;
}
.cart__link {
  height: 56px;
  border-radius: 5px;
  transition: 0.3s;
  align-items: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  text-transform: uppercase;
}
.cart__link:hover {
  background: #3D2E08;
  color: #FFE925;
}
.tocheckout {
  padding: 0 28px;
  background: #FFE925;
  border: 1px solid #040404;
  color: #000;
}
.toshop {
  align-items: center;
  padding: 0 24px;
  border: 1px solid #B5B5B5;
  color: #B5B5B5;
}
.toshop svg {
  margin-right: 16px;
  transition: 0.3s;
}
.toshop:hover svg path {
  fill: #FFE925;
}

/* SINGLE PRODUCT */
.product .page__title {
  text-align: right;
}
.product .main__columns {
  margin-top: 36px;
  margin-bottom: 0;
}
.product__info {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0 80px;
}
.flexbox {
}
.product__info-sliders {
  min-width: 0;
}
.product__info-main-slider {
  overflow: hidden;
  min-height: 1px;
}
.main-slider__wrapper {
}
.main-slider__slide {
}
.swiper-slide {
}
.main-slider__picture {
  width: 100%;
  max-width: 100%;
  display: block;
  overflow: hidden;
}
.main-slider__img {
  width: 100%;
  object-fit: cover;
  object-position: center top;
  max-height: 466px;
}
.product__info-small-slider_wrapper {
  position: relative;
  margin-top: 40px;
}
.product__info-small-slider {
  min-height: 1px;
  overflow: hidden;
  padding: 0 8px;
}
.small-slider__wrapper {
  display: flex;
  align-items: stretch;
  height: 110px;
}
.small-slider__wrapper .small-slider__slide {
  /* transition: height 0.3s; */
  height: 75px;
  cursor: pointer;
}
.small-slider__slide.swiper-slide-thumb-active {
  border: 4px solid #FFE925;
  height: 90px;
  transform: scale(1.1);
  transform-origin: top;
  position: relative;
  overflow: hidden;
}
.small-slider__slide.swiper-slide-thumb-active:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.3);
}
.small-slider__picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.small-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.small-slider__btns {
}
.product__info-small-slider_wrapper .slider-next,
.product__info-small-slider_wrapper .slider-prev {
  width: 30px;
  height: 26px;
  border-radius: 10px;
  background: rgba(255, 233, 37, 0.35);
  transform: translate(0, -100%);
}
.product__info-small-slider_wrapper .slider-next {
  left: -42px;
}
.product__info-small-slider_wrapper .slider-prev {
  right: -42px;
}
.round {
}
.yellow__btn {
}
.slider-prev {
}
.product__info-info {
}
.product__info-shortdesc {
  color: #A4A4A4;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  display: block;
  padding-bottom: 4px;
  border-bottom: 1px solid #e5e5e5;
}
.product__info-qty_and_price {
  margin-top: 36px;
  justify-content: space-between;
}
.product__info-price {
  padding-top: 6px;
}
.product__info-newprice {
  color: #19BE2A;
  font-size: 45px;
  font-style: normal;
  font-weight: 300;
  line-height: 0.75;
  align-items: end;
  height: max-content;
}
.product__info-newprice svg path {
  fill: #19BE2A;
  width: 22px;
  height: 22px;
}
.product__info-oldprice {
  color: #868686;
font-size: 32px;
font-style: normal;
font-weight: 300;
line-height: 25px;
text-decoration: line-through;
align-items: end;
height: max-content;
}
.product__info-oldprice svg {
  width: 18px;
  height: 18px;
}
.product__info-oldprice svg path {
  fill: #868686;
}
.info__qty {
  border: 1px solid rgba(119, 119, 119, 0.15);
  padding: 16px 24px;
}
.info__qty-plus,
.info__qty-minus {
  cursor: pointer;
  width: 26px;
  height: 28px;
  background: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.info__qty-plus {
}
.info__qty-plus svg {
  width: 18px;
  transition: 0.3s;
}
.info__qty-input {
  width: 40px;
  height: 100%;
  text-align: center;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 0.75;
}
.info__qty-minus {
  
}
.info__qty-minus:hover,
.info__qty-plus:hover {
  background: #3D2E08;
}
.info__qty-plus:hover svg path {
  fill: #FFE925;
}
.info__qty-minus:hover:before {
  background-color: #FFE925;
}
.info__qty-minus:before {
  content: '';
  display: block;
  height: 2px;
  width: 34%;
  background: #000;
  border-radius: 2px;
  transition: 0.3s;
}
.product__info-btns {
  margin-top: 42px;
  justify-content: space-between;
}
.product__info-addtocart {
  padding: 18px 30px;
  border: 2px solid #FFE925;
  color: #291F04;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  background: transparent;
}
.product__info-quickbuy {
  padding: 18px 30px;
  color: #291F04;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.72px;
  text-transform: uppercase;
}
.product__info-specification {
  margin-top: 40px;
}
.product__info-title {
  color: #A4A4A4;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
}
.specification__list {
  margin-top: 20px;
}
.specification__list-item {
  width: 100%;
  padding: 4px 2px;
}
.specification__list-item:nth-of-type(odd) {
  background: #eeeeee;
}
.specification__list-text {
  color: #291F04;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.product__desc_accordion {
  margin-top: 105px;
}
.product__feedbacks {
  margin-top: 90px;
}
.product__feedbacks .article__title-small_wrapper {
  margin-bottom: 60px;
}
.article__title-small {
}
.title__decor_line {
}
.product__feedbacks-slider_wrapper {
  position: relative;
}
.product__feedbacks-slider_wrapper .slider-next,
.product__feedbacks-slider_wrapper .slider-prev {
  transform: translate(0, -100%);
}
.product__feedbacks-slider {
  min-height: 1px;
  overflow: hidden;
  padding: 0 10px;
}
.feedbacks__slider-wrapper {
  display: flex;
  align-items: stretch;
  height: 400px;
}
.swiper-wrapper {
}
.feedbacks__slider-slide {
  padding: 24px;
  border: 1px solid #A4A4A4;
  background: #FFF;
  height: 100%;
  display: grid;
  grid-template-rows: max-content max-content 1fr;
}
.feedbacks__slider-title {
  color: #291F04;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  margin-bottom: 12px;
}
.feedbacks__slider-text {
  color: #291F04;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  max-height: 260px;
  overflow: auto;
  padding-left: 10px;
}
.feedbacks__slider-text::-webkit-scrollbar {
  width: 5px;
}
.feedbacks__slider-text::-webkit-scrollbar-track {
}
.feedbacks__slider-text::-webkit-scrollbar-thumb {
  background-color: #FFE925;
}
.feedbacks__slider-text::-webkit-scrollbar-thumb:hover {
  background-color: #FFE925;
}
.feedbacks__slider-btn_wrapper {
  width: 100%;
  border-top: 1px solid #d3d3d3;
  align-self: flex-end;
}
.feedbacks__slider-btn {
  color: #3D2E08;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  margin-top: 12px;
  display: block;
  text-align: left;
  padding: 2px 10px;
  border-left: 5px solid #FFE925;
  cursor: pointer;
  transition: 0.3s;
}
.feedbacks__slider-btn:hover {
  text-shadow: 0 0 0.7px #000;
}
.slider__btns {
}
.slider-next {
}
.product__feedbacks-slider_wrapper .swiper-pagination {
  margin-bottom: 70px;
  margin-top: 88px;
}
.product__feedbacks-add {
  display: block;
  margin: 0 auto 0 0;
  padding: 15px 30px;
  color: #291F04;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  position: absolute;
  bottom: -12px;
  left: 0;
  background: transparent;
  border: 2px solid #FFE925;
}

/* Slider */
.slider-next,
.slider-prev {
  width: 70px;
  height: 70px;
}
.slider-prev svg {
  transform: rotate(180deg);
}
.slider-next:hover,
.slider-prev:hover {
  background: #FFE925;
}
.slider-prev:hover svg {
  transform: rotate(180deg) scale(1.25);
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  display: none;
}
.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #000;
  opacity: 1;
}
.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: #FFE925;
}



/* Pagination */
.pagination {
  width: max-content;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}
.pagination__prev {
  width: 50px;
  height: 50px;
}
.pagination__list {
  margin: 0 20px;
  gap: 0 20px;
}
.pagination__list-item {
  width: 50px;
  height: 50px;
  border: 1px solid #E5E5E5;
  transition: 0.3s;
}
.pagination__list-item:hover {
  border: 1px solid #FFE925;
}
.pagination__list-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #3D2E08;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
}
.pagination__next {
  width: 50px;
  height: 50px;
}
.pagination__next svg {
  transform: rotate(180deg) ;
}
.pagination__next:hover svg {
  transform: rotate(180deg) scale(1.25);
}

/* gift popup */
.popup__bg {
}
.selected__popup_bg {
}
._active {
}
.popup {
}
.selected__popup {
  padding: 0 105px;
  background: #ffffff;
}
.popup__wrapper {
}
.selected__popup-wrapper {
  padding: 35px;
}
.close-popup {
}
.selected__close-popup {
  left: -95px;
}
.selected__wrapper {
  position: relative;
  padding: 6px 0 6px 0;
}
.selected__slider {
  overflow: hidden;
  min-height: 1px;
  padding: 0 0 0 12px;
}
.selected__slider-wrapper {
  padding: 6px;
}
.swiper-wrapper {
}
.selected__slider-slide {
}
.product_card {
}
.swiper-slide {
}
.product_card-link {
}
.products_slider-picture {
}
.product_card-picture {
}
.products_slider-img {
}
.product_card-img {
}
.products_slider-texts {
}
.product_card-texts {
}
.products_slider-title {
}
.product_card-title {
}
.products_slider-text {
}
.product_card-text {
}
.products_slider-price_and_quickcart {
}
.product_card-price_and_quickcart {
}
.product_card-quickcart_wrapper {
}
.product_card-quickcart {
}
.product_card-price {
}
.slider__btns {
}
.selected__wrapper .slider-next {
  left: -105px;
}
.round {
}
.yellow__btn {
}
.selected__wrapper .slider-prev {
  right: -105px;
}

/* FOOTER */
.ftr {
}
.ftr__form {
  background: rgba(255, 233, 37, 0.05);
  padding: 60px 0 50px 0;
}
.ftr__form-title {
  text-align: center;
  margin-bottom: 26px;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
}
.ftr__form-subtitle {
  text-align: center;
  margin-bottom: 32px;
  color: #757573;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.ftr__callback_form {
  display: flex;
  width: max-content;
  margin: 0 auto;
}
.ftr__callback_form-input {
  margin-left: 40px;
  border: 1px solid #E5E5E5;
  background: #FFF;
  height: 100%;
  height: 50px;
  width: 300px;
  padding: 16px 20px;
  color: #858585;
  font-family: '';
}
.ftr__callback_form-input[type="email"] {
  font-family: 'Montserrat', sans-serif;
}
.ftr__callback_form-input[type="text"] {
  font-family: 'Alef', sans-serif;
}
.ftr__callback_form-input:focus {
  border: 1px solid #cccccc;
}
.ftr__callback_form-input::placeholder {
  color: #A4A4A4;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.ftr__callback_form-button {
  padding: 15px 30px;
  background: #FFE925;
  color: #291F04;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: 0.3s;
}
.ftr__info {
  background: #3D2E08;
}
.ftr__info-list {
  padding: 64px 0;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.ftr__info-item {
}
.ftr__info-item._mob {
  display: none;
}
.ftr__info-item_title {
  display: none;
}
.ftr__logo_and_contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ftr__logo-link {
  display: block;
  margin: 0 auto;
}
.ftr__logo-link svg {
  width: 70px;
}
.ftr__mob-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 34px;
}
.ftr__mob-link span {
  margin-right: 12px;
  color: #FFE925;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  
}
.ftr__mob-link svg {
  width: 24px;
  height: 24px;
}
.ftr__socials {
  justify-content: space-between;
  padding: 0 6px 0 0;
}
.ftr__contacts-link svg {
  width: 30px;
  height: 30px;
}
.ftr__contacts-link svg path {
  transition: 0.3s;
}
.ftr__contacts-link:hover svg path {
  fill: #FFE925;
}
.ftr__socials-item:last-of-type .ftr__contacts-link svg {
  width: 38px;
  height: 38px;
  position: relative;
  top: -3px;
}
.ftr__socials-item {
}
.upper__contacts-link {
}
.ftr__pages {
}
.ftr__info-column {
}
.ftr__info-column_item {
  margin-bottom: 13px;
}
.ftr__info-item._mob {
  display: none;
}
.ftr__info-column_item:last-of-type {
  margin-bottom: 0;
}
.ftr__info-column_link {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.ftr__info-column_link:hover {
  text-shadow: 0 0 1px;
  border-bottom: 5px solid #FFE925;
}
.ftr__gifts-first {
}
.ftr__gifts-second {
}
.ftr__categories {
}
.ftr hr {
  background: rgba(255, 255, 255, 0.60);
  width: 90%;
  margin: 0 auto;
  height: 1px;
}
.ftr__last {
  justify-content: space-between;
  padding: 12px 0;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.ftr__rules_and_policy {
}
.ftr__policy {
  color: #CEB679;
}
.ftr__rules {
  color: #CEB679;
  margin-right: 36px;
}
.ftr__rights {
  color: #CEB679;
}


@media (min-width: 769px) {
  .hdr__nav-categories_wrapper {
    display: block;
  }
}
@media (max-width: 1620px) {
  /* main page */
  .main__self_presentation-list {
    gap: 0;
  }
  .main__self_presentation-item {
    width: calc(100%/3);
  }
  .main__self_presentation-wrapper {
    min-width: unset;
  }
  .main__self_presentation-text {
    max-width: 95%;
  }
  .slide__title {
    font-size: 44px;
    text-align: center;
    max-height: 118px;
  }
  .product_card-img {
    height: 100%;
  }
  .choice__gift .gift__form {
    top: 32%;
    padding: 30px;
  }
  /* archive */
  .archive__categories-link {
    padding: 10px 6px;
    font-size: 16px;
    margin: 0 8px;
  }
  /* cart */
  .cart__titles-list,
  .cart__product-list {
    margin-right: -40px;
  }
  /* product */
  .product__info-btns {
    flex-direction: column;
  }
  .product__info-quickbuy {
    margin-top: 26px;
  }
  /* selected popup */
  .selected__popup {
    max-width: 60vw;
    max-height: max-content;
  }
  .selected__slider {
    padding: 0 12px;
  }
}
@media (max-width: 1560px) {
  /* hdr */
  .hdr__upper-text {
      transform: translate(-30%, -50%);
  }
  /* main page */
  .main__self_presentation-list {
    gap: 0;
    justify-content: space-between;
  }
  .main__self_presentation-wrapper {
    min-width: unset;
  }
  .slider__slide-texts {
    padding: 0;
    align-self: end;
  }
  /* business */
  .steps__list-item:before {
    right: 77%;
    width: calc(40% + 40px);
  }
  /* cart */
  .cart__titles-list,
  .cart__product-list {
    margin-right: -20px;
  }
  /* selected popup */
  .selected__popup {
    max-width: 82vw;
    max-height: max-content;
  }
  .popup__form.gift__form {
    padding: 40px;
  }
}
@media (max-width: 1380px) {
  .main__columns > .flexbox {
    justify-content: space-between;
  }
  /* main page */
  .choice__gift .gift__form {
    top: 30%;
    padding: 26px;
  }
  .videofeedbacks__story {
    max-width: 100%;
  }
  /* archive */
  .archive__categories-list {
    flex-wrap: wrap;
  }
  .archive__categories-item:first-of-type {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .archive__categories-link {
    padding: 10px 8px;
    font-size: 16px;
  }
  /* cart */
  .cart__titles-list,
  .cart__product-list {
    margin-right: 0;
  }
  .cart__product_quantity-input,
  .cart__product_quantity-plus, .cart__product_quantity-minus {
    width: 45px;
    height: 43px;
  }
  /* contacts */
  .contacts .main__columns > .flexbox {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }
  .contacts__introduce {
    width: 100%;
    order: 1;
    margin-bottom: 40px;
  }
  .contacts__list {
    order: 2;
  }
  .contacts__form {
    order: 3;
    width: 50% !important;
  }
}
@media (max-width: 1300px) {
  /* hdr */
  .upper__contacts-item:first-of-type {
    display: none;
  }
  .hdr__upper-text {
    transform: translate(-50%, -50%);
  }
  /* gift popup */
  .popup__form {
    padding: 20px 30px;
    transform: translate(0, -25%);
  }
  /* main page */
  .choice__gift .gift__btn {
    width: max-content;
  }
  /* single */
  .article__decoration {
    bottom: 120px;
  }
  .article__title-wrapper {
    max-width: 84%;
    margin: 0 auto;
  }
  .article__decoration {
    bottom: 110px;
    right: 20px;
    width: 120px;
    height: 120px;
  }
  .article__recommended-slider {
    padding-bottom: 10px;
  }
  /* archive */
  .archive__categories-link {
    font-size: 14px;
  }
}
@media (max-width: 1100px) {
  .content-small {
    width: 59.375%;
    max-width: 1140px;
  }
  /* header */
  .hdr__category-products {
    min-height: 300px;
  }
  /* gift popup */
  .popup__form {
    padding: 20px 30px;
    transform: none;
    position: static;
  }
  .popup__picture {
    position: absolute;
    z-index: -1;
    display: flex;
    justify-content: end;
    left: 35px;
    top: 50%;
    transform: translate(0, -20%);
  }
  .popup__picture img {
    transform: scaleX(1);
  }
  /* main page */
  .main__self_presentation-list {
    flex-wrap: wrap;
  }
  .main__self_presentation-item {
    width: 100%;
    margin-bottom: 20px;
  }
  .steps__list-wrapper {
    width: max-content;
  }
  .main__self_presentation-wrapper {
    width: 100%;
  }
  .gift__picture {
    top: 12%;
  }
  /* single article */
  .article__title {
    font-size: 36px;
  }
  .article__decoration {
    bottom: 90px;
  }
  /* contacts */
  .main__columns > .flexbox{
    flex-wrap: wrap;
  }
  .main__column.contacts__introduce {
    width: 100%;
    order: 1;
    margin-bottom: 40px;
  }
  .main__column.contacts__list {
    order: 2;
    width: 44%;
  }
  .main__column.contacts__form {
    order: 3;
    width: 44%;
    padding-left: 0;
  }
  /* business */
  .categories__list-item {
    width: calc(50% - 15px);
  }
  .steps__list-item:before {
    right: 90%;
    width: 45%;
  }
  /* archive */
  .archive__categories-list {
    flex-wrap: wrap;
  }
  .archive__categories-item {
    margin-bottom: 12px;
  }
  .active_category-grid .product_card {
    width: calc((100% / 2) - 15px);
  }
  /* archive */
  .archive__categories-item:first-of-type {
    width: auto;
    display: block;
  }
  .archive__categories-link {
    font-size: 16px;
  }
  /* cart */
  .cart__titles-wrapper {
    display: none;
  } 
  .cart__product-list {
    flex-direction: column;
  }
  .cart__products-list {
    border-top: 1px solid #d1d1d1;
    border-left: none;
  }
  .cart__products-item {
    margin-bottom: 20px;
    border-top: 1px solid #d1d1d1;
  }
  .cart__product-item {
    width: 100%;
    border-bottom: 1px solid #d1d1d1;
    flex-direction: row-reverse;
    padding: 6px 10px;
  }
  .cart__product-list .cart__product-item:first-of-type {
    position: relative;
  }
  .cart__product-list .cart__product-item:first-of-type:before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #d1d1d1;
    position: absolute;
    top: 42px;
    left: 0;
  }
  .cart__product-list:first-of-type .cart__product-item > svg {
    width: 100%;
    order: 1;
    margin-left: calc(100% - 30px);
    margin-right: 2px;
    margin-top: 8px;
    margin-bottom: 20px;
  }
  .cart__product-item:last-of-type, .cart__product-item:nth-of-type(2) {
    width: 100%;
    max-width: unset;
  }
  .cart__product-link {
    max-width: unset;
  }
  .cart__product-picture {
    margin-left: 0;
    margin-right: 12px;
  }
  .cart__product-list:first-of-type .cart__product-item > .cart__product-link {
    order: 2;
  }
  .cart__product-list:first-of-type .cart__product-item > .title {
    order: 4;
    flex: 1;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
  }
  .cart__product-list:first-of-type .cart__product-item:first-of-type {
    width: 100%;
    flex-wrap: wrap;
  }
  .promocode_refresh {
    flex-wrap: wrap;
    padding: 0;
    border: none;
  }
  .promocode-wrapper,
  .refreshcart-button {
    margin-right: 0;
  }
  .refreshcart-button {
    display: block;
    margin-top: 20px;
  }
  /* single product */
  .product__info {
    display: block;
  }
  .small-slider__wrapper .small-slider__slide {
    height: 95px;
  }
  .product__info-btns {
    flex-direction: row;
  }
  .product__info-quickbuy {
    margin-top: 0;
  }
  /* selected popup */
  .selected__popup {
    max-width: 90vw;
  }
  /* footer */
  .ftr__callback_form {
    width: auto;
  }
  .ftr__info-list {
    display: grid;
    grid-template-columns: repeat(3, calc(100%/3));
  }
  .ftr__info-item {
    margin-bottom: 20px;
  }
  .ftr__info-item:first-of-type {
    grid-row: 1/2;
    grid-column: 3/4;
  }
}
@media (max-width: 1024px) {
  
  /* contacts */
  .main__columns {
    display: block;
  }
  .main__column:last-of-type {
    margin-top: 40px;
    margin-right: 0;
    width: 100%;
  }
  .main__column-picture,
  .main__column-picture img {
    width: 100%;
  }
  /* single product */
  .product__feedbacks-slider_wrapper .swiper-pagination {
    margin-bottom: 0;
  }
  .product__feedbacks-slider_wrapper {
    padding-bottom: 70px;
  }
  .product__feedbacks-add {
    position: static;
    margin: 40px auto 0;
  }
  /* footer */
  .ftr__info-list {
    display: flex;
    /* flex-direction: column; */
    align-items: stretch;
    justify-content: space-between;
    padding: 48px 5% 0;
    flex-wrap: wrap;
    /* padding-bottom: 20px; */
  }
  .ftr__info-item {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  .ftr__info-item.ftr__gifts-first {
    display: none;
  }
  .ftr__info-item._mob {
    display: block;
  }
  .ftr__info-item_title {
    color: #FFF;
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
    margin-bottom: 12px;
    display: block;
    white-space: nowrap;
  }
  .ftr__pages {
    order: 5;
    margin: 0 0 40px auto;
  }
  .ftr__pages {
    margin-bottom: 25px;
  }
  ._mob.ftr__gifts-first.second {
    order: 4;
  }
  ._mob.ftr__gifts-first:last-of-type {
    order: 3;
  }
  .ftr__categories {
    order: 2;
  }
  .ftr__info-column_item {
    text-align: right;
  }
  .ftr__socials {
    justify-content: center;
  }
  .ftr__socials-item {
    margin: 0 8px;
  }
  .ftr__info-list .ftr__info-item:not(:first-of-type) {
    width: 40%;
  }
}
@media (max-width: 780px) {
  /* technical */
  .content,
  .content-small {
    width: 90%;
  }
  /* header */
  .hdr__menus {
    position: relative;
  }
  .brgr {
    display: block;
    transition: 0.3s;
  }
  .brgr.active {
    border-radius: 50%;
    background: #fcc82d;
  }
  .hdr__nav {
    position: static;
  }
  .hdr__nav-list {
    display: block;
    background: #3D2E08;
    height: max-content;
    position: absolute;
    width: 50vw;
    padding-bottom: 14px;
    z-index: 888;
    right: -100vw;
    transition: 0.3s;
  }
  .hdr__nav-list.active {
    max-height: 80vh;
    overflow-y: auto;
  }
  .hdr__nav-list li a {
    padding-right: 14px;
  }
  .menu-arrow {
    margin-left: 14px;
  }
  svg.menu-arrow {
    order: unset;
    margin-left: 8px;
  }
  .hdr__nav-list.active {
    right: 0;
  }
  .hdr__nav-categories_wrapper {
    position: relative;
    width: 100%;
    top: 0;
    background: #5B440B;
    padding-bottom: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .hdr__nav-categories {
    padding: 0;
    min-width: auto;
    background: #5B440B;
  }
  .hdr__nav-category:first-of-type .hdr__nav-category_wrapper {
    padding: 8px 0 8px 15px;
  }
  .hdr__nav-category:last-of-type .hdr__nav-category_wrapper {
    padding: 8px 0 0 0;
  }
  .hdr__category-products {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    order: 3;
    width: 100%;
    padding: 0;
    min-height: unset;
    height: auto;
    max-height: unset;
  }
  .hdr__category-products[hidden] {
    height: 0;
    overflow: hidden;
  }
  .hdr__category-products[hidden] > * {
    min-height: 0 !important;
    max-height: 0 !important;
  }
  .hdr__category-products .hdr__category-product {
    min-height: unset;
  }
  .hdr__category-products .hdr__category-product:first-of-type {
    padding-top: 8px;
  }
  .hdr__nav-item .hdr__arrow_down {
    width: 24px;
    height: 24px;
  }
  .spoller-wrapper {
    padding-bottom: 0;
  }
  .spoller-wrapper .menu-arrow,
  .spoller-wrapper > .hdr__nav-category_link {
    padding-bottom: 8px;
  }
  .spoller-wrapper svg.menu-arrow {
    padding-bottom: 0;
    transition: 0.3s;
  }
  .hdr__nav-category:hover .menu-arrow:before {
    content: url('/img/menu_arrow_white.svg');
    transform: none;
    display: block;
    transition: 0.3s;
  }
  .hdr__nav-category:hover .menu-arrow._active:before {
    content: url('/img/menu_arrow_yellow.svg') !important;
    transform: rotate(180deg) !important;
    display: block !important;
    transition: 0.3s;
  }
  svg.menu-arrow._active {
    transform: rotate(180deg);
  }
  svg.menu-arrow._active path {
    fill: #FFE925;
  }
  .menu-arrow._active + .hdr__nav-category_link {
    color: #FFE925 !important;
  }
  .hdr__nav-link._active {
    color: #FFE925 !important;
  }
  .hdr__nav-category:hover .hdr__nav-category_link, .hdr__category-product:hover .hdr__product-link {
    color: #fff;
  }
  .has-products .hdr__nav-category_wrapper {
    flex-wrap: wrap;
    padding-left: 0;
  }
  .hdr__nav-item {
    padding: 10px 0;
    border-bottom: 1px solid #67521C;
  }
  .open_categories {
    flex-wrap: wrap;
    padding: 0;
    justify-content: space-between;
  }
  .open_categories .hdr__nav-link {
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .hdr__nav-item:last-of-type {
    border-bottom: none;
    padding: 10px 0 0 0;
  }
  .hdr__nav-link {
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.45px;
    text-transform: uppercase;
  }
  .hdr__nav-item .hdr__arrow_down path {
    fill: #fff;
  }
  .hdr__nav-category {
    padding: 0;
  }
  .hdr__category-product:last-of-type {
    border-bottom: none;
  }
  .hdr__category-products {
    background: #8A6400;
  }
  /* gift popup */
  .popup__picture {
    position: static;
    max-height: 300px;
    display: none;
  }
  .popup__form {
    width: 100%;
    /* position: absolute;
    bottom: 35px;
    max-width: calc(100% - 66px); */
  }
  .popup__picture {
    max-width: 100%;
  }
  .popup {
    max-width: 80vw;
  }
  
  /* main page */
  .main__slider-slider {
    margin-bottom: 30px;
  }
  .choice__gift .gift__form {
    left: 0;
    top: 26%;
  }
  .choice__gift .popup__picture {
    display: block;
    max-height: unset;
    transform: scaleX(-1);
    width: 80%;
  }
  /* single article */
  .slider__btns {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
  }
  .slider-next, .slider-prev {
    position: static;
    transform: none;
    margin: 16px 23px;
  }
  .swiper-pagination {
    display: none;
  }
  .another_articles {
    padding-bottom: 60px;
  }
  .article__share {
    flex-direction: column;
    align-items: center;
  }
  .article__share-text {
    margin-bottom: 14px;
  }
  /* cart */
  .refreshcart-button {
    margin-top: 0;
  }
  /* single product */
  .small-slider__btns {
    display: none;
  }
  .small-slider__wrapper {
    height: 200px;
  }
  .small-slider__wrapper .small-slider__slide {
    height: 145px;
  }
  .feedbacks__slider-wrapper {
    height: 350px;
  }
  .product__feedbacks .slider-next, .product__feedbacks .slider-prev {
    transform: none !important;
  }
  /* selected popup */
  .selected__popup {
    padding: 0;
    max-width: 50vw;
  }
  .selected__popup-wrapper,
  .selected__wrapper,
  .selected__slider,
  .selected__slider-wrapper {
    padding: 0;
  }
  .selected__close-popup {
    left: 0px;
    top: 0;
    z-index: 2;
    border-radius: 50%;
    background-color: #fff;
    width: 32px;
    height: 32px;
  }
  .selected__close-popup span {
    position: absolute;
    top: 1.7px;
    left: 5.5px;
  }
}
@media (max-width: 533px) {
  .round svg {
    width: 18px;
    height: 18px;
  }
  /* Header */
  .upper__blog_and_delivery,
  .upper__contacts-item:nth-of-type(4),
  .upper__contacts-item:nth-of-type(5) {
    display: none;
  }
  .hdr__upper-text {
    position: static;
    transform: none;
  }
  .hdr__page_slogan {
    display: none;
  }
  .hdr__menus .content {
    width: 100vw;
    height: 38px;
  }
  .ham {
    height: 38px;
    width: 38px;
  }
  .brgr {
    height: 38px;
  }
  .hdr__nav-list {
    /* width: 100vw; */
    width: calc((100vw / 3) * 2);
  }
  .hdr__nav-list.active {
    max-height: 100vh;
  }
  .hdr__category-product {
    width: 100%;
    padding-top: 8px;
    font-size: 14px;
  }
  /* gift popup */
  .popup__picture {
    position: static;
    max-height: 300px;
    display: block;
  }
  .popup__form {
    width: 98%;
    /* position: absolute;
    bottom: 35px;
    max-width: calc(100% - 66px); */
    padding: 36px;
    box-shadow: none;
  }
  .popup__picture {
    max-width: 100%;
    transform: none;
    padding: 0 36px;
  }
  .popup {
    max-width: 96vw;
    max-height: 90vh;
    background: #fff;
  }
  .popup__wrapper {
    padding: 18px 0;
  }
  .popup__title {
    color: #291F04;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  padding: 0 36px;
  }
  /* about */
  .about main {
    margin-bottom: 0;
  }
  .about .main__columns {
    margin-bottom: 0;
  }
  .about .main__column {
    gap: 20px;
  }
  .about .main__column:last-of-type {
    margin-top: 20px;
  }
  .about .main__column-picture {
    margin-top: 16px;
  }
  .about .page__subtitle {
    font-weight: 700;
  }
  .about .main__column-text {
    font-size: 16px;
  }
  /* main page */
  .promo__texts {
    text-align: center;
  }
  .main__slider-slide {
    display: block;
  }
  .main__products_sliders .article__title-small {
    font-size: 26px;
  }
  .products_sliders__btns {
    margin-top: 16px;
  }
  .slider__slide-texts {
    width: 100%;
  }
  .slide__title {
    color: #291F04;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
    min-height: 2em;
  }
  .slide__link {
    margin-top: 12px;
    padding: 8px 32px;
  }
  .main__self_presentation-item {
    margin-bottom: 36px;
  }
  .main__self_presentation-item:last-of-type {
    margin-bottom: 0;
  }
  .main__self_presentation-title,
  .main__self_presentation-text {
    text-align: center;
    max-width: 95%;
  }
  .category__title {
    font-size: 20px;
  }
  .choice__gift .gift__title {
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .choice__gift .gift__picture {
    display: block;
    position: static;
    width: 100%;
    transform: none;
    padding: 0;
  }
  .choice__gift .gift__form {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
  }
  .choice__gift .gift__btn {
    width: 80%;
  }
  .products_slider-title {
    font-size: 18px;
  }
  .products_slider-text {
    font-size: 14px;
  }
  .products_sliders__btns {
    flex-wrap: wrap;
    gap: 14px;
  }
  .products_sliders-btn {
    margin: 0;
    width: 46%;
    text-align: center;
  }
  .products_sliders-btn:first-of-type {
    margin: 0 27% 0 27%;
  }
  .main__products_sliders {
    background: #fff;
    padding-bottom: 0;
  }
  .promo {
    flex-direction: column;
    gap: 0;
    margin-bottom: 80px;
  }
  .promo__wrapper {
    width: 100%;
  }
  .promo__wrapper:first-of-type {
    margin-bottom: 20px;
  }
  .promo__title {
    font-size: 26px;
    padding-bottom: 0;
  }
  .promo__text {
    margin-top: 16px;
  }
  .promo__picture:before {
    height: calc(50% + 80px);
    width: 100%;
    bottom: 40%;
    left: 0;
    right: 0;
    transform: none;
  }
  .promo__img {
    width: 80%;
    display: block;
    margin: 0 auto;
  }
  .main__products_sliders {
    margin-bottom: 140px;
  }
  .videofeedbacks__titles {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0px;
  }
  .videofeedbacks__title-wrapper {
    align-items: center;
    margin-bottom: 8px;
  }
  .videofeedbacks__title-wrapper .article__title-small {
    font-size: 26px;
  }
  .videofeedbacks__title {
    margin-right: 0;
  }
  .article__title-small.main__category-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: -12px;
  }
  .videofeedbacks__story {
    height: max-content;
  }
  .videofeedbacks__slider-slide {
    padding: 32px;
  }
  .videofeedbacks .slider__btns {
    margin-top: -28px;
  }
  .category__text.main__category-text {
    margin-bottom: 8px;
  }
  .recommended_articles .article__title-small_wrapper {
    margin-bottom: 18px;
  }
  .recommended_articles .article__title-small_wrapper .article__title-small {
    font-size: 26px;
  }
  .main_recommended_articles {
    padding: 60px 0;
  }
  .blog__article-title {
    font-size: 20px;
  }
  .blog__article-picture {
    height: 171px;
  }
  .blog__article-text_wrapper {
    padding: 10px 20px;
  }
  /* archive */
  .product_card-quickcart {
    font-size: 15px;
  }
  .product_card-quickcart_wrapper svg {
    width: 25.2px;
    height: 24.1px;
  }
  .product_card-text {
    border-bottom: none;
  }
  .product_card {
    border-radius: 5px;
    overflow: hidden;
  }
  .products_slider-texts.product_card-texts {
    padding-top: 13px;
  }
  /* contacts */
     .main__columns {
    margin-bottom: 0;
  }
  .main__column-picture img {
    transform: scale(1.1);
  }
  /* Blog */
  .page__title {
    font-size: 26px;
  }
  .blog__list-item {
    width: 100%;
  }
  .blog .main__columns {
    margin-top: 24px;
  }
  .pagination__list-item:not(:nth-of-type(1)):not(:nth-of-type(2)) {
    display: none;
  }
  /* Single article */
  .article .content:first-of-type {
    width: 100vw;
  }
  .article__picture {
    max-height: 200px;
  }
  .article__title-wrapper {
    bottom: 20px;
    padding: 15px 20px;
  }
  .article__title {
    font-size: 20px;
    text-align: center;
  }
  .article .article__title-small_wrapper {
    margin-bottom: 15px;
    margin-top: 10px;
  }
  .article .article__title-small_wrapper .article__title-small {
    font-size: 18px;
    font-weight: 700;
    text-align: right;
  }
  .article__subtitle {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
  }
  .article__paragraph {
    font-size: 16px;
  }
  .article__decoration {
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 10px;
  }
  .blog__article-link {
    text-align: left;
    border-right: none;
    border-left: 5px solid #FFE925;
    padding-right: 0;
    padding-left: 12px;
  }
  .title__decor_line {
    display: none;
  }
  .article__title-small {
    width: 100%;
    text-align: center;
  }
  .another_articles {
    background: transparent;
  }
  /* contacts */
  .main__columns > .flexbox{
    flex-direction: column;
  }
  .contacts .main__columns > .flexbox {
    flex-direction: column;
  }
  .main__column.contacts__list {
    order: 2;
    width: 100%;
    margin-bottom: 40px;
    align-self: center;
  }
  .main__column.contacts__form {
    order: 3;
    width: 100% !important;
    gap: 12px 0;
    margin-bottom: 40px;
  }
  .main__column.contacts__introduce {
    margin-bottom: 40px;
    /* order: 3; */
    order: 1;
  }
  .contacts__introduce-picture {
    width: 124px;
    height: 124px;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .contacts__introduce-img {
    height: 150px;
  }
  .contacts__introduce-logo_and_title {
    flex-direction: column;
  }
  .contacts__introduce-title {
    font-size: 24px;
  }
  .contacts__form-button {
    width: max-content;
    padding: 15px 60px;
    margin: 0 auto;
    margin-top: 20px;
  }
  /* business */
  .business .page__subtitle {
    margin-top: 10px;
  }
  .business .main__columns {
    margin-top: 40px;
  }
  .business .category__wrapper {
    padding: 6px 14px 20px;
  }
  .categories__list-item {
    width: 100%;
  }
  .categories__list {
    gap: 30px 0;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 40px;
  }
  .business .page__text {
    color: #A4A4A4;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    margin-top: 30px;
  }
  .page__subtitle {
    color: #291F04;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
  }
  .main__columns {
    margin-bottom: 60px;
  }
  .business__steps {
    padding-left: 0;
    padding-right: 0;
  }
  .steps__list {
    gap: 70px 0;
    padding-left: 26px;
    padding-right: 26px;
  }
  .steps__list-item {
    width: calc(100% - 60px);
    margin: 0 auto;
  }
  .steps__list-item:before {
    display: block;
    position: absolute;
    left: 50%;
    right: unset;
    top: calc(100% + 10px);
    width: auto;
    height: auto;
    transform: translate(-50%, 0);
  }
  .steps__list-item:nth-of-type(odd):before {
    content: url(/img/steps_arrows_mob1.svg);
  }
  .steps__list-item:nth-of-type(even):before {
    content: url(/img/steps_arrows_mob2.svg);
  }
  .steps__list-wrapper {
    margin-bottom: -6px;
  }
  .desc__accordion-text_wrapper {
    width: calc(100% - 25px);
    margin-top: 10px;
  }
  .steps__list-text {
    line-height: 100%;
    min-height: auto;
  }
  .desc__accordion-title {
    font-size: 16px;
  }
  .desc__accordion-title:hover {
    text-shadow: none;
  }
  .desc__accordion-title span {
    width: 24px;
    height: 24px;
    min-height: 24px;
    min-width: 24px;
  }
  /* archive */
  .archive__categories-list {
    display: grid;
    grid-template-columns: max-content max-content;
    margin-top: 16px;
  }
  .archive__categories-link {
    text-align: center;
  }
  .active_category-grid .product_card {
    width: 100%;
  }
  .archive__categories-item:first-of-type {
    width: 100%;
    grid-column: 1/3;
  }
  .archive__categories-item:first-of-type a {

  }
  /* cart */
  .main__columns {
    margin-top: 30px;
  }
  .cart__product-picture {
    /* display: none; */
  }
  .cart__product-title {
    font-size: 14px;
    /* max-width: 90%; */
    margin-bottom: 10px;
  }
  .cart__product-list:first-of-type .cart__product-item > .title {
    font-size: 14px;
  }
  .cart__product-list:first-of-type .cart__product-item:first-of-type > .title {
    margin-bottom: 10px;
  }
  .cart__product-list:first-of-type .cart__product-item:last-of-type > .title {
    font-weight: 700;
  }
  .cart__product-link:first-of-type {
    width: max-content;
    grid-column: 2/3;
    grid-row: 3/4;
    justify-self: end;
  }
  .cart__product-link {
    grid-column: 2/3;
    grid-row: 2/3;
    justify-self: end;
    width: max-content;
  }
  .cart__product-list:first-of-type .cart__product-item:first-of-type {
    display: grid;
  }
  .cart__product-item-title {
    display: none;
  }
  .cart__product_quantity-input {
    margin: 0 10px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .cart__product_quantity-input, .cart__product_quantity-plus, .cart__product_quantity-minus {
    width: 30px;
    height: 30px;
  }
  .cart__product_price-price {
    font-size: 18px;
  }
  .cart__product_amount-amount {
    font-size: 18px;
    font-weight: 700;
  }
  .refreshcart-button {
    display: block;
    margin-top: 20px;
    position: relative;
    right: 32%;
    padding: 10px 26px;
  }
  .delivery-cost {
    font-size: 14px;
    bottom: 0;
  }
  .subtotal-wrapper {
    width: 100%;
  }
  .summary__total-wrapper {
    width: 100%;
  }
  .cart-h3 {
    font-size: 16px;
  }
  .summary__total-sum,
  .summary__subtotal-cost {
    font-size: 18px;
    font-weight: 700;
  }
  .delivery-text {
    font-size: 14px;
  }
  .subtotal-wrapper * {
    font-size: 16px;
  }
  .cart__product-list:first-of-type .cart__product-item > svg {
    margin-top: 0;
    margin-bottom: 18px;
    justify-self: center;
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .cart__product-list .cart__product-item:first-of-type:before {
    top: 32px;
  }
  button:hover, .yellow__btn:hover {
    background: inherit;
    color: inherit;
  }
  .yellow__btn.round:hover {
    background: #FFE925 !important;
  }
  button:active, .yellow__btn:active {
    background: #000;
    color: #fff;
  }
  .cart__product-item {
    padding: 10px;
  }
  .summary__subtotal-wrapper,
  .delivery_choice,
  .summary__total {
    padding: 12px 10px;
  }
  .delivery_choice-title {
    margin-left: 0;
    margin-bottom: 12px;
  }
  .delivery_choice {
    flex-direction: column;
  }
  .delivery_choice-label {
    font-size: 14px;
  }
  .delivery_choice-wrapper:before {
    width: 24px;
    height: 24px;
  }
  .delivery_choice-wrapper.has-checked:after {
    width: 32px;
    right: -7px;
    top: -7px;
  }
  .delivery_choice-wrapper {
    margin-bottom: 12px;
  }
  .promocode-button,
  .refreshcart-button {
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 38px;
  }
  .promocode-input {
    height: 38px;
  }
  .promocode-input::placeholder {
    font-size: 14px;
  }
  .summary > .article__title-small {
    font-size: 18px;
    text-align: right;
  }
  .cart__links > * {
    width: max-content;
    font-size: 16px;
    height: 38px;
  }
  .main__columns .cart__links {
    flex-direction: row;
  }
  /* single product */
  .small-slider__wrapper .small-slider__slide {
    height: auto;
    max-height: 75px;
  }
  .product .main__columns {
    margin-top: 16px;
  }
  .small-slider__wrapper {
    height: 100px;
  }
  .product__info-shortdesc {
    border-bottom: none;
  }
  .product__info-price {
    flex-direction: column-reverse;
  }
  .product__info-oldprice {
    font-size: 16px;
  }
  .product__info-newprice {
    font-size: 34px;
    position: relative;
    left: 70%;
  }
  .product__info-qty_and_price {
    margin-top: 30px;
  }
  .product__info-qty_and_price {
    flex-direction: row-reverse;
  }
  .info__qty {
    border: none;
    background: #fffcdf;
  }
  .info__qty-input {
    background: #fffcdf;
  }
  .info__qty-plus,
  .info__qty-minus {
    background: #FFE925;
  }
  .desc__accordion-title {
    font-size: 20px;
  }
  .product__info-btns {
    margin-top: 38px;
  }
  .product__info-quickbuy,
  .product__info-addtocart {
    padding: 14px 20px;
    font-size: 20px;
    min-width: 44%;
  }
  .product__feedbacks .article__title-small_wrapper {
    margin-bottom: 18px;
  }
  .product__feedbacks .article__title-small {
    font-size: 26px;
  }
  .feedbacks__slider-wrapper {
    height: 410px;
  }
  .feedbacks__slider-slide {
    padding: 8px 16px 16px 16px;
  }
  .feedbacks__slider-text {
    text-align: justify;
  }
  .product__feedbacks-add {
    margin-top: 8px;
  }
  .product .main__columns {
    margin-bottom: 0;
  }
  .product__desc_accordion {
    margin-top: 65px;
  }
  .pagination.lat.flexbox.content {
    flex-direction: row;
  }
  .recommended__products .article__title-small {
    font-size: 24px;
    max-width: 237px;
    margin: 0 auto;
  }
  /* selected popup */
  .selected__popup-wrapper {
    padding: 0;
    overflow: hidden;
  }
  .selected__popup {
    border-radius: 6px;
    overflow: hidden;
    max-width: 86vw;
  }
  .selected__popup .products_slider-text {
    /* display: none; */
  }
  /* Footer */
  .ftr__callback_form {
    flex-direction: column;
  }
  .ftr__form-title {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .ftr__form-subtitle {
    font-size: 16px;
  }
  .ftr__callback_form-input {
    margin-left: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  .ftr__callback_form-button {
    width: max-content;
    margin: 10px auto 0;
  }
  .ftr__logo-link {
    margin-bottom: 18px;
    position: relative;
    left: 2px;
  }
  .ftr__info-column_link {
    font-size: 12px;
  }
  .ftr__info-list {
    display: flex;
    /* flex-direction: column; */
    align-items: stretch;
    justify-content: space-between;
    padding: 48px 5% 0;
    flex-wrap: wrap;
    /* padding-bottom: 20px; */
  }
  .ftr__info-item {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  .ftr__info-item.ftr__gifts-first {
    display: none;
  }
  .ftr__info-item._mob {
    display: block;
  }
  .ftr__info-item_title {
    color: #FFF;
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
    margin-bottom: 12px;
    display: block;
    white-space: nowrap;
  }
  .ftr__pages {
    order: 5;
    margin: 0 0 40px auto;
  }
  .ftr__pages {
    margin-bottom: 25px;
  }
  ._mob.ftr__gifts-first.second {
    order: 4;
  }
  ._mob.ftr__gifts-first:last-of-type {
    order: 3;
  }
  .ftr__categories {
    order: 2;
  }
  .ftr__info-column_item {
    text-align: right;
  }
  .ftr__socials {
    justify-content: center;
  }
  .ftr__socials-item {
    margin: 0 8px;
  }
  .ftr__info-list .ftr__info-item:not(:first-of-type) {
    width: 40%;
  }
  /* .ftr__categories {
    margin-bottom: 0;
  } */
  .ftr__info hr {
    width: 100vw;
  }
  .ftr__last {
    flex-direction: column-reverse;
    align-items: center;
  }
  .ftr__rules_and_policy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ftr__rights {
    margin-top: 10px;
  }
  .ftr__rules {
    margin-right: 0;
    margin-top: 10px;
  }
  .ftr__logo_and_contacts {
    margin-bottom: 36px;
  }
  .ftr__mob-link {
    margin-bottom: 12px;
  }
}