@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-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;
}

.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;
}

.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: 40px 0;
}

.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-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-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;
}

.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;
}

.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;
    /* На маленьких экранах скрываем текст */
  }
}
/* modern-header.css */
:root {
  --hunter-red: #000000;
  --hunter-red-dark: #a51d1d;
  --hunter-red-light: #d30309;
  --hunter-dark: #333;
  --hunter-gray: #2c2c2c;
  --hunter-light: #f8f8f8;
  --hunter-border: #e0e0e0;
  --text-dark: #2c2c2c;
  --text-light: #ffffff;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
.hunter-header {
  font-family: "Inter", "Segoe UI", sans-serif;
}

/* Top Bar */
.header-top-bar {
  background: var(--hunter-dark);
  color: var(--text-light);
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.top-nav-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  opacity: 0.9;
  font-weight: 400;
  position: relative;
  padding: 5px 0;
}

.top-nav-links a:hover {
  opacity: 1;
  color: var(--hunter-red-light);
}

.top-nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hunter-red-light);
  transition: var(--transition);
}

.top-nav-links a:hover::after {
  width: 100%;
}

.top-account a {
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  opacity: 0.9;
  font-weight: 500;
}

.top-account a:hover {
  opacity: 1;
  color: var(--hunter-red-light);
  transform: translateX(3px);
}

/* Main Header */
.header-main {
  background: var(--text-light);
  padding: 20px 0;
  border-bottom: 1px solid var(--hunter-border);
  position: relative;
  z-index: 1000;
  transition: var(--transition);
}

.header-main.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--text-light);
  border-bottom: 1px solid var(--hunter-border);
  padding: 15px 0;
  animation: slideDown 0.3s ease-out;
}

.header-main-content {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  align-items: center;
  gap: 25px;
}

/* Logo */
.header-logo {
  transition: var(--transition);
}

.header-logo:hover {
  transform: translateY(-2px);
}

.header-logo img {
  height: 55px;
  transition: var(--transition);
}

/* Catalog Button */
.catalog-trigger {
  position: static;
}

.catalog-btn {
  background: var(--hunter-red);
  color: var(--text-light);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.catalog-btn:hover {
  background: var(--hunter-red-dark);
  transform: translateY(-2px);
}

.catalog-btn svg {
  transition: var(--transition);
}

.catalog-btn:hover svg {
  transform: rotate(90deg);
}

/* Search */
.header-search {
  position: relative;
}

.search-form {
  display: flex;
  background: var(--hunter-light);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--hunter-border);
  transition: var(--transition);
}

.search-form:focus-within {
  border-color: var(--hunter-red);
}

.search-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: transparent;
  font-size: 15px;
  outline: none;
  font-weight: 400;
}

.search-input::placeholder {
  color: #888;
  font-weight: 400;
}

.search-submit {
  background: var(--hunter-red);
  color: var(--text-light);
  border: none;
  padding: 0 25px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-submit:hover {
  background: var(--hunter-red-dark);
}

/* Header Actions */
.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.action-btn {
  display: flex;
  align-items: center;
  color: var(--text-dark);
  text-decoration: none;
  position: relative;
  padding: 12px 16px;
  border-radius: 8px;
  transition: var(--transition);
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.action-btn:hover {
  background: var(--hunter-light);
  color: var(--hunter-red);
  transform: translateY(-2px);
}

.action-btn svg {
  transition: var(--transition);
}

.action-btn:hover svg {
  transform: scale(1.1);
}

.action-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--hunter-red);
  color: var(--text-light);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid var(--text-light);
}

/* Contacts */
.header-contacts {
  text-align: right;
}

.header-phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.header-phone a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.header-phone a:hover {
  color: var(--hunter-red);
}

.header-phone a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hunter-red);
  transition: var(--transition);
}

.header-phone a:hover::after {
  width: 100%;
}

.header-hours {
  font-size: 12px;
  color: #666;
  font-weight: 400;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--text-light);
  border-top: 2px solid var(--hunter-red);
  border-bottom: 1px solid var(--hunter-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: var(--transition);
  z-index: 999;
  min-height: 450px;
}

.catalog-trigger:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-content {
  max-width: 100%;
  margin: 0;
  padding: 40px 0;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mega-menu-section h3 {
  color: var(--hunter-red);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hunter-border);
  position: relative;
}

.mega-menu-section h3::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--hunter-red);
  transition: var(--transition);
}

.mega-menu-section:hover h3::after {
  width: 80px;
}

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

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

.mega-menu-links a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-weight: 400;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.mega-menu-links a::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--hunter-red);
  border-radius: 2px;
  transition: var(--transition);
}

.mega-menu-links a:hover {
  color: var(--hunter-red);
  transform: translateX(8px);
  background: var(--hunter-light);
  padding-left: 15px;
}

.mega-menu-links a:hover::before {
  height: 20px;
}

.mega-menu-links a::after {
  content: "›";
  font-size: 16px;
  color: var(--hunter-red);
  opacity: 0;
  transition: var(--transition);
  font-weight: bold;
}

.mega-menu-links a:hover::after {
  opacity: 1;
  transform: translateX(3px);
}

/* Featured Products in Mega Menu */
.mega-menu-featured {
  grid-column: span 1;
  background: var(--hunter-light);
  border-radius: 8px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hunter-border);
  transition: var(--transition);
}

.mega-menu-featured:hover {
  border-color: var(--hunter-red);
  transform: translateY(-5px);
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--hunter-red);
  color: var(--text-light);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.featured-title {
  color: var(--hunter-red);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hunter-border);
}

.featured-item {
  background: var(--text-light);
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 12px;
  border: 1px solid var(--hunter-border);
  transition: var(--transition);
  cursor: pointer;
}

.featured-item:hover {
  transform: translateY(-3px);
  border-color: var(--hunter-red);
}

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

.featured-item-name {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.3;
}

.featured-item-price {
  color: var(--hunter-red);
  font-weight: 700;
  font-size: 15px;
}

/* Mobile Header */
.mobile-header {
  display: none;
  background: var(--text-light);
  border-bottom: 1px solid var(--hunter-border);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1002;
}

.mobile-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

.mobile-burger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: 6px;
  transition: var(--transition);
}

.mobile-burger:hover {
  background: var(--hunter-light);
}

.burger-line {
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
  border-radius: 1px;
}

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

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

.mobile-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-dark);
  position: relative;
  border-radius: 6px;
  transition: var(--transition);
}

.mobile-action-btn:hover {
  background: var(--hunter-light);
  color: var(--hunter-red);
}

.mobile-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--hunter-red);
  color: var(--text-light);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1200px) {
  .header-main-content {
    gap: 20px;
  }

  .mega-menu-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .header-top-bar,
.header-main {
    display: none;
  }

  .mobile-header {
    display: block;
  }
}
@media (max-width: 768px) {
  .mobile-header-top {
    padding: 12px 15px;
  }

  .mobile-logo img {
    height: 30px;
  }
}
/* Animation Keyframes */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* Smooth transitions */
* {
  box-sizing: border-box;
}

.hunter-header a,
.hunter-header button {
  transition: var(--transition);
}

/* main-page.css */
:root {
  --hunter-red: #c22424;
  --hunter-red-dark: #a51d1d;
  --hunter-red-light: #d30309;
  --hunter-dark: #1a1a1a;
  --hunter-gray: #2c2c2c;
  --hunter-light: #f8f8f8;
  --hunter-border: #e0e0e0;
  --text-dark: #2c2c2c;
  --text-light: #ffffff;
  --section-bg: #f7faff;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Main Slider */
.main-slider {
  padding: 40px 0;
}

.swiper-container {
  border-radius: 20px;
  overflow: hidden;
  height: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.swiper-slide {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 50%;
  color: var(--text-light);
}

.slide-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
}

.slide-description {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.5;
}

.slide-btn {
  background: var(--hunter-red);
  color: var(--text-light);
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 12px;
  display: inline-block;
  border: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
}

.slide-btn:hover {
  background: var(--hunter-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194, 36, 36, 0.3);
}

.slide-btn.white {
  background: var(--text-light);
  color: var(--hunter-red);
}

.slide-btn.white:hover {
  background: var(--hunter-light);
  transform: translateY(-2px);
}

/* Swiper Navigation */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--text-light);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--hunter-red);
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--text-light);
  background: rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--hunter-red);
}

/* Advantages Section */
.advantages-section {
  padding: 60px 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.advantage-item {
  background: var(--text-light);
  border-radius: 16px;
  padding: 30px 25px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  border: 1px solid var(--hunter-border);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.advantage-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(194, 36, 36, 0.05), transparent);
  transition: var(--transition);
}

.advantage-item:hover::before {
  left: 100%;
}

.advantage-item:hover {
  transform: translateY(-5px);
  border-color: var(--hunter-red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advantage-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.advantage-icon {
  font-size: 40px;
  margin-right: 15px;
  color: var(--hunter-red);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(194, 36, 36, 0.1);
  border-radius: 12px;
}

.advantage-title {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 18px;
  margin-bottom: 5px;
}

.advantage-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* Categories Section */
.categories-section {
  padding: 80px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.category-card {
  background: var(--text-light);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  border: 1px solid var(--hunter-border);
  display: flex;
  flex-direction: column;
  height: 220px;
  position: relative;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--hunter-red);
}

.category-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: var(--hunter-light);
}

.category-image img {
  max-width: 90px;
  max-height: 90px;
  object-fit: contain;
  transition: var(--transition);
}

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

.category-name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--text-light);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  transition: var(--transition);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  background: var(--hunter-light);
  color: var(--hunter-red);
}

.modal-icon {
  font-size: 48px;
  color: var(--hunter-red);
  margin-bottom: 20px;
  text-align: center;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-align: center;
}

.modal-text {
  color: #666;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 25px;
}

.modal-features {
  background: var(--hunter-light);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 25px;
}

.modal-feature {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.modal-feature:last-child {
  margin-bottom: 0;
}

.modal-feature::before {
  content: "✓";
  color: var(--hunter-red);
  font-weight: bold;
  margin-right: 10px;
}

.modal-btn {
  background: var(--hunter-red);
  color: var(--text-light);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  display: block;
  margin: 0 auto;
}

.modal-btn:hover {
  background: var(--hunter-red-dark);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .main-slider {
    padding: 20px 0;
  }

  .swiper-container {
    height: 400px;
  }

  .slide-content {
    max-width: 80%;
    padding: 0 30px;
  }

  .slide-title {
    font-size: 32px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .slide-title {
    font-size: 24px;
  }

  .slide-description {
    font-size: 16px;
  }
}
/* ultra-compact-main.css */
:root {
  --hunter-red: #c22424;
  --hunter-red-dark: #a51d1d;
  --hunter-red-light: #d30309;
  --hunter-dark: #1a1a1a;
  --hunter-gray: #2c2c2c;
  --hunter-light: #f8f8f8;
  --hunter-border: #e0e0e0;
  --text-dark: #2c2c2c;
  --text-light: #ffffff;
  --section-bg: #f7faff;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ультра-компактный Main Slider */
.main-slider {
  padding: 15px 0;
}

.swiper-container {
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Компактная навигация слайдера */
.swiper-pagination {
  bottom: 8px !important;
}

.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: var(--hunter-red) !important;
  opacity: 0.6;
  margin: 0 3px !important;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  background: var(--hunter-red);
  opacity: 1;
  transform: scale(1.2);
}

/* Маленькие стрелки навигации */
.swiper-button-next,
.swiper-button-prev {
  color: var(--hunter-red) !important;
  background: var(--hunter-light);
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  transition: var(--transition);
  margin-top: -15px;
  backdrop-filter: blur(5px);
}

.swiper-button-next svg, .swiper-button-prev svg {
  height: 70% !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 10px !important;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--hunter-red);
  transform: scale(1.1);
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}

/* Ультра-компактные преимущества в одной строке */
.advantages-section {
  padding: 20px 0;
}

.advantages-container {
  background: var(--text-light);
  border-radius: 10px;
  padding: 15px 20px;
  border: 1px solid var(--hunter-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.advantage-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  border-radius: 6px;
}

.advantage-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(194, 36, 36, 0.05), transparent);
  transition: var(--transition);
}

.advantage-item:hover::before {
  left: 100%;
}

.advantage-item:hover {
  background: rgba(194, 36, 36, 0.03);
}

.advantage-icon {
  font-size: 20px;
  margin-right: 10px;
  color: var(--hunter-red);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(194, 36, 36, 0.08);
  border-radius: 6px;
  flex-shrink: 0;
}

.advantage-content {
  flex: 1;
}

.advantage-title {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
  margin-bottom: 2px;
  line-height: 1.2;
}

.advantage-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.2;
}

/* Адаптивность */
@media (max-width: 1200px) {
  .advantages-grid {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .main-slider {
    padding: 10px 0;
  }

  .swiper-container {
    height: 180px;
    border-radius: 8px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .advantage-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--hunter-border);
  }

  .advantage-item {
    padding: 10px 12px;
  }

  .swiper-button-next,
.swiper-button-prev {
    width: 26px;
    height: 26px;
    margin-top: -13px;
  }

  .swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .swiper-container {
    height: 150px;
  }

  .advantages-container {
    padding: 12px 15px;
  }

  .advantage-item {
    padding: 8px 10px;
  }

  .advantage-icon {
    width: 28px;
    height: 28px;
    font-size: 18px;
    margin-right: 8px;
  }

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

  .advantage-desc {
    font-size: 11px;
  }
}
/* refined-product-cards.css */
:root {
  --primary-color: #c22424;
  --text-color: #333;
  --border-color: #e0e0e0;
  --bg-color: #fff;
  --light-bg: #f8f8f8;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 0;
  padding: 0;
}

.product-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  /* Убрано изменение цвета бордера и смещение */
}

.product-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  position: relative;
  background: var(--light-bg);
  border-radius: 6px;
  overflow: hidden;
}

.product-image img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
  /* Только увеличение фото */
}

.product-actions {
  position: absolute;
  top: 6px;
  right: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.compare-btn {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--border-color);
  font-size: 10px;
  transition: all 0.2s ease;
  opacity: 1;
  /* Всегда видна */
}

.compare-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.quick-view-container {
  margin-top: 8px;
}

.quick-view-btn {
  width: 100%;
  background: transparent;
  color: var(--primary-color);
  border: none;
  padding: 0px;
  margin-bottom: 6px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.product-price {
  margin-bottom: 6px;
}

.price {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
}

.stock-status {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.stock-dot {
  width: 5px;
  height: 5px;
  background: #27ae60;
  border-radius: 50%;
}

.stock-text {
  font-size: 11px;
  color: #666;
}

.product-name {
  margin-bottom: 10px;
  height: 32px;
  overflow: hidden;
}

.product-name a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-name a:hover {
  color: var(--primary-color);
}

.product-buttons {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cart-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.cart-btn:hover {
  background: #a51d1d;
}

.buy-btn {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.buy-btn:hover {
  background: var(--primary-color);
  color: white;
}

/* Бейджи */
.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--primary-color);
  color: white;
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 600;
  z-index: 2;
}

.product-badge.sale {
  background: #e74c3c;
}

.product-badge.hot {
  background: #f39c12;
}

/* Иконки SVG */
.icon-compare,
.icon-eye,
.icon-cart {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

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

  .product-card {
    padding: 10px;
  }

  .product-image {
    height: 120px;
  }
}
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-image {
    height: 110px;
  }
}
/* banners-section.css */
.banners-section {
  padding: 40px 0;
}

#banners_wrap {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
  font-size: 1.6rem;
  box-sizing: border-box;
  outline: none;
  margin: 0;
  width: 100%;
  display: flex;
  gap: 15px;
}

.left_ban_block,
.right_ban_block {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
  font-size: 1.6rem;
  box-sizing: border-box;
  outline: none;
  margin: 0;
  width: 25%;
  float: left;
  padding: 0 0.7957728546%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.center_ban_block {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
  font-size: 1.6rem;
  box-sizing: border-box;
  outline: none;
  margin: 0;
  width: 50%;
  float: left;
  padding: 0 0.7957728546%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ban_block {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
  font-size: 1.6rem;
  box-sizing: border-box;
  outline: none;
  margin: 0;
  width: 100%;
}

.ban_block a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.ban_block a:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.ban_block picture,
.ban_block img {
  width: 100%;
  height: auto;
  display: block;
}

/* Конкретные размеры для баннеров */
/* Адаптивность */
@media (max-width: 768px) {
  .banners-section {
    padding: 20px 0;
  }

  .left_ban_block .ban_block:nth-child(1),
.left_ban_block .ban_block:nth-child(2),
.right_ban_block .ban_block:nth-child(1),
.right_ban_block .ban_block:nth-child(2),
.center_ban_block .ban_block:nth-child(1),
.center_ban_block .ban_block:nth-child(2) {
    height: auto;
  }
}
/* minimal-brands-about.css */
.brands-section {
  padding: 40px 0;
}

.section-title {
  margin-bottom: 30px;
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 400;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  align-items: center;
}

.brand-item {
  text-align: center;
  background: var(--text-light);
  padding: 20px 10px;
  border-radius: 8px;
  border: 1px solid var(--hunter-border);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-item img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.brand-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* About Section */
.about-section {
  padding: 40px 0;
  background: var(--text-light);
}

.about-content {
  margin: 0 auto;
}

.about-text {
  line-height: 1.6;
  color: var(--text-dark);
  font-size: 15px;
  column-count: 2;
  column-gap: 40px;
  text-align: justify;
}

.about-text p {
  margin-bottom: 15px;
}

.about-divider {
  height: 1px;
  background: var(--hunter-border);
  margin: 30px 0;
  width: 100%;
}

/* Адаптивность */
@media (max-width: 1200px) {
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .brands-section,
.about-section {
    padding: 30px 0;
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .brand-item {
    height: 70px;
    padding: 15px 8px;
  }

  .about-text {
    column-count: 1;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-item {
    height: 60px;
  }

  .brand-item img {
    max-height: 30px;
  }
}
/* footer.css */
.footer {
  background: var(--hunter-dark);
  color: var(--text-light);
  padding: 50px 0 20px;
  margin-top: 60px;
}

.footer-main {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  filter: brightness(0) invert(1);
}

.footer-about {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer-contacts {
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-phone {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

.contact-phone:hover {
  color: var(--hunter-red);
}

.contact-hours {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--hunter-red);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--hunter-red);
  padding-left: 5px;
}

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

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

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--hunter-red);
  transform: translateY(-2px);
}

.payment-methods {
  margin-top: 25px;
}

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

.payment-icon {
  width: 44px;
  height: 28px;
  background: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.footer-bottom {
  padding-top: 20px;
  text-align: center;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--hunter-red);
}

/* Адаптивность */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 0 15px;
  }

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

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

  .footer-legal {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 25px 0 10px;
  }

  .social-links {
    justify-content: center;
  }

  .payment-icons {
    justify-content: center;
  }
}
/* improved-categories-products.css */
.categories-section {
  padding: 40px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  background: var(--text-light);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  border: 1px solid var(--hunter-border);
  display: flex;
  flex-direction: column;
  height: 180px;
  position: relative;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--hunter-red);
}

.category-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(1px);
  transition: var(--transition);
}

.category-card:hover .category-background {
  filter: blur(0.5px);
}

.category-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.category-card:hover .category-content {
  background: linear-gradient(135deg, rgba(194, 36, 36, 0.8), rgba(194, 36, 36, 0.6));
}

.category-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
}

.category-icon svg {
  width: 24px;
  height: 24px;
}

.category-name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
}

/* Products Tabs Section */
.products-tabs-section {
  padding: 60px 0;
  background: var(--text-light);
}

.tabs-header {
  display: flex;
  justify-content: flex-start;
  gap: 0;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.tab-btn:hover {
  color: var(--hunter-red);
}

.tab-btn.active {
  color: var(--hunter-red);
  border-bottom-color: var(--hunter-red);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--text-light);
  border: 1px solid var(--hunter-border);
  border-radius: 10px;
  padding: 15px;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  border-color: var(--hunter-red);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
  background: var(--section-bg);
  border-radius: 8px;
  overflow: hidden;
}

.product-image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.product-actions {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.compare-btn {
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--hunter-border);
  transition: var(--transition);
}

.compare-btn:hover {
  background: var(--hunter-red);
  color: white;
  border-color: var(--hunter-red);
}

.quick-view-container {
  margin-top: 10px;
}

.quick-view-btn {
  width: 100%;
  background: transparent;
  color: var(--hunter-red);
  border: 1px solid var(--hunter-red);
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.quick-view-btn:hover {
  background: var(--hunter-red);
  color: white;
}

.product-price {
  margin-bottom: 8px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--hunter-red);
}

.stock-status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.stock-dot {
  width: 6px;
  height: 6px;
  background: #27ae60;
  border-radius: 50%;
}

.stock-text {
  font-size: 12px;
  color: #666;
}

.product-name {
  margin-bottom: 12px;
  height: 36px;
  overflow: hidden;
}

.product-name a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-name a:hover {
  color: var(--hunter-red);
}

.product-buttons {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-btn {
  background: var(--hunter-red);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.cart-btn:hover {
  background: var(--hunter-red-dark);
}

.buy-btn {
  background: transparent;
  color: var(--hunter-red);
  border: 1px solid var(--hunter-red);
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  transition: var(--transition);
}

.buy-btn:hover {
  background: var(--hunter-red);
  color: white;
}

/* Бейджи */
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--hunter-red);
  color: white;
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  z-index: 2;
}

.product-badge.sale {
  background: #e74c3c;
}

.product-badge.hot {
  background: #f39c12;
}

/* Иконки */
.icon-compare,
.icon-eye,
.icon-cart {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Адаптивность */
@media (max-width: 768px) {
  .categories-section,
.products-tabs-section {
    padding: 40px 0;
  }

  .categories-grid,
.products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .category-card {
    height: 160px;
  }

  .tabs-header {
    flex-wrap: wrap;
    gap: 5px;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .categories-grid,
.products-grid {
    grid-template-columns: 1fr;
  }
}
/* button-tabs.css */
.products-tabs-section {
  padding: 60px 0;
  background: var(--text-light);
}

.tabs-header {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 40px;
  gap: 10px;
}

.tab-btn {
  background: var(--section-bg);
  border: 2px solid var(--hunter-border);
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 25px;
  min-width: 160px;
}

.tab-btn:hover {
  border-color: var(--hunter-red);
  color: var(--hunter-red);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: var(--hunter-red);
  border-color: var(--hunter-red);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(194, 36, 36, 0.3);
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Выпадающее мега-меню */
.mega-menu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--text-light);
  border-top: 2px solid var(--hunter-red);
  border-bottom: 2px solid var(--hunter-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-menu-dropdown.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.mega-menu-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 65vh;
  max-height: 500px;
}

.mega-menu-scrollable {
  flex: 1;
  overflow-y: auto;
  padding: 20px 30px;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  grid-auto-rows: min-content;
  align-items: start;
}

.mega-menu-section {
  background: var(--hunter-light);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid var(--hunter-border);
  height: min-content;
}

.mega-menu-section h3 {
  color: var(--hunter-red);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hunter-border);
}

.mega-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mega-menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  border-radius: 6px;
}

.mega-menu-link:hover {
  background: rgba(194, 36, 36, 0.1);
  color: var(--hunter-red);
}

.category-main-link {
  font-weight: 600;
  color: var(--hunter-red);
  background: rgba(194, 36, 36, 0.05);
}

.view-all-link {
  color: var(--hunter-red);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--hunter-border);
}

/* Футер с популярными товарами */
.mega-menu-footer {
  padding: 15px 30px;
  border-top: 2px solid var(--hunter-border);
  background: var(--hunter-light);
  flex-shrink: 0;
}

.featured-products {
  display: flex;
  align-items: center;
  gap: 15px;
}

.featured-title {
  font-weight: 600;
  color: var(--hunter-dark);
  white-space: nowrap;
}

.featured-items {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.featured-item {
  color: var(--hunter-red);
  text-decoration: none;
  font-weight: 500;
  padding: 5px 12px;
  background: rgba(194, 36, 36, 0.1);
  border-radius: 15px;
  transition: var(--transition);
  font-size: 14px;
}

.featured-item:hover {
  background: var(--hunter-red);
  color: var(--text-light);
}

/* Стили для скроллбара */
.mega-menu-scrollable::-webkit-scrollbar {
  width: 6px;
}

.mega-menu-scrollable::-webkit-scrollbar-track {
  background: var(--hunter-light);
  border-radius: 3px;
}

.mega-menu-scrollable::-webkit-scrollbar-thumb {
  background: var(--hunter-red);
  border-radius: 3px;
}

.mega-menu-scrollable::-webkit-scrollbar-thumb:hover {
  background: var(--hunter-red-dark);
}

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

/* Адаптивность */
@media (max-width: 1200px) {
  .mega-menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 992px) {
  .mega-menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mega-menu-container {
    height: 70vh;
    max-height: 400px;
  }
}
@media (max-width: 768px) {
  .mega-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mega-menu-scrollable {
    padding: 15px 20px;
  }

  .featured-products {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .mega-menu-grid {
    grid-template-columns: 1fr;
  }

  .mega-menu-container {
    height: 80vh;
  }
}
/* Модальные окна */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--text-light);
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid var(--hunter-border);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  transition: var(--transition);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 10;
}

.modal-close:hover {
  background: var(--hunter-light);
  color: var(--hunter-red);
}

/* Быстрый просмотр */
.quick-view-content {
  max-width: 1000px;
}

.quick-view-body {
  padding: 30px;
}

.quick-view-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.quick-view-gallery {
  position: relative;
}

.quick-view-main-image {
  background: var(--hunter-light);
  border-radius: 8px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border: 1px solid var(--hunter-border);
}

.quick-view-main-image img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.quick-view-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.quick-view-thumb {
  width: 70px;
  height: 70px;
  border: 1px solid var(--hunter-border);
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
}

.quick-view-thumb.active {
  border-color: var(--hunter-red);
}

.quick-view-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-view-info {
  padding: 10px 0;
}

.quick-view-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--hunter-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.quick-view-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--hunter-red);
  margin-bottom: 20px;
}

.quick-view-specs {
  margin-bottom: 20px;
}

.quick-view-spec {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--hunter-light);
  font-size: 14px;
}

.quick-view-spec:last-child {
  border-bottom: none;
}

.quick-view-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.quick-view-quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--hunter-border);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--hunter-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

.quantity-input {
  width: 50px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  background: var(--text-light);
}

.quick-view-add-to-cart {
  flex: 1;
  padding: 0 20px;
  height: 40px;
  background: var(--hunter-red);
  color: var(--text-light);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.quick-view-add-to-cart:hover {
  background: var(--hunter-red-dark);
}

.quick-view-buy-now {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--hunter-red);
  border: 1px solid var(--hunter-red);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 15px;
}

.quick-view-buy-now:hover {
  background: var(--hunter-red);
  color: var(--text-light);
}

.quick-view-link {
  text-align: center;
}

.quick-view-link a {
  color: var(--hunter-red);
  text-decoration: none;
  font-weight: 500;
}

.quick-view-link a:hover {
  text-decoration: underline;
}

/* Быстрая покупка */
/* Модальное окно быстрого заказа */
/* Корзина */
.cart-modal-body {
  padding: 30px;
  text-align: center;
}

.cart-success svg {
  margin-bottom: 15px;
}

.cart-success h3 {
  margin: 0 0 10px 0;
  color: var(--hunter-dark);
  font-size: 18px;
}

.cart-success p {
  color: #666;
  margin-bottom: 20px;
}

.cart-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-continue {
  padding: 12px;
  background: var(--hunter-light);
  color: var(--hunter-dark);
  border: 1px solid var(--hunter-border);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-continue:hover {
  background: var(--hunter-border);
}

.btn-to-cart {
  padding: 12px;
  background: var(--hunter-red);
  color: var(--text-light);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}

.btn-to-cart:hover {
  background: var(--hunter-red-dark);
  color: var(--text-light);
}

/* Адаптивность */
@media (max-width: 768px) {
  .quick-view-product {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .quick-view-body {
    padding: 20px;
  }

  .quick-view-main-image {
    height: 300px;
  }

  .modal-content {
    margin: 20px;
  }
}
/* Состояния кнопок */
.wishlist-btn.active,
.compare-btn.active {
  color: var(--hunter-red);
}

.wishlist-btn:hover,
.compare-btn:hover {
  color: var(--hunter-red);
  transform: scale(1.1);
}

/* Анимации */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-content {
  animation: fadeIn 0.3s ease;
}

/* Состояние загрузки */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.quick-buy-product-info {
  margin-bottom: 25px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.quick-buy-product-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.quick-buy-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.quick-buy-details h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

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

/* Сетка формы */
.quick-buy-form {
  margin-bottom: 25px;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

/* Стили полей ввода */
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s;
  box-sizing: border-box;
  background: #fff;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #333;
  box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

/* Плавающие лейблы */
.form-group {
  position: relative;
}

.form-group label {
  position: absolute;
  left: 16px;
  top: 12px;
  font-size: 14px;
  color: #666;
  background: white;
  padding: 0 4px;
  transition: all 0.3s;
  pointer-events: none;
}

.form-input:focus + label,
.form-input:not(:placeholder-shown) + label,
.form-textarea:focus + label,
.form-textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 12px;
  font-size: 12px;
  color: #333;
  font-weight: 500;
}

/* Добавляем лейблы к полям через CSS если их нет в HTML */
.form-group:nth-child(1)::after {
  content: "Телефон *";
  position: absolute;
  left: 16px;
  top: 12px;
  font-size: 14px;
  color: #666;
  background: white;
  padding: 0 4px;
  transition: all 0.3s;
  pointer-events: none;
}

.form-group:nth-child(2)::after {
  content: "Имя";
  position: absolute;
  left: 16px;
  top: 12px;
  font-size: 14px;
  color: #666;
  background: white;
  padding: 0 4px;
  transition: all 0.3s;
  pointer-events: none;
}

.form-group:nth-child(3)::after {
  content: "Email";
  position: absolute;
  left: 16px;
  top: 12px;
  font-size: 14px;
  color: #666;
  background: white;
  padding: 0 4px;
  transition: all 0.3s;
  pointer-events: none;
}

.form-group:nth-child(4)::after {
  content: "Комментарий к заказу";
  position: absolute;
  left: 16px;
  top: 12px;
  font-size: 14px;
  color: #666;
  background: white;
  padding: 0 4px;
  transition: all 0.3s;
  pointer-events: none;
}

/* Соглашение */
.form-agreement {
  margin: 25px 0;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
}

.checkbox-wrapper input[type=checkbox] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s;
}

.checkbox-wrapper input[type=checkbox]:checked + .checkmark {
  background: #333;
  border-color: #333;
}

.checkbox-wrapper input[type=checkbox]:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.agreement-text {
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}

.agreement-text a {
  color: #333;
  text-decoration: underline;
  transition: color 0.3s;
}

.agreement-text a:hover {
  color: #DCAB96;
}

/* Кнопка отправки */
.quick-buy-submit {
  width: 100%;
  background: #333;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  font-family: inherit;
  margin-bottom: 15px;
}

.quick-buy-submit:hover:not(:disabled) {
  background: #555;
  transform: translateY(-1px);
}

.quick-buy-submit:disabled {
  background: #999;
  cursor: not-allowed;
  transform: none;
}

/* Примечание */
.quick-buy-note {
  text-align: center;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

/* Состояние загрузки */
.quick-buy-submit .loading-text {
  display: none;
}

.quick-buy-submit.loading .submit-text {
  display: none;
}

.quick-buy-submit.loading .loading-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Анимация загрузки */
.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Адаптивность */
@media (max-width: 768px) {
  .quick-buy-product {
    padding: 20px;
    margin: 20px;
    width: calc(100% - 40px);
  }

  .quick-buy-product-info {
    flex-direction: column;
    text-align: center;
  }

  .quick-buy-image {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 480px) {
  .quick-buy-product {
    padding: 15px;
    margin: 10px;
    width: calc(100% - 20px);
  }

  .form-input,
.form-textarea {
    padding: 10px 12px;
  }
}
.quick-order-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.quick-order-modal-content {
  background: var(--text-light);
  border-radius: 8px;
  padding: 25px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid var(--hunter-border);
}

.quick-order-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
  transition: var(--transition);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-order-close:hover {
  color: var(--hunter-red);
  background: var(--hunter-light);
}

.quick-order-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--hunter-dark);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--hunter-border);
}

.quick-order-info {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hunter-border);
}

.quick-order-product {
  display: flex;
  gap: 12px;
  align-items: center;
}

.quick-order-image {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--hunter-border);
}

.quick-order-details h4 {
  margin: 0 0 6px 0;
  color: var(--hunter-dark);
  font-size: 14px;
  line-height: 1.3;
}

.quick-order-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--hunter-red);
}

/* Форма быстрого заказа */
.form-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1/-1;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--hunter-border);
  border-radius: 6px;
  font-size: 13px;
  transition: var(--transition);
  background: var(--text-light);
  color: var(--hunter-dark);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--hunter-red);
}

.form-textarea {
  resize: vertical;
  min-height: 70px;
}

.form-agreement {
  margin-bottom: 20px;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.checkbox-wrapper input[type=checkbox] {
  display: none;
}

.checkmark {
  width: 16px;
  height: 16px;
  border: 1px solid var(--hunter-border);
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
  transition: var(--transition);
  margin-top: 1px;
}

.checkbox-wrapper input[type=checkbox]:checked + .checkmark {
  background: var(--hunter-red);
  border-color: var(--hunter-red);
}

.checkbox-wrapper input[type=checkbox]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 11px;
  font-weight: bold;
}

.agreement-text a {
  color: var(--hunter-red);
  text-decoration: none;
}

.agreement-text a:hover {
  text-decoration: underline;
}

.quick-order-submit {
  width: 100%;
  padding: 12px;
  background: var(--hunter-red);
  color: var(--text-light);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 15px;
}

.quick-order-submit:hover {
  background: var(--hunter-red-dark);
}

.quick-order-note {
  text-align: center;
  font-size: 11px;
  color: #666;
  line-height: 1.4;
}

/* Похожие товары */
.similar-products {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--hunter-border);
}

.similar-products .section-header {
  margin-bottom: 20px;
}

.similar-products .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .product-page-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-sidebar {
    position: static;
    order: -1;
  }

  .main-gallery {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .product-page-container {
    padding: 0 15px;
    gap: 15px;
  }

  .product-title-main {
    font-size: 18px;
  }

  .main-gallery {
    height: 300px;
  }

  .gallery-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .order-controls {
    flex-direction: column;
  }

  .quantity-control {
    align-self: flex-start;
  }

  .purchase-block-mobile {
    display: block;
  }

  .product-sidebar {
    display: none;
  }

  .info-section {
    padding: 15px;
  }

  .price-current {
    font-size: 20px;
  }

  .product-gallery,
.product-sidebar__inner,
.info-section {
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .product-gallery {
    padding: 12px;
  }

  .main-gallery {
    height: 250px;
  }

  .thumb-slide {
    width: 60px;
    height: 60px;
  }

  .quick-order-modal-content {
    padding: 20px;
  }

  .spec-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .spec-value {
    text-align: left;
  }

  .section-title {
    font-size: 16px;
  }
}
/* Анимации */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.product-main,
.product-sidebar {
  animation: fadeIn 0.3s ease-out;
}

/* Состояния загрузки */
.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-right: 6px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Фокус для доступности */
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 1px solid var(--hunter-red);
  outline-offset: 1px;
}

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