@charset "UTF-8";
@font-face {
  font-family: "ProbaPro-ExtraLight";
  src: url("./fonts/ProbaPro-ExtraLight.ttf") format("truetype");
}
@font-face {
  font-family: "ProbaPro-Light";
  src: url("./fonts/ProbaPro-Light.ttf") format("truetype");
}
@font-face {
  font-family: "ProbaPro-Regular";
  src: url("./fonts/ProbaPro-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "ProbaPro-Medium";
  src: url("./fonts/ProbaPro-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "ProbaPro-SemiBold";
  src: url("./fonts/ProbaPro-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "ProbaPro-Bold";
  src: url("./fonts/ProbaPro-Bold.ttf") format("truetype");
}
* {
  -webkit-appearance: none;
}

button, input[type=submit] {
  -webkit-appearance: none;
}

html {
  margin: 0px;
  background-color: #FBF6F3;
  padding: 0px;
  max-width: 100vw;
  overflow-x: hidden;
  -webkit-appearance: none;
}

body {
  margin: 0px;
  background-color: white;
  padding: 0px;
  max-width: 100vw;
  overflow-x: hidden;
}

.menu-mob {
  display: none;
}

@keyframes sheen {
  0% {
    transform: skewY(-45deg) translateX(0);
  }
  100% {
    transform: skewY(-45deg) translateX(12.5em);
  }
}
.button {
  text-align: center;
  text-decoration: none;
  color: #cf9176;
  border: 2px solid #cf9176;
  display: inline-block;
  border-radius: 0.3em;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.button:before {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 3em;
  display: block;
  position: absolute;
  top: 0;
  left: -4.5em;
  transform: skewX(-45deg) translateX(0);
  transition: none;
}
.button:hover {
  background-color: #cf9176;
  color: #fff;
  border-bottom: 4px solid #c27350;
}
.button:hover:before {
  transform: skewX(-45deg) translateX(13.5em);
  transition: all 0.5s ease-in-out;
}

.search-block-main {
  display: none;
}

.search-block {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-block .search-close {
  position: absolute;
  right: 1vw;
  top: 1vw;
  width: 2vw;
}
.search-block .search-close:hover {
  cursor: pointer;
}
.search-block .search-close img {
  width: 100%;
}
.search-block .search__inner {
  position: relative;
}
.search-block .search__inner button {
  color: white;
  border: none;
  background: none;
  position: absolute;
  right: 0;
  margin-top: -1.9vw;
  font-size: 1.2vw;
  font-family: "ProbaPro-Light";
}
.search-block .search__inner button img {
  width: 1vw;
}
.search-block .search__inner button:hover {
  cursor: pointer;
}
.search-block .search__inner .form__input {
  font-size: 1vw;
  width: 100%;
  position: relative;
  height: 5vw;
  width: 30vw;
  overflow: hidden;
}
.search-block .search__inner .form__input input {
  background-color: rgba(0, 0, 0, 0);
  font-family: "ProbaPro-Light";
  padding-top: 3vw;
  width: 70%;
  height: 100%;
  border: none;
  font-size: 1.2vw;
  outline: none;
  color: white;
}
.search-block .search__inner .form__input label {
  position: absolute;
  bottom: 0px;
  color: white;
  font-family: "ProbaPro-Light";
  left: 0%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-bottom: 0.1vw solid #888888;
}
.search-block .search__inner .form__input label::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-bottom: 1vw solid black;
  left: 0px;
  bottom: -1vw;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.search-block .search__inner .form__input label .content-name {
  position: absolute;
  bottom: 5px;
  left: 0px;
  transition: all 0.3s ease;
}
.search-block .search__inner .form__input input:focus + .label-name .content-name,
.search-block .search__inner .form__input input:valid + .label-name .content-name {
  transform: translateY(-150%);
  font-size: 1.2vw;
}
.search-block .search__inner .form__input input:focus + .label-name::after,
.search-block .search__inner .form__input input:valid + .label-name::after {
  transform: translateX(0%);
}

.header .header__top, .header_over .header__top {
  background-color: white;
  padding-top: 1.5vw;
  padding-bottom: 1.5vw;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.header .header__top .header__logo, .header_over .header__top .header__logo {
  display: flex;
  align-items: self-start;
  width: 30%;
  flex-direction: column;
}
.header .header__top .header__logo .header__logo-burber, .header_over .header__top .header__logo .header__logo-burber {
  display: none;
}
.header .header__top .header__logo .header__logo-img, .header_over .header__top .header__logo .header__logo-img {
  width: 54%;
  margin-bottom: 0.4vw;
}
.header .header__top .header__logo .header__logo-img img, .header_over .header__top .header__logo .header__logo-img img {
  width: 100%;
}
.header .header__top .header__logo .header__logo-description, .header_over .header__top .header__logo .header__logo-description {
  width: 100%;
  font-size: 0.8vw;
  text-align: center;
  color: #868686;
  font-family: "ProbaPro-ExtraLight";
}
.header .header__top .header__phone, .header_over .header__top .header__phone {
  display: flex;
  align-items: center;
  width: 20%;
}
.header .header__top .header__phone .header__phone-number, .header_over .header__top .header__phone .header__phone-number {
  width: 85%;
  margin-left: 5%;
  margin-top: 0.4vw;
}
.header .header__top .header__phone .header__phone-number a, .header_over .header__top .header__phone .header__phone-number a {
  text-decoration: none;
  font-family: "ProbaPro-Bold";
  color: #333333;
  font-size: 1vw;
}
.header .header__top .header__phone .header__phone-logo, .header_over .header__top .header__phone .header__phone-logo {
  width: 5%;
}
.header .header__top .header__phone .header__phone-logo img, .header_over .header__top .header__phone .header__phone-logo img {
  width: 100%;
}
.header .header__top .header__tools, .header_over .header__top .header__tools {
  display: flex;
  align-items: center;
  width: 20%;
  justify-content: flex-end;
}
.header .header__top .header__tools:hover, .header_over .header__top .header__tools:hover {
  cursor: pointer;
}
.header .header__top .header__tools div, .header_over .header__top .header__tools div {
  position: relative;
  width: 8%;
}
.header .header__top .header__tools div img, .header_over .header__top .header__tools div img {
  width: 100%;
}
.header .header__top .header__tools div .count-num1, .header_over .header__top .header__tools div .count-num1 {
  position: absolute;
  background-color: #cf9176;
  width: 1.3vw;
  height: 1.3vw;
  border-radius: 50%;
  color: white;
  font-size: 0.9vw;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: center;
  font-family: "ProbaPro-SemiBold";
  margin-left: 1.2vw;
  margin-top: -0.5vw;
  display: none;
}
.header .header__top .header__tools div .count-num, .header_over .header__top .header__tools div .count-num {
  position: absolute;
  background-color: #cf9176;
  width: 1.3vw;
  height: 1.3vw;
  border-radius: 50%;
  color: white;
  font-size: 0.9vw;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: center;
  font-family: "ProbaPro-SemiBold";
  margin-left: 1.2vw;
  margin-top: -0.5vw;
  display: none;
}
.header .header__top .header__tools .header__tools-phone, .header_over .header__top .header__tools .header__tools-phone {
  display: none;
}
.header .header__top .header__tools .header__tools-account, .header_over .header__top .header__tools .header__tools-account {
  margin-left: 1VW;
  margin-right: 1vw;
  position: relative;
}
.header .header__top .header__tools .header__tools-account img, .header_over .header__top .header__tools .header__tools-account img {
  width: 80%;
}
.header .header__top .header__tools .header__tools-account:hover, .header_over .header__top .header__tools .header__tools-account:hover {
  cursor: pointer;
}
.header .header__top .header__tools .header__tools-account .account__under, .header_over .header__top .header__tools .header__tools-account .account__under {
  display: none;
  position: absolute;
  z-index: 1;
  min-width: 10vw;
  margin-left: -5vw;
  margin-top: 1vw;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  background-color: white;
  text-align: center;
}
.header .header__top .header__tools .header__tools-account .account__under .account__under-wrapper, .header_over .header__top .header__tools .header__tools-account .account__under .account__under-wrapper {
  border-bottom: 0.1vw solid #D9D9D9;
  width: 100%;
}
.header .header__top .header__tools .header__tools-account .account__under .account__under-item, .header_over .header__top .header__tools .header__tools-account .account__under .account__under-item {
  width: 90%;
  border-top: 0.1vw solid #D9D9D9;
  padding: 5%;
  font-size: 0.9vw;
  font-family: "ProbaPro-Regular";
}
.header .header__top .header__tools .header__tools-account .account__under .account__under-item a, .header_over .header__top .header__tools .header__tools-account .account__under .account__under-item a {
  text-decoration: none;
  color: #666666;
}
.header .header__top .header__tools .header__tools-account .account__under .account__under-item a:hover, .header_over .header__top .header__tools .header__tools-account .account__under .account__under-item a:hover {
  color: #DCAB96;
}
.header .header__top .header__tools .header__tools-cart, .header_over .header__top .header__tools .header__tools-cart {
  position: relative;
  margin-left: 1vw;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper {
  display: none;
  position: absolute;
  z-index: 1;
  min-width: 30vw;
  margin-left: -20vw;
  margin-top: 1vw;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  background-color: white;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body {
  padding: 1.5vw;
  width: 100%;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart__items, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart__items {
  width: 95%;
  max-height: 20vw;
  overflow-y: scroll;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart__items::-webkit-scrollbar, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart__items::-webkit-scrollbar {
  width: 7px;
  background-color: #F8F9FA;
  padding: 5px;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart__items::-webkit-scrollbar-thumb, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart__items::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #D9D9D9;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item {
  margin-bottom: 0.5vw;
  display: flex;
  width: 95%;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-img, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-img {
  width: 30%;
  margin-right: 5%;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body {
  width: 75%;
  font-family: "ProbaPro-Regular";
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__close, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__close {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__close:hover, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__close:hover {
  cursor: pointer;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__close img, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__close img {
  width: 0.4vw;
  height: 0.4vw;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__title, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__title {
  width: 100%;
  font-family: "ProbaPro-Regular";
  font-size: 1vw;
  color: #333333;
  margin-bottom: 1vw;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__size, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__size {
  display: flex;
  color: #B9B9B9;
  font-size: 0.9vw;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__size span, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__size span {
  color: #333333;
  margin-left: 0.5vw;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__color, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__color {
  display: flex;
  color: #B9B9B9;
  font-size: 0.9vw;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__color span, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__color span {
  color: #333333;
  margin-left: 0.5vw;
  font-size: 0.9vw;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__price, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__price {
  width: 100%;
  font-family: "ProbaPro-Bold";
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4vw;
  margin-top: 1vw;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__price div, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__price div {
  width: 50%;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__price .cart_item-body__price-sum, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__price .cart_item-body__price-sum {
  display: flex;
  justify-content: flex-end;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum {
  width: 90%;
  display: flex;
  justify-content: space-between;
  border-top: 0.2vw solid #FBF6F3;
  margin-top: 1vw;
  padding-top: 1vw;
  border-bottom: 0.2vw solid #FBF6F3;
  margin-bottom: 1vw;
  padding-bottom: 1vw;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum .cart_sum-clear, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum .cart_sum-clear {
  width: 50%;
  display: flex;
  align-items: center;
  font-family: "ProbaPro-Regular";
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum .cart_sum-clear:hover, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum .cart_sum-clear:hover {
  cursor: pointer;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum .cart_sum-clear .cart_sum-clear__cencel, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum .cart_sum-clear .cart_sum-clear__cencel {
  width: 10%;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum .cart_sum-clear .cart_sum-clear__cencel img, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum .cart_sum-clear .cart_sum-clear__cencel img {
  width: 0.5vw;
  height: 0.5vw;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum .cart_sum-clear .cart_sum-clear__text, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum .cart_sum-clear .cart_sum-clear__text {
  width: 80%;
  color: #B9B9B9;
  font-size: 0.9vw;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum .cart_sum-sum, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum .cart_sum-sum {
  width: 50%;
  text-align: right;
  font-family: "ProbaPro-Bold";
  font-size: 1.1vw;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum .cart_sum-sum span, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum .cart_sum-sum span {
  font-size: 1.4vw;
  margin-left: 0.7vw;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_all, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_all {
  color: #DCAB96;
  padding-top: 0.5vw;
  width: 90%;
  font-family: "ProbaPro-Regular";
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_all a, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_all a {
  color: #DCAB96;
  text-decoration: none;
}
.header .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_all .cart_all-wrapper, .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_all .cart_all-wrapper {
  width: 100%;
  text-align: center;
}
.header .header__bottom, .header_over .header__bottom {
  margin-left: 5%;
  margin-right: 5%;
  border-top: 0.05vw solid #f2f2f2;
  padding-top: 1vw;
  padding-bottom: 1vw;
  width: 90%;
  display: flex;
}
.header .header__bottom .header__bottom-item, .header_over .header__bottom .header__bottom-item {
  display: inline-block;
  font-family: "ProbaPro-SemiBold";
  font-size: 0.9vw;
  border-right: 0.05vw solid #f2f2f2;
  width: 17.8%;
  text-align: center;
}
.header .header__bottom .header__bottom-item a, .header_over .header__bottom .header__bottom-item a {
  text-decoration: none;
  color: black;
}
.header .header__bottom .header__bottom-item:nth-child(1), .header_over .header__bottom .header__bottom-item:nth-child(1) {
  margin-left: 0px;
  text-align: left;
  width: 13%;
}
.header .header__bottom .header__bottom-item:last-child, .header_over .header__bottom .header__bottom-item:last-child {
  width: 15%;
  margin-right: 0px;
  border-right: none;
  text-align: right;
}

.header_over {
  display: none;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 4;
}
.header_over .header__top {
  align-items: center;
}
.header_over .header__top .header__logo {
  width: 15%;
  height: 100%;
}
.header_over .header__top .header__logo .header__logo-description {
  display: none;
}
.header_over .header__top .header__category {
  width: 70%;
  display: flex;
  justify-content: space-between;
  font-family: "ProbaPro-SemiBold";
  font-size: 0.9vw;
}
.header_over .header__top .header__category a {
  text-decoration: none;
  color: #333333;
}
.header_over .header__top .header__tools {
  width: 20%;
  margin-left: 5%;
}
.header_over .header__top .header__tools div {
  width: 10%;
}

.main {
  align-items: flex-start;
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
  margin-top: 2vw;
}
.main .main__corusel {
  width: 100%;
  height: 30vw;
  overflow: hidden;
  display: flex;
  margin-bottom: 1vw;
}
.main .main__corusel .main__corusel-item {
  width: 100%;
}
.main .main__corusel .main__corusel-item img {
  width: 100%;
  object-fit: cover;
}
.main .main__corusel .slick-vertical .slick-slide .slick-initialized {
  display: flex;
}
.main .main__dop {
  display: flex;
  justify-content: space-between;
}
.main .main__dop .main__dop-item {
  width: 32.5%;
}
.main .main__dop .main__dop-item img {
  width: 100%;
}

.new {
  padding-left: 5%;
  padding-right: 5%;
  margin-top: 2vw;
}
.new .new__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new .new__title .new__title-title {
  text-transform: uppercase;
  font-family: "ProbaPro-Regular";
  font-size: 1.4vw;
}
.new .new__title .new__title-all {
  display: flex;
  align-items: center;
  font-family: "ProbaPro-Regular";
}
.new .new__title .new__title-all img {
  width: 1vw;
  margin-left: 0.5vw;
  margin-top: 0.2vw;
}
.new .new__title .new__title-all a {
  font-size: 0.8vw;
  color: #DCAB96;
  text-decoration: none;
  margin-left: 0.5vw;
}

.new__catalog-mob {
  display: none;
}

.slick-slide {
  display: none;
  float: left;
  height: auto !important;
  min-height: 1px;
}

.catalog {
  display: flex;
  flex-wrap: nowrap;
  max-height: auto;
  position: relative;
}
.catalog .item {
  margin-right: 1.5%;
  width: 15.5%;
  padding: 1vw;
  background-color: white;
  color: #333333;
  position: relative;
  margin-bottom: 0.5vw;
  transition: max-height 0.5s ease-in-out;
  height: auto;
  max-height: 26vw;
  display: inline-block;
  display: table;
  flex-basis: auto;
}
.catalog .item .item-under {
  position: absolute;
  margin-left: -1vw;
  z-index: 2;
  font-family: "ProbaPro-Medium";
  margin-top: -1vw;
}
.catalog .item .item-under .item-under-new {
  background-color: #96DCBD;
  color: white;
  padding: 0.4vw 1.5vw;
  font-size: 0.8vw;
}
.catalog .item .item-under .item-under-hit {
  background-color: #DC96B5;
  color: white;
  padding: 0.3vw 1.5vw;
  font-size: 0.8vw;
  margin-top: 0.5vw;
  text-align: center;
  display: inline-block;
}
.catalog .item:nth-child(4n+4) {
  margin-right: 0px;
}
.catalog .item:hover {
  transition: all 0.5s ease-in-out;
}
.catalog .item:hover .item__digits {
  transition: all 0.5s ease-in-out;
  display: block;
  opacity: 1;
}
.catalog .item .item__img {
  width: 100%;
  text-align: center;
  border-radius: 1vw;
  overflow: hidden;
}
.catalog .item .item__img .item_img-wrapper {
  width: 100%;
  margin-bottom: 0px;
}
.catalog .item .item__img .item_img-wrapper .slick-dots {
  bottom: 0vw;
}
.catalog .item .item__img .item_img-wrapper .slick-dots li.slick-active button:before {
  color: #da7b53;
  font-size: 1vw;
  opacity: 1;
}
.catalog .item .item__img .item_img-wrapper .slick-dots li button:before {
  font-size: 0.8vw;
  opacity: 0.5;
}
.catalog .item .item__img .item_img-wrapper .item_img-wrapper-item {
  width: 100%;
}
.catalog .item .item__img .item_img-wrapper .item_img-wrapper-item img {
  width: 100%;
  max-width: 15vw;
  height: 20vw;
  object-fit: cover;
}
.catalog .item .item__title {
  font-size: 1.1vw;
  margin-top: 0.7vw;
  height: 2.8vw;
  margin-bottom: 0.5vw;
  overflow-y: hidden;
}
.catalog .item .item__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.catalog .item .item__info .item__info-price {
  font-family: "ProbaPro-Bold";
  font-size: 1.5vw;
}
.catalog .item .item__info .item__info-tools {
  display: flex;
}
.catalog .item .item__info .item__info-tools div {
  margin-left: 0.8vw;
  width: 1.5vw;
}
.catalog .item .item__info .item__info-tools div img {
  width: 100%;
}
.catalog .item .item__digits {
  opacity: 0;
  transition: all 0.5s ease-in-out;
  display: none;
  position: absolute;
  background-color: white;
  width: 100%;
  margin-left: -1vw;
  z-index: 90;
}
.catalog .item .item__digits .item__digits-color__title {
  padding-left: 1vw;
  font-size: 1vw;
  font-family: "ProbaPro-Light";
}
.catalog .item .item__digits .item__digits-color {
  display: flex;
  padding: 1vw;
  padding-top: 0.5vw;
  padding-bottom: 0.2vw;
}
.catalog .item .item__digits .item__digits-color .item__digits-color__item {
  margin-right: 0.5vw;
  padding: 0.2vw;
}
.catalog .item .item__digits .item__digits-color .item__digits-color__item:hover {
  cursor: pointer;
}
.catalog .item .item__digits .item__digits-color .item__digits-color__item .color__item-wrapper {
  width: 1.3vw;
  height: 1.3vw;
  display: block;
  border-radius: 1%;
}
.catalog .item .item__digits .item__digits-color .active {
  border: 1px solid #DCAB96;
  border-radius: 1%;
}
.catalog .item .item__digits .item__digits-size__title {
  padding-left: 1vw;
  font-size: 1vw;
  font-family: "ProbaPro-Light";
  padding-top: 0.4vw;
}
.catalog .item .item__digits .item__digits-size {
  display: flex;
  padding: 1vw;
  padding-top: 0.4vw;
  padding-bottom: 0px;
  font-family: "ProbaPro-Regular";
  color: #868686;
  font-size: 1vw;
}
.catalog .item .item__digits .item__digits-size .item__digits-size__item {
  margin-right: 1vw;
}
.catalog .item .item__digits .item__digits-size .item__digits-size__item:hover {
  cursor: pointer;
}
.catalog .item .item__digits .item__digits-size .active {
  color: #333333;
}
.catalog .item .item__digits .item__digits-cart {
  display: flex;
  justify-content: space-between;
  padding: 1vw;
  padding-top: 0.5vw;
  height: 3vw;
}
.catalog .item .item__digits .item__digits-cart .cart__count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #D2D2D2;
  border-radius: 0.5vw;
  width: 50%;
}
.catalog .item .item__digits .item__digits-cart .cart__count .cart__count-plus {
  color: #C4C4C4;
  font-family: "ProbaPro-ExtraLight";
  font-size: 2vw;
  width: 30%;
  text-align: center;
}
.catalog .item .item__digits .item__digits-cart .cart__count .cart__count-plus:hover {
  cursor: pointer;
}
.catalog .item .item__digits .item__digits-cart .cart__count .cart__count-count {
  color: black;
  font-size: 2vw;
  font-family: "ProbaPro-Medium";
}
.catalog .item .item__digits .item__digits-cart .cart__count .cart__count-minus {
  color: #C4C4C4;
  font-family: "ProbaPro-ExtraLight";
  font-size: 2vw;
  width: 30%;
  text-align: center;
}
.catalog .item .item__digits .item__digits-cart .cart__count .cart__count-minus:hover {
  cursor: pointer;
}
.catalog .item .item__digits .item__digits-cart .cart__btn {
  width: 46%;
  height: 100%;
}
.catalog .item .item__digits .item__digits-cart .cart__btn a {
  text-decoration: none;
}
.catalog .item .item__digits .item__digits-cart .cart__btn .btn__wrapper {
  height: 100%;
  background-color: #cf9176;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 0.5vw;
  font-size: 1.2vw;
}
.catalog .item .item__digits .item__digits-cart .cart__btn .btn__wrapper:hover {
  cursor: pointer;
}

.catalog2 {
  height: auto;
  position: relative;
  flex-wrap: wrap;
  gap: 0.7%;
}
.catalog2 .item {
  width: 28.5%;
  margin-right: 0px;
}
.catalog2 .item:nth-child(3n+3) {
  margin-right: 0px;
}

.offer {
  margin-top: 0vw;
  padding-left: 5%;
  padding-right: 5%;
  margin-bottom: 60px;
}
.offer .offer__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1vw;
}
.offer .offer__title .offer__title-title {
  text-transform: uppercase;
  font-family: "ProbaPro-Regular";
  font-size: 1.4vw;
}
.offer .offer__title .offer__title-all {
  display: flex;
  align-items: center;
  font-family: "ProbaPro-Regular";
}
.offer .offer__title .offer__title-all img {
  width: 1vw;
  margin-left: 0.5vw;
  margin-top: 0.2vw;
}
.offer .offer__title .offer__title-all a {
  font-size: 0.8vw;
  color: #DCAB96;
  text-decoration: none;
  margin-left: 0.5vw;
}
.offer .offer__body {
  display: flex;
  justify-content: space-between;
  max-height: 30vw;
}
.offer .offer__body .offer__body-main {
  width: 49.5%;
}
.offer .offer__body .offer__body-main img {
  width: 100%;
}
.offer .offer__body .offer__body-wrapper {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100%;
}
.offer .offer__body .offer__body-wrapper .offer__body-item {
  width: 49.5%;
}
.offer .offer__body .offer__body-wrapper .offer__body-item img {
  width: 100%;
  height: 11vw;
}

.hit {
  padding-left: 5%;
  padding-right: 5%;
}
.hit .hit__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1vw;
}
.hit .hit__title .hit__title-title {
  text-transform: uppercase;
  font-family: "ProbaPro-Regular";
  font-size: 1.4vw;
}
.hit .hit__title .hit__title-all {
  display: flex;
  align-items: center;
  font-family: "ProbaPro-Regular";
}
.hit .hit__title .hit__title-all img {
  width: 1vw;
  margin-left: 0.5vw;
  margin-top: 0.2vw;
}
.hit .hit__title .hit__title-all a {
  font-size: 0.8vw;
  color: #DCAB96;
  text-decoration: none;
  margin-left: 0.5vw;
}
.hit .hit__catalog-mob {
  display: none;
}

.instagramm {
  margin-top: 1vw;
  padding-left: 5%;
  padding-right: 5%;
}
.instagramm .instagramm__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1vw;
}
.instagramm .instagramm__title .instagramm__title-title {
  text-transform: uppercase;
  font-family: "ProbaPro-Regular";
  font-size: 1.4vw;
}
.instagramm .instagramm__title .instagramm__title-all {
  display: flex;
  align-items: center;
  font-family: "ProbaPro-Regular";
}
.instagramm .instagramm__title .instagramm__title-all img {
  width: 1vw;
  margin-left: 0.5vw;
  margin-top: 0.2vw;
}
.instagramm .instagramm__title .instagramm__title-all a {
  font-size: 0.8vw;
  color: #DCAB96;
  text-decoration: none;
  margin-left: 0.5vw;
}
.instagramm .instageamm__body {
  display: flex;
  display: flex;
  width: auto;
  overflow-x: scroll;
  padding-bottom: 1vw;
}
.instagramm .instageamm__body::-webkit-scrollbar {
  height: 1vw;
  background-color: #f9f9fd;
}
.instagramm .instageamm__body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #DCAB96;
}
.instagramm .instageamm__body::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #FAF3EF;
}
.instagramm .instageamm__body .instageamm__body-item {
  min-width: 20vw;
  margin-right: 1vw;
}
.instagramm .instageamm__body .instageamm__body-item img {
  width: 100%;
}

.contact {
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 1vw;
  padding-bottom: 3vw;
  margin-top: 60px;
  margin-bottom: 60px;
  background-color: white;
}
.contact .contact__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1vw;
}
.contact .contact__title .contact__title-title {
  text-transform: uppercase;
  font-family: "ProbaPro-Regular";
  font-size: 1.4vw;
}
.contact .contact__title .contact__title-all {
  display: flex;
  align-items: center;
  font-family: "ProbaPro-Regular";
}
.contact .contact__title .contact__title-all img {
  width: 1vw;
  margin-left: 0.5vw;
  margin-top: 0.2vw;
}
.contact .contact__title .contact__title-all a {
  font-size: 0.8vw;
  color: #DCAB96;
  text-decoration: none;
  margin-left: 0.5vw;
}
.contact .contact__body #map {
  height: 27vw;
}
.contact .contact__body .map .map__cart {
  position: absolute;
  background: white;
  margin-top: 3vw;
  margin-left: 3vw;
  width: 14vw;
  z-index: 2;
}
.contact .contact__body .map .map__cart .map__cart-img {
  width: 100%;
}
.contact .contact__body .map .map__cart .map__cart-img img {
  width: 100%;
  height: 10vw;
  object-fit: cover;
}
.contact .contact__body .map .map__cart .map__cart-body {
  padding-left: 1vw;
  padding-right: 1vw;
  padding-top: 1vw;
  padding-bottom: 0.5vw;
  text-align: center;
}
.contact .contact__body .map .map__cart .map__cart-body .footer__about-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.7vw;
  width: 100%;
}
.contact .contact__body .map .map__cart .map__cart-body .footer__about-item .footer__about-item-img {
  margin-right: 0.8vw;
  padding: 0.7vw;
  width: 100%;
  border-radius: 5vw;
  background-color: #333333;
}
.contact .contact__body .map .map__cart .map__cart-body .footer__about-item .footer__about-item-img img {
  width: 0.8vw;
}
.contact .contact__body .map .map__cart .map__cart-body .footer__about-item .footer__about-item-text {
  font-family: "ProbaPro-Regular";
  font-size: 0.91vw;
  width: 100%;
}
.contact .contact__body .map .map__cart .map__cart-body .footer__about-item .phone {
  width: 100%;
  font-family: "ProbaPro-Bold";
  font-size: 1vw;
}
.contact .contact__body .map .map__cart .map__cart-body .map__cart-title {
  font-size: 1.4vw;
  margin-top: 1vw;
  margin-bottom: 1.2vw;
  font-family: "ProbaPro-Bold";
}
.contact .contact__body .map .map__cart .map__cart-body .map__cart-desc {
  border-top: 2px solid #e9e9e9;
  padding-top: 0.5vw;
  text-align: right;
  font-family: "ProbaPro-Light";
  font-weight: lighter;
}
.contact .contact__body .map .map__cart .map__cart-body .map__cart-desc .map__cart-desc__item {
  margin-top: 0.5vw;
  font-size: 0.85vw;
}
.contact .contact__body .map .map__cart .map__cart-body .map__cart-desc .map__cart-desc__item img {
  margin-right: 0.5vw;
  width: 1vw;
}
.contact .contact__body .map .map__cart .map__cart-body .map__cart-footer {
  margin-top: 1.5vw;
  font-size: 0.9vw;
  font-family: "ProbaPro-Bold";
  padding-bottom: 2vw;
}

.footer {
  display: flex;
  justify-content: space-between;
  background-color: #332d26;
  color: white;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 4vw;
  padding-bottom: 5vw;
  font-family: "ProbaPro-Regular";
}
.footer .footer__logo {
  width: 30%;
}
.footer .footer__logo .footer__logo-logo {
  margin-bottom: 2vw;
  display: flex;
  align-items: center;
  width: 100%;
}
.footer .footer__logo .footer__logo-logo .footer__logo-logo-logo {
  width: 45%;
  margin-right: 5%;
}
.footer .footer__logo .footer__logo-logo .footer__logo-logo-logo img {
  width: 100%;
}
.footer .footer__logo .footer__logo-logo .footer__logo-logo-description {
  width: 50%;
  font-size: 1vw;
  color: #868686;
  font-family: "ProbaPro-ExtraLight";
}
.footer .footer__logo .footer__logo-subscribe label {
  font-family: "ProbaPro-Regular";
  font-size: 0.8vw;
}
.footer .footer__logo .footer__logo-subscribe form {
  font-family: "ProbaPro-Regular";
  padding-top: 0.5vw;
}
.footer .footer__logo .footer__logo-subscribe form .subscribe_input {
  background-color: #868686;
  color: white;
  font-size: 0.8vw;
  padding: 0.7vw 0.7vw;
  border: none;
  margin-right: 0.2vw;
}
.footer .footer__logo .footer__logo-subscribe form .subscribe_submit {
  background-color: #DCAB96;
  color: white;
  padding-top: 0.7vw;
  padding-bottom: 0.7vw;
  padding-left: 0.4vw;
  padding-right: 0.4vw;
  font-size: 0.8vw;
  border: none;
}
.footer .footer__logo .footer__logo-made {
  margin-top: 1vw;
  color: #666666;
  font-size: 0.8vw;
}
.footer .footer__logo .footer__logo-made a {
  text-decoration: none;
  color: #666666;
}
.footer .footer__catalog .footer__catalog-title .footer__catalog-title__title {
  font-family: "ProbaPro-SemiBold";
  font-size: 1.3vw;
  margin-bottom: 0.3vw;
}
.footer .footer__catalog .footer__catalog-title .footer__catalog-title__under {
  background-color: white;
  height: 1px;
  width: 5vw;
  margin-bottom: 0.5vw;
}
.footer .footer__catalog .footer__catalog-body a {
  color: white;
  text-decoration: none;
  font-family: "ProbaPro-Regular";
}
.footer .footer__catalog .footer__catalog-body .footer__catalog-body-item {
  margin-bottom: 0.5vw;
  font-family: "ProbaPro-Regular";
  font-size: 0.9vw;
}
.footer .footer__info .footer__info-title .footer__info-title__title {
  font-family: "ProbaPro-SemiBold";
  font-size: 1.3vw;
  margin-bottom: 0.3vw;
}
.footer .footer__info .footer__info-title .footer__info-title__under {
  background-color: white;
  height: 1px;
  width: 5vw;
  margin-bottom: 0.5vw;
}
.footer .footer__info .footer__info-body a {
  color: white;
  text-decoration: none;
  font-family: "ProbaPro-Regular";
}
.footer .footer__info .footer__info-body .footer__info-body-item {
  margin-bottom: 0.5vw;
  font-family: "ProbaPro-Regular";
  font-size: 0.9vw;
}
.footer .footer__made-mob {
  display: none;
}
.footer .footer__subscribe-mob {
  display: none;
}
.footer .footer__about .footer__about-wrapper .footer__about-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.7vw;
}
.footer .footer__about .footer__about-wrapper .footer__about-item .footer__about-item-img {
  margin-right: 0.5vw;
}
.footer .footer__about .footer__about-wrapper .footer__about-item .footer__about-item-img img {
  width: 1.2vw;
}
.footer .footer__about .footer__about-wrapper .footer__about-item .footer__about-item-text {
  font-family: "ProbaPro-Regular";
  font-size: 1vw;
}
.footer .footer__about .footer__about-wrapper .footer__about-item .phone {
  font-family: "ProbaPro-Bold";
  font-size: 1.4vw;
}
.footer .footer__about .footer__about-social {
  display: flex;
}
.footer .footer__about .footer__about-social .footer__about-social-item {
  padding: 0.7vw;
  border-radius: 50%;
  margin-right: 1vw;
  background-color: #868686;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 480px) {
  .search-block-main .search-block .search-close {
    top: 3vw;
    right: 3vw;
    width: 7vw;
  }
  .search-block-main .search-block .search__inner {
    width: 70vw;
  }
  .search-block-main .search-block .search__inner button {
    font-size: 3vw;
    margin-top: -5.5vw;
  }
  .search-block-main .search-block .search__inner .form__input {
    font-size: 1vw;
    width: 100%;
    position: relative;
    height: 14vw;
    overflow: hidden;
    font-size: 2.8vw;
  }
  .search-block-main .search-block .search__inner .form__input input {
    font-family: "ProbaPro-Light";
    padding-top: 8vw;
    width: 65%;
    height: 100%;
    border: none;
    font-size: 3.8vw;
    outline: none;
  }
  .search-block-main .search-block .search__inner .form__input label {
    position: absolute;
    bottom: 0px;
    font-family: "ProbaPro-Light";
    left: 0%;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-bottom: 0.1vw solid #888888;
  }
  .search-block-main .search-block .search__inner .form__input label::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    border-bottom: 1vw solid #361413;
    left: 0px;
    bottom: -1vw;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .search-block-main .search-block .search__inner .form__input label .content-name {
    position: absolute;
    bottom: 5px;
    left: 0px;
    transition: all 0.3s ease;
  }
  .search-block-main .search-block .search__inner .form__input input:focus + .label-name .content-name,
.search-block-main .search-block .search__inner .form__input input:valid + .label-name .content-name {
    transform: translateY(-150%);
    font-size: 2.8vw;
  }
  .search-block-main .search-block .search__inner .form__input input:focus + .label-name::after,
.search-block-main .search-block .search__inner .form__input input:valid + .label-name::after {
    transform: translateX(0%);
  }

  .menu-mob {
    display: none;
    position: fixed;
    z-index: 5;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .menu-mob .menu-mob-wrapper {
    background-color: #FFFFFF;
    width: 80vw;
    height: 100%;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__header {
    display: flex;
    align-items: center;
    padding-top: 4vw;
    padding-bottom: 4vw;
    border-bottom: 0.5vw solid #DCAB96;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__header .menu-mob__header-left {
    padding-left: 2%;
    display: flex;
    align-items: center;
    width: 50%;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__header .menu-mob__header-left .menu-mob__header-left__close {
    margin-right: 2vw;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__header .menu-mob__header-left .menu-mob__header-left__close img {
    width: 5vw;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__header .menu-mob__header-left .menu-mob__header-left__logo {
    width: 25vw;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__header .menu-mob__header-left .menu-mob__header-left__logo img {
    width: 100%;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__header .menu-mob__header-right {
    display: flex;
    align-items: center;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__header .menu-mob__header-right .menu-mob__header-right__icon {
    margin-right: 2vw;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__header .menu-mob__header-right .menu-mob__header-right__icon img {
    width: 3.5vw;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__header .menu-mob__header-right .menu-mob__header-right__phone a {
    font-family: "ProbaPro-Bold";
    font-size: 4.5vw;
    text-decoration: none;
    color: #333333;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__body .menu-mob__body-catalog__item {
    padding-top: 4vw;
    margin-left: 2vw;
    padding-bottom: 4vw;
    border-bottom: 0.05vw solid #cacaca;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__body .menu-mob__body-catalog__item a {
    font-family: "ProbaPro-SemiBold";
    font-size: 4vw;
    text-decoration: none;
    color: #333333;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__body .menu-mob__body-digit__item {
    background-color: #FBF6F3;
    padding-top: 4vw;
    padding-left: 2vw;
    padding-bottom: 4vw;
    border-bottom: 0.05vw solid #cacaca;
    display: flex;
    align-items: center;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__body .menu-mob__body-digit__item .menu-mob__body-digit__item-icon {
    margin-right: 4vw;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__body .menu-mob__body-digit__item .menu-mob__body-digit__item-icon img {
    width: 5vw;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__body .menu-mob__body-digit__item .menu-mob__body-digit__item-title {
    margin-right: 4vw;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__body .menu-mob__body-digit__item .menu-mob__body-digit__item-title a {
    font-family: "ProbaPro-Bold";
    font-size: 4.5vw;
    text-decoration: none;
    color: #333333;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__body .menu-mob__body-digit__item .menu-mob__body-digit__item-count {
    color: white;
    background-color: #DCAB96;
    font-family: "ProbaPro-SemiBold";
    padding: 0.8vw 1.5vw;
    font-size: 2.5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 80%;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__body .menu-mob__body-contact__item {
    display: flex;
    align-items: center;
    padding-top: 2vw;
    margin-left: 2vw;
    padding-bottom: 1vw;
    font-family: "ProbaPro-Regular";
    font-size: 4vw;
    text-decoration: none;
    color: #333333;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__body .menu-mob__body-contact__item .phone {
    font-family: "ProbaPro-Bold";
    font-size: 6vw;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__body .menu-mob__body-contact__item .menu-mob__body-contact__item-icon {
    margin-right: 3vw;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__body .menu-mob__body-contact__item .menu-mob__body-contact__item-icon img {
    width: 4vw;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__body .menu-mob__body-social {
    margin-top: 3vw;
    display: flex;
    margin-left: 3vw;
  }
  .menu-mob .menu-mob-wrapper .menu-mob__body .menu-mob__body-social .menu-mob__body-social-item {
    margin-right: 3vw;
  }

  .header_over {
    display: block;
    max-width: 100vw;
  }
  .header_over .header__top {
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 4vw;
    padding-bottom: 4vw;
    width: 94%;
    margin-right: 0px;
  }
  .header_over .header__top .header__logo {
    width: 50%;
    flex-direction: row;
  }
  .header_over .header__top .header__logo .header__logo-burber {
    display: block;
    margin-right: 3vw;
  }
  .header_over .header__top .header__logo .header__logo-burber img {
    width: 7vw;
    height: 7vw;
  }
  .header_over .header__top .header__logo .header__logo-img {
    width: 100%;
  }
  .header_over .header__top .header__category {
    display: none;
  }
  .header_over .header__top .header__tools {
    width: 40%;
  }
  .header_over .header__top .header__tools div {
    width: 8vw;
  }
  .header_over .header__top .header__tools div img {
    width: 100%;
    height: 5vw;
  }
  .header_over .header__top .header__tools .header__tools-account {
    width: 9vw;
    text-align: center;
    position: sticky;
  }
  .header_over .header__top .header__tools .header__tools-account .account__under {
    box-shadow: none;
    position: fixed;
    width: 100vw;
    top: 14vw;
    left: 0px;
    margin-left: 0px;
  }
  .header_over .header__top .header__tools .header__tools-account .account__under .account__under-wrapper .account__under-item {
    font-size: 4vw;
  }
  .header_over .header__top .header__tools .header__tools-like {
    display: none;
  }
  .header_over .header__top .header__tools .header__tools-phone {
    display: block;
    width: 9vw;
  }
  .header_over .header__top .header__tools .header__tools-cart .count-num {
    width: 3.5vw;
    height: 3.5vw;
    border-radius: 50%;
    color: white;
    font-size: 2.9vw;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: center;
    font-family: "ProbaPro-SemiBold";
    margin-left: 6vw;
    margin-top: -1.5vw;
  }
  .header_over .header__top .header__tools .header__tools-cart .count-num1 {
    width: 3.5vw;
    height: 3.5vw;
    border-radius: 50%;
    color: white;
    font-size: 2.9vw;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: center;
    font-family: "ProbaPro-SemiBold";
    margin-left: 6vw;
    margin-top: -1.5vw;
  }
  .header_over .header__top .header__tools .header__tools-cart .cart__wrapper {
    box-shadow: none;
    position: fixed;
    width: 100vw;
    top: 14vw;
    left: 0px;
    margin-left: 0px;
  }
  .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body {
    width: 100%;
  }
  .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart__items {
    max-height: 60vh;
    width: 100%;
    margin-bottom: 5vw;
  }
  .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum {
    width: 100%;
    padding-top: 3vw;
    padding-bottom: 3vw;
  }
  .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-img img {
    height: 30vw;
  }
  .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__close img {
    width: 3vw;
    height: 3vw;
  }
  .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__title {
    font-size: 4vw;
  }
  .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__size {
    font-size: 3vw;
  }
  .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__color {
    font-size: 3vw;
  }
  .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__color span {
    font-size: 3vw;
  }
  .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__price .cart_item-body__price-perone {
    font-size: 4vw;
  }
  .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_item .cart_item-body .cart_item-body__price .cart_item-body__price-sum {
    font-size: 4vw;
  }
  .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum {
    width: 95%;
  }
  .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum .cart_sum-clear .cart_sum-clear__text {
    font-size: 3vw;
  }
  .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum .cart_sum-clear .cart_sum-clear__cencel img {
    width: 2vw;
    height: 2vw;
  }
  .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum .cart_sum-sum {
    font-size: 3vw;
  }
  .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_sum .cart_sum-sum span {
    font-size: 4vw;
  }
  .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_all {
    margin-top: 3vw;
    padding-bottom: 3vw;
  }
  .header_over .header__top .header__tools .header__tools-cart .cart__wrapper .cart__wrapper-body .cart_all .cart_all-wrapper {
    font-size: 3.5vw;
  }

  .header {
    display: none;
  }
  .header .header__top {
    padding-left: 5%;
    padding-right: 5%;
    width: 90%;
  }

  .main {
    padding-left: 5%;
    padding-right: 5%;
    width: 90%;
    margin-top: 20vw;
  }
  .main .main__corusel {
    display: none;
  }
  .main .main__dop {
    display: block;
  }
  .main .main__dop .main__dop-item {
    width: 100%;
    margin-bottom: 2vw;
  }

  .new {
    padding-left: 5%;
    padding-right: 0%;
    width: auto;
    margin-top: 8vw;
  }
  .new .new__title {
    margin-bottom: 4vw;
  }
  .new .new__title .new__title-title {
    font-size: 5vw;
  }
  .new .new__title .new__title-all {
    margin-right: 5vw;
    align-items: center;
  }
  .new .new__title .new__title-all .new__title-all__text {
    display: none;
  }
  .new .new__title .new__title-all .new__title-all__text a {
    font-size: 3vw;
  }
  .new .new__title .new__title-all .new__title-all__img img {
    width: 3vw;
  }

  .new__catalog {
    display: none;
  }

  .new__catalog-mob {
    display: flex;
    width: auto;
    overflow-x: scroll;
    padding-bottom: 3vw;
    padding-top: 5vw;
    padding-bottom: 5vw;
  }
  .new__catalog-mob::-webkit-scrollbar {
    height: 3vw;
    background-color: #f9f9fd;
  }
  .new__catalog-mob::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #DCAB96;
  }
  .new__catalog-mob::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #FAF3EF;
  }
  .new__catalog-mob .item {
    margin-right: 5vw;
    min-width: 60vw;
    padding: 2vw;
    background-color: white;
    color: #333333;
    font-family: "ProbaPro-Regular";
    position: relative;
    margin-bottom: 0.5vw;
    border-radius: 5vw;
    transition: max-height 0.5s ease-in-out;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.07);
    padding: 5vw;
  }
  .new__catalog-mob .item .item-under {
    position: absolute;
    margin-left: -2vw;
    z-index: 2;
    font-family: "ProbaPro-Medium";
    margin-top: -1vw;
  }
  .new__catalog-mob .item .item-under .item-under-new {
    background-color: #96DCBD;
    color: white;
    padding: 1vw 2vw;
    font-size: 3.5vw;
    padding: 2vw 5vw;
  }
  .new__catalog-mob .item .item-under .item-under-hit {
    background-color: #DC96B5;
    color: white;
    padding: 1vw 2vw;
    font-size: 3.5vw;
    margin-top: 2vw;
    text-align: center;
    display: inline-block;
    padding: 2vw 5vw;
  }
  .new__catalog-mob .item:hover {
    transition: all 0.5s ease-in-out;
  }
  .new__catalog-mob .item .item__img {
    width: 100%;
    text-align: center;
    border-radius: 5vw;
    overflow: hidden;
  }
  .new__catalog-mob .item .item__img img {
    width: 100%;
    height: 80vw;
    object-fit: cover;
  }
  .new__catalog-mob .item .item__title {
    font-size: 5vw;
    margin-top: 2vw;
    margin-bottom: 2vw;
    height: 13vw;
    overflow: hidden;
  }
  .new__catalog-mob .item .item__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .new__catalog-mob .item .item__info .item__info-price {
    font-family: "ProbaPro-Bold";
    font-size: 5vw;
  }
  .new__catalog-mob .item .item__info .item__info-tools {
    display: flex;
  }
  .new__catalog-mob .item .item__info .item__info-tools div {
    margin-left: 0.8vw;
    width: 5vw;
  }
  .new__catalog-mob .item .item__info .item__info-tools div img {
    width: 100%;
  }
  .new__catalog-mob .item .item__digits {
    opacity: 0;
    transition: all 0.5s ease-in-out;
    display: none;
    position: absolute;
    background-color: white;
    width: 100%;
    margin-left: -1vw;
    z-index: 90;
  }
  .new__catalog-mob .item .item__digits .item__digits-color {
    display: flex;
    justify-content: space-between;
    padding: 1vw;
    border-bottom: 0.1vw solid #B9B9B9;
  }
  .new__catalog-mob .item .item__digits .item__digits-color .item__digits-color__item {
    padding: 0.5vw;
  }
  .new__catalog-mob .item .item__digits .item__digits-color .item__digits-color__item:hover {
    cursor: pointer;
  }
  .new__catalog-mob .item .item__digits .item__digits-color .item__digits-color__item .color__item-wrapper {
    width: 1.4vw;
    height: 1.4vw;
    display: block;
    border-radius: 50%;
  }
  .new__catalog-mob .item .item__digits .item__digits-color .active {
    border: 1px solid #DCAB96;
    border-radius: 50%;
  }
  .new__catalog-mob .item .item__digits .item__digits-size {
    display: flex;
    justify-content: space-between;
    padding: 1vw;
    font-family: "ProbaPro-Regular";
    color: #868686;
    font-size: 1vw;
  }
  .new__catalog-mob .item .item__digits .item__digits-size .active {
    color: #333333;
  }
  .new__catalog-mob .item .item__digits .item__digits-cart {
    display: flex;
    justify-content: space-between;
    padding: 1vw;
    height: 3vw;
  }
  .new__catalog-mob .item .item__digits .item__digits-cart .cart__count {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #D2D2D2;
    border-radius: 0.5vw;
    width: 50%;
  }
  .new__catalog-mob .item .item__digits .item__digits-cart .cart__count .cart__count-plus {
    color: #C4C4C4;
    font-family: "ProbaPro-ExtraLight";
    font-size: 2vw;
    width: 30%;
    text-align: center;
  }
  .new__catalog-mob .item .item__digits .item__digits-cart .cart__count .cart__count-plus:hover {
    cursor: pointer;
  }
  .new__catalog-mob .item .item__digits .item__digits-cart .cart__count .cart__count-count {
    color: black;
    font-size: 2vw;
    font-family: "ProbaPro-Medium";
  }
  .new__catalog-mob .item .item__digits .item__digits-cart .cart__count .cart__count-minus {
    color: #C4C4C4;
    font-family: "ProbaPro-ExtraLight";
    font-size: 2vw;
    width: 30%;
    text-align: center;
  }
  .new__catalog-mob .item .item__digits .item__digits-cart .cart__count .cart__count-minus:hover {
    cursor: pointer;
  }
  .new__catalog-mob .item .item__digits .item__digits-cart .cart__btn {
    width: 46%;
    height: 100%;
  }
  .new__catalog-mob .item .item__digits .item__digits-cart .cart__btn .btn__wrapper {
    height: 100%;
    background-color: #DCAB96;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 0.5vw;
    font-size: 1.2vw;
  }
  .new__catalog-mob .item .item__digits .item__digits-cart .cart__btn .btn__wrapper:hover {
    cursor: pointer;
  }

  .new__catalog {
    display: none;
  }

  .offer {
    padding-left: 5%;
    padding-right: 0%;
    width: auto;
    margin-top: 8vw;
  }
  .offer .offer__title {
    margin-bottom: 4vw;
    margin-top: 4vw;
  }
  .offer .offer__title .offer__title-title {
    font-size: 5vw;
  }
  .offer .offer__title .offer__title-all {
    margin-right: 5vw;
    align-items: center;
  }
  .offer .offer__title .offer__title-all .offer__title-all__text {
    display: none;
  }
  .offer .offer__title .offer__title-all .offer__title-all__text a {
    font-size: 3vw;
  }
  .offer .offer__title .offer__title-all .offer__title-all__img img {
    width: 3vw;
  }
  .offer .offer__body {
    display: flex;
    width: auto;
    overflow-x: scroll;
    overflow-y: hidden;
    max-height: 45vw;
    padding-bottom: 5vw;
  }
  .offer .offer__body::-webkit-scrollbar {
    height: 3vw;
    background-color: #f9f9fd;
  }
  .offer .offer__body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #DCAB96;
  }
  .offer .offer__body::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #FAF3EF;
  }
  .offer .offer__body .offer__body-main {
    width: auto;
    margin-right: 3vw;
    max-height: 45vw;
  }
  .offer .offer__body .offer__body-main img {
    width: auto;
    max-height: 45vw;
  }
  .offer .offer__body .offer__body-wrapper {
    flex-wrap: nowrap;
    width: auto;
    max-height: 45vw;
  }
  .offer .offer__body .offer__body-wrapper .offer__body-item {
    width: auto;
    margin-right: 3vw;
    max-height: 45vw;
  }
  .offer .offer__body .offer__body-wrapper .offer__body-item img {
    width: auto;
    max-height: 45vw;
    height: 45vw;
  }

  .hit {
    overflow-x: hidden;
    padding-left: 5%;
    padding-right: 0%;
    width: auto;
    margin-top: 8vw;
  }
  .hit .hit__catalog {
    display: none;
  }
  .hit .hit__catalog-mob {
    display: flex;
    padding-bottom: 3vw;
  }
  .hit .hit__catalog-mob::-webkit-scrollbar {
    height: 3vw;
    background-color: #f9f9fd;
  }
  .hit .hit__catalog-mob::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #DCAB96;
  }
  .hit .hit__catalog-mob::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #FAF3EF;
  }
  .hit .hit__title {
    margin-bottom: 4vw;
  }
  .hit .hit__title .hit__title-title {
    font-size: 5vw;
  }
  .hit .hit__title .hit__title-all {
    margin-right: 5vw;
    align-items: center;
  }
  .hit .hit__title .hit__title-all .hit__title-all__text {
    display: none;
  }
  .hit .hit__title .hit__title-all .hit__title-all__text a {
    font-size: 3vw;
  }
  .hit .hit__title .hit__title-all .hit__title-all__img img {
    width: 3vw;
  }
  .hit .hit__catalog {
    display: none;
  }
  .hit .hit__catalog-mob {
    display: flex;
    width: auto;
    overflow-x: scroll;
    padding-bottom: 3vw;
  }
  .hit .hit__catalog-mob::-webkit-scrollbar {
    height: 3vw;
    background-color: #f9f9fd;
  }
  .hit .hit__catalog-mob::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #DCAB96;
  }
  .hit .hit__catalog-mob::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #FAF3EF;
  }
  .hit .hit__catalog-mob .item {
    margin-right: 5vw;
    min-width: 60vw;
    padding: 2vw;
    background-color: white;
    color: #333333;
    font-family: "ProbaPro-Regular";
    position: relative;
    margin-bottom: 0.5vw;
    border-radius: 5vw;
    transition: max-height 0.5s ease-in-out;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.07);
    padding: 5vw;
  }
  .hit .hit__catalog-mob .item .item-under {
    position: absolute;
    margin-left: -2vw;
    z-index: 2;
    font-family: "ProbaPro-Medium";
    margin-top: -1vw;
  }
  .hit .hit__catalog-mob .item .item-under .item-under-new {
    background-color: #96DCBD;
    color: white;
    padding: 1vw 2vw;
    font-size: 3.5vw;
    margin-top: 0.5vw;
    border-radius: 5vw;
    padding: 2vw 5vw;
  }
  .hit .hit__catalog-mob .item .item-under .item-under-hit {
    background-color: #DC96B5;
    color: white;
    padding: 1vw 2vw;
    font-size: 3.5vw;
    margin-top: 2vw;
    text-align: center;
    display: inline-block;
    padding: 2vw 5vw;
    border-radius: 5vw;
  }
  .hit .hit__catalog-mob .item:hover {
    transition: all 0.5s ease-in-out;
  }
  .hit .hit__catalog-mob .item .item__img {
    width: 100%;
    text-align: center;
    border-radius: 5vw;
    overflow: hidden;
  }
  .hit .hit__catalog-mob .item .item__img img {
    width: 100%;
    height: 80vw;
    object-fit: cover;
  }
  .hit .hit__catalog-mob .item .item__title {
    font-size: 5vw;
    margin-top: 2vw;
    margin-bottom: 2vw;
    height: 13vw;
    overflow: hidden;
  }
  .hit .hit__catalog-mob .item .item__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .hit .hit__catalog-mob .item .item__info .item__info-price {
    font-family: "ProbaPro-Bold";
    font-size: 5vw;
  }
  .hit .hit__catalog-mob .item .item__info .item__info-tools {
    display: flex;
  }
  .hit .hit__catalog-mob .item .item__info .item__info-tools div {
    margin-left: 0.8vw;
    width: 5vw;
  }
  .hit .hit__catalog-mob .item .item__info .item__info-tools div img {
    width: 100%;
  }
  .hit .hit__catalog-mob .item .item__digits {
    opacity: 0;
    transition: all 0.5s ease-in-out;
    display: none;
    position: absolute;
    background-color: white;
    width: 100%;
    margin-left: -1vw;
    z-index: 2;
  }
  .hit .hit__catalog-mob .item .item__digits .item__digits-color {
    display: flex;
    justify-content: space-between;
    padding: 1vw;
    border-bottom: 0.1vw solid #B9B9B9;
  }
  .hit .hit__catalog-mob .item .item__digits .item__digits-color .item__digits-color__item {
    padding: 0.5vw;
  }
  .hit .hit__catalog-mob .item .item__digits .item__digits-color .item__digits-color__item:hover {
    cursor: pointer;
  }
  .hit .hit__catalog-mob .item .item__digits .item__digits-color .item__digits-color__item .color__item-wrapper {
    width: 1.4vw;
    height: 1.4vw;
    display: block;
    border-radius: 50%;
  }
  .hit .hit__catalog-mob .item .item__digits .item__digits-color .active {
    border: 1px solid #DCAB96;
    border-radius: 50%;
  }
  .hit .hit__catalog-mob .item .item__digits .item__digits-size {
    display: flex;
    justify-content: space-between;
    padding: 1vw;
    font-family: "ProbaPro-Regular";
    color: #868686;
    font-size: 1vw;
  }
  .hit .hit__catalog-mob .item .item__digits .item__digits-size .active {
    color: #333333;
  }
  .hit .hit__catalog-mob .item .item__digits .item__digits-cart {
    display: flex;
    justify-content: space-between;
    padding: 1vw;
    height: 3vw;
  }
  .hit .hit__catalog-mob .item .item__digits .item__digits-cart .cart__count {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #D2D2D2;
    border-radius: 0.5vw;
    width: 50%;
  }
  .hit .hit__catalog-mob .item .item__digits .item__digits-cart .cart__count .cart__count-plus {
    color: #C4C4C4;
    font-family: "ProbaPro-ExtraLight";
    font-size: 2vw;
    width: 30%;
    text-align: center;
  }
  .hit .hit__catalog-mob .item .item__digits .item__digits-cart .cart__count .cart__count-plus:hover {
    cursor: pointer;
  }
  .hit .hit__catalog-mob .item .item__digits .item__digits-cart .cart__count .cart__count-count {
    color: black;
    font-size: 2vw;
    font-family: "ProbaPro-Medium";
  }
  .hit .hit__catalog-mob .item .item__digits .item__digits-cart .cart__count .cart__count-minus {
    color: #C4C4C4;
    font-family: "ProbaPro-ExtraLight";
    font-size: 2vw;
    width: 30%;
    text-align: center;
  }
  .hit .hit__catalog-mob .item .item__digits .item__digits-cart .cart__count .cart__count-minus:hover {
    cursor: pointer;
  }
  .hit .hit__catalog-mob .item .item__digits .item__digits-cart .cart__btn {
    width: 46%;
    height: 100%;
  }
  .hit .hit__catalog-mob .item .item__digits .item__digits-cart .cart__btn .btn__wrapper {
    height: 100%;
    background-color: #DCAB96;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 0.5vw;
    font-size: 1.2vw;
  }
  .hit .hit__catalog-mob .item .item__digits .item__digits-cart .cart__btn .btn__wrapper:hover {
    cursor: pointer;
  }

  .instagramm {
    padding-left: 5%;
    padding-right: 0px;
    margin-top: 8vw;
    width: auto;
  }
  .instagramm .instagramm__title {
    margin-bottom: 4vw;
  }
  .instagramm .instagramm__title .instagramm__title-title {
    font-size: 5vw;
  }
  .instagramm .instagramm__title .instagramm__title-all {
    margin-right: 5vw;
    align-items: center;
  }
  .instagramm .instagramm__title .instagramm__title-all .instagramm__title-all__text {
    display: none;
  }
  .instagramm .instagramm__title .instagramm__title-all .instagramm__title-all__text a {
    font-size: 3vw;
  }
  .instagramm .instagramm__title .instagramm__title-all .instagramm__title-all__img img {
    width: 3vw;
  }
  .instagramm .instageamm__body {
    display: flex;
    width: auto;
    overflow-x: scroll;
    padding-bottom: 3vw;
  }
  .instagramm .instageamm__body::-webkit-scrollbar {
    height: 3vw;
    background-color: #f9f9fd;
  }
  .instagramm .instageamm__body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #DCAB96;
  }
  .instagramm .instageamm__body::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #FAF3EF;
  }
  .instagramm .instageamm__body .instageamm__body-item {
    min-width: 75vw;
    margin-right: 3vw;
  }

  .contact {
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 2vw;
    padding-bottom: 3vw;
    margin-top: 2vw;
    background-color: white;
  }
  .contact .contact__title {
    margin-bottom: 2vw;
  }
  .contact .contact__title .contact__title-title {
    font-size: 5vw;
  }
  .contact .contact__title .contact__title-all {
    margin-right: 5vw;
    align-items: center;
  }
  .contact .contact__title .contact__title-all .contact__title-all__text {
    display: none;
  }
  .contact .contact__title .contact__title-all .contact__title-all__text a {
    font-size: 3vw;
  }
  .contact .contact__title .contact__title-all .contact__title-all__img img {
    width: 3vw;
  }
  .contact .contact__body #map {
    height: 47vw;
  }
  .contact .contact__body .map .map__cart {
    position: absolute;
    background: white;
    margin-top: 0vw;
    margin-left: 0vw;
    width: 34vw;
    z-index: 2;
  }
  .contact .contact__body .map .map__cart .map__cart-img {
    width: 100%;
  }
  .contact .contact__body .map .map__cart .map__cart-img img {
    width: 100%;
    height: 20vw;
    object-fit: cover;
  }
  .contact .contact__body .map .map__cart .map__cart-body {
    padding-left: 1vw;
    padding-right: 1vw;
    padding-top: 2vw;
    padding-bottom: 0.5vw;
    text-align: center;
  }
  .contact .contact__body .map .map__cart .map__cart-body .footer__about-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.7vw;
    width: 100%;
  }
  .contact .contact__body .map .map__cart .map__cart-body .footer__about-item .footer__about-item-img {
    margin-right: 0.8vw;
    padding: 0.7vw;
    width: 100%;
    border-radius: 5vw;
    background-color: #333333;
  }
  .contact .contact__body .map .map__cart .map__cart-body .footer__about-item .footer__about-item-img img {
    width: 0.8vw;
  }
  .contact .contact__body .map .map__cart .map__cart-body .footer__about-item .footer__about-item-text {
    font-family: "ProbaPro-Regular";
    font-size: 3vw;
    width: 100%;
  }
  .contact .contact__body .map .map__cart .map__cart-body .footer__about-item .phone {
    width: 100%;
    font-family: "ProbaPro-Bold";
    font-size: 3vw;
  }
  .contact .contact__body .map .map__cart .map__cart-body .map__cart-title {
    font-size: 1.4vw;
    margin-top: 1vw;
    margin-bottom: 1.2vw;
    font-family: "ProbaPro-Bold";
  }
  .contact .contact__body .map .map__cart .map__cart-body .map__cart-desc {
    border-top: 2px solid #e9e9e9;
    padding-top: 0.5vw;
    text-align: right;
    font-family: "ProbaPro-Light";
    font-weight: lighter;
  }
  .contact .contact__body .map .map__cart .map__cart-body .map__cart-desc .map__cart-desc__item {
    margin-top: 0.5vw;
    font-size: 0.85vw;
  }
  .contact .contact__body .map .map__cart .map__cart-body .map__cart-desc .map__cart-desc__item img {
    margin-right: 0.5vw;
    width: 1vw;
  }
  .contact .contact__body .map .map__cart .map__cart-body .map__cart-footer {
    margin-top: 1.5vw;
    font-size: 0.9vw;
    font-family: "ProbaPro-Bold";
    padding-bottom: 2vw;
  }

  .footer {
    display: block;
    text-align: center;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 8vw;
  }
  .footer .footer__logo {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
  .footer .footer__logo .footer__logo-logo {
    justify-content: space-between;
  }
  .footer .footer__logo .footer__logo-logo .footer__logo-logo-logo {
    width: 50%;
  }
  .footer .footer__logo .footer__logo-logo .footer__logo-logo-description {
    width: 45%;
    font-size: 4vw;
    color: white;
    text-align: left;
  }
  .footer .footer__logo .footer__logo-subscribe {
    display: none;
  }
  .footer .footer__logo .footer__logo-made {
    display: none;
  }
  .footer .footer__catalog {
    margin-top: 5vw;
  }
  .footer .footer__catalog .footer__catalog-title {
    margin-bottom: 4vw;
  }
  .footer .footer__catalog .footer__catalog-title .footer__catalog-title__title {
    font-size: 4.5vw;
  }
  .footer .footer__catalog .footer__catalog-title .footer__catalog-title__under {
    display: none;
  }
  .footer .footer__catalog .footer__catalog-body .footer__catalog-body-item {
    font-size: 3.5vw;
    margin-bottom: 2vw;
  }
  .footer .footer__info {
    margin-top: 5vw;
  }
  .footer .footer__info .footer__info-title {
    margin-bottom: 4vw;
  }
  .footer .footer__info .footer__info-title .footer__info-title__title {
    font-size: 4.5vw;
  }
  .footer .footer__info .footer__info-title .footer__info-title__under {
    display: none;
  }
  .footer .footer__info .footer__info-body .footer__info-body-item {
    font-size: 3.5vw;
    margin-bottom: 2vw;
  }
  .footer .footer__about {
    margin-top: 5vw;
  }
  .footer .footer__about .footer__about-wrapper .footer__about-item {
    justify-content: center;
    margin-bottom: 3vw;
    align-items: flex-start;
  }
  .footer .footer__about .footer__about-wrapper .footer__about-item .footer__about-item-img {
    margin-right: 4vw;
  }
  .footer .footer__about .footer__about-wrapper .footer__about-item .footer__about-item-img img {
    width: 4vw;
  }
  .footer .footer__about .footer__about-wrapper .footer__about-item .footer__about-item-text {
    font-size: 4vw;
    font-family: "ProbaPro-ExtraLight";
  }
  .footer .footer__about .footer__about-wrapper .footer__about-item .phone {
    font-size: 5vw;
    font-family: "ProbaPro-Bold";
  }
  .footer .footer__about .footer__about-social {
    margin-top: 2vw;
    justify-content: center;
  }
  .footer .footer__about .footer__about-social .footer__about-social-item {
    padding: 2.5vw;
    margin-right: 4vw;
  }
  .footer .footer__about .footer__about-social .footer__about-social-item:last-child {
    margin-right: 0px;
  }
  .footer .footer__subscribe-mob {
    display: block;
    width: 100%;
  }
  .footer .footer__subscribe-mob label {
    display: block;
    display: flex;
    justify-content: flex-start;
    width: 100vw;
    font-family: "ProbaPro-Regular";
    font-size: 3vw;
    text-align: left;
    margin-right: auto;
    margin-bottom: 1vw;
  }
  .footer .footer__subscribe-mob form {
    width: 100%;
    font-family: "ProbaPro-Regular";
    padding-top: 0.5vw;
    justify-content: flex-start;
  }
  .footer .footer__subscribe-mob form .subscribe_input {
    background-color: #868686;
    color: white;
    font-size: 4vw;
    padding: 2vw 2vw;
    border: none;
    margin-right: 0.2vw;
    width: 100%;
    margin-bottom: 3vw;
  }
  .footer .footer__subscribe-mob form .subscribe_submit {
    background-color: #DCAB96;
    color: white;
    padding-top: 3vw;
    padding-bottom: 3vw;
    padding-left: 1vw;
    padding-right: 1vw;
    font-size: 3.5vw;
    border: none;
    width: 100%;
  }
  .footer .footer__made-mob {
    display: block;
    margin-top: 4vw;
    color: #666666;
    font-size: 4vw;
  }
  .footer .footer__made-mob a {
    text-decoration: none;
    color: #666666;
  }
}
.section.border-top {
  border-top: 1px solid #ececec;
  padding: 70px 0 60px;
}

.container {
  max-width: 1255px !important;
  margin: 0 auto;
  padding: 0 30px;
}

.row.gutter-y-30 {
  margin-bottom: -30px;
}

.row.gutter-y-30 > [class*=col-] {
  margin-bottom: 30px;
}

.main__dop-banner {
  display: block;
  height: 100%;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: #fff !important;
  transition: transform 0.3s;
  align-items: flex-end;
}

.main__dop-banner:hover {
  transform: scale(1.05);
}

.main__dop-banner--big {
  min-height: 300px;
}

.main__dop-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.6s;
  display: block;
}

.main__dop-banner:hover .main__dop-banner-img {
  transform: scale(1.1);
}

.main__dop-banner-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.main__dop-banner-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 8px;
}

.main__dop-banner-title {
  font-size: 18px;
  display: block;
  font-weight: 500;
}

.head_banner {
  margin-left: 30px;
}

*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.buttons {
  border-radius: 30px;
}

.blob-btn {
  z-index: 1;
  position: relative;
  padding: 10px 26px;
  margin-bottom: 30px;
  text-align: center;
  color: #202020;
  font-size: 14px;
  background-color: transparent;
  outline: none;
  border: none;
  transition: color 0.5s;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 30px;
}
.blob-btn:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.blob-btn:after {
  content: "";
  z-index: -2;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 100%;
  height: 100%;
  transition: all 0.3s 0.2s;
  border-radius: 30px;
}
.blob-btn:hover {
  color: #FFFFFF;
  border-radius: 30px;
}
.blob-btn:hover:after {
  transition: all 0.3s;
  left: 0;
  top: 0;
  border-radius: 30px;
}
.blob-btn__inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: #ffffff;
}
.blob-btn__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url("#goo");
}
.blob-btn__blob {
  position: absolute;
  top: 2px;
  width: 25%;
  height: 100%;
  background: #4A90E2;
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s;
}
.blob-btn__blob:nth-child(1) {
  left: 0%;
  transition-delay: 0s;
}
.blob-btn__blob:nth-child(2) {
  left: 30%;
  transition-delay: 0.08s;
}
.blob-btn__blob:nth-child(3) {
  left: 60%;
  transition-delay: 0.16s;
}
.blob-btn__blob:nth-child(4) {
  left: 90%;
  transition-delay: 0.24s;
}
.blob-btn:hover .blob-btn__blob {
  transform: translateZ(0) scale(1.7);
}

.title--xl {
  max-width: 350px;
  font-size: 35px;
  display: block;
  font-weight: 200;
  color: #202020;
  margin-bottom: 30px;
}

.offer.section.border-top {
  border-top: 1px solid #ececec;
  padding: 70px 0 60px;
}

.offer__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.offer__title-title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
}

.offer__title-all {
  display: flex;
  align-items: center;
  gap: 10px;
}

.offer__title-all__text a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.offer__title-all__text a:hover {
  color: #007bff;
}

.offer__title-all__img img {
  width: 20px;
  height: 20px;
}

.row.gutter-y-30 {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  margin-bottom: -30px;
}

.row.gutter-y-30 > [class*=col-] {
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 30px;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-sm-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-lg-6 .row.gutter-y-30 {
  margin-bottom: -15px;
}

.col-lg-6 .row.gutter-y-30 > [class*=col-] {
  margin-bottom: 15px;
}

.special-grid .main__dop-banner {
  display: block;
  height: 200px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: #fff !important;
  transition: transform 0.3s;
}

.special-grid .main__dop-banner--big {
  height: 430px;
}

.new {
  padding: 60px 5%;
}

.new__title-all a {
  color: #3498db !important;
}

.catalog .item {
  background: white;
  border-radius: 0px;
  padding: 20px;
  box-shadow: none;
  transition: transform 0.3s ease;
  border: 1px solid #f4f4f4;
  width: 300px;
}

.catalog .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
}

.item-under-new {
  background-color: #3498db !important;
  color: white;
}

.item-under-hit {
  background-color: #5DADE2 !important;
  color: white;
}

.item__img img {
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
  align-self: center;
}

.item .item__img .item_img-wrapper {
  max-width: auto !important;
}

.item__title {
  font-size: 16px;
  margin: 15px 0 10px;
  color: #333;
  height: auto;
  min-height: 40px;
}

.item__info-price {
  color: #3498db;
  font-weight: bold;
  font-size: 18px;
}

.item__category {
  color: #666;
  font-size: 14px;
  margin: 5px 0 15px;
}

.item__btn {
  margin-top: 15px;
}

.btn-vet {
  display: block;
  background: #3498db;
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-vet:hover {
  background: #5DADE2;
  color: white;
}

.item__digits,
.item__info-tools__like,
.item__digits-color,
.item__digits-size {
  display: none !important;
}

.item__info-tools {
  display: flex;
  align-items: center;
}

.item__info-tools__cart img {
  width: 24px;
  height: 24px;
}

.header-top-panel {
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  padding: 8px 0;
  font-size: 13px;
}

.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-contacts {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-phone, .header-address {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
}

.header-phone a {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
}

.header-top-links {
  position: relative;
}

.top-links-list {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-links-item {
  position: relative;
}

.top-links-item a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.top-links-item a:hover {
  color: #3498db;
}

.has-submenu:hover .submenu {
  display: block;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  min-width: 200px;
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.submenu li {
  margin: 0;
}

.submenu a {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
}

.submenu a:hover {
  background: #f8f9fa;
  color: #3498db;
}

.header-main {
  background: white;
  padding: 20px 0;
  border-bottom: 1px solid #e9ecef;
}

.header-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  max-height: 40px;
  width: auto;
}

.header-search {
  flex: 1;
  max-width: 600px;
}

.search-wrapper {
  display: flex;
  border: 2px solid #3498db;
  border-radius: 25px;
  overflow: hidden;
}

.search-input {
  flex: 1;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  outline: none;
}

.search-button {
  background: #3498db;
  color: white;
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.3s;
}

.search-button:hover {
  background: #2980b9;
}

.header-tools {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.tool-item {
  position: relative;
}

.tool-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  gap: 5px;
  padding: 5px;
  transition: color 0.3s;
}

.tool-link:hover {
  color: #3498db;
}

.tool-text {
  font-size: 12px;
}

.tool-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #3498db;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-bottom {
  background: #3498db;
  padding: 15px 0;
}

.header-categories {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.category-item a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: opacity 0.3s;
}

.category-item a:hover {
  opacity: 0.8;
}

.footer {
  background: #2c3e50;
  color: white;
}

.footer-main {
  padding: 50px 0 30px;
  width: 100%;
}

.footer-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-about {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.footer-logo img {
  max-height: 50px;
  width: auto;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-text strong {
  font-size: 18px;
  margin-bottom: 5px;
}

.footer-logo-text span {
  color: #87CEEB;
  font-size: 14px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-item i {
  color: #87CEEB;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #87CEEB;
}

.contact-info span {
  font-size: 13px;
  color: #bdc3c7;
  margin-top: 2px;
}

.footer-social {
  margin-top: 10px;
}

.social-title {
  font-size: 14px;
  margin-bottom: 10px;
  color: #bdc3c7;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #34495e;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: #87CEEB;
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #87CEEB;
}

.subscribe-text {
  font-size: 14px;
  color: #bdc3c7;
  margin-bottom: 15px;
  line-height: 1.5;
}

.subscribe-form {
  margin-bottom: 25px;
}

.subscribe-input-group {
  display: flex;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}

.subscribe-input {
  flex: 1;
  border: none;
  padding: 12px 15px;
  font-size: 14px;
  outline: none;
}

.subscribe-button {
  background: #87CEEB;
  border: none;
  padding: 0 20px;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.subscribe-button:hover {
  background: #4A90E2;
}

.subscribe-agreement {
  font-size: 12px;
  color: #95a5a6;
}

.subscribe-agreement a {
  color: #87CEEB;
  text-decoration: none;
}

.payment-methods {
  border-top: 1px solid #34495e;
  padding-top: 20px;
}

.payment-title {
  font-size: 14px;
  margin-bottom: 10px;
  color: #bdc3c7;
}

.payment-icons {
  display: flex;
  gap: 10px;
}

.payment-icons i {
  font-size: 24px;
  color: #bdc3c7;
}

.footer-bottom {
  background: #1a252f;
  padding: 20px 0;
  border-top: 1px solid #34495e;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: #95a5a6;
  font-size: 14px;
}

.footer-developer {
  color: #95a5a6;
  font-size: 14px;
}

.footer-developer a {
  color: #87CEEB;
  text-decoration: none;
}

.contact {
  margin-top: 60px;
  margin-bottom: 60px;
}

:root {
  --h1-size: clamp(2rem, 4vw, 3rem);
  --h2-size: clamp(1.75rem, 3vw, 2.5rem);
  --h3-size: clamp(1.5rem, 2.5vw, 2rem);
  --h4-size: clamp(1.25rem, 2vw, 1.5rem);
}

.title-main {
  font-size: var(--h1-size);
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.section-title {
  font-size: 18px;
  font-weight: 500;
  position: relative;
}

.new__title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 1rem;
}

.new__title-all {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.new__title-all .new__title-all__text a {
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
  text-decoration: none;
  color: #3498db;
  font-weight: 500;
  transition: color 0.3s;
}

.new__title-all .new__title-all__text a:hover {
  color: #5DADE2;
}

.new__title-all__img img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.new__title-all:hover .new__title-all__img img {
  transform: translateX(3px);
}

.home-page {
  background: #fff;
}

.categories-section,
.products-section,
.offers-section,
.contacts-section {
  padding: 60px 0;
}

.products-section {
  background: #f8f9fa;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-link {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.section-link:hover {
  color: #333;
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.category-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  transition: transform 0.3s;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-card--large {
  grid-column: span 2;
}

.category-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.category-card--large .category-image {
  height: 300px;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.category-card:hover .category-image img {
  transform: scale(1.05);
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.category-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  opacity: 0.9;
}

.category-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Бейджи */
.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.badge {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-new {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.badge-hit {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(245, 87, 108, 0.3);
}

/* Изображение */
.product-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
  max-height: 180px;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.image-thumbs {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
}

.thumb {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.thumb.active {
  background: #333;
  transform: scale(1.2);
}

/* Информация о товаре */
.product-info {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Статус наличия */
.product-availability {
  margin-bottom: 4px;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.availability-badge.in-stock {
  background: #f0f9f0;
  color: #27ae60;
  border: 1px solid #d5f5e3;
}

/* Название товара */
.product-title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-title a:hover {
  color: #666;
}

/* Цены */
.product-price-block {
  margin-top: auto;
}

.price-old {
  display: flex;
  align-items: baseline;
  margin-bottom: 2px;
}

.old-price-value {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}

.price-current {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-integer {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.price-decimal {
  font-size: 14px;
  font-weight: 600;
  color: #666;
}

.currency {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* Действия */
.product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
}

.wishlist-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #666;
}

.wishlist-btn:hover {
  border-color: #ff4757;
  color: #ff4757;
  transform: scale(1.1);
}

.wishlist-btn.active {
  background: #ff4757;
  border-color: #ff4757;
  color: white;
}

/* Быстрое добавление в корзину */
.quick-add {
  padding: 0 16px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.quantity-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #f8f9fa;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background: #e9ecef;
}

.quantity {
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.add-to-cart {
  flex: 1;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: #333;
  color: white;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.add-to-cart:hover {
  background: #555;
  transform: translateY(-1px);
}

/* Адаптивность */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }

  .product-actions {
    opacity: 1;
  }

  .product-image {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }

  .product-info {
    padding: 12px;
  }

  .quick-add {
    padding: 0 12px 12px;
    flex-direction: column;
  }

  .add-to-cart {
    width: 100%;
  }
}
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.offer-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  transition: transform 0.3s;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.offer-card:hover {
  transform: translateY(-4px);
}

.offer-card--large {
  grid-column: span 2;
}

.offer-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.offer-card--large .offer-image {
  height: 300px;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.offer-card:hover .offer-image img {
  transform: scale(1.05);
}

.offer-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.offer-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  opacity: 0.9;
}

.offer-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.offers-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contacts-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.contact-value {
  font-size: 16px;
  color: #333;
}

.contact-value a {
  color: #333;
  text-decoration: none;
}

.contact-value a:hover {
  color: #666;
}

.contacts-map {
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#map {
  width: 100%;
  height: 100%;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #333;
}

.header-logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 12px;
  color: #7f8c8d;
  margin-top: 2px;
}

.search-wrapper {
  display: flex;
  border: 2px solid #3498db;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  width: 100%;
}

.search-input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  background: transparent;
}

.search-input::placeholder {
  color: #95a5a6;
}

.search-button {
  background: #3498db;
  color: white;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.search-button:hover {
  background: #2980b9;
}

.search-button svg {
  width: 18px;
  height: 18px;
}

.header-tools {
  display: flex;
  gap: 15px;
}

.tool-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  gap: 4px;
  padding: 8px;
  transition: color 0.3s;
  min-width: 60px;
}

.tool-link:hover {
  color: #3498db;
}

.tool-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.header-bottom {
  background: #2c3e50;
  padding: 12px 0;
}

.header-categories {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s;
  white-space: nowrap;
}

.category-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #3498db;
}

.category-icon {
  font-size: 16px;
}

.header_over {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.header_over.visible {
  transform: translateY(0);
}

.header_over .header-main {
  padding: 10px 0;
  border-bottom: none;
}

.header_over .header-logo img {
  height: 40px;
}

.header_over .header-bottom {
  display: none;
}

.header_over .header-top-panel {
  display: none;
}

.product-variants {
  padding: 0 16px 16px;
  border-top: 1px solid #f0f0f0;
  margin-top: 8px;
}

.color-variants,
.size-variants {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.variant-label {
  font-size: 12px;
  color: #666;
  min-width: 40px;
}

.color-options {
  display: flex;
  gap: 4px;
}

.color-option {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}

.color-option.active {
  border-color: #333;
}

.size-options {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.size-option {
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 12px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
}

.size-option:hover,
.size-option.active {
  border-color: #333;
  background: #333;
  color: white;
}

.quick-add {
  padding: 16px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  gap: 8px;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.quantity-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #f8f9fa;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s;
}

.quantity-btn:hover {
  background: #e9ecef;
}

.quantity {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
}

.add-to-cart {
  flex: 1;
  padding: 0 16px;
  background: #2d3e51;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.add-to-cart:hover {
  background: #555;
}

.favorite-btn,
.wishlist-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.favorite-btn:hover,
.wishlist-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.favorite-btn.active,
.wishlist-btn.active {
  color: #e74c3c;
}

.favorite-btn.active svg path,
.wishlist-btn.active svg path {
  fill: currentColor !important;
}

.favorite-btn.loading,
.wishlist-btn.loading {
  opacity: 0.6;
  pointer-events: none;
}

.favorite-btn.loading::after,
.wishlist-btn.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .section.border-top {
    padding: 40px 0 30px;
  }

  .container {
    padding: 0 15px;
  }

  .main__dop-banner--big {
    min-height: 200px;
  }

  .main__dop-banner-text {
    padding: 20px;
  }

  .main__dop-banner-title {
    font-size: 16px;
  }

  .offer__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .col-lg-6,
.col-lg-3,
.col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .special-grid .main__dop-banner--big {
    height: 250px;
  }

  .special-grid .main__dop-banner {
    height: 150px;
  }

  .catalog .item {
    width: 48%;
    margin-bottom: 20px;
  }

  .item__title {
    font-size: 14px;
  }

  .item__info-price {
    font-size: 16px;
  }

  .header-top-row {
    flex-direction: column;
    gap: 10px;
  }

  .header-main-row {
    flex-direction: column;
    gap: 15px;
  }

  .header-search {
    max-width: 100%;
  }

  .header-categories {
    flex-wrap: wrap;
    gap: 15px;
  }

  .top-links-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .header-top-panel {
    display: none;
  }

  .header-main {
    padding: 15px 0;
  }

  .header-main-row {
    flex-wrap: wrap;
    gap: 15px;
  }

  .header-logo {
    order: 1;
  }

  .header-tools {
    order: 2;
    margin-left: auto;
  }

  .header-search {
    order: 3;
    max-width: 100%;
    margin-top: 10px;
  }

  .header-bottom {
    padding: 10px 0;
  }

  .tool-text {
    display: none;
  }

  .tool-link {
    min-width: auto;
    padding: 6px;
  }

  .new__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .new__title-title {
    font-size: 1.5rem;
  }

  .categories-section,
.products-section,
.offers-section,
.contacts-section {
    padding: 40px 0;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }

  .category-image,
.offer-image {
    height: 150px;
  }

  .category-card--large .category-image,
.offer-card--large .offer-image {
    height: 200px;
  }
}
@media (max-width: 1024px) {
  .footer-row {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-about {
    grid-column: 1/-1;
  }

  .header-main-row {
    gap: 20px;
  }

  .header-search {
    max-width: 400px;
  }

  .header-categories {
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .category-item {
    flex-shrink: 0;
  }

  .col-lg-6,
.col-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .special-grid .main__dop-banner--big {
    height: 300px;
  }

  .categories-grid,
.offers-grid {
    grid-template-columns: 1fr;
  }

  .category-card--large,
.offer-card--large {
    grid-column: span 1;
  }

  .offers-small-grid {
    grid-template-columns: 1fr;
  }

  .contacts-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .header-logo .logo-text {
    display: none;
  }

  .header-tools {
    gap: 10px;
  }

  .category-item span:not(.category-icon) {
    display: none;
  }

  .category-item {
    padding: 8px;
  }

  .footer-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
    text-align: center;
  }

  .footer-main {
    padding: 30px 0 20px;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-image {
    height: 150px;
  }

  .product-info {
    padding: 12px;
  }

  .product-title {
    font-size: 13px;
  }

  .product-price {
    font-size: 14px;
  }

  .catalog .item {
    width: 100%;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}
.header_over {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header_over.visible {
  transform: translateY(0);
}
.header_over .header-main {
  padding: 12px 0;
  border-bottom: none;
}
.header_over .header-logo img {
  height: 40px;
  transition: height 0.3s ease;
}
.header_over .header-search {
  max-width: 400px;
  transition: max-width 0.3s ease;
}
.header_over .search-input {
  padding: 10px 16px;
  font-size: 13px;
}
.header_over .search-button {
  padding: 10px 16px;
}
.header_over .tool-link {
  padding: 6px;
}
.header_over .tool-text {
  font-size: 11px;
}
.header_over .header-bottom,
.header_over .header-top-panel {
  display: none;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-right: 15px;
}
.burger-menu span {
  display: block;
  width: 20px;
  height: 2px;
  background: #333;
  margin: 2px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}
.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
  background: #2c3e50;
  color: white;
}
.mobile-menu__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-menu__logo img {
  height: 35px;
}
.mobile-menu__logo .logo-text {
  display: flex;
  flex-direction: column;
}
.mobile-menu__logo .logo-text .logo-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
}
.mobile-menu__logo .logo-text .logo-subtitle {
  font-size: 11px;
  color: #87CEEB;
}
.mobile-menu__close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu__content {
  padding: 20px;
}
.mobile-menu__search {
  margin-bottom: 20px;
}
.mobile-menu__search .search-wrapper {
  border-radius: 8px;
  border: 1px solid #ddd;
  width: 100%;
}
.mobile-menu__search .search-input {
  padding: 12px 15px;
}
.mobile-menu__search .search-button {
  padding: 12px 15px;
}
.mobile-menu__nav {
  margin-bottom: 30px;
}
.mobile-menu__category {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-menu__category:last-child {
  border-bottom: none;
}
.mobile-menu__category a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}
.mobile-menu__category a:hover {
  color: #3498db;
}
.mobile-menu__category .category-icon {
  font-size: 20px;
  width: 24px;
  text-align: center;
}
.mobile-menu__tools {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.mobile-menu__tool-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-menu__tool-item:last-child {
  border-bottom: none;
}
.mobile-menu__tool-item .tool-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu__tool-item .tool-text {
  font-size: 16px;
  font-weight: 500;
}
.mobile-menu__tool-item .tool-count {
  margin-left: auto;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.mobile-menu__contacts {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}
.mobile-menu__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.mobile-menu__contact-item:last-child {
  margin-bottom: 0;
}
.mobile-menu__contact-item .contact-icon {
  width: 20px;
  height: 20px;
  color: #3498db;
  flex-shrink: 0;
}
.mobile-menu__contact-item .contact-text {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}
.mobile-menu__contact-item .contact-text a {
  color: #333;
  text-decoration: none;
}
.mobile-menu__contact-item .contact-text a:hover {
  color: #3498db;
}
.mobile-menu__social {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}
.mobile-menu__social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #3498db;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}
.mobile-menu__social .social-link:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .header-main-row .header-search {
    display: none;
  }
  .header-main-row .header-tools .tool-text {
    display: none;
  }
  .header-main-row .header-tools .tool-link {
    min-width: auto;
    padding: 6px;
  }

  .header-bottom {
    display: none;
  }

  .mobile-menu__search {
    display: block;
  }
}
@media (max-width: 480px) {
  .header_over .header-main-row .header-logo .logo-text {
    display: none;
  }

  .mobile-menu__header {
    padding: 15px;
  }
  .mobile-menu__content {
    padding: 15px;
  }
  .mobile-menu__category a {
    font-size: 15px;
  }
  .mobile-menu__tool-item .tool-text {
    font-size: 15px;
  }
}
.header-main,
.header-top-panel,
.header-bottom {
  transition: all 0.3s ease;
}

body.scrolled {
  padding-top: 80px;
}
body.scrolled .header_over {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header_over.visible {
  animation: slideDown 0.4s ease;
}

.tool-item {
  position: relative;
}
.tool-item:hover .tool-link {
  color: #3498db;
}

.category-item {
  position: relative;
  overflow: hidden;
}
.category-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #3498db;
  transition: width 0.3s ease;
}
.category-item:hover::before {
  width: 100%;
}

/* Мобильный хедер */
.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  border-bottom: 1px solid #e9ecef;
}

.mobile-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  height: 60px;
}

/* Бургер меню - исправляем отображение */
.burger-menu {
  display: flex !important;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}

.burger-menu span {
  width: 20px;
  height: 2px;
  background: #333;
  transition: all 0.3s ease;
  display: block !important;
}

.mobile-header__logo {
  flex: 1;
  text-align: center;
}

.mobile-header__logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.mobile-header__logo img {
  height: 35px;
}

.mobile-header__actions {
  display: flex;
  gap: 8px;
}

.action-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #333;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-count-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Поиск */
.mobile-search {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  padding: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: none;
  border-top: 1px solid #e9ecef;
}

.mobile-search.active {
  display: block;
}

.mobile-search__container {
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-form {
  flex: 1;
  display: flex;
}

.search-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
}

.search-input:focus {
  outline: none;
  border-color: #333;
}

.search-submit {
  background: #333;
  border: none;
  padding: 12px 16px;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  margin-left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Мобильное меню */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: white;
  z-index: 1002;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e9ecef;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav__header {
  padding: 20px 16px;
  border-bottom: 1px solid #e9ecef;
  background: #fff;
  display: flex;
  justify-content: space-between;
}

.user-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  border: 1px solid #e9ecef;
}

.user-details {
  flex: 1;
}

.user-name {
  font-weight: 600;
  font-size: 16px;
  color: #333;
  margin-bottom: 2px;
}

.user-email {
  font-size: 12px;
  color: #666;
}

.auth-buttons {
  display: flex;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
}

.btn-login, .btn-register {
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid;
}

.btn-login {
  background: #333;
  color: white;
  border-color: #333;
}

.btn-register {
  background: transparent;
  color: #333;
  border-color: #ddd;
}

.nav-close {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 8px;
  margin-left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__content {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

/* Сайдбар навигация - в стиле вашего аккаунта */
.mobile-sidebar {
  padding: 20px 16px;
  border-bottom: 1px solid #e9ecef;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  position: relative;
}

.sidebar-item:hover {
  background: #f8f9fa;
  border-color: #e9ecef;
}

.sidebar-item.active {
  background: #333;
  color: white;
  border-color: #333;
}

.sidebar-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.sidebar-badge {
  margin-left: auto;
  background: #e74c3c;
  color: white;
  border-radius: 12px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

/* Категории - в стиле вашего сайта */
.mobile-categories {
  padding: 20px 16px;
  border-bottom: 1px solid #e9ecef;
}

.categories-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.categories-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-category-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
  background: #fff;
}

.mobile-category-item:hover {
  border-color: #333;
  background: #f8f9fa;
}

.mobile-category-icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.mobile-category-name {
  font-size: 14px;
  font-weight: 500;
}

/* Контакты */
.mobile-contacts {
  padding: 20px 16px;
  background: #f8f9fa;
}

.contact-item {
  display: flex;
  gap: 12px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
  color: #666;
}

.contact-info {
  flex: 1;
}

.contact-phone {
  display: block;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  margin-bottom: 4px;
  font-size: 14px;
}

.contact-hours {
  font-size: 12px;
  color: #666;
}

.contact-address {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

/* Оверлей */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Адаптивность */
@media (max-width: 768px) {
  .header_over,
.header-top-panel,
.header-main,
.header-bottom {
    display: none;
  }

  body {
    padding-top: 60px;
  }
}
@media (min-width: 769px) {
  .mobile-header {
    display: none;
  }
}
/* Убедимся, что бургер всегда виден на мобильных */
@media (max-width: 768px) {
  .burger-menu {
    display: flex !important;
  }
}
.burger-menu {
  display: flex !important;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}

.burger-line {
  width: 20px;
  height: 2px;
  background: #333;
  display: block;
}

/* Стили для выпадающих списков в верхней панели */
.top-links-item.top-dropdown {
  position: relative;
}

.top-dropdown-link {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: inherit;
}

.top-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.top-dropdown:hover .top-arrow {
  transform: rotate(180deg);
}

.top-dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1100;
  border: 1px solid #e9ecef;
}

.top-dropdown:hover .top-dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-dropdown-option {
  display: block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  white-space: nowrap;
}

.top-dropdown-option:hover {
  background: #f8f9fa;
  color: #333;
}

/* Убираем стандартные стили ссылок чтобы выглядели как обычный текст */
.top-links-list .top-links-item a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

.top-links-list .top-links-item a:hover {
  color: #333;
}

.top-dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1100;
  border: 1px solid #e9ecef;
}

/* Для последних двух пунктов меню выравниваем по правому краю */
.top-links-list .top-links-item.top-dropdown:last-child .top-dropdown-list,
.top-links-list .top-links-item.top-dropdown:nth-last-child(2) .top-dropdown-list {
  left: auto;
  right: 0;
}

/* Улучшенный header_over */
.header_over {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-bottom: 1px solid #e9ecef;
}

.header_over.visible {
  transform: translateY(0);
}

.header_over .header-main {
  padding: 8px 0;
  border-bottom: none;
}

.header_over .header-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Логотип в header_over */
.header_over .header-logo img {
  height: 35px;
  transition: height 0.3s ease;
}

.header_over .header-logo .logo-text {
  display: none;
  /* Скрываем текст логотипа в фиксированном хедере */
}

/* Поиск в header_over */
.header_over .header-search {
  flex: 1;
  max-width: 500px;
  margin: 0 auto;
}

.header_over .search-wrapper {
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #f8f9fa;
}

.header_over .search-input {
  padding: 8px 12px;
  font-size: 13px;
  background: transparent;
}

.header_over .search-input::placeholder {
  color: #6c757d;
}

.header_over .search-button {
  padding: 8px 12px;
  background: #2c3e50;
}

.header_over .search-button:hover {
  background: #34495e;
}

/* Инструменты в header_over */
.header_over .header-tools {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.header_over .tool-item {
  position: relative;
}

.header_over .tool-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #2c3e50;
  gap: 2px;
  padding: 6px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  min-width: 50px;
}

.header_over .tool-link:hover {
  background: #f8f9fa;
  color: #3498db;
}

.header_over .tool-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_over .tool-text {
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
}

.header_over .tool-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.98);
}

/* Скрываем нижние части в header_over */
.header_over .header-bottom,
.header_over .header-top-panel {
  display: none;
}

/* Анимация появления */
@keyframes slideDownHeader {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header_over.visible {
  animation: slideDownHeader 0.3s ease;
}

/* Адаптивность для header_over */
@media (max-width: 768px) {
  .header_over {
    display: none;
    /* На мобильных используем мобильный хедер */
  }

  .header_over .header-search {
    display: none;
  }

  .header_over .header-tools {
    gap: 4px;
  }

  .header_over .tool-link {
    padding: 4px 6px;
    min-width: 40px;
  }

  .header_over .tool-text {
    display: none;
    /* На маленьких экранах скрываем текст */
  }
}

/*# sourceMappingURL=index.css.map */
