@font-face {
  font-family: "Open Sans";
  src: local("../fonts/") url("../fonts/OpenSans-Regular.woff2") format("woff2") url("../fonts/OpenSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2") url("../fonts/OpenSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-Regular.woff2") format("woff2") url("../fonts/PlayfairDisplay-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
*,
*::before,
*::after {
  padding: 0px;
  margin: 0px;
  border: none;
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
* {
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.4);
  }
a,
a:visited {
  text-decoration: none;
}

a:hover,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

/* p + p{
    margin-top: 6px;
} */
ul,
li {
  list-style: none;
}

img,
svg {
  vertical-align: top;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
}

input::-ms-clear {
  display: none;
}

button,
input {
  display: inline-block;
  box-shadow: none;
  border-color: transparent;
  background: none;
}

button,
a {
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  margin: 0;
}

legend {
  display: block;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  background-color: #ffffff;
  color: #333333;
  overflow-y: overlay;
  overflow-x: hidden;
  scrollbar-width: none;
  min-width: 340px;
}
body ::-webkit-scrollbar {
  height: 0px;
  width: 0px;
}

.scrolsmooth {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  scrollbar-width: none !important;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

i {
  font-style: normal;
}

.container {
  max-width: 1920px;
  width: 100%;
  height: 100%;
  padding: 0 90px;
  margin: 0 auto;
}

.anim {
  opacity: 0;
}
@media (max-width: 1000px) {
  .anim {
    opacity: 1;
  }
}

main {
  flex-grow: 1;
}

footer {
  flex-shrink: 0;
}

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.preloader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 1000;
  overflow: hidden;
}

.preloader__loader {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 90px;
}

.preloader__progress {
  width: 100%;
  height: 2px;
  background-color: rgba(176, 151, 110, 0.2);
}

.preloader__inner {
  width: 10px;
  height: 100%;
  background-color: rgba(176, 151, 110, 0.9);
  transition: all ease;
}

.preloader__count {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -1px;
  left: 0;
  font-weight: 400;
  font-size: 200px;
  line-height: 140%;
  color: #f1ebe2;
  z-index: -1;
}

.preloader_hide {
  opacity: 0;
  visibility: hidden;
  z-index: -9999;
  transition: all 0.3s ease;
}

@media (max-width: 1000px) {
  .preloader__count {
    font-size: 150px;
  }
  .preloader__loader {
    padding: 0 20px;
  }
}
.loader-inner {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	width: 100%;
	height: 100%;
	z-index: 99;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
  }
  .loader-inner .lds-default div {
	background: black;
  }
  .loader-inner_active {
	opacity: 1;
	pointer-events: all;
  }
  
  .lds-default {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
  }
  
  .lds-default div {
	position: absolute;
	width: 6px;
	height: 6px;
	background: #ffffff;
	border-radius: 50%;
	animation: lds-default 1.2s linear infinite;
  }
  
  .lds-default div:nth-child(1) {
	animation-delay: 0s;
	top: 37px;
	left: 66px;
  }
  
  .lds-default div:nth-child(2) {
	animation-delay: -0.1s;
	top: 22px;
	left: 62px;
  }
  
  .lds-default div:nth-child(3) {
	animation-delay: -0.2s;
	top: 11px;
	left: 52px;
  }
  
  .lds-default div:nth-child(4) {
	animation-delay: -0.3s;
	top: 7px;
	left: 37px;
  }
  
  .lds-default div:nth-child(5) {
	animation-delay: -0.4s;
	top: 11px;
	left: 22px;
  }
  
  .lds-default div:nth-child(6) {
	animation-delay: -0.5s;
	top: 22px;
	left: 11px;
  }
  
  .lds-default div:nth-child(7) {
	animation-delay: -0.6s;
	top: 37px;
	left: 7px;
  }
  
  .lds-default div:nth-child(8) {
	animation-delay: -0.7s;
	top: 52px;
	left: 11px;
  }
  
  .lds-default div:nth-child(9) {
	animation-delay: -0.8s;
	top: 62px;
	left: 22px;
  }
  
  .lds-default div:nth-child(10) {
	animation-delay: -0.9s;
	top: 66px;
	left: 37px;
  }
  
  .lds-default div:nth-child(11) {
	animation-delay: -1s;
	top: 62px;
	left: 52px;
  }
  
  .lds-default div:nth-child(12) {
	animation-delay: -1.1s;
	top: 52px;
	left: 62px;
  }
  
  @keyframes lds-default {
	0%, 20%, 80%, 100% {
	  transform: scale(1);
	}
	50% {
	  transform: scale(1.5);
	}
  }
.header {
  position: relative;
  height: 100vh;
}
.header__hover {
  display: flex;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 91px;
  max-height: 91px;
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out 0.4s;
}
.header__hover_active {
  opacity: 1;
  transition: opacity 0.3s;
}
.header__background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.header__background > video,
.header__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.header__top {
  height: 91px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__start {
  display: flex;
  align-items: center;
}
.header__logo {
  width: 92px;
  height: 45px;
  margin-right: 60px;
  z-index: 1;
  margin-top: 4px;
}
.header__logo svg {
  width: 100%;
  height: 100%;
}
.header__list {
  display: flex;
  gap: 35px;
  height: 91px;
}
.header__item {
  display: flex;
  align-items: center;
  will-change: animation;
  z-index: 2;
}
.header__item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 9px;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}
.header__item-img > svg {
  transform: rotate(0);
  transition: all 0.3s ease;
}
.header__item-link {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  transition: 0.3s;
}
.header__item:first-child {
  margin-top: 40px;
  padding-bottom: 40px;
  -webkit-animation-delay: 100ms;
          animation-delay: 100ms;
}
.header__item:nth-child(2) {
  -webkit-animation-delay: 120ms;
          animation-delay: 120ms;
}
.header__item:last-child {
  -webkit-animation-delay: 130ms;
          animation-delay: 130ms;
}
.header__item:first-child svg {
  width: 10px;
  height: 10px;
}
.header__end {
  display: flex;
  align-items: center;
  height: 100%;
}
.header__form {
  position: relative;
  width: 219px;
  height: 34px;
  z-index: 1;
  margin-right: 15px;
  -webkit-animation-delay: 140ms;
          animation-delay: 140ms;
}
.header__form-search {
  cursor: text;
  width: 100%;
  height: 100%;
  padding: 0px 10px;
  padding-right: 40px;
  background-color: transparent;
  color: #ffffff;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header__form-btn {
  position: absolute;
  top: 9px;
  right: 9px;
}
.header__cart {
  display: grid;
  justify-items: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1;
}
.header__user {
  padding: 0px 7px;
  margin-top: 35px;
  padding-bottom: 35px;
  position: relative;
  z-index: 1;
}
.header__user > a {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  height: 100%;
}
.header__user > a span {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0.03em;
  color: #ffffff;
  transition: all 0.3s ease;
}
.header__user-hover {
  background-color: #ffffff;
  position: absolute;
  top: 54.5px;
  left: -25px;
  width: 215px;
  max-height: 0;
  overflow: hidden;
  border: 0px solid transparent;
  border-top: none;
  transition: all 0.4s ease-in-out 0s;
  z-index: -1;
}
.header__user-hover a {
  font-weight: 400;
  font-size: 13px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
}
.header__user-wrapper {
  width: 100%;
  height: 100%;
  padding: 25px;
}
.header__user-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid rgba(170, 170, 170, 0.25);
  margin-bottom: 20px;
}
.header__user-list > *:last-child {
  margin-bottom: 25px;
}
.header__cart {
  position: relative;
  margin-left: 8px;
  -webkit-animation-delay: 175ms;
          animation-delay: 175ms;
}
.header__cart span {
  padding: 1px 6px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #bf5151;
  border-radius: 50px;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  color: #ffffff;
}
.header__burger {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  background-color: transparent;
  margin-left: 60px;
  cursor: pointer;
  z-index: 1;
}
.header__burger-line {
  position: absolute;
  left: 11px;
  top: 19px;
  width: 14px;
  max-width: 14px;
  height: 2px;
  background-color: #ffffff;
  transition: 0.3s ease;
}
.header__burger::before, .header__burger::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 18px;
  max-width: 18px;
  height: 2px;
  background-color: #ffffff;
  transition: 0.3s ease;
}
.header__burger::before {
  top: 12px;
}
.header__burger::after {
  bottom: 12px;
}
.header__text {
  width: 100%;
  height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.header__title {
  font-family: "Playfair Display";
  font-weight: 400;
  font-size: 90px;
  line-height: 130%;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 50px;
  -webkit-animation-delay: 170ms;
          animation-delay: 170ms;
}
.header__descr {
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 64px;
  -webkit-animation-delay: 180ms;
          animation-delay: 180ms;
}
.header__thumb {
  -webkit-animation-delay: 190ms;
          animation-delay: 190ms;
}

.burger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  background-color: #ffffff;
  transition: all 0.4s ease-in-out;
}
.burger-menu_active {
  overflow-y: auto;
  overflow-x: hidden;
  visibility: visible;
  opacity: 1;
  transition: all 0.4s ease-in-out;
  z-index: 6;
}
.burger-menu__btn {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  background-color: transparent;
  margin-left: 8px;
  cursor: pointer;
  opacity: 0;
}
.burger-menu__btn > span {
  position: absolute;
  top: 13px;
  right: 40px;
  font-weight: 400;
  font-size: 11px;
  line-height: 140%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
  transition: 0.3s ease;
}
.burger-menu__btn-line {
  position: absolute;
  left: 11px;
  top: 19px;
  width: 14px;
  max-width: 14px;
  height: 2px;
  background-color: #333333;
  transition: opacity 0.2s ease-in-out;
}
.burger-menu__btn::before, .burger-menu__btn::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 18px;
  max-width: 18px;
  height: 2px;
  background-color: #333333;
}
.burger-menu__btn::before {
  top: 12px;
}
.burger-menu__btn::after {
  bottom: 12px;
}
.burger-menu__container {
  max-width: 1920px;
  padding: 0 90px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.burger-menu__container_small {
  max-width: 1400px;
}
.burger-menu__wrapper {
  display: flex;
  position: relative;
  justify-content: space-between;
  overflow-x: hidden;
  overflow-y: overlay;
  scrollbar-width: none;
  width: 100%;
  max-width: 1200px;
  margin-top: 200px;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.burger-menu__wrapper::-webkit-scrollbar {
  height: 0 !important;
}
.burger-menu__item {
  height: 15px;
}
.burger-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 91px;
  flex-shrink: 0;
}
.burger-menu__form {
  display: none;
  position: relative;
  width: 90%;
  height: 44px;
  margin: 0 auto;
}
.burger-menu__form-search {
  width: 100%;
  height: 100%;
  padding: 0px 10px;
  padding-right: 40px;
  background-color: transparent;
  color: #ffffff;
  font-size: 16px;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 2px;
  transition: border-color 0.3s ease;
}
.burger-menu__form-search:focus {
  border-color: rgba(51, 51, 51, 0.6);
}
.burger-menu__form-btn {
  position: absolute;
  top: 9px;
  right: 9px;
}
.burger-menu__account {
  display: none;
}
.burger-menu__account-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.7);
}
.burger-menu__inner {
  display: flex;
  position: relative;
  flex-direction: column;
}
.burger-menu__inner-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
}
.burger-menu__title {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
}
.burger-menu__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.burger-menu__list-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.burger-menu__list-one {
  display: flex;
  flex-direction: column;
}
.burger-menu__list-one > .burger-menu__title-wrapper:nth-child(1) {
  display: none;
}
.burger-menu__list-one-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 35px;
  margin-top: 20px;
}
.burger-menu__item-link {
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.7);
}
.burger-menu__partner {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-top: 35px;
}
.burger-menu__partner-link {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
}
.burger-menu__partner_mob {
  display: none;
}
.burger-menu__social {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
}
.burger-menu__social-link {
  width: 32px;
  height: 32px;
  opacity: 0.5;
}
.burger-menu__social_mob {
  display: none;
}
.burger-menu__links {
  display: flex;
  gap: 20px;
}
.burger-menu__tel {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: #333333;
  margin-top: 30px;
  transition: color 0.3s ease;
}

.inner-btn {
  display: none;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}

.first {
  margin-top: 0px;
}

.menu-title {
  margin-bottom: 20px;
}

.burger__logo {
  width: 92px;
  height: 45px;
  margin-top: 4px;
}

.logo-top_active {
  fill: #333333;
  transition: 0.3s;
}

.logo-end_active {
  fill: #b0976e;
  transition: 0.3s;
}

.none {
  display: none;
}

.dropdown {
  display: flex;
  position: absolute;
  top: 91px;
  left: 0;
  z-index: -1;
  width: 100vw;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom: 0px solid rgba(51, 51, 51, 0.1);
  max-height: 0px;
  transition: all 0.4s ease-in-out 0s;
}
.dropdown__wrapper {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: end;
  width: 100vw;
  background-color: #fff;
  max-width: 1920px;
  margin: 0 auto;
  padding: 40px 90px;
  z-index: 2;
}
.dropdown__list {
  display: grid;
  gap: 18px;
  font-family: "Open Sans";
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.3s ease-in-out 0s;
  margin-right: 120px;
}
.dropdown__list:nth-child(3), .dropdown__list:nth-child(4) {
  margin-right: 30px;
}
.dropdown__list:first-child li:first-child, .dropdown__list:nth-child(2) li:first-child, .dropdown__list:nth-child(3) li:first-child {
  margin-bottom: 5px;
}
.dropdown__title {
  font-family: "Open Sans";
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(119, 119, 119, 0.7);
  margin-bottom: 10px;
}
.dropdown__item {
  font-size: 15px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #333333;
}
.dropdown__offer {
  width: 300px;
  height: 140px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out 0s;
  margin-left: auto;
}
.dropdown__offer > img {
  width: 100%;
  height: 100%;
}

.burger_active {
  opacity: 1;
}

.burger_active::before {
  -webkit-animation: rotate-burger-before 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards 405ms, burger-anim 0.4s cubic-bezier(0.22, 1, 0.36, 1) none;
          animation: rotate-burger-before 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards 405ms, burger-anim 0.4s cubic-bezier(0.22, 1, 0.36, 1) none;
}

.burger_active .header__burger-line {
  -webkit-animation: burger-anim 0.4s cubic-bezier(0.22, 1, 0.36, 1) none 0.1s;
          animation: burger-anim 0.4s cubic-bezier(0.22, 1, 0.36, 1) none 0.1s;
}

.burger_active::after {
  -webkit-animation: rotate-burger-after 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards 415ms, burger-anim 0.4s cubic-bezier(0.22, 1, 0.36, 1) none 150ms;
          animation: rotate-burger-after 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards 415ms, burger-anim 0.4s cubic-bezier(0.22, 1, 0.36, 1) none 150ms;
}

.rotate-anim {
  -webkit-animation: rotate-anim 1.5s linear infinite both;
          animation: rotate-anim 1.5s linear infinite both;
}

.burger-anim {
  -webkit-animation: burger-anim 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
          animation: burger-anim 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.login-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.8, 0, 0.8, 1);
  padding: 20px;
}
.login-modal__container {
  display: flex;
  flex-direction: column;
  max-width: 520px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden auto;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 100%;
}
.login-modal__title {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 120%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
  margin: 30px;
}
.login-modal__header {
  display: none;
}
.login-modal__entry {
  display: flex;
  gap: 20px;
  align-items: center;
}
.login-modal__entry > a {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #333333;
  border-bottom: 1px solid rgba(176, 151, 110, 0.5);
  transition: all 0.3s ease;
}
.login-modal__close {
  position: absolute;
  top: 27px;
  right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-modal__close > span:first-child {
  display: none;
}
.login-modal__close > span:last-child {
  display: flex;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.39996' y='3.05176e-05' width='17.8191' height='1.9799' transform='rotate(45 1.39996 3.05176e-05)' fill='%23333333'/%3E%3Crect x='0.00012207' y='12.6' width='17.8191' height='1.9799' transform='rotate(-45 0.00012207 12.6)' fill='%23333333'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.login-modal__wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 20px;
  align-items: center;
  padding: 30px;
  margin-top: 30px;
  background-color: #f5f5f5;
}
.login-modal__wrapper > p {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: rgba(51, 51, 51, 0.7);
}
.login-modal__reg {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 62px;
  border: 1px solid #b0976e;
  border-radius: 4px;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #b0976e;
}
.login-modal .order-form {
  padding: 0px 30px;
}
.login-modal .order-form__group, .login-modal .order-form__inner {
  width: 100%;
}

.header-link {
  cursor: pointer;
}

.header__logo-top,
.header__logo-end,
.item-logo,
.header__form-search,
.search-logo,
.cart-logo,
.user-logo-cir,
.search-logo-rec,
.user-logo,
.header-link,
.header__user > a > span,
.header__burger-line,
.header__burger::after,
.header__burger::before {
  transition: all 0.3s ease 0.4s;
}

@media (max-width: 1650px) {
  .header__title {
    font-size: 72px;
  }
  .header__descr {
    font-size: 14px;
  }
  .burger-menu__wrapper {
    max-width: 840px;
    margin-top: 30px;
  }
}
@media (max-width: 1282px) {
  .dropdown__offer {
    margin: 0;
    margin-top: 40px;
  }
}
@media (max-width: 1200px) {
  .container,
.burger-menu__container {
    padding: 0px 40px;
  }
  .dropdown__wrapper {
    padding: 40px;
    padding-bottom: 45px;
  }
  .burger__logo {
    left: 40px;
  }
  .header__logo {
    margin-right: 25px;
  }
  .header__list {
    gap: 30px;
  }
  .header__burger {
    margin-left: 35px;
  }
}
@media (max-width: 1000px) {
  .header {
    height: auto;
  }
  .header__user {
    margin-top: 0;
    padding-bottom: 0;
    height: 40px;
  }
  .header__nav, .header__form {
    display: none;
  }
  .header__title {
    font-size: 63px;
    margin-bottom: 40px;
  }
  .header__descr {
    margin-bottom: 54px;
  }
  .header__text {
    justify-content: flex-start;
    margin-top: 33px;
    margin-bottom: 90px;
    height: auto;
  }
  .container {
    padding: 0px 20px;
  }
  .burger__logo {
    left: 20px;
  }
  .burger-menu {
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }
  .burger-menu_active {
    transition: all 0.3s ease-in-out;
  }
  .burger-menu__header {
    padding: 0 20px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1019607843);
  }
  .burger-menu__container {
    padding: 0;
  }
  .burger-menu__inner {
    width: 100%;
    margin: 0;
    flex-shrink: 0;
  }
  .burger-menu__inner-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #333333;
  }
  .burger-menu__inner .btn-mob {
    right: 0;
  }
  .burger-menu__title {
    margin: 0;
  }
  .burger-menu__title-wrapper {
    display: flex;
    position: relative;
    align-items: center;
    height: 40px;
    margin-bottom: 10px;
  }
  .burger-menu__item-link {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #333333;
    opacity: 0.7;
  }
  .burger-menu__partner {
    display: none;
    margin: 0;
    align-items: center;
    width: 100%;
    height: 40px;
    flex-shrink: 0;
  }
  .burger-menu__partner_mob {
    display: flex;
  }
  .burger-menu__partner_mob > .partner-img-wrapper {
    padding-bottom: 5px;
  }
  .burger-menu__partner-link {
    font-weight: 700;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .burger-menu__list {
    gap: 14px;
    margin-left: 20px;
    overflow: hidden;
    max-height: 0;
    transition: 0.4s ease;
  }
  .burger-menu__list-one > .burger-menu__title-wrapper:nth-child(1) {
    display: flex;
  }
  .burger-menu__list-one {
    overflow: hidden;
    max-height: 0;
    transition: 0.4s;
    margin-left: 20px;
  }
  .burger-menu__list-one-inner {
    overflow: hidden;
    max-height: 0;
    transition: 0.4s ease;
    margin: 0px;
    gap: 0px;
    margin-left: 20px;
  }
  .burger-menu__item {
    display: flex;
    align-items: center;
    height: 40px;
  }
  .burger-menu__social {
    display: none;
    align-items: flex-start;
    margin-top: 20px;
    margin-bottom: 70px;
  }
  .burger-menu__social_mob {
    display: flex;
  }
  .burger-menu__tel {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0.05em;
    color: #333333;
    margin-top: 22px;
  }
  .burger-menu__wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    overflow-x: hidden;
    padding: 0 20px;
    margin: 0;
    height: 100vh;
  }
  .burger-menu__wrapper > .simplebar-track {
    width: 8px !important;
  }
  .burger-menu__wrapper > .simplebar-track > .simplebar-scrollbar:before {
    background: rgba(51, 51, 51, 0.5);
    border-radius: 10px;
  }
  .burger-menu__form {
    display: block;
    width: 100%;
    margin-top: 39px;
    margin-bottom: 20px;
    flex-shrink: 0;
  }
  .burger-menu__form > input {
    font-weight: 400;
    line-height: 160%;
    color: #333333;
  }
  .burger-menu__form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
  }
  .burger-menu__account {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    margin-bottom: 42px;
    flex-shrink: 0;
  }
  .burger-menu__account::after {
    position: absolute;
    content: "";
    bottom: -20px;
    width: 100%;
    height: 1px;
    background-color: rgba(51, 51, 51, 0.1);
  }
  .burger-menu__account > svg {
    margin-right: 12px;
  }
  .burger-menu .inner-btn {
    display: flex;
    justify-content: end;
    width: 100%;
    z-index: 2;
    background-color: transparent;
  }
  .burger-menu .inner-btn_active .inner-btn-icon::before {
    transform: rotate(90deg);
    transition: transform 0.3s ease-in-out;
  }
  .burger-menu .inner-btn-icon {
    position: relative;
    width: 40px;
    height: 40px;
  }
  .burger-menu .inner-btn-icon::after, .burger-menu .inner-btn-icon::before {
    position: absolute;
    content: "";
    top: 15px;
    left: 19px;
    width: 1px;
    height: 9px;
    background: #333333;
    transition: all 0.3s ease-in-out;
  }
  .burger-menu .inner-btn-icon::after {
    transform: rotate(90deg);
  }
  .burger-menu .inner-btn-first {
    top: -50px;
  }
  .burger-menu .inner-btn-second {
    top: -50px;
  }
  .burger-menu .inner-btn-third {
    top: -50px;
  }
  .burger-menu .wrapper-list {
    position: relative;
  }
  .burger-menu__item:last-child {
    margin-bottom: 10px;
  }
}
@media (max-width: 750px) {
  .header__user > a span {
    display: none;
  }
  .header__logo {
    margin-right: 0;
    width: 74px;
    height: 36px;
  }
  .header__burger {
    margin-left: 30px;
  }
  .header__burger-wrapper {
    padding: 0 20px;
  }
  .header__text {
    margin-top: 53px;
    margin-bottom: 55px;
  }
  .header__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .header__descr {
    margin-bottom: 35px;
  }
  .burger__logo {
    width: 74px;
    height: 36px;
  }
  .burger-menu::before {
    top: 61px;
  }
  .burger-menu__header {
    height: 61px;
    padding: 0px 15px;
  }
  .burger-menu .simplebar-content {
    padding: 0px 15px !important;
    width: 100vw;
  }
  .login-modal {
    padding: 0;
  }
  .login-modal__container {
    max-width: 100%;
    width: 100%;
    height: 100%;
	max-height: 100vh;
  }
  .login-modal__wrapper {
    background-color: transparent;
    border-top: 1px solid rgba(51, 51, 51, 0.1);
    padding: 30px 15px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
  .login-modal__close {
    top: 10px;
    gap: 13px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .login-modal__close > span:first-child {
    display: flex;
    font-weight: 400;
    font-size: 11px;
    line-height: 140%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
  }
  .login-modal__header {
    display: flex;
    height: 61px;
	min-height: 61px;
    align-items: center;
    padding: 0px 15px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  }
  .login-modal__logo {
    width: 74px;
    height: 36px;
  }
  .login-modal__title {
    margin: 25px 15px 30px;
    font-size: 25px;
  }
  .login-modal .order-form {
    padding: 0px 15px;
  }
  .container {
    padding: 0px 15px;
  }
}
@media (max-width: 378px) {
  .login-modal__wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
  .login-modal__wrapper > p {
    text-align: center;
  }
}
@media (min-width: 1000px) {
  .header__top:hover .header__hover {
    transform: translateY(0);
    transition: transform 0.4s ease-in-out;
  }
  .header__top:hover .header__logo-top {
    fill: #333333;
    transition: all 0.3s ease;
  }
  .header__top:hover .header__logo-end, .header__top:hover .item-logo {
    fill: #b0976e;
    transition: all 0.3s ease;
  }
  .header__top:hover .header__form-search {
    border-color: rgba(51, 51, 51, 0.2);
    color: #333333;
    transition: all 0.3s ease;
  }
  .header__top:hover .header__form-search:hover {
    border-color: rgba(51, 51, 51, 0.4);
    transition: all 0.3s ease;
  }
  .header__top:hover .header__form-search:focus {
    border-color: rgba(51, 51, 51, 0.6);
    transition: all 0.3s ease;
  }
  .header__top:hover .search-logo, .header__top:hover .cart-logo, .header__top:hover .user-logo-cir {
    stroke: #333333;
    transition: all 0.3s ease;
  }
  .header__top:hover .search-logo-rec, .header__top:hover .user-logo {
    fill: #333333;
    transition: all 0.3s ease;
  }
  .header__top:hover .header-link:hover {
    color: #b0976e;
    transition: all 0.3s ease;
  }
  .header__top:hover .header-link {
    color: #333333;
    transition: all 0.3s ease;
  }
  .header__top:hover .header__burger-line, .header__top:hover .header__burger::after, .header__top:hover .header__burger::before {
    background-color: #333333;
    transition: all 0.3s ease;
  }
  .header__top:hover .header__user > a > span {
    color: #333333;
    transition: all 0.3s ease;
  }
  .header__top:hover .header__user:hover a > span {
    color: #b0976e;
    transition: all 0.3s ease;
  }
  .header__top:hover .header__user:hover .user-logo {
    fill: #b0976e;
    transition: all 0.3s ease;
  }
  .header__top:hover .header__user:hover .user-logo-cir {
    stroke: #b0976e;
    transition: all 0.3s ease;
  }
  .header__top:hover .header__user:hover .header__user-hover {
    max-height: 100vh;
    border: 1px solid #eaeaea;
    border-top: none;
    transition: all 0.4s ease-in-out 0.3s;
    z-index: 1000 !important;
  }
  .header__top:hover .header__cart:hover .cart-logo {
    stroke: #b0976e;
    transition: all 0.3s ease;
  }
  .header__item:first-child:hover .dropdown {
    max-height: 100vh;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
    transition: all 0.7s ease-in-out 0.35s;
  }
  .header__item:first-child:hover .header__item-img > svg {
    transform: rotate(90deg);
    transition: all 0.3s ease;
  }
  .header__item:first-child:hover .dropdown__list, .header__item:first-child:hover .dropdown__offer {
    opacity: 1;
    transition: opacity 0.3s ease-in-out 0.68s;
  }
  .head-thumb {
    -webkit-animation: head-thumb 1s ease-in-out infinite forwards;
            animation: head-thumb 1s ease-in-out infinite forwards;
    animation-direction: alternate-reverse;
  }
  .header-product .header__item:first-child:hover .dropdown {
    max-height: 100vh;
    transition: all 0.7s cubic-bezier(0.8, 0, 0.8, 1);
    transition-delay: 0.2s;
  }
  .header-product .header__item:first-child:hover .dropdown__list, .header-product .header__item:first-child:hover .dropdown__offer {
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.8, 0, 0.8, 1);
    transition-delay: 0.5s;
  }
  .header__user-hover a:hover {
    color: #b0976e;
    transition: all 0.3s ease;
  }
  .header__burger:hover .header__burger-line {
    background-color: #b0976e !important;
    transition: 0.3s ease;
  }
  .header__burger:hover::after, .header__burger:hover::before {
    background-color: #b0976e !important;
    transition: 0.3s ease;
  }
  .burger_active:hover::after, .burger_active:hover::before {
    background-color: #b0976e !important;
    transition: 0.3s ease;
  }
  .burger_active:hover span {
    color: #b0976e;
    transition: 0.3s ease;
  }
  .burger-menu__tel:hover {
    color: #b0976e;
    transition: color 0.3s ease;
  }
  .burger-menu__tel:active {
    color: #927d54;
    transition: color 0.3s ease;
  }
  .login-modal__entry > a:hover {
    border-color: transparent;
    transition: all 0.3s ease;
  }
}
.burger__list_active {
  max-height: 1000px;
  transition: all 0.7s ease;
}

.header-product {
  height: 91px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}
.header-product .header__hover {
  display: none;
  visibility: visible;
  transform: translateY(0);
  transition: visibility 0.2s ease, transform 0.65s cubic-bezier(0.8, 0, 0.8, 1);
}
.header-product .header__logo-top {
  fill: #333333;
  transition: fill 0.3s ease;
}
.header-product .header__logo-end,
.header-product .item-logo {
  fill: #b0976e;
  transition: fill 0.3 ease;
}
.header-product .header__form-search {
  border-color: rgba(51, 51, 51, 0.2);
  color: #333333;
  transition: all 0.3 ease;
}
.header-product .header__form-search:hover {
  border-color: rgba(51, 51, 51, 0.4);
}
.header-product .header__form-search:focus {
  border-color: rgba(51, 51, 51, 0.6);
}
.header-product .search-logo,
.header-product .cart-logo,
.header-product .user-logo-cir {
  stroke: #333333;
}
.header-product .search-logo-rec,
.header-product .user-logo {
  fill: #333333;
}
.header-product .header-link:hover {
  color: #b0976e;
}
.header-product .header-link {
  color: #333333;
}
.header-product .header__burger-line,
.header-product .header__burger::after,
.header-product .header__burger::before {
  background-color: #333333;
  transition: 0.3s;
}
.header-product .dropdown__wrapper {
  border-top: 0;
}
.header-product .header__user > a > span {
  color: #333333;
}
.header-product .header__user:hover + .header-product {
  border-color: transparent;
}

@media (max-width: 750px) {
  .header-product {
    height: 61px;
  }
  .header__top {
    height: 61px;
  }
}
.collection {
  position: relative;
  background-color: #ffffff;
}
.collection__title {
  font-family: "Playfair Display", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 130%;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 120px;
  position: relative;
}
.collection__descr {
  max-width: 409px;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #777777;
  margin: 0 auto;
  margin-top: 40px;
}
.collection__gallery {
  margin-top: 100px;
  margin-bottom: 120px;
}
.collection__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 45px;
  scrollbar-width: none;
}
.collection__item {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-height: 825px;
}
.collection__item::after {
  position: absolute;
  content: "";
  z-index: 1;
  top: 0;
  left: 0;
  width: 99.9%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 69.79%, rgba(0, 0, 0, 0.35) 100%);
}
.collection__item-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 99.9%;
  transition: all 0.4s ease;
}
.collection__item-link {
  position: absolute;
  bottom: 75px;
  left: 80px;
  font-weight: 400;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  z-index: 2;
  transition: all 0.4s ease;
}
.collection__overlay {
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 2;
  transform: scaleY(0);
}

@media (max-width: 1900px) {
  .collection__list {
    gap: 40px;
  }
  .collection__item-link {
    bottom: 35px;
    left: 40px;
  }
}
@media (max-width: 1350px) {
  .collection__item-link {
    font-size: 26px;
    bottom: 41px;
    left: 35px;
  }
}
@media (max-width: 1000px) {
  .collection__title {
    margin-top: 70px;
  }
  .collection__gallery {
    margin-top: 60px;
    margin-bottom: 70px;
  }
  .collection__item {
    flex-shrink: 0;
    width: 232px;
    height: 348px;
  }
  .collection__item-link {
    font-size: 20px;
    bottom: 25px;
    left: 30px;
  }
  .collection__list {
    display: flex;
    gap: 16px;
    overflow: hidden;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .collection__list::-webkit-scrollbar {
    height: 0;
  }
  .collection__overlay {
    z-index: 0;
  }
  .collection__title, .collection__descr {
    padding: 0 20px;
  }
}
@media (max-width: 750px) {
  .collection .container {
    padding: 0;
  }
  .collection__text {
    padding: 0 20px;
  }
  .collection__title {
    font-size: 27px;
    margin-top: 50px;
  }
  .collection__descr {
    margin-top: 30px;
  }
  .collection__gallery {
    margin-top: 40px;
    margin-bottom: 50px;
  }
  .collection__list {
    justify-content: flex-start;
  }
  .collection__item:first-child {
    margin-left: 15px;
  }
  .collection__item:last-child {
    margin-right: 15px;
  }
}
@media (min-width: 1000px) {
  .collection__item:hover .collection__item-img {
    transform: scale(1.05);
    transition: all 0.4s ease;
  }
  .collection__item:hover .collection__item-link {
    color: rgb(255, 255, 255);
    transition: all 0.4s ease;
  }
}
.wear {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: #f1ebe2;
  scrollbar-width: none;
}
.wear::-webkit-scrollbar {
  width: 0px !important;
  height: 0px !important;
}
.wear__container {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100vh;
  display: flex;
}
.wear__text {
  display: none;
}

.gallery {
  height: 100%;
  position: relative;
}
.gallery__wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition-property: transform;
  scrollbar-width: none;
}
.gallery__wrapper::-webkit-scrollbar {
  width: 0px !important;
  height: 0px !important;
}
.gallery__slide {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  width: 35vw;
  max-width: 1440px;
  height: 100%;
}
.gallery__slide-img {
  width: 100%;
  height: 100%;
}
.gallery__slide-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.01);
  z-index: 0;
  transition: transform 0.4s ease-in-out 0.4s;
}
.gallery__slide-title {
  position: absolute;
  bottom: 75px;
  left: 80px;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.4s ease;
}
.gallery__text {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 330px 250px;
}
.gallery__text-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 54px;
  line-height: 130%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 340px;
}
.gallery__text-descr {
  font-size: 21px;
  line-height: 160%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #777777;
  margin-bottom: 300px;
}
.gallery__text-progress {
  overflow: hidden;
  position: relative;
  width: 581px;
  height: 2px;
  background: rgba(176, 151, 110, 0.4);
}
.gallery__text-progress::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(176, 151, 110, 0.9);
  -webkit-animation: progress 3s linear infinite;
          animation: progress 3s linear infinite;
}

.link-slide {
  margin-right: -0.5px;
}
.link-slide::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  transition: opacity 0.4s ease-in-out;
}

@media (max-width: 3300px) {
  .gallery__text {
    padding: 120px 90px;
  }
  .gallery__text-title {
    margin-bottom: 80px;
  }
  .gallery__text-descr {
    margin-bottom: 120px;
  }
  .gallery__text-progress {
    width: 210px;
  }
}
@media (max-width: 1650px) {
  .gallery__slide-title {
    bottom: 35px;
    left: 40px;
  }
  .gallery__text-title {
    font-size: 36px;
    margin-bottom: 50px;
  }
  .gallery__text-descr {
    font-size: 14px;
    margin-bottom: 80px;
  }
  .gallery__text-progress {
    width: 210px;
  }
}
@media (max-width: 1200px) {
  .wear {
    display: flex;
    height: 100vh;
    background-color: #ffffff;
  }
  .wear__container {
    background-color: #f1ebe2;
    height: 85vh;
  }
  .gallery__text {
    padding-left: 40px;
  }
}
@media (max-width: 1000px) {
  .wear {
    width: 100%;
    height: auto;
  }
  .wear__container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .wear__text {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    margin-top: 70px;
    margin-bottom: 60px;
  }
  .wear__text-title {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 130%;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 40px;
  }
  .wear__text-descr {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #777777;
  }
  .gallery {
    width: 100%;
    overflow: hidden;
    scrollbar-width: none;
  }
  .gallery::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
  }
  .gallery__wrapper {
    width: auto;
    height: auto;
    display: flex;
    z-index: 0;
    overflow: hidden;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .gallery__slide {
    flex-shrink: 0;
    z-index: 2;
    width: 307px;
    height: 461px;
  }
  .gallery__slide:first-child {
    display: none;
  }
  .gallery__slide-title {
    font-size: 20px;
    bottom: 25px;
    left: 30px;
  }
}
@media (max-width: 750px) {
  .wear__container {
    justify-content: space-between;
  }
  .wear__text {
    padding: 0px 20px;
    margin-top: 50px;
    margin-bottom: 40px;
  }
  .wear__text-title {
    font-size: 27px;
    margin-bottom: 30px;
  }
  .gallery__slide {
    width: 260px;
    height: 390px;
  }
}
@media (min-width: 1000px) {
  .link-slide:hover .gallery__slide-title {
    color: rgb(255, 255, 255);
    transition: all 0.4s ease;
  }
  .link-slide:hover img {
    transform: scale(1.05);
  }
  .link-slide:hover::after {
    opacity: 1;
  }
}
.offer {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  margin: 120px 0px;
}
.offer__title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 130%;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333333;
}
.offer__button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 237px;
  height: 52px;
  border: 1px solid #b0976e;
  border-radius: 3px;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b0976e;
  transition: all 250ms ease;
}
.offer__button:active {
  border-color: #927d54;
  background-color: #927d54;
  transition: all 250ms ease;
}

.cards {
  margin: 70px 0px;
}
.cards__filter {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.cards__filter-start {
  display: flex;
  gap: 20px;
}
.cards__filter-sort, .cards__filter-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #777777;
  transition: color 0.3s ease;
  cursor: pointer;
}
.cards__filter-sort_active {
  border-bottom: 1px solid rgba(176, 151, 110, 0.5);
  color: #333333;
}
.cards__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 19px;
}
.cards__list::-webkit-scrollbar {
  height: 0;
}
.cards__list-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  justify-content: center;
  margin-bottom: 15px;
}
.cards__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  position: relative;
}
.cards__item-color {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid transparent;
}
.cards__item-color_active {
  border: 1px solid rgba(176, 151, 110, 0.7);
}
.cards__item-color-inner {
  position: absolute;
  overflow: hidden;
  content: "";
  left: 1px;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgb(176, 151, 110);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
.cards__item-color-inner > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cards__offer {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.cards__offer > span {
  padding: 2px 8px;
  font-weight: 400;
  font-size: 11px;
  line-height: 160%;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  color: #333333;
  background-color: #ffffff;
  border-radius: 1px;
}
.cards__button {
  /* display: none;
  flex-shrink: 0; */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cards__button > svg {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}
.cards__button-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333333;
  border-bottom: 1px solid rgba(176, 151, 110, 0.5);
}
.cards__image {
  overflow: hidden;
  max-height: 500px;
  width: 100%;
  margin-bottom: 25px;
}
.cards__image > img {
  width: 100%;
  transition: transform 0.4s ease-in-out;
}
.cards__descr {
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  color: #333333;
  margin-bottom: 10px;
}
.cards__price {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.03em;
  color: #d83244;
}
.cards__colors {
  display: none;
  text-align: center;
}
/* .cards .download-btn {
  display: none;
} */

.download-btn_hide {
	display: none !important;
  }
@media (max-width: 1550px) {
	.offer__wrapper {
		overflow: hidden;
		margin: 0 -90px;
		padding: 0 90px;
	  }
	  .offer__wrapper .swiper-wrapper {
		display: flex;
		gap: initial;
		margin: 0 0 17px;
	  }
	  .offer__wrapper .swiper-slide {
		max-width: 292px;
	  }
	  .offer__wrapper .swiper-download-btn {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 438px;
		border: 1px solid #e7e7e7;
		cursor: pointer;
	  }
	  .offer-scrollbar {
		height: 12px;
		cursor: grab;
	  }
	  .offer-scrollbar:active {
		cursor: grabbing;
	  }
	  .offer-scrollbar .swiper-scrollbar-drag {
		background: rgba(136, 136, 136, 0.5);
		border-radius: 0;
	  }
	  .offer__button {
		display: none;
	  }
  .cards__list {
    grid-template-columns: repeat(4, 1fr);
  }
  
}
@media (max-width: 1200px) {
  .offer {
    margin: 0;
    margin-bottom: 120px;
  }
  .offer__wrapper {
    margin: 0 -40px;
    padding: 0 40px;
  }
  .offer__wrapper {
    margin: 0 -20px;
    padding: 0 20px;
  }
  .offer__wrapper .swiper-slide {
    max-width: 224px;
  }
  .offer__wrapper .swiper-download-btn {
    height: 336px;
  }
  .offer-scrollbar {
    height: 6px;
  }
}
@media (max-width: 1000px) {
  .offer {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  /* .offer__button {
    display: none;
  } */
  .cards {
    width: 100%;
    margin: 0;
    margin-top: 50px;
  }
  .cards__filter {
    padding: 0 20px;
  }
  .cards__list {
    display: flex;
    gap: 16px;
    overflow: hidden;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
  }
  .cards__list::-webkit-scrollbar {
    height: 0 !important;
  }
  .cards__item {
    width: 224px;
    flex-shrink: 0;
  }
  /* .cards .download-btn {
    display: flex;
    width: 224px;
    height: 336px;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border: 1px solid #e7e7e7;
  }
  .cards__button {
    display: flex;
    margin: 0;
    padding: 0;
  } */
  .cards__image {
    width: 100%;
  }
}
.offer__wrapper {
	display: none;
  }
  .offer__wrapper.current-offer {
	display: block;
  }
  .offer__wrapper .swiper-wrapper {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 40px 19px;
	animation: offer-anim 0.5s ease;
	margin: 70px 0px;
  }
  .offer__wrapper .swiper-download-btn {
	display: none;
  }
  .offer-item {
	display: block;
  }
  .offer-item .cards__item {
	animation: offer-anim 0.4s ease;
  }
  .offer-item_hide {
	display: none;
  }
  
  @keyframes offer-item-anim {
	0% {
	  opacity: 0;
	}
	100% {
	  opacity: 1;
	}
  }
  @keyframes offer-anim {
	0% {
	  opacity: 0;
	  transform: translateY(10px);
	}
	100% {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
@media (max-width: 750px) {
  .offer {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .offer .container {
    padding: 0;
  }
  .offer__title {
    font-size: 27px;
    /* padding: 0px 15px;
  }
  .offer .cards__item:first-child {
    margin-left: 15px; */
  }
  .cards {
    margin-top: 30px;
  }
  /* .cards__item {
    width: 224px;
  } */
  .cards__filter {
    margin-bottom: 40px;
    overflow: hidden;
    overflow-x: auto;
    padding: 0px 15px;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
  }
  .cards__filter::-webkit-scrollbar {
    height: 0 !important;
  }
  .cards__filter-start {
    margin-right: 20px;
  }
  .cards__filter-start, .cards__filter-link {
    flex-shrink: 0;
  }
}
@media (min-width: 1000px) {
  .offer__button:hover {
    background: #b0976e;
    color: #ffffff;
    transition: all 500ms ease;
  }
  .offer__button:active {
    background-color: #927d54;
    border-color: #927d54;
    transition: all 300ms ease;
  }
  .cards__image:hover > img {
    transform: scale(1.05);
    transition: transform 0.4s ease-in-out;
  }
  .cards__filter-sort:hover, .cards__filter-link:hover {
    color: #333333;
    transition: color 0.3s ease;
  }
}
.info {
  background-color: #f1ebe2;
}
.info .container {
  padding-top: 120px;
  padding-bottom: 120px;
}
.info__wrapper {
  display: flex;
  justify-content: center;
  gap: 100px;
}
.info__start {
  display: flex;
  flex-direction: column;
  font-family: "Playfair Display";
  font-weight: 400;
  font-size: 27px;
  line-height: 140%;
  overflow: hidden;
  letter-spacing: 0.05em;
  color: #333333;
  max-width: 580px;
}
.info__start-text:first-child {
  margin-bottom: 30px;
}
.info__company {
  display: flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 40px;
}
.info__company .info-arrow {
  transform: scaleX(1);
  transform-origin: left;
  transition: all 0.3s ease;
  margin-top: 3px;
}
.info__link {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.005em;
  color: #b0976e;
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
  margin-right: 20px;
  transition: all 0.3s ease;
}
.info__end {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  opacity: 0.8;
  overflow: hidden;
  max-width: 580px;
}
.info__end-text {
  line-height: 160%;
}
.info__end-link {
  color: rgb(176, 151, 110);
  border-bottom: 1px solid rgba(176, 151, 110, 0.5);
  transition: all 0.3s ease;
}

@media (max-width: 1650px) {
  .info__wrapper {
    gap: 60px;
  }
}
@media (max-width: 1200px) {
  .info__wrapper {
    gap: 40px;
  }
  .info__company {
    margin-top: 25px;
  }
}
@media (max-width: 1000px) {
  .info .container {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .info__start, .info__end {
    max-width: 100%;
  }
  .info__wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .info__company {
    margin-top: 50px;
  }
}
@media (max-width: 750px) {
  .info .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .info__wrapper {
    gap: 40px;
  }
  .info__start {
    font-size: 20px;
  }
  .info__company {
    margin-top: 40px;
  }
}
@media (min-width: 950px) {
  .info__company:hover .info-arrow {
    transform: scaleX(1.3);
    transform-origin: left;
    transition: all 0.3s ease;
  }
  .info__company:active .info-arrow {
    fill: #927d54;
  }
  .info__company:active .info__link {
    color: #927d54;
  }
  .info__end-link:hover {
    color: #b0976e;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
  }
  .info__end-link:active {
    color: #927d54;
    border-bottom-color: rgb(176, 151, 110);
  }
}
.media {
  overflow-x: overlay;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  background-color: #f1ebe2;
  width: 100%;
  margin: 0 auto;
}
.media::-webkit-scrollbar {
  width: 0 !important;
}
.media__list {
  display: flex;
  overflow: hidden;
}
.media__item {
  display: flex;
  position: relative;
  width: 20vw;
  height: 20vw;
  overflow: hidden;
}
.media__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.4s ease-in-out 0.4s;
}
.media__item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.7'%3E%3Ccircle cx='18' cy='18' r='18' fill='white'/%3E%3Crect x='17' y='11' width='2' height='14' fill='black'/%3E%3Crect x='25' y='17' width='2' height='14' transform='rotate(90 25 17)' fill='black'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.4s ease-in-out;
}

@media (max-width: 1000px) {
  .media__list {
    display: flex;
    gap: 0px;
    overflow-x: auto;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .media__list::-webkit-scrollbar {
    height: 0 !important;
  }
  .media__item {
    flex-shrink: 0;
    width: 280px;
    max-height: 100%;
    height: 280px;
  }
}
@media (max-width: 750px) {
  .media__item {
    width: 260px;
    height: 260px;
  }
}
@media (min-width: 950px) {
  .media__item:hover img {
    transform: scale(1.03);
  }
  .media__item:hover::after {
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
  }
}
.footer {
  background-color: #f1ebe2;
}
.footer .container {
  padding: 120px 90px;
  display: flex;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  width: 33%;
  margin-right: 15px;
}
.footer__logo {
  width: 122.79px;
  height: 60px;
  margin-bottom: 20px;
}
.footer__tel {
  font-size: 23px;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: #333333;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.footer__copy {
  font-size: 12px;
  line-height: 160%;
  color: rgba(51, 51, 51, 0.7);
  margin-bottom: 30px;
}
.footer__social {
  display: flex;
  gap: 20px;
}
.footer__social-link {
  width: 32px;
  height: 32px;
  opacity: 0.5;
}
.footer__nav {
  display: flex;
  width: 100%;
  gap: 30px;
}
.footer__nav-wrapper {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
.footer__nav-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
}
.footer__list {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.footer__item {
  display: flex;
  align-items: center;
  height: 40px;
}
.footer__item-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.7);
}
.footer__partner {
  display: flex;
  gap: 11px;
  align-items: center;
}
.footer__partner--mob {
  display: none;
}
.footer__partner-link {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
}
.footer__bottom {
  width: 100%;
  padding: 120px 0px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer__bottom-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background-color: #e3ddd4;
  border-radius: 50%;
  margin-bottom: 30px;
  transition: all 0.4s ease;
}
.footer__bottom-descr {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: rgba(51, 51, 51, 0.7);
}
.footer__bottom-descr > a {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.7);
  border-bottom: 1px solid rgba(176, 151, 110, 0.5);
  transition: all 0.3s ease;
}

.btn-mob {
  display: none;
}

.partner-img-wrapper {
  width: 16px;
  height: 16px;
}

@media (max-width: 1200px) {
  .footer .container {
    padding: 120px 40px;
  }
}
@media (max-width: 1000px) {
  .footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px 0px;
    gap: 0px;
  }
  .footer__contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    order: 1;
    width: 100%;
  }
  .footer__logo {
    margin-bottom: 30px;
  }
  .footer__list {
    overflow: hidden;
    max-height: 0;
    transition: all 0.4s ease;
    margin-bottom: 0;
    gap: 0px;
  }
  .footer__item {
    height: 40px;
    display: flex;
    align-items: center;
  }
  .footer__item:last-child {
    margin-bottom: 0px;
  }
  .footer__nav {
    display: flex;
    flex-direction: column;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    gap: 0px;
  }
  .footer__nav-title {
    display: flex;
    align-items: center;
    height: 40px;
  }
  .footer__nav-wrapper {
    gap: 0;
  }
  .footer__nav-wrapper:nth-child(2) {
    margin: 10px 0px;
  }
  .footer__nav-wrapper:first-child, .footer__nav-wrapper:last-child {
    margin: 0;
  }
  .footer__nav-wrapper:last-child {
    margin-bottom: 35px;
  }
  .footer__nav-inner {
    margin-top: 10px;
    gap: 0px;
  }
  .footer__partner--deks {
    display: none;
  }
  .footer__partner--mob {
    display: flex;
    height: 40px;
    align-items: center;
    margin-top: 10px;
  }
  .footer__bottom {
    padding: 70px 0px;
  }
  .footer__bottom-btn {
    margin-bottom: 20px;
  }
  .footer-pad {
    padding-bottom: 122px;
  }
  .btn-mob {
    display: flex;
    width: 100%;
    justify-content: end;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    height: 40px;
    z-index: 2;
    background: transparent;
  }
  .btn-mob > svg {
    width: 14px;
    height: 8px;
    z-index: -1;
    transition: transform 0.4s ease;
  }
  .btn-mob_active svg {
    transform: rotate(180deg);
    transition: transform 0.4s ease;
  }
}
@media (max-width: 400px) {
  .footer .container {
    padding: 50px 0px;
  }
  .footer__bottom {
    padding: 50px 0px;
  }
}
.footer__list_active {
  max-height: 100vh;
  transition: all 0.7s ease;
}

.social-link {
  transition: opacity 0.3s ease;
}

.item-link,
.partner-link,
.nav-title {
  transition: color 0.3s ease;
}

.btn-1,
.btn-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 30px;
  height: 52px;
  border-radius: 4px;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-1 {
  border: 1px solid #b0976e;
  color: #b0976e;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-2 {
  background: #b0976e;
  border: 1px solid #b0976e;
  color: #ffffff;
  transition: background 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 1000px) {
  .social-link:hover {
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  .footer__tel:hover,
.item-link:hover,
.partner-link:hover {
    color: #b0976e;
    transition: color 0.3s ease;
  }
  .footer__tel:active,
.item-link:active,
.partner-link:active {
    color: #927d54;
    transition: color 0.3s ease;
  }
  .footer__bottom-btn:hover {
    background-color: rgba(176, 151, 110, 0.75);
  }
  .footer__bottom-descr > a:hover {
    border-color: transparent;
    transition: all 0.3s ease;
  }
  .btn-1:hover {
    background: #b0976e;
    border-color: #b0976e;
    color: #ffffff;
  }
  .btn-2:hover {
    background: #927d54;
    border-color: #927d54;
  }
}
.btn-1:active {
  background: #927d54;
  border-color: #927d54;
  color: #ffffff;
  transition: all 0.3s ease;
}

.btn-2:active {
  background: #77623a;
  border-color: #77623a;
  transition: all 0.3s ease;
}

.stop-scroll {
  overflow: hidden;
}

.product {
  display: flex;
  flex-wrap: nowrap;
  margin: 0 auto;
  max-width: 1920px;
  padding: 70px 90px 90px;
}
.product__content {
  width: 100%;
}
.product__content .offer__button {
  width: 344px;
  margin-bottom: 30px;
}
.product__content .cards {
  width: 100%;
  margin: 0;
  margin-bottom: 50px;
}
.product__content .cards__top {
  display: grid;
  gap: 30px;
  margin-bottom: 50px;
}
.product__content .cards__breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.product__content .cards__breadcrumbs-btn {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 20px 10px 24px;
  background-color: #e7e7e7;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #333333;
  cursor: pointer;
}
.product__content .cards__breadcrumbs-btn > span {
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5 4.28568L0.714358 0L7.77904e-05 0.714285L4.28572 4.99996L0 9.28571L0.71428 10L5 5.71425L9.28572 9.99999L10 9.28571L5.71428 4.99996L9.99992 0.714291L9.28564 5.90056e-06L5 4.28568Z' fill='%23333333'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-left: 12px;
}
.product__content .cards__list {
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 17px;
}
.product__content .cards__item-color {
  transition: all 0.3s ease;
}
.product__content .cards__item-color-inner > img {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__content .cards__image {
  max-height: 516px;
}
.product__content .cards__colors {
  display: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  color: rgba(51, 51, 51, 0.7);
}
.product__title {
  font-weight: 400;
  font-size: 50px;
  line-height: 120%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 35px;
}
.product__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product__info h2 {
  font-weight: 400;
  font-size: 35px;
  line-height: 120%;
  color: #333333;
  margin-bottom: 30px;
}
.product__info p {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: rgba(51, 51, 51, 0.7);
}
.product__info p:nth-child(4) {
  margin-bottom: 30px;
}
.product__info p:last-child {
  margin-top: 30px;
}
.product__info p:nth-child(2), .product__info p:nth-child(5) {
  margin-bottom: 40px;
}

.cards__sort {
  display: flex;
}
.cards__sort-item {
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}
.cards__sort-item input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.cards__sort-item input:checked ~ span {
  font-weight: 600;
  color: #333333;
}
.cards__sort-item span {
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0.03em;
  color: rgba(51, 51, 51, 0.5);
}
/* .cards__sort-item i {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10V8H5V10H0ZM0 6V4H9V6H0ZM0 2V0H14V2H0Z' fill='%23333333'/%3E%3C/svg%3E%0A");
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  margin-right: 11px;
  transition: all 0.2s ease;
} */
.cards__sort-item:not(:last-child) {
  margin-right: 20px;
}

.name-sort_toggle i {
  transform: scale(1, -1);
}

.tooltip {
  position: absolute;
  pointer-events: none;
  top: -45px;
  left: 0px;
  right: 0px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 7px 15px;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0px 2px 23px -8px rgba(0, 0, 0, 0.51);
  font-size: 14px;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease;
}
.tooltip::after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -4px;
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  transform: rotate(45deg);
}

.breadcrumbs {
  width: 100%;
  margin-bottom: 30px;
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 23px;
}
.breadcrumbs__item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 16px;
}
.breadcrumbs__item a,
.breadcrumbs__item span {
  font-weight: 400;
  font-size: 11px;
  line-height: 120%;
  letter-spacing: 0.004em;
  color: #333333;
  cursor: pointer;
}
.breadcrumbs__item:not(:last-child) {
  border-bottom: 1px solid rgba(176, 151, 110, 0.5);
  transition: all 0.3s ease;
}
.breadcrumbs__item:not(:last-child)::after {
  position: absolute;
  content: "";
  top: 6px;
  right: -12px;
  background-image: url("data:image/svg+xml,%3Csvg width='4' height='6' viewBox='0 0 4 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L3 3L1 5' stroke='%23333333' stroke-opacity='0.5' stroke-linecap='square'/%3E%3C/svg%3E");
  width: 2px;
  height: 4px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.breadcrumbs__item:last-child a,
.breadcrumbs__item:last-child span {
  color: #bfaa88;
  cursor: default;
}

.count-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}
.count-page__top {
  font-weight: 400;
  font-size: 13px;
  line-height: 140%;
  color: #333333;
}
.count-page__top > span {
  font-weight: 700;
}
.count-page__list {
  display: flex;
  gap: 10px;
}
.count-page__item {
  display: flex;
  align-items: center;
  padding: 0px 15px;
  height: 38px;
  background-color: #e7e7e7;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.count-page__item > a {
  font-weight: 400;
  font-size: 13px;
  line-height: 140%;
  text-align: center;
  color: #333333;
  cursor: pointer;
}
.count-page__item_active {
  background-color: #333333 !important;
  cursor: default !important;
}
.count-page__item_active > a {
  color: #ffffff !important;
  cursor: default !important;
}

.cards__price > span {
  display: none;
  color: rgba(119, 119, 119, 0.7);
  text-decoration: line-through;
  -webkit-text-decoration-color: #d83244;
          text-decoration-color: #d83244;
  margin-left: 15px;
}
.cards__price_sale > span {
  display: inline;
}

@media (max-width: 1450px) {
  .product .cards__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1200px) {
  .product {
    padding: 70px 40px 120px;
  }
}
@media (max-width: 1000px) {
  .product {
    display: block;
    padding: 40px 20px 70px;
  }
  .product__title {
    text-align: center;
    font-size: 35px;
    margin-bottom: 0;
  }
  .product__info {
    margin-bottom: 0;
  }
  .product__info h2 {
    opacity: 1;
    margin-bottom: 20px;
  }
  .product__info p {
    opacity: 1;
  }
  .product__info p:nth-child(2), .product__info p:nth-child(5) {
    margin-bottom: 30px;
  }
  .product__info p:nth-child(4) {
    margin-bottom: 20px;
  }
  .product__info p:last-child {
    margin-top: 20px;
  }
  .product .cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    overflow: hidden;
    overflow-x: auto;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 70px;
    width: 100%;
  }
  .product .cards::-webkit-scrollbar {
    width: 0 !important;
  }
  .product .cards__top {
    display: none;
  }
  .product .cards__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    gap: 40px 16px;
  }
  .product .cards__item {
    opacity: 1;
    width: 100%;
  }
  .product .cards__image {
    width: 100%;
    margin-bottom: 20px;
  }
  .product .offer__button {
    display: flex;
  }
  .breadcrumbs {
    margin-bottom: 25px;
  }
  .breadcrumbs__list {
    justify-content: center;
  }
  .count-page {
    margin-bottom: 40px;
  }
}
@media (max-width: 750px) {
  .product {
    padding: 20px 15px 50px;
  }
  .product__content .offer__button {
    height: 46px;
    width: 100%;
  }
  .product__title {
    text-align: start;
    font-size: 25px;
    line-height: 33px;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
  }
  .product__info p {
    line-height: 140%;
  }
  .product__info p:last-child, .product__info p:nth-child(7) {
    line-height: 150%;
  }
  .product__info p:nth-child(2), .product__info p:nth-child(5) {
    margin-bottom: 25px;
  }
  .product__info p:nth-child(4) {
    margin-bottom: 10px;
  }
  .product__info h2 {
    font-size: 23px;
  }
  .product .count-page__list {
    width: 100%;
    justify-content: start;
  }
  .product .count-page__item {
    padding: 0px 19px;
    height: 46px;
  }
  .product .count-page__item:nth-child(4) {
    display: none;
  }
  .product .count-page__top {
    display: none;
  }
  .product .cards {
    margin-bottom: 25px;
  }
  .product .cards__list {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 14px;
  }
  .product .cards__list-colors {
    display: none;
  }
  .product .cards__colors {
    display: flex;
    margin-top: 5px;
  }
  .product .cards__descr {
    margin-bottom: 5px;
    font-size: 14px;
  }
  .product .cards__item {
    width: 100%;
  }
  .product .cards__image {
    margin-bottom: 15px;
  }
  .product .cards__price {
    font-size: 14px;
  }
  .product .cards__price > span {
    margin-left: 10px;
  }
  .breadcrumbs {
    margin-bottom: 15px;
  }
  .breadcrumbs__list {
    justify-content: flex-start;
    overflow: hidden;
    overflow-x: auto;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .breadcrumbs__list::-webkit-scrollbar {
    height: 0;
    width: 0;
  }
  .breadcrumbs__item {
    flex-shrink: 0;
  }
  .count-page {
    margin-bottom: 25px;
  }
}
@media (max-width: 388px) {
  .product .offer__button {
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .cards__item-color:not(.cards__item-color_active):hover {
    border: 1px solid #c4c4c4;
    transition: all 0.3s ease;
  }
  .cards__breadcrumbs-btn:hover {
    background-color: rgba(51, 51, 51, 0.2);
    transition: all 0.3s ease;
  }
  .cards__breadcrumbs-btn:hover .tooltip {
    opacity: 1;
  }
  .count-page__item:not(.count-page__item_active):hover {
    background-color: rgba(51, 51, 51, 0.2);
    transition: all 0.3s ease;
  }
  .cards__sort-item:hover span {
    color: #333333;
  }
}
.breadcrumbs__item:not(:last-child):hover {
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.filters {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 70px;
  height: 88vh;
  width: 260px;
  margin-right: 50px;
  scrollbar-width: none;
}

.filters::-webkit-scrollbar {
	width: 0;
	height: 0;
  }
.filters > .simplebar-track {
  width: 8px !important;
}
.filters__container {
	scrollbar-width: none;
}

.filters > .simplebar-track > .simplebar-scrollbar:before {
  background: rgba(51, 51, 51, 0.5);
  border-radius: 10px;
}
.filters__header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 59px;
  display: none;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  padding: 0 15px;
  z-index: 2;
}
.filters__header-title {
  font-weight: 700;
  font-size: 23px;
  height: 40px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
}
.filters__btn-reset, .filters__header-title, .filters__btn-close {
  display: flex;
  height: 40px;
  align-items: center;
}
.filters__btn-reset {
  font-weight: 400;
  font-size: 11px;
  line-height: 140%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
}
.filters__btn-close {
  display: flex;
  width: auto;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.filters__btn-close > span:first-child {
  display: flex;
  margin-right: 11px;
  font-weight: 400;
  font-size: 11px;
  line-height: 140%;
  text-align: right;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
}
.filters__btn-close > span:last-child {
  display: flex;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.39996' y='3.05176e-05' width='17.8191' height='1.9799' transform='rotate(45 1.39996 3.05176e-05)' fill='%23333333'/%3E%3Crect x='0.00012207' y='12.6' width='17.8191' height='1.9799' transform='rotate(-45 0.00012207 12.6)' fill='%23333333'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.filters__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  overflow-y: auto;
  width: 235px;
  height: 100%;
}
.filters__btn {
  flex-shrink: 0;
  width: 235px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 25px;
}
.filters__btn > svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease-in-out;
}
.filters__btn_active > svg {
  transform: rotate(0);
  transition: transform 0.3s ease-in-out;
}
.filters__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
}
.filters__list {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
 /* overflow: hidden;  */
  transition: all 0.4s ease;
}
.filters__list_active {
  max-height: 100vh;
  transition: all 0.7s ease;
}
.filters__list > li {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #333333;
}
.filters__list > li:last-child {
  margin-bottom: 40px;
}
.filters__list label {
  cursor: pointer;
  width: 100%;
}
.filters__category-item, .filters__collection-item {
  height: 21px;
}
.filters__catalog-item {
  display: flex;
  align-items: center;
}
.filters__catalog-item span {
  padding: 2px 7px;
  background: #b0976e;
  border-radius: 2px;
  font-weight: 700;
  font-size: 11px;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  margin-left: 10px;
}
.filters__catalog-item .catalog-link {
  color: #333333;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(176, 151, 110, 0.5);
}
.filters__catalog-item .catalog-link_active {
  color: #b0976e;
  border-color: transparent;
  transition: all 0.3s ease;
}
.filters__collection-item label > input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.filters__collection-item label > input:checked + span::before {
  background-color: #b0976e;
  border-color: #b0976e;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 3.5L4.5 6.5L10 1' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
  transition: all 0.3s ease;
}
.filters__collection-item label > span {
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.filters__collection-item label > span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #bbbbbb;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  transition: all 0.3s ease;
}
.filters__category-item label > input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.filters__category-item label > input:checked + span::before {
  background-color: #b0976e;
  border-color: #b0976e;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 3.5L4.5 6.5L10 1' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
  transition: all 0.3s ease;
}
.filters__category-item label > span {
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.filters__category-item label > span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #bbbbbb;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  transition: all 0.3s ease;
}
.filters__colors-list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.filters__colors-item {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.filters__colors-item label {
  width: 32px;
  height: 32px;
  border-radius: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.filters__colors-item label > input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.filters__colors-item label > input:checked + span {
  border-color: #b0976e;
  transition: all 0.3s ease;
}
.filters__colors-item label > span {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.filters__size-list {
  gap: 8px;
}
.filters__size-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  gap: 8px;
}
.filters__size-item {
  display: flex;
}
.filters__size-item label > input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.filters__size-item.selected span::after {
	color: #ffffff;
  background-color: #333333;
  transition: all 0.3s ease;
}
.filters__size-item.selected span {
  color: #ffffff;
  transition: all 0.3s ease;
}
.filters__size-item label > span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 73px;
  height: 40px;
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  text-align: center;
  color: #333333;
  transition: all 0.3s ease;
}
.filters__size-item label > span::after {
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #e7e7e7;
  z-index: -1;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.bx-filter-parameters-box .filters__size-item label > input:checked + span {
    color: #ffffff;
    transition: all 0.3s ease;
}
.bx-filter-parameters-box .filters__size-item label > input:checked + span::after {
    background-color: #333333;
    transition: all 0.3s ease;
}
.filters__btn-show {
  display: none;
  align-items: center;
  justify-content: center;
  width: 235px;
  height: 52px;
  background: #b0976e;
  border: 1px solid #b0976e;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}
.filters__sort-list {
  display: none;
}
.filters__sort-title {
  display: none;
  width: 100%;
  height: 40px;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
}

.filter-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 48px;
  border: 1px solid rgba(176, 151, 110, 0.5);
  border-radius: 3px;
}
.filter-btn > svg {
  margin-right: 13px;
}
.filter-btn > span {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #b0976e;
}

@media (max-width: 1000px) {
  .filters {
    display: flex;
    opacity: 0 !important;
    position: fixed !important;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background: #ffffff;
    transition: all 0.3s ease;
  }
  .filters__header {
    display: flex;
    opacity: 0;
    transition: opacity 0.1s;
  }
  .filters_active {
    opacity: 1 !important;
    z-index: 10;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
  }
  .filters_active .filters__header {
    opacity: 1;
    transition: opacity 0.1s;
  }
  .filters__container {
    width: 100%;
    padding: 70px 20px;
  }
  .filters__btn-show {
    display: flex;
    width: 100%;
    position: fixed;
    bottom: 0;
  }
  .filters__btn {
    display: flex;
    align-items: center;
    height: 40px;
    width: 100%;
    margin-bottom: 1px;
  }
  .filters__list {
    width: 100%;
    gap: 0;
  }
  .filters__list::after {
    position: absolute;
    content: "";
    bottom: 15px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #eaeaea;
  }
  .filters__list:last-child::after {
    bottom: 0;
  }
  .filters__list > li {
    height: 40px;
    width: 100%;
  }
  .filters__list > li label {
    width: 100%;
  }
  .filters__list > li:last-child {
    margin-bottom: 30px;
  }
  .filters__collection-item, .filters__category-item {
    display: flex;
    align-items: center;
  }
  .filters__colors-list, .filters__size-list {
    gap: 8px;
  }
  .filters__size-inner:last-child {
    margin-bottom: 20px;
  }
  .filters__colors-item {
    width: 42px !important;
    height: 42px !important;
  }
  .filters__colors-item label {
    width: 32px !important;
    height: 32px !important;
  }
  .filters__colors-item label span {
    width: 42px;
    height: 42px;
  }
  .filters__sort-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    position: relative;
  }
  .filters__sort-list::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    bottom: 15px;
    left: 0;
    background-color: #eaeaea;
  }
  .filters__sort-item {
    position: relative;
    width: 100%;
    height: 40px;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #333333;
  }
  .filters__sort-item label > input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  .filters__sort-item label > input:checked + span::before {
    border: 7px solid #b0976e;
  }
  .filters__sort-item label > span {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 100%;
  }
  .filters__sort-item label > span::before {
    content: "";
    display: flex;
    width: 20px;
    height: 20px;
    border-radius: 100px;
    background: #ffffff;
    border: 1px solid #bbbbbb;
  }
  .filters__sort-item:last-child label > span::after, .filters__sort-item:nth-child(2) label > span::after {
    content: "";
    display: flex;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.35355 0.646446C4.15829 0.451184 3.84171 0.451184 3.64645 0.646446L0.464466 3.82843C0.269204 4.02369 0.269204 4.34027 0.464466 4.53553C0.659728 4.7308 0.97631 4.7308 1.17157 4.53553L4 1.70711L6.82843 4.53553C7.02369 4.7308 7.34027 4.7308 7.53553 4.53553C7.7308 4.34027 7.7308 4.02369 7.53553 3.82843L4.35355 0.646446ZM4.5 12L4.5 1L3.5 1L3.5 12L4.5 12Z' fill='%23333333'/%3E%3C/svg%3E");
    width: 9px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .filters__sort-item:last-child {
    margin-bottom: 30px;
  }
  .filters__sort-item:last-child label > span::after {
    transform: rotate(180deg);
  }
  .filters__sort-title {
    display: flex;
    margin-bottom: 1px;
  }
  .filter-btn {
    display: flex;
    width: 100%;
    margin: 0 auto;
    margin-top: 35px;
  }
  .simple-scroll > .simplebar-track {
    width: 8px !important;
  }
}
@media (max-width: 750px) {
  .filters__container {
    padding: 70px 15px;
  }
}
@media (max-width: 420px) {
  .filters__header-title {
    left: 30%;
  }
  .filter-btn {
    margin-top: 20px;
  }
}
@media (min-width: 1000px) {
  .filters__collection-item label > input:not(:disabled):not(:checked) + span:hover::before {
    background-color: rgba(231, 231, 231, 0.5);
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 3.5L4.5 6.5L10 1' stroke='%23333333' stroke-width='2'/%3E%3C/svg%3E");
    transition: all 0.3s ease;
  }
  .filters__category-item label > input:not(:disabled):not(:checked) + span:hover::before {
    background-color: rgba(231, 231, 231, 0.5);
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 3.5L4.5 6.5L10 1' stroke='%23333333' stroke-width='2'/%3E%3C/svg%3E");
    transition: all 0.3s ease;
  }
  .filters__colors-item label > input:not(:disabled):not(:checked) + span:hover {
    border-color: #c4c4c4;
    transition: all 0.3s ease;
  }
  .filters__size-item label > input:not(:disabled):not(:checked) + span:hover::after {
    background-color: rgba(51, 51, 51, 0.2);
    transition: all 0.3s ease;
  }
  .catalog-link:not(.catalog-link_active):hover {
    border-color: transparent;
  }
}
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

::-webkit-scrollbar:window-inactive {
  height: 0;
}



.cards-info {
  display: flex;
  flex-direction: column;
}
.cards-info h1 {
  font-weight: 400;
  font-size: 50px;
  line-height: 120%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 25px;
}
.cards-info__price {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 400;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: 0.03em;
  color: #d83244;
  margin-bottom: 25px;
}
.cards-info__price .old-price{
  color: rgba(119, 119, 119, 0.7);
  text-decoration: line-through;
}
.cards-info__colors {
  display: flex;
  flex-direction: column;
  margin-bottom: 34px;
  max-width: 368px;
}
.cards-info__colors .color {
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #333333;
}
.cards-info__colors .color > * {
  font-weight: 400;
}
.cards-info .filters__list {
  max-height: none;
  margin: 0;
  margin-top: 15px;
}
.cards-info .filters__list .filters__colors-item {
  margin: 0;
}
.cards-info .filters__list::after {
  width: 0;
  height: 0;
}
.cards-info__sizes {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  max-width: 369px;
}
.cards-info__sizes-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.cards-info__sizes-top .size {
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #333333;
}
.cards-info__sizes-top .size > * {
  font-weight: 400;
  color: #333333;
}
.cards-info__sizes-top .table-size-btn {
  display: flex;
}
.cards-info__sizes-top .table-size-btn span {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-align: right;
  color: #333333;
  border-bottom: 1px solid rgba(176, 151, 110, 0.5);
  transition: all 0.3s ease;
}
.cards-info__sizes-top span {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: rgba(119, 119, 119, 0.7);
}
.cards-info__sizes-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 25px;
}
.cards-info__sizes-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 40px;
}
.cards-info__sizes-item > span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 100%;
  background: #e7e7e7;
  border-radius: 4px;
  flex-shrink: 0;
}
.cards-info__sizes-item .order-card__count {
  margin: 0;
}
.cards-info__sizes-item .order-card__count > label {
  width: 60px;
}
.cards-info__sizes-item > button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 151px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #b0976e;
  border-radius: 4px;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #b0976e;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.cards-info__sizes-item .added {
  background: #b0976e;
  border: 1px solid #b0976e;
  color: #ffffff;
}
.cards-info .size-opt {
  justify-content: flex-start;
}
.cards-info .size-opt > span:first-child {
  margin-right: 73px;
}
.cards-info .size-opt .table-size-btn {
  margin-left: auto;
  justify-content: flex-end;
}
.cards-info__descr p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #333333;
}
.cards-info__descr p:nth-child(2) {
  margin-bottom: 15px;
}
.cards-info__descr p:nth-child(3) {
  margin-bottom: 35px;
}
.cards-info__descr span {
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 15px;
}
.cards-info__list {
  list-style: disc;
  margin-left: 25px;
}
.cards-info__list:not(:last-child) {
  margin-bottom: 35px;
}
.cards-info__list > li {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #333333;
  list-style: disc;
}
.cards-info .filters__size-item label > span {
  width: 67px;
}

.add-product {
  max-width: 368px;
  margin-bottom: 50px;
  transition: all 0.4 ease;
}
.add-product-fixed {
  display: none;
}

.size-opt__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

@media (max-width: 1000px) {
  .product-card-container {
    padding: 0px;
  }
  .cards-info {
    margin-top: 30px;
    padding: 0px 20px;
  }
  .cards-info h1 {
    font-size: 35px;
    line-height: 42px;
    margin-bottom: 25px;
  }
  .cards-info > .breadcrumbs {
    display: none;
  }
  .cards-info__price {
    font-size: 20px;
    margin-bottom: 25px;
  }
  .cards-info__colors {
    margin-bottom: 25px;
    max-width: 100%;
  }
  .cards-info__colors .color {
    font-size: 14px;
  }
  .cards-info__sizes {
    margin-bottom: 15px;
    max-width: 100%;
  }
  .cards-info__sizes .size {
    font-size: 15px;
  }
  .cards-info__sizes .filters__size-item label > span {
    width: 100%;
  }
  .cards-info__sizes .filters__size-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
  .cards-info__sizes .filters__size-inner:last-child {
    margin-bottom: 0;
  }
  .cards-info__descr p:nth-child(3) {
    margin-bottom: 30px;
  }
  .cards-info__list {
    margin-left: 20px;
  }
  .cards-info__list:not(:last-child) {
    margin-bottom: 30px;
  }
  .add-product {
    margin-bottom: 40px;
    max-width: 100%;
  }
  .add-product-fixed {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100vw;
    width: 90vw;
    margin: 0 auto;
    opacity: 0;
    border-radius: 0px;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out, width 0.3s ease-in-out 0.2s;
  }
  .add-product-fixed_active {
    opacity: 1;
    width: 100vw;
    pointer-events: all;
  }
  .size-opt__wrapper {
    max-width: 369px;
  }
}
@media (max-width: 750px) {
  .cards-info {
    padding: 0px;
    width: 100%;
    margin-top: 20px;
  }
  .cards-info__sizes {
    max-width: none;
    overflow-x: auto;
    position: relative;
  }
  .cards-info h1 {
    font-size: 25px;
    line-height: 33px;
    margin-bottom: 20px;
    padding: 0px 15px;
  }
  .cards-info__list > li {
    font-size: 15px;
    line-height: 120%;
    letter-spacing: 0.03em;
  }
  .cards-info__descr p {
    font-size: 15px;
  }
  .cards-info__descr span {
    margin-bottom: 20px;
  }
  .cards-info .size-opt > * {
    flex-shrink: 0;
  }
  .cards-info .size-opt__wrapper {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: none;
    margin: 0px 15px;
  }
  .cards-info__price, .cards-info__colors, .cards-info__descr {
    padding: 0px 15px;
  }
  .size-single {
    padding: 0px 15px;
  }
  .add-product {
    margin-left: 15px;
    margin-right: 15px;
  }
  .add-product-fixed {
    margin: 0 auto;
  }
}
@media (min-width: 1000px) {
  .add-shop-cart:hover {
    background: #b0976e;
    color: #ffffff;
    transition: all 500ms ease;
  }
  .add-shop-cart:active {
    background-color: #927d54;
    border-color: #927d54;
    transition: all 300ms ease;
  }
  .table-size-btn span:hover {
    border-color: transparent;
    transition: all 0.3s ease;
  }
  .cards-info__sizes-item > button:hover {
    background: #b0976e;
    border: 1px solid #b0976e;
    color: #ffffff;
    transition: all 0.3s ease;
  }
}
.card-product {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin-top: 70px;
}
.card-product > .breadcrumbs {
  display: none;
}

.slider {
  margin-right: 78px;
  max-height: 968px;
}
.slider .swiper-container {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.slider__flex {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.slider__col.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 140px;
  margin-right: 17px;
}
.slider__prev, .slider__next {
  cursor: pointer;
  display: flex;
  display: flex;
  height: 20px;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.slider__prev > svg > path, .slider__next > svg > path {
  opacity: 1;
}
.slider .swiper-button-disabled {
  cursor: default;
}
.slider .swiper-button-disabled > svg > path {
  opacity: 0.2;
}
.slider__next > svg {
  transform: rotate(180deg);
}
.slider__prev:focus, .slider__next:focus {
  outline: none;
}
.slider__image {
  width: 99%;
  height: 99%;
  margin: auto;
  overflow: hidden;
}
.slider__image > img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 1200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.slider__zoom {
  width: 645px;
  height: 968px;
}
.slider__thumbs {
  min-height: 1px;
  max-height: 891px;
  overflow: hidden;
  margin: 17px 0px;
}
.slider__thumbs .slider__image {
  position: relative;
  width: 140px;
  height: 210px;
  transition: all 0.25s ease;
}
.slider__thumbs .slider__image::after {
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}
.slider__thumbs .swiper-container {
  max-height: inherit;
}
.slider__thumbs .swiper-slide-thumb-active .slider__image::after {
  border: 2px solid #b0976e;
  transition: all 0.25s ease;
}
.slider__thumbs .swiper-button-disabled {
  cursor: default;
}
.slider .swiper-wrapper {
  z-index: 0;
}

.zindex {
  z-index: 2;
}

@media (max-width: 1995px) {
  .slider__zoom_active .swiper-container {
    width: 45vw;
  }
}
@media (max-width: 1600px) {
  .slider {
    margin-right: 50px;
  }
  .slider__zoom_active .swiper-container {
    width: 55vw;
  }
}
@media (max-width: 1350px) {
  .slider {
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
    margin-right: 40px;
    max-height: 569px;
  }
  .slider__thumbs {
    max-height: 437px;
  }
  .slider__zoom {
    width: 379px;
    height: 569px;
  }
  .slider__zoom_active .slider__zoom-inner {
    padding: 0px 40px;
  }
}
@media (max-width: 1000px) {
  .card-product {
    flex-direction: column;
    margin-top: 40px;
  }
  .card-product > .breadcrumbs {
    display: flex;
    padding: 0px 20px;
    margin-bottom: 40px;
  }
  .slider {
    position: relative;
    top: 0;
    right: 0;
    margin: 0;
    max-height: 968px;
    width: 100vw;
  }
  .slider__col.active {
    display: none !important;
  }
  .slider .swiper-slide {
    max-width: 80vw;
  }
  .slider__zoom {
    width: 100%;
    height: 968px;
  }
  .slider__zoom_active .slider__zoom-inner {
    padding: 20px 20px;
  }
  .slider__zoom_active .swiper-container {
    width: 70vw;
  }
  .slider__zoom_active .swiper-slide {
    max-width: 100vw;
  }
}
@media (max-width: 750px) {
  .card-product {
    margin-top: 20px;
  }
  .card-product > .breadcrumbs {
    margin-bottom: 25px;
    padding: 0;
  }
  .card-product .breadcrumbs__item:first-child {
    margin-left: 15px;
  }
  .card-product .breadcrumbs__item:last-child {
    margin-right: 15px;
  }
  .slider__zoom {
    min-width: 340px;
    height: 495px;
  }
  .slider .swiper-slide {
    max-width: 90vw;
    width: 330px;
  }
}
@media (max-height: 450px) {
  .slider__zoom_active .slider__zoom-inner {
    padding-top: 0px;
  }
  .slider__zoom_active .swiper-container {
    width: 35vw;
  }
}
@media (min-width: 1000px) {
  .slider__thumbs .slider__image:hover::after {
    border: 2px solid #b0976e;
    transition: all 0.25s ease;
  }
  .slider__prev:hover:not(.swiper-button-disabled) > svg > path, .slider__next:hover:not(.swiper-button-disabled) > svg > path {
    fill: #b0976e;
    transition: 0.2s ease;
  }
}
.offer-2 {
  margin-top: 70px;
  margin-bottom: 90px;
}
.offer-2 h2 {
  font-weight: 400;
  font-size: 35px;
  line-height: 120%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 50px;
}
.offer-2 .cards {
  width: 100%;
  margin: 0;
  overflow: hidden;
}
.offer-2 .cards::-webkit-scrollbar {
  height: 0px !important;
  width: 0px !important;
}
.offer-2 .cards > .simplebar-track {
  pointer-events: all;
  cursor: -webkit-grab;
  cursor: grab;
}
.offer-2 .cards > .simplebar-track:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.offer-2 .cards__list {
  grid-template-columns: repeat(4, 1fr);
}
.offer-2 .cards__item:last-child {
  display: flex;
}
.offer-2 .cards__image {
  max-height: 630px;
}

@media (max-width: 1000px) {
  .offer-2 {
    margin-top: 30px;
    margin-bottom: 50px;
    padding: 0 15px;
  }
  .offer-2 h2 {
    font-size: 23px;
    margin-bottom: 25px;
  }
  .offer-2 .cards {
    overflow: hidden;
  }
  .offer-2 .cards__list {
    display: grid;
    grid-template-columns: repeat(2, 0.5fr);
    justify-content: center;
    margin: 0;
  }
  .offer-2 .cards__list-colors {
    display: none;
  }
  .offer-2 .cards__item {
    width: 100%;
  }
  .offer-2 .cards__image {
    width: 100%;
    margin-bottom: 15px;
  }
  .offer-2 .cards__descr {
    margin-bottom: 10px;
  }
  .offer-2 .cards__price {
    margin-bottom: 10px;
  }
  .offer-2 .cards__colors {
    display: block;
  }
}
.card-modal {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.8, 0, 0.8, 1);
}
.card-modal__container {
  min-width: 600px;
  background-color: #fff;
  padding: 30px;
  padding-bottom: 40px;
}
.card-modal__container > p {
  display: none;
  font-family: "Playfair Display", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 120%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
}
.card-modal__header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: relative;
}
.card-modal__header > p {
  font-family: "Playfair Display", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 120%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
}
.card-modal__logo {
  display: none;
  width: 74px;
  height: 36px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-modal__close {
  position: absolute;
  top: -4px;
  right: -15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-modal__close > span:last-child {
  display: flex;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.39996' y='3.05176e-05' width='17.8191' height='1.9799' transform='rotate(45 1.39996 3.05176e-05)' fill='%23333333'/%3E%3Crect x='0.00012207' y='12.6' width='17.8191' height='1.9799' transform='rotate(-45 0.00012207 12.6)' fill='%23333333'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: background 0.3s ease;
}
.card-modal__product {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 35px;
}
.card-modal__photo {
  width: 100%;
  height: 150px;
}
.card-modal__photo > img {
  height: inherit;
}
.card-modal__descr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.card-modal__descr > * {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #333333;
}
.card-modal__descr > *:first-child {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.card-modal__descr > *:nth-child(2), .card-modal__descr > *:nth-child(3) {
  color: rgba(119, 119, 119, 0.7);
}
.card-modal__descr > *:last-child > * {
  color: rgba(51, 51, 51, 0.7);
  text-decoration: line-through;
}
.card-modal__btns {
  display: flex;
  justify-content: space-between;
  height: 62px;
  gap: 20px;
}
.card-modal__btn {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
.card-modal__btn:first-child {
  background: #ffffff;
  border: 1px solid #b0976e;
  border-radius: 4px;
  color: #b0976e;
}
.card-modal__btn:last-child {
  background: #b0976e;
  border: 1px solid #b0976e;
  border-radius: 4px;
  color: #ffffff;
}

.table-modal {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.8, 0, 0.8, 1);
}
.table-modal__container {
  min-width: 918px;
  background-color: #fff;
  padding: 30px 15px 35px 30px;
}
.table-modal__container > p {
  display: none;
  font-family: "Playfair Display", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 120%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
}
.table-modal table {
  width: 100%;
  height: 100%;
  margin-top: 30px;
}
.table-modal table .simplebar-scrollbar {
  height: 3px;
}
.table-modal table .simplebar-scrollbar:before {
  background: #d9d9d9;
  border-radius: 100px;
}
.table-modal tbody {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border: 1px solid #e7e7e7;
}
.table-modal tr {
  display: flex;
  height: 42px;
  font-size: 14px;
  line-height: 100%;
  color: #333333;
  align-items: center;
}
.table-modal tr:not(:last-child) {
  border-bottom: 1px solid #e7e7e7;
}
.table-modal tr:first-child th:not(:first-child) {
  width: 91px;
  height: 100%;
  justify-content: flex-start;
  padding-left: 17px;
  border-right: 1px solid #e7e7e7;
}
.table-modal tr:first-child th:last-child {
  border-right: none;
}
.table-modal tr:first-child th:nth-child(even) {
  background: rgba(217, 217, 217, 0.3);
}
.table-modal tr th {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 700;
}
.table-modal tr td {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 91px;
  height: 100%;
  font-weight: 400;
  padding-left: 17px;
}
.table-modal tr td:not(:last-child) {
  border-right: 1px solid #e7e7e7;
}
.table-modal tr td:nth-child(even) {
  background: rgba(217, 217, 217, 0.3);
}
.table-modal tr th:first-child {
  width: 150px;
  padding-left: 17px;
  height: 100%;
  border-right: 1px solid #e7e7e7;
}
.table-modal .card-modal__close {
  right: 0;
}

.modal-add {
  position: fixed;
  top: 30px;
  right: -100%;
  width: 405px;
  background-color: #ffffff;
  box-shadow: 0px 3px 20px rgba(34, 34, 34, 0.1);
  transition: right 0.5s ease-in-out;
}
.modal-add_active {
  right: 30px;
  z-index: 10;
}
.modal-add__container {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 30px;
  gap: 20px;
  position: relative;
}
.modal-add__photo {
  width: 73px;
  height: 111px;
}
.modal-add__descr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.modal-add__descr span {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
}
.modal-add__descr span:first-child {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 12px;
}
.modal-add__descr span:nth-child(2) {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 12px;
}
.modal-add__descr span:nth-child(3) {
  color: rgba(119, 119, 119, 0.7);
  margin-bottom: 5px;
}
.modal-add__descr span:last-child {
  color: rgba(119, 119, 119, 0.7);
}
.modal-add__close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 21px;
  right: 21px;
  width: 40px;
  height: 40px;
}
.modal-add__close::after {
  content: "";
  display: flex;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.39996' y='3.05176e-05' width='17.8191' height='1.9799' transform='rotate(45 1.39996 3.05176e-05)' fill='%23333333'/%3E%3Crect x='0.00012207' y='12.6' width='17.8191' height='1.9799' transform='rotate(-45 0.00012207 12.6)' fill='%23333333'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: background 0.3s ease;
}

.card-modal_active {
  visibility: visible;
  z-index: 2;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.8, 0, 0.8, 1);
}

@media (max-width: 1000px) {
  .table-modal__container {
    min-width: 100%;
    height: 100%;
    padding: 0px 20px;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .table-modal__container > p {
    display: block;
  }
  .table-modal table {
    width: 100%;
    height: 271px;
  }
  .table-modal tbody {
    width: 884px;
    height: 258px;
  }
  .table-modal .card-modal__header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 61px;
    margin-bottom: 25px;
  }
  .table-modal .card-modal__header::after {
    position: absolute;
    content: "";
    top: 60px;
    left: -15px;
    width: 100vw;
    height: 1px;
    background-color: rgba(51, 51, 51, 0.1);
  }
  .table-modal .card-modal__header > p {
    display: none;
  }
  .table-modal .card-modal__logo {
    display: flex;
    width: 74px;
    height: 36px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .table-modal .card-modal__close {
    position: relative;
    display: flex;
    top: 0;
    right: 0;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .table-modal .card-modal__close > span:first-child {
    display: flex;
    margin-right: 13px;
    font-weight: 400;
    font-size: 11px;
    line-height: 140%;
    text-align: right;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
  }
  .table-modal .card-modal__close > span:last-child {
    display: flex;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.39996' y='3.05176e-05' width='17.8191' height='1.9799' transform='rotate(45 1.39996 3.05176e-05)' fill='%23333333'/%3E%3Crect x='0.00012207' y='12.6' width='17.8191' height='1.9799' transform='rotate(-45 0.00012207 12.6)' fill='%23333333'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}
@media (max-width: 750px) {
  .card-modal__container {
    min-width: 100%;
    height: 100%;
    padding: 0 15px;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .card-modal__container > p {
    display: block;
    margin-left: 20px;
  }
  .card-modal__header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 61px;
    margin-bottom: 25px;
  }
  .card-modal__header::after {
    position: absolute;
    content: "";
    top: 60px;
    left: -15px;
    width: 100vw;
    height: 1px;
    background-color: rgba(51, 51, 51, 0.1);
  }
  .card-modal__header > p {
    display: none;
  }
  .card-modal__logo {
    display: flex;
    width: 74px;
    height: 36px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .card-modal__close {
    position: relative;
    display: flex;
    top: 0;
    right: 0;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .card-modal__close > span:first-child {
    display: flex;
    margin-right: 13px;
    font-weight: 400;
    font-size: 11px;
    line-height: 140%;
    text-align: right;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
  }
  .card-modal__close > span:last-child {
    display: flex;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.39996' y='3.05176e-05' width='17.8191' height='1.9799' transform='rotate(45 1.39996 3.05176e-05)' fill='%23333333'/%3E%3Crect x='0.00012207' y='12.6' width='17.8191' height='1.9799' transform='rotate(-45 0.00012207 12.6)' fill='%23333333'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .card-modal__btns {
    flex-direction: column;
    height: auto;
    gap: 15px;
    padding: 0 20px;
  }
  .card-modal__btns > * {
    height: 52px;
  }
  .card-modal__product {
    margin-bottom: 30px;
    gap: 20px;
    padding: 0 20px;
  }
  .card-modal__btn {
    max-width: 100%;
  }
  .table-modal__container {
    padding: 0px 15px;
  }
  .modal-add {
    top: 15px;
    width: 90vw;
    max-width: 360px;
  }
  .modal-add__container {
    padding: 20px;
  }
  .modal-add__close {
    top: 10px;
    right: 10px;
  }
  .modal-add_active {
    right: 15px;
  }
}
@media (min-width: 1000px) {
  .card-modal__btn:first-child:hover {
    background: #b0976e;
    border-color: #b0976e;
    color: #ffffff;
  }
  .card-modal__btn:last-child:hover {
    background: #927d54;
    border-color: #927d54;
  }
  .card-modal__close:hover > span:last-child {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.39996' y='3.05176e-05' width='17.8191' height='1.9799' transform='rotate(45 1.39996 3.05176e-05)' fill='%23d83244'/%3E%3Crect x='0.00012207' y='12.6' width='17.8191' height='1.9799' transform='rotate(-45 0.00012207 12.6)' fill='%23d83244'/%3E%3C/svg%3E%0A");
  }
  .modal-add__close:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.39996' y='3.05176e-05' width='17.8191' height='1.9799' transform='rotate(45 1.39996 3.05176e-05)' fill='%23d83244'/%3E%3Crect x='0.00012207' y='12.6' width='17.8191' height='1.9799' transform='rotate(-45 0.00012207 12.6)' fill='%23d83244'/%3E%3C/svg%3E%0A");
  }
}
.card-modal__btn:last-child:active {
  background: #77623a;
  border-color: #77623a;
}

.cart-header {
  width: 100%;
  height: 91px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}
.cart-header__wrapper {
  display: grid;
  grid-template-columns: 1fr 92px 1fr;
  align-items: center;
  width: 100%;
  height: 100%;
}
.cart-header__wrapper > a {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #333333;
  transition: color 0.3s ease;
}
.cart-header__wrapper > a:first-child::after {
  position: absolute;
  content: "";
  top: 11px;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='9' viewBox='0 0 21 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.646446 4.14645C0.451185 4.34171 0.451185 4.65829 0.646446 4.85355L3.82843 8.03553C4.02369 8.2308 4.34027 8.2308 4.53553 8.03553C4.7308 7.84027 4.7308 7.52369 4.53553 7.32843L1.70711 4.5L4.53553 1.67157C4.7308 1.47631 4.7308 1.15973 4.53553 0.964466C4.34027 0.769204 4.02369 0.769204 3.82843 0.964466L0.646446 4.14645ZM21 4L1 4V5L21 5V4Z' fill='%23333333'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 4px;
  width: 20px;
  transition: background 0.3s ease;
}
.cart-header__wrapper > a:first-child > span {
  display: flex;
  margin-left: 35px;
}
.cart-header__wrapper > a:last-child {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  justify-self: end;
}
.cart-header__logo {
  width: 92px;
  height: 45px;
  margin: 0 auto;
}
.cart-header__logo > svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.container-reg {
  max-width: 1400px;
}

.cart h1 {
  font-weight: 400;
  font-size: 50px;
  line-height: 120%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
  margin-top: 70px;
}
.cart h2 {
  font-weight: 400;
  font-size: 35px;
  line-height: 120%;
  color: #333333;
  margin-top: 30px;
}
.cart .order__descr-btn {
  margin-top: 25px;
  margin-bottom: 0;
}

.order {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin-top: 50px;
  margin-bottom: 90px;
}
.order__cards {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  flex-grow: 1;
  margin-right: 100px;
}
.order__cards-list {
  display: flex;
  flex-direction: column;
}
.order__descr {
  display: flex;
  flex-direction: column;
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
  right: 0;
  max-width: 400px;
  width: 100%;
  background-color: #f5f5f5;
  padding: 30px;
  padding-bottom: 40px;
  flex-shrink: 0;
}
.order__descr > *:first-child {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-size: 35px;
  line-height: 120%;
  margin-bottom: 25px;
}
.order__descr-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
}
.order__descr-wrapper::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.1);
}
.order__descr-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 8px;
}
.order__descr-inner > * {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #333333;
}
.order__descr-inner > *:last-child {
  flex-shrink: 0;
}
.order__descr-total {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
}
.order__descr-total > * {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: #333333;
}
.order__descr-total > *:last-child {
  font-size: 24px;
  flex-shrink: 0;
}
.order__descr-total > *:last-child > * {
  color: rgba(51, 51, 51, 0.5);
}
.order__descr-btn {
  margin-bottom: 25px;
}
.order__descr > p {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: rgba(51, 51, 51, 0.7);
  margin-top: 25px;
}

.order-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.order-card::after {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.1);
}
.order-card__product {
  display: flex;
}
.order-card__photo {
  width: 106px;
  height: 160px;
  margin-right: 20px;
  flex-shrink: 0;
}
.order-card__photo > img {
  width: 100%;
  height: 100%;
}
.order-card__descr {
  display: flex;
  flex-direction: column;
  max-width: 250px;
}
.order-card__descr > * {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #333333;
}
.order-card__descr > *:nth-child(2), .order-card__descr > *:nth-child(3) {
  color: rgba(119, 119, 119, 0.7);
}
.order-card__descr > *:first-child {
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.order-card__descr > *:nth-child(2) {
  margin-bottom: 5px;
}
.order-card__descr > *:nth-child(3) {
  margin-bottom: 15px;
}
.order-card__btn {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: end;
  width: 86px;
  height: 40px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #333333;
  transition: all 0.3s ease;
}
.order-card__btn::after {
  position: absolute;
  content: "";
  top: 15px;
  left: 0;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5 4.28568L0.714358 0L7.77904e-05 0.714285L4.28572 4.99996L0 9.28571L0.71428 10L5 5.71425L9.28572 9.99999L10 9.28571L5.71428 4.99996L9.99992 0.714291L9.28564 5.90056e-06L5 4.28568Z' fill='%23333333'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all 0.3s ease;
}
.order-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.order-card__inner > *:first-child {
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: rgba(119, 119, 119, 0.7);
}
.order-card__count {
  display: flex;
  height: 40px;
  align-items: center;
  margin-top: 17px;
}
.order-card__count > label {
  display: flex;
  position: relative;
  width: 50px;
  height: 100%;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 4px;
  cursor: default;
}
.order-card__count > label > input {
  position: absolute;
  width: 100%;
  height: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
  cursor: default;
}
.order-card__count > button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.order-card__count > button > span {
  position: relative;
  width: 1px;
  height: 9px;
  background: #333333;
  transform: rotate(90deg);
}
.order-card__count > button:last-child > span::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 1px;
  height: 9px;
  background: #333333;
  transform: rotate(90deg);
}
.order-card__price {
  display: flex;
  flex-direction: column;
  margin-top: 23px;
}
.order-card__price > * {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: right;
  letter-spacing: 0.03em;
  color: #d83244;
}
.order-card__price > *:last-child {
  display: none;
}
.order-card__wrapper {
  display: flex;
  gap: 100px;
}
.order-card__wrapper-opt {
  display: flex;
  align-items: center;
}
.order-card__wrapper-opt .order-card__price > *:last-child {
  display: block;
}

.price-disc {
  margin-top: 15px;
}
.price-disc > *:last-child {
  display: flex;
  color: rgba(119, 119, 119, 0.7);
  text-decoration: line-through;
  -webkit-text-decoration-color: #d83244;
          text-decoration-color: #d83244;
  margin-top: 5px;
}

.promo-disc {
  display: flex;
  text-align: center;
  justify-content: flex-start;
}
.promo-disc__group {
  position: relative;
  width: 260px;
  height: 52px;
  margin-right: 12px;
}
.promo-disc__group > input {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  padding: 0px 20px;
  padding-top: 15px;
  color: #333333;
  border-radius: 4px;
  border: 1px solid rgba(51, 51, 51, 0.2);
  transition: border 0.4s ease;
}
.promo-disc__group > input:not(:-moz-placeholder-shown) ~ label {
  top: 5px;
  left: 20px;
  font-size: 12px;
  line-height: 120%;
  color: #928c8c;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.promo-disc__group > input:not(:-ms-input-placeholder) ~ label {
  top: 5px;
  left: 20px;
  font-size: 12px;
  line-height: 120%;
  color: #928c8c;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.promo-disc__group > input:focus ~ label, .promo-disc__group > input:not(:placeholder-shown) ~ label {
  top: 5px;
  left: 20px;
  font-size: 12px;
  line-height: 120%;
  color: #928c8c;
  transition: all 0.3s ease;
}
.promo-disc__group > input:not(:-moz-placeholder-shown) {
  background-color: #ffffff;
  -moz-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.promo-disc__group > input:not(:-ms-input-placeholder) {
  background-color: #ffffff;
  -ms-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.promo-disc__group > input:focus, .promo-disc__group > input:not(:placeholder-shown) {
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}
.promo-disc__group > input:focus {
  border: 1px solid rgba(51, 51, 51, 0.6);
}
.promo-disc__group > label {
  position: absolute;
  top: 13px;
  left: 16px;
  pointer-events: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #333333;
  transition: all 0.3s ease;
}
.promo-disc__btn {
  padding: 0px 25px;
  width: 150px;
  height: 52px;
  background: #b0976e;
  border: 1px solid #b0976e;
  border-radius: 4px;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

.modal-cart {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}
.modal-cart_active {
  visibility: visible;
  z-index: 2;
}
.modal-cart__container {
  position: relative;
  width: 458px;
  background-color: #fff;
  padding: 40px 30px;
}
.modal-cart__container > p {
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #333333;
}
.modal-cart__header {
  display: none;
  width: 100%;
  height: 60px;
  position: relative;
}
.modal-cart__close {
  position: absolute;
  top: 30px;
  right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-cart__close > span:first-child {
  display: none;
}
.modal-cart__close > span:last-child {
  display: flex;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.39996' y='3.05176e-05' width='17.8191' height='1.9799' transform='rotate(45 1.39996 3.05176e-05)' fill='%23333333'/%3E%3Crect x='0.00012207' y='12.6' width='17.8191' height='1.9799' transform='rotate(-45 0.00012207 12.6)' fill='%23333333'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: background-image 0.3s ease;
}
.modal-cart__btn {
  display: flex;
  width: 100%;
  height: 52px;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  background: #b0976e;
  border: 1px solid #b0976e;
  border-radius: 4px;
}
p.lead {
	font-size: 20px;
	line-height: 160%;
	margin: 20px 0 30px;
  }
  
  .btn-group {
	display: flex;
	justify-content: start;
	gap: 20px;
	margin-bottom: 90px;
  }
  

@media (max-width: 1501px) {
  .order__cards {
    margin-right: 30px;
  }
  .order-card__wrapper {
    gap: 50px;
  }
}
@media (max-width: 1350px) {
  .order-card__wrapper {
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  .cart-header__logo {
    margin: 0 auto;
  }
  .order {
    flex-direction: column;
    align-items: stretch;
  }
  .order__descr {
    width: 100%;
    max-width: 100%;
  }
  .order__cards {
    margin: 0;
  }
  .order-card__inner:not(:last-child) {
    margin: 0;
  }
  .order-card__wrapper {
    gap: 50px;
  }
  .promo-disc {
    margin-bottom: 35px;
    align-self: center;
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .cart h1 {
    margin-top: 40px;
  }
  .order {
    margin-bottom: 70px;
  }
  .promo-disc {
    margin-bottom: 30px;
  }
}
@media (max-width: 750px) {
  .cart h1 {
    text-align: center;
    font-size: 25px;
    line-height: 33px;
    margin-top: 20px;
  }
  .cart h2 {
    display: none;
  }
  .cart_empty h1 {
    text-align: left;
  }
  .cart_empty h2 {
    display: block;
    font-size: 24px;
  }
  .btn-group {
    flex-direction: column;
    align-items: start;
    margin-bottom: 50px;
  }
  .cart-header {
    height: 62px;
  }
  .cart-header__logo {
    width: 74px;
    height: 36px;
    top: 15px;
  }
  .cart-header__wrapper > a:first-child {
    width: 20px;
    height: 20px;
    margin-bottom: 10px;
  }
  .cart-header__wrapper > a:first-child span {
    display: none;
  }
  .cart-header__wrapper > a:last-child {
    display: none;
  }
  .order {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .order__descr {
    padding: 30px 20px;
  }
  .order__descr > *:first-child {
    font-size: 25px;
    margin-bottom: 30px;
  }
  .order__descr-inner {
    margin-bottom: 10px;
  }
  .order__descr-inner:last-child {
    margin-bottom: 20px;
  }
  .order__descr-total > * {
    font-size: 16px;
  }
  .order__descr-total > *:last-child {
    font-size: 20px;
  }
  .order__descr-btn {
    margin-bottom: 20px;
  }
  .order-card {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
  }
  .order-card__wrapper {
    margin: 0;
    max-width: 100%;
    gap: 0px;
    justify-content: space-between;
    width: 100%;
  }
  .order-card__photo {
    height: 160px;
  }
  .order-card__descr {
    max-width: inherit;
  }
  .promo-disc__group {
    margin: 0;
    width: 100%;
  }
  .promo-disc__btn {
    position: relative;
    border-radius: 0px 4px 4px 0px;
    width: 52px;
    left: -4px;
  }
  .promo-disc__btn::after {
    position: absolute;
    content: "";
    top: 24px;
    left: 16px;
    width: 20px;
    height: 4px;
    background-image: url("data:image/svg+xml,%3Csvg width='21' height='9' viewBox='0 0 21 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.646446 4.14645C0.451185 4.34171 0.451185 4.65829 0.646446 4.85355L3.82843 8.03553C4.02369 8.2308 4.34027 8.2308 4.53553 8.03553C4.7308 7.84027 4.7308 7.52369 4.53553 7.32843L1.70711 4.5L4.53553 1.67157C4.7308 1.47631 4.7308 1.15973 4.53553 0.964466C4.34027 0.769204 4.02369 0.769204 3.82843 0.964466L0.646446 4.14645ZM21 4L1 4V5L21 5V4Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotate(180deg);
  }
  .promo-disc__btn > span {
    display: none;
  }
}
.order-opt {
  margin: 0;
  margin-top: 20px;
  margin-bottom: 90px;
}
.order-opt__titles {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 15px;
}
.order-opt__titles > span {
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  text-align: right;
  color: rgba(119, 119, 119, 0.7);
}
.order-opt__titles > span:first-child {
  margin-right: auto;
}
.order-opt__titles > span:nth-child(2) {
  margin-right: 180px;
}
.order-opt__titles > span:last-child {
  margin-left: 185px;
  margin-right: 200px;
}
.order-opt .offer__button {
  margin-top: 47px;
  width: 100%;
  max-width: 344px;
}
.order-opt .count-page {
  margin: 0;
  margin-top: 30px;
}
.order-opt .order__descr {
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
  margin-top: 30px;
}

.order-card-opt {
  margin: 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  padding: 15px 0px;
}
.order-card-opt:first-child {
  border-top: 1px solid rgba(51, 51, 51, 0.1);
}
.order-card-opt::after {
  display: none;
}
.order-card-opt .order-card__photo {
  width: 43px;
  height: 65px;
  margin-right: 15px;
}
.order-card-opt .order-card__descr > * {
  margin: 0;
}
.order-card-opt .order-card__descr > *:nth-child(2) {
  margin-bottom: 2px;
  margin-top: 7px;
}
.order-card-opt .order-card__descr > *:not(:first-child) {
  font-size: 14px;
}
.order-card-opt .order-card__product {
  align-items: center;
  margin: 0;
  margin-right: auto;
}
.order-card-opt .order-card__product > .order-card__btn {
  display: none;
}
.order-card-opt .order-card__inner {
  margin: 0;
  height: 100%;
  align-items: center;
  flex-direction: row;
}
.order-card-opt .order-card__count {
  margin: 0;
  margin-left: 120px;
}
.order-card-opt .order-card__count > label {
  width: 60px;
}
.order-card-opt .order-card__price {
  margin: 0;
}
.order-card-opt .order-card__price:last-child {
  margin-left: 127px;
}
.order-card-opt .order-card__btn {
  width: 83px;
  margin: auto 0px;
  margin-left: 120px;
}
.order-card-opt .order-card__btn::after {
  left: 4px;
}

@media (max-width: 1650px) {
  .cart-header__wrapper > a:last-child {
    margin-right: 0;
  }
  .order-opt__titles > span:last-child {
    margin-left: 108px;
    margin-right: 115px;
  }
  .order-opt__titles > span:nth-child(2) {
    margin-right: 110px;
  }
  .order-card-opt .order-card__btn {
    margin-left: 35px;
  }
  .order-card-opt .order-card__price:last-child {
    margin-left: 50px;
  }
  .order-card-opt .order-card__count {
    margin-left: 50px;
  }
}
@media (max-width: 1300px) {
  .order-opt {
    flex-direction: column;
  }
  .order-opt .order__descr {
    margin-top: 50px;
    max-width: 100%;
    position: relative;
    top: 0;
    left: 0;
  }
  .order-opt .order__cards {
    margin: 0;
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .order-opt {
    margin-bottom: 70px;
  }
  .order-opt__titles > span:nth-child(2) {
    margin-right: 85px;
  }
  .order-opt__titles > span:last-child {
    margin-left: 95px;
  }
  .order-opt .offer__button {
    display: flex;
  }
  .order-opt .order-card__btn {
    margin-left: 30px;
  }
  .order-opt .order-card__price:last-child {
    margin: 0;
  }
  .order-opt .order-card__count {
    margin-left: 30px;
    margin-right: 40px;
  }
  .order-card-opt .order-card__descr {
    max-width: 180px;
  }
}
@media (max-width: 750px) {
  .order-opt {
    margin-bottom: 50px;
  }
  .order-opt__titles {
    display: none;
  }
  .order-opt .order-card__product {
    margin: 0;
  }
  .order-opt .order-card__product .order-card__btn {
    display: flex;
    margin-left: auto;
    flex-shrink: 0;
  }
  .order-opt .order-card__count {
    margin: 0px 10px;
  }
  .order-card-opt {
    flex-direction: column;
    gap: 25px;
    align-items: stretch;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
    padding-top: 0;
    padding-bottom: 25px;
  }
  .order-card-opt:not(:last-child) {
    margin-bottom: 25px;
  }
  .order-card-opt:first-child {
    border-top: none;
  }
  .order-card-opt .order-card__btn {
    display: none;
  }
  .order-card__wrapper-opt {
    justify-content: space-between;
  }
  .modal-cart__container {
    width: 100%;
    height: 100%;
    padding: 0 15px;
  }
  .modal-cart__container > p {
    text-align: center;
  }
  .modal-cart__container > .modal-cart__close {
    display: none;
  }
  .modal-cart__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 61px;
    position: relative;
    margin-bottom: 25px;
  }
  .modal-cart__header::after {
    position: fixed;
    content: "";
    top: 60px;
    left: 0;
    width: 100vw;
    height: 1px;
    background-color: rgba(51, 51, 51, 0.1);
  }
  .modal-cart__logo {
    display: flex;
    width: 74px;
    height: 36px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .modal-cart__close {
    position: relative;
    display: flex;
    top: 0;
    right: 0;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal-cart__close > span:first-child {
    display: flex;
    margin-right: 13px;
    font-weight: 400;
    font-size: 11px;
    line-height: 140%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
  }
  .modal-cart__close > span:last-child {
    display: flex;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.39996' y='3.05176e-05' width='17.8191' height='1.9799' transform='rotate(45 1.39996 3.05176e-05)' fill='%23333333'/%3E%3Crect x='0.00012207' y='12.6' width='17.8191' height='1.9799' transform='rotate(-45 0.00012207 12.6)' fill='%23333333'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .modal-cart__btn {
    max-width: 320px;
    margin: 0 auto;
  }
}
@media (min-width: 1000px) {
  .order-card__btn:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5 4.28568L0.714358 0L7.77904e-05 0.714285L4.28572 4.99996L0 9.28571L0.71428 10L5 5.71425L9.28572 9.99999L10 9.28571L5.71428 4.99996L9.99992 0.714291L9.28564 5.90056e-06L5 4.28568Z' fill='%23d83244'/%3E%3C/svg%3E%0A");
  }
  .modal-cart__close:hover > span:last-child {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.39996' y='3.05176e-05' width='17.8191' height='1.9799' transform='rotate(45 1.39996 3.05176e-05)' fill='%23d83244'/%3E%3Crect x='0.00012207' y='12.6' width='17.8191' height='1.9799' transform='rotate(-45 0.00012207 12.6)' fill='%23d83244'/%3E%3C/svg%3E%0A");
  }
  .cart-header__wrapper > a:hover {
    color: #b0976e;
  }
  .cart-header__wrapper > a:first-child:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg width='21' height='9' viewBox='0 0 21 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.646446 4.14645C0.451185 4.34171 0.451185 4.65829 0.646446 4.85355L3.82843 8.03553C4.02369 8.2308 4.34027 8.2308 4.53553 8.03553C4.7308 7.84027 4.7308 7.52369 4.53553 7.32843L1.70711 4.5L4.53553 1.67157C4.7308 1.47631 4.7308 1.15973 4.53553 0.964466C4.34027 0.769204 4.02369 0.769204 3.82843 0.964466L0.646446 4.14645ZM21 4L1 4V5L21 5V4Z' fill='%23b0976e'/%3E%3C/svg%3E%0A");
  }
}
.order-reg {
  margin-top: 70px;
}
.order-reg h1 {
  font-weight: 400;
  font-size: 50px;
  line-height: 120%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 35px;
}
.order-reg h2 {
  font-weight: 400;
  font-size: 35px;
  line-height: 120%;
  color: #333333;
}
.order-reg .order__descr {
  max-width: 400px;
}

.login {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 90px;
}
.login__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.login__wrapper > a, .login__wrapper > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  transition: all 0.3s ease;
}
.login__wrapper > a {
  color: #333333;
  border-bottom: 1px solid rgba(176, 151, 110, 0.5);
  margin-top: 20px;
}
.login__wrapper > a:active {
  border-color: transparent;
}
.login__wrapper > p {
  color: #928c8c;
}
.login__wrapper > p > a {
  color: #333333;
  border-bottom: 1px solid rgba(176, 151, 110, 0.5);
}
.login__wrapper > p > a:active {
  border-color: transparent;
}
.login__wrapper .order-form {
  margin-top: 0px;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-top: 35px;
}
.order-form__inner {
  width: 500px;
  height: 62px;
  position: relative;
}
.order-form__inner input,
.order-form__inner textarea {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f5f5f5;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #333333;
  padding: 31px 35px 12px 20px;
  transition: background-color 0.3s ease;
  resize: none;
}
.order-form__inner input:-webkit-autofill, .order-form__inner input:-webkit-autofill:hover, .order-form__inner input:-webkit-autofill:focus,
.order-form__inner textarea:-webkit-autofill,
.order-form__inner textarea:-webkit-autofill:hover,
.order-form__inner textarea:-webkit-autofill:focus {
  border: 1px solid gainsboro;
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-transition: border 5000s ease-in-out 0s;
  transition: border 5000s ease-in-out 0s;
}
.order-form__inner input::-moz-placeholder, .order-form__inner textarea::-moz-placeholder {
  color: transparent;
}
.order-form__inner input:-ms-input-placeholder, .order-form__inner textarea:-ms-input-placeholder {
  color: transparent;
}
.order-form__inner input::placeholder,
.order-form__inner textarea::placeholder {
  color: transparent;
}
.order-form__inner input:focus::-moz-placeholder, .order-form__inner textarea:focus::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
}
.order-form__inner input:focus:-ms-input-placeholder, .order-form__inner textarea:focus:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}
.order-form__inner input:focus::placeholder,
.order-form__inner textarea:focus::placeholder {
  color: rgba(51, 51, 51, 0.5);
}
.order-form__inner input:not(:-moz-placeholder-shown) ~ label, .order-form__inner textarea:not(:-moz-placeholder-shown) ~ label {
  top: 10px;
  font-size: 12px;
  line-height: 120%;
  color: #928c8c;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.order-form__inner input:not(:-ms-input-placeholder) ~ label, .order-form__inner textarea:not(:-ms-input-placeholder) ~ label {
  top: 10px;
  font-size: 12px;
  line-height: 120%;
  color: #928c8c;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.order-form__inner input:focus ~ label,
.order-form__inner input:not(:placeholder-shown) ~ label,
.order-form__inner textarea:focus ~ label,
.order-form__inner textarea:not(:placeholder-shown) ~ label {
  top: 10px;
  font-size: 12px;
  line-height: 120%;
  color: #928c8c;
  transition: all 0.3s ease;
}
.order-form__inner input:not(:-moz-placeholder-shown), .order-form__inner textarea:not(:-moz-placeholder-shown) {
  background-color: #ffffff;
  -moz-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.order-form__inner input:not(:-ms-input-placeholder), .order-form__inner textarea:not(:-ms-input-placeholder) {
  background-color: #ffffff;
  -ms-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.order-form__inner input:focus,
.order-form__inner input:not(:placeholder-shown),
.order-form__inner textarea:focus,
.order-form__inner textarea:not(:placeholder-shown) {
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}

.order-form__inner label {
  position: absolute;
  top: 21px;
  left: 20px;
  pointer-events: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #333333;
  transition: all 0.3s ease;
}
.order-form__inner label > span {
  color: rgb(176, 151, 110);
}
.order-form__error {
  display: none;
  opacity: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  color: #d83244;
  margin-top: 8px;
  transition: all 0.3s ease;
}
.order-form__descr {
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  color: #928c8c;
  margin-top: 8px;
}
.order-form__deliveryInfo {
  margin-top: 15px;
}
.order-form__deliveryInfo > p {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #333333;
}
.order-form__deliveryList {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0px 10px 30px;
}
.order-form__deliveryList > li {
  list-style: disc;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #333333;
}
.order-form__deliveryList > li > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  font-size: 14px;
  line-height: 140%;
  color: rgba(51, 51, 51, 0.6);
}
.order-form__delivery {
  margin-top: 22px;
}
.order-form__delivery-group {
  display: flex;
}
.order-form__delivery-group:not(:last-child) {
  margin-bottom: 40px;
}
.order-form__delivery-group:last-child {
  margin-bottom: 10px;
}
.order-form__delivery-group label {
  display: flex;
  position: relative;
  align-items: center;
  gap: 20px;
  margin-right: 16px;
  height: 45px;
  cursor: pointer;
}
.order-form__delivery-img {
  width: 94px;
  height: 45px;
  flex-shrink: 0;
}
.order-form__delivery-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.order-form__delivery-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #333333;
  margin-bottom: 2px;
}
.order-form__delivery-title > span {
  font-weight: 400;
}
.order-form__delivery-price {
  display: flex;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: rgba(51, 51, 51, 0.6);
  margin-bottom: 20px;
}
.order-form__delivery-price b {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  /* or 22px */
  color: #333333;
}
.order-form__delivery-price div:first-child {
  margin-right: 16px;
}
.order-form__delivery-inner > p {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #333333;
}
.order-form__delivery-inner > p:not(:last-child) {
  margin-bottom: 15px;
}
.order-form__delivery .delivery-alert {
  margin-top: 5px;
  color: #d83244;
}
.order-form__delivery-btn {
  display: flex;
  align-items: center;
  padding: 0px 20px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #b0976e;
  border-radius: 4px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #b0976e;
  margin-top: 25px;
  transition: all 0.3s ease;
}
.order-form__delivery-btn:active {
  background: #927d54;
  border: 1px solid #927d54;
  color: #ffffff;
  transition: all 0.3s ease;
}
.order-form__pay-img {
  width: 94px;
  height: 45px;
  flex-shrink: 0;
}
.order-form__pay-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.label-inner {
  position: relative;
  width: 20px;
  height: 20px;
}
.label-inner > input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.label-inner > input:checked + span::after {
  background-color: #b0976e;
  border-color: #b0976e;
}
.label-inner > span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.label-inner > span::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border: 1px solid #bbbbbb;
  border-radius: 50px;
}
.label-inner > span::before {
  position: absolute;
  content: "";
  top: 7px;
  left: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50px;
  background-color: #ffffff;
}

.required_active .order-form__error {
  display: block;
  opacity: 1;
  transition: all 0.3s ease;
}
.required_active .order-form__inner input {
  background-color: #ffffff;
  border-color: rgba(216, 50, 68, 0.5);
  transition: all 0.3s ease;
}
.required_active .order-form__inner label {
  top: 10px;
  font-size: 12px;
  line-height: 120%;
  color: #928c8c;
  transition: all 0.3s ease;
}

.footer-order .footer__contacts {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.orderReg {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-bottom: 90px;
  align-items: flex-start;
  gap: 30px;
}
.orderReg__title {
  display: flex;
  gap: 15px;
  font-family: "Playfair Display", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 35px;
  line-height: 120%;
  color: #333333;
  margin-bottom: 30px;
}
.orderReg__num {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50px;
  background: #b0976e;
  color: #ffffff;
}
.orderReg__num > span {
  position: absolute;
  display: block;
  content: "";
  top: -4px;
  left: 17px;
}
.orderReg__inner {
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  margin-bottom: 30px;
}
.orderReg__inner .order-form {
  margin-left: 65px;
}
.orderReg__inner .order-form__btn {
  margin-bottom: 40px;
}
.orderReg__inner:first-child .orderReg__num > span {
  top: -2px;
  left: 18px;
}
.orderReg__inner:nth-child(2) .orderReg__num > span {
  left: 16px;
  top: -2px;
}
.orderReg__inner:last-child .orderReg__num > span {
  left: 18px;
  top: -5px;
}
.orderReg__pay-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 65px;
  margin-top: 35px;
}
.orderReg__pay-group {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.orderReg__pay-group label {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.orderReg__pay-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}
.orderReg__pay-info > p {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  /* or 22px */
  color: #333333;
}
.orderReg__pay-info > span {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: rgba(51, 51, 51, 0.6);
}
.orderReg__final {
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  margin-bottom: 40px;
}
.orderReg__final h2 {
  font-weight: 400;
  font-size: 35px;
  line-height: 120%;
  color: #333333;
  margin-bottom: 40px;
}
.orderReg__final p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #333333;
}
.orderReg__final p:not(:last-child) {
  margin-bottom: 20px;
}
.orderReg__final p:last-child {
  margin-bottom: 40px;
}
.orderReg__final p > span {
  font-weight: 700;
}
.orderReg__final p > a {
  color: #333333;
  border-bottom: 1px solid rgba(176, 151, 110, 0.5);
  transition: all 0.3s ease;
}

.form-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 65px;
  margin-top: 35px;
}
.form-data__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-data__row {
  display: flex;
}
.form-data__row > span {
  font-size: 16px;
  line-height: 140%;
  color: #333333;
}
.form-data__row > span:first-child {
  text-transform: uppercase;
  font-weight: 700;
}
.form-data__row > span:last-child {
  font-weight: 400;
}
.form-data__row .fullName {
  margin-left: 58px;
}
.form-data__row .dataTel {
  margin-left: 20px;
  color: #333333;
  text-decoration: none;
}
.form-data__row .dataTel a {
  color: #333333;
  text-decoration: none;
}
.form-data__row .dataEmail {
  margin-left: 48px;
}
.form-data__btn {
  margin-top: 30px;
  margin-bottom: 40px;
}

.groupDelivery {
  width: 100%;
}
.groupDelivery .order-form__inner {
  width: 100%;
}

.groupNote {
  width: 100%;
}
.groupNote .order-form__inner {
  width: 100%;
  height: 140px;
}
.groupNote .order-form__inner > textarea {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 4px;
  resize: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  padding: 20px;
  padding-top: 25px;
  color: #333333;
  outline: none;
}
.groupNote .order-form__inner > textarea:focus {
  outline: none;
}
.groupNote .order-form__inner > textarea:not(:-moz-placeholder-shown) ~ label {
  top: 8px;
  font-size: 12px;
  line-height: 120%;
  color: #928c8c;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.groupNote .order-form__inner > textarea:not(:-ms-input-placeholder) ~ label {
  top: 8px;
  font-size: 12px;
  line-height: 120%;
  color: #928c8c;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.groupNote .order-form__inner > textarea:focus ~ label, .groupNote .order-form__inner > textarea:not(:placeholder-shown) ~ label {
  top: 8px;
  font-size: 12px;
  line-height: 120%;
  color: #928c8c;
  transition: all 0.3s ease;
}
.groupNote .order-form__inner > textarea:not(:-moz-placeholder-shown) {
  background-color: #ffffff;
  -moz-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.groupNote .order-form__inner > textarea:not(:-ms-input-placeholder) {
  background-color: #ffffff;
  -ms-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.groupNote .order-form__inner > textarea:focus, .groupNote .order-form__inner > textarea:not(:placeholder-shown) {
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}

.change-delivery {
  margin-top: 10px;
  margin-bottom: 40px;
}

.order__descr-opt {
  padding: 30px;
  padding-bottom: 40px;
}
.order__descr-opt .order__descr-total {
  margin-bottom: 0;
}

.orderReg-final-opt .order__descr-wrapper {
  margin-bottom: 0;
}
.orderReg-final-opt .order__descr-wrapper::after {
  display: none;
}
.orderReg-final-opt .order__descr-inner {
  margin-bottom: 0;
}
.orderReg-final-opt .orderReg__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.orderReg-final-opt .orderReg__final {
  border-bottom: none;
  margin-bottom: 0;
}

.pay {
  margin-left: 0;
}

.ship .order-form__delivery-img {
  margin-right: 16px;
}
.ship .order-form__delivery {
  margin-top: 0;
}

@media (max-width: 1200px) {
  .orderReg__inner .order-form {
    margin-left: 0px;
  }
  .orderReg__pay-wrapper {
    margin-left: 0;
  }
  .form-data {
    margin-left: 0;
  }
}
@media (max-width: 1000px) {
  .order-reg {
    margin-top: 40px;
  }
  .order-reg .order__descr {
    width: 100%;
    max-width: 100%;
    align-self: flex-start;
  }
  .login {
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 70px;
  }
  .login__wrapper {
    margin-bottom: 30px;
  }
  .login__wrapper > a {
    margin-top: 10px;
  }
  .login .order__descr {
    align-self: flex-start;
    width: 100%;
  }
  .order-form {
    width: 100%;
  }
  .order-form__group {
    width: 100%;
  }
  .order-form__inner {
    width: 100%;
  }
  .order-form__delivery-btn {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .orderReg {
    flex-direction: column;
    gap: 0px;
    margin-bottom: 70px;
  }
  .orderReg__wrapper {
    width: 100%;
  }
  .orderReg__inner:last-child {
    margin-bottom: 30px;
  }
  .orderReg__inner .order-form {
    margin-left: 0px;
  }
  .form-data {
    margin-left: 0;
  }
  .orderReg-final-opt {
    gap: 25px;
    margin-bottom: 50px;
  }
}
@media (max-width: 750px) {
  .order-reg {
    margin-top: 20px;
  }
  .order-reg h1 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .order-reg h2 {
    font-size: 23px;
  }
  .order-reg .order__descr > p {
    margin-top: 35px;
  }
  .orderReg {
    margin-bottom: 50px;
  }
  .orderReg__title {
    font-size: 23px;
    gap: 10px;
    margin-bottom: 20px;
  }
  .orderReg__pay-wrapper {
    margin-top: 25px;
  }
  .orderReg__num {
    width: 26px;
    height: 26px;
    border-radius: 50px;
  }
  .orderReg__num > span {
    top: -4px;
    left: 8px;
  }
  .orderReg__inner {
    margin-bottom: 20px;
  }
  .orderReg__inner .order-form {
    margin-top: 25px;
  }
  .orderReg__inner .order-form__btn {
    margin-bottom: 20px;
  }
  .orderReg__inner:first-child .orderReg__num > span {
    top: -4px;
    left: 9px;
  }
  .orderReg__inner:nth-child(2) .orderReg__num > span {
    left: 8px;
    top: -4px;
  }
  .orderReg__inner:last-child .orderReg__num > span {
    left: 9px;
    top: -6px;
  }
  .orderReg__final {
    margin-bottom: 15px;
  }
  .orderReg__final p:last-child {
    margin-bottom: 20px;
  }
  .orderReg__final h2 {
    margin-bottom: 20px;
  }
  .orderReg__pay-group {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  .login {
    margin-top: 25px;
    margin-bottom: 50px;
  }
  .form-data {
    margin: 0;
    margin-top: 25px;
  }
  .form-data__wrapper {
    gap: 15px;
  }
  .form-data__btn {
    margin: 20px 0px;
  }
  .order-form__deliveryList {
    gap: 15px;
    margin: 0;
    margin-top: 15px;
    margin-left: 24px;
  }
  .order-form__deliveryList > li > div {
    margin-top: 5px;
  }
  .order-form__delivery-group:not(:last-child) {
    margin-bottom: 30px;
  }
  .order-form__delivery {
    margin-top: 0;
  }
  .order-form__delivery-group {
    flex-direction: column;
    gap: 20px;
  }
  .order-form .groupNote {
    margin-bottom: 5px;
  }
  .change-delivery {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
@media (min-width: 1000px) {
  .login__wrapper > a:hover, .login__wrapper > p > a:hover {
    border-color: transparent;
    transition: all 0.3s ease;
  }
  .orderReg__final p > a:hover {
    border-color: transparent;
    transition: all 0.3s ease;
  }
  .order-form__delivery-btn:hover {
    background: #b0976e;
    border: 1px solid #b0976e;
    border-radius: 3px;
    color: #ffffff;
    transition: all 0.3s ease;
  }
}
.registration {
  padding-top: 70px;
  padding-bottom: 90px;
}
.registration .breadcrumbs__list {
  justify-content: center;
}
.registration__form {
  display: grid;
  gap: 20px;
  justify-items: start;
  max-width: 500px;
  margin: 0 auto;
}
.registration__form .btn-2 {
  margin: 0 !important;
  max-width: inherit !important;
}
.registration__confirmation-btn {
  display: flex;
  position: relative;
  padding-left: 36px;
  cursor: pointer;
}
.registration__confirmation-btn span {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 2px;
  left: 0;
  border: 1px solid #bbbbbb;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  transition: all 0.3s ease;
}
.registration__confirmation-btn input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.registration__confirmation-btn input:checked + span {
  background-color: #b0976e;
  border-color: #b0976e;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 3.5L4.5 6.5L10 1' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
  transition: all 0.3s ease;
}
.registration__confirmation p {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.004em;
}
.registration__confirmation p a {
  color: inherit;
  border-bottom: 1px solid rgba(176, 151, 110, 0.5);
  transition: all 0.3s ease;
}
.registration .btn-2 {
  max-width: 173px;
  margin: 0 auto;
}

.recaptcha__top {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.recaptcha__img {
  width: 180px;
  height: 40px;
  margin-right: 12px;
}
.recaptcha__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.recaptcha__desc {
  font-size: 12px;
  line-height: 120%;
  letter-spacing: 0.004em;
}

.title {
  font-weight: 400;
  font-size: 50px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.title-second {
  font-size: 35px;
  line-height: 120%;
}

.title-third {
  font-size: 30px;
  line-height: 120%;
}

.desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.005em;
  color: rgba(51, 51, 51, 0.7);
  margin-bottom: 40px;
}
.desc span {
  display: block;
  margin-top: 20px;
}

.show-pass {
  position: absolute;
  content: "";
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='14' viewBox='0 0 20 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10.721C11.0553 10.721 11.9513 10.353 12.688 9.61701C13.424 8.88101 13.792 7.98501 13.792 6.92901C13.792 5.87368 13.424 4.97801 12.688 4.24201C11.9513 3.50601 11.0553 3.13801 10 3.13801C8.94467 3.13801 8.04867 3.50601 7.31201 4.24201C6.57601 4.97801 6.20801 5.87368 6.20801 6.92901C6.20801 7.98501 6.57601 8.88101 7.31201 9.61701C8.04867 10.353 8.94467 10.721 10 10.721ZM10 9.17901C9.37467 9.17901 8.84334 8.96035 8.40601 8.52301C7.96867 8.08568 7.75001 7.55435 7.75001 6.92901C7.75001 6.30435 7.96867 5.77334 8.40601 5.33601C8.84334 4.89801 9.37467 4.67901 10 4.67901C10.6253 4.67901 11.1567 4.89801 11.594 5.33601C12.0313 5.77334 12.25 6.30435 12.25 6.92901C12.25 7.55435 12.0313 8.08568 11.594 8.52301C11.1567 8.96035 10.6253 9.17901 10 9.17901ZM10 13.2C7.95867 13.2 6.10801 12.6307 4.44801 11.492C2.78801 10.3533 1.58301 8.83235 0.833008 6.92901C1.58301 5.02635 2.79134 3.51268 4.45801 2.38801C6.12467 1.26268 7.97201 0.700012 10 0.700012C12.028 0.700012 13.8753 1.26268 15.542 2.38801C17.2087 3.51268 18.417 5.02635 19.167 6.92901C18.417 8.83235 17.212 10.3533 15.552 11.492C13.892 12.6307 12.0413 13.2 10 13.2ZM10 11.45C11.5553 11.45 12.9823 11.044 14.281 10.232C15.5797 9.41934 16.5693 8.31835 17.25 6.92901C16.5693 5.54035 15.5797 4.44668 14.281 3.64801C12.9823 2.84935 11.5553 2.45001 10 2.45001C8.44467 2.45001 7.01401 2.84935 5.70801 3.64801C4.40267 4.44668 3.40967 5.54035 2.72901 6.92901C3.40967 8.31835 4.40267 9.41934 5.70801 10.232C7.01401 11.044 8.44467 11.45 10 11.45Z' fill='%23333333'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.show-pass_active {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='18' viewBox='0 0 20 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.521 9.46699L12.25 8.19599C12.3053 7.52932 12.09 6.93899 11.604 6.42499C11.118 5.91099 10.5207 5.68865 9.81201 5.75799L8.54201 4.48799C8.77801 4.39065 9.01734 4.32099 9.26001 4.27899C9.50334 4.23765 9.75001 4.21699 10 4.21699C11.0553 4.21699 11.9513 4.58499 12.688 5.32099C13.424 6.05699 13.792 6.95265 13.792 8.00799C13.792 8.28599 13.7677 8.54999 13.719 8.79999C13.6703 9.04999 13.6043 9.27232 13.521 9.46699ZM16.167 12.092L14.917 10.863C15.417 10.4737 15.8613 10.05 16.25 9.59199C16.6387 9.13332 16.972 8.60532 17.25 8.00799C16.5693 6.61932 15.5833 5.52565 14.292 4.72699C13 3.92832 11.5693 3.52899 10 3.52899C9.59734 3.52899 9.22567 3.55332 8.88501 3.60199C8.54501 3.65065 8.20834 3.72365 7.87501 3.82099L6.50001 2.44599C7.06934 2.20999 7.63867 2.03999 8.20801 1.93599C8.77734 1.83132 9.37467 1.77899 10 1.77899C12.0973 1.77899 13.969 2.35199 15.615 3.49799C17.2603 4.64399 18.4443 6.14732 19.167 8.00799C18.8477 8.82799 18.431 9.58165 17.917 10.269C17.403 10.9563 16.8197 11.564 16.167 12.092ZM16.396 17.3L12.938 13.842C12.4513 13.9947 11.965 14.1057 11.479 14.175C10.993 14.2443 10.5 14.279 10 14.279C7.88867 14.279 6.01367 13.6993 4.37501 12.54C2.73634 11.38 1.55567 9.86932 0.833008 8.00799C1.11101 7.28599 1.47234 6.61599 1.91701 5.99799C2.36101 5.37999 2.86101 4.82099 3.41701 4.32099L1.12501 2.00799L2.37501 0.799988L17.625 16.071L16.396 17.3ZM4.60401 5.50799C4.21534 5.86932 3.86134 6.25499 3.54201 6.66499C3.22201 7.07432 2.95101 7.52199 2.72901 8.00799C3.40967 9.39732 4.39601 10.4983 5.68801 11.311C6.97934 12.123 8.41667 12.529 10 12.529C10.236 12.529 10.4827 12.5187 10.74 12.498C10.9967 12.4773 11.243 12.4393 11.479 12.384L10.812 11.717C10.6873 11.7443 10.5557 11.765 10.417 11.779C10.2777 11.793 10.1387 11.8 10 11.8C8.94467 11.8 8.04867 11.432 7.31201 10.696C6.57601 9.95999 6.20801 9.06399 6.20801 8.00799C6.20801 7.86932 6.21867 7.73765 6.24001 7.61299C6.26067 7.48765 6.28467 7.35565 6.31201 7.21699L4.60401 5.50799Z' fill='%23333333'/%3E%3C/svg%3E ");
  background-position: center 12px;
}

.personal-data {
  display: flex;
}
.personal-data__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 145px;
  flex-shrink: 0;
}
.personal-data__link {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #333333;
  border-bottom: 1px solid rgba(176, 151, 110, 0.5);
  transition: all 0.2s ease;
}
.personal-data__link_active {
  color: #b0976e;
  border-color: transparent;
  pointer-events: none;
}
.personal-data__link_active-second {
  color: #b0976e;
}
.personal-data__link:not(:last-child) {
  margin-bottom: 16px;
}

.settings {
  margin-left: auto;
  width: 100%;
  max-width: 910px;
}
.settings .registration__form {
  margin: 0;
}
.settings .title {
  text-align: left;
}
.settings .breadcrumbs__list {
  justify-content: flex-start;
}

@media (max-width: 1000px) {
  .settings {
    margin-left: 0;
  }
  .registration {
    padding-top: 40px;
    padding-bottom: 70px;
  }
  .title {
    font-size: 35px;
  }
  .title-second {
    font-size: 30px;
    letter-spacing: 0.05em;
  }
  .title-third {
    font-size: 25px;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 750px) {
  .registration .breadcrumbs {
    margin-bottom: 25px;
  }
  .registration .breadcrumbs__list {
    justify-content: start;
  }
  .registration__form {
    margin: 0;
  }
  .registration .btn-2 {
    margin: 0;
  }
  .title {
    font-size: 26px;
    text-align: left;
    margin-bottom: 25px;
  }
  .title-second {
    font-size: 24px;
  }
  .title-third {
    font-size: 20px;
  }
  .desc {
    text-align: left;
    margin-bottom: 35px;
  }
}
@media (min-width: 1000px) {
  .personal-data__link:hover {
    border-color: transparent;
  }
  .registration__confirmation p a:hover {
    border-color: transparent;
  }
}
.order-history__back {
  margin-bottom: 30px;
  display: flex;
}
.order-history__back .info-arrow {
  transform: scale(-1, 1);
  margin-right: 20px;
}
.order-history__back span {
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.005em;
  color: #b0976e;
}
.order-history__wrapper {
  width: 100%;
  max-width: 910px;
  border: 1px solid #e7e7e7;
}
.order-history__group {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  padding-top: 25px;
  background-color: transparent;
  transition: background-color 0.3s ease;
  color: inherit;
}
.order-history__group span {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
}
.order-history__group:not(:last-child) {
  border-bottom: 1px solid #e7e7e7;
}
.order-history__group-start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.order-history__group-title {
  font-size: 24px;
  line-height: 120%;
  border-bottom: 1px solid rgba(176, 151, 110, 0.5);
  margin-bottom: 14px;
  transition: all 0.3s ease;
}
.order-history__group-title i {
  font-weight: 700;
}
.order-history__group-subtitle {
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  margin-bottom: 15px;
}
.order-history__group-subtitle:nth-child(2) {
  margin-top: 25px;
}
.order-history__group-status {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0.0025em;
}
.order-history__group-end {
  padding-top: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: right;
  letter-spacing: 0.005em;
}
.order-history__group-end i {
  color: rgba(51, 51, 51, 0.5);
}
.order-history__group-contact {
  display: grid;
  gap: 10px;
}
.order-history__group-contact:not(:last-child) {
  margin-bottom: 25px;
}

.count-page_second {
  margin-bottom: 0;
}
.count-page_second .offer__button {
  display: flex;
  width: 100%;
  max-width: 344px;
  margin: 0;
  margin-top: 50px;
}

.order-product {
  margin-top: 30px;
}
.order-product h2 {
  font-size: 35px;
  line-height: 120%;
  margin-bottom: 20px;
}
.order-product .order-opt__titles-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  justify-self: end;
  max-width: 400px;
  width: 100%;
}
.order-product .order-opt__titles-wrapper span {
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  text-align: right;
  color: rgba(119, 119, 119, 0.7);
}
.order-product .order-card__wrapper-opt {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  justify-self: end;
  max-width: 400px;
  width: 100%;
}
.order-product .order-card__price > * {
  color: #333333;
}
.order-product .order-card__price:last-child {
  margin: 0;
}
.order-product .order-card__count {
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  justify-content: flex-end;
}

.order-one {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  padding-top: 25px;
}
.order-one span {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #333333;
}
.order-one .order-history__group {
  width: 100%;
  padding: 0;
  border: none;
  pointer-events: none;
}
.order-one .order-form__btn {
  margin: 0;
  max-width: inherit;
  margin-top: 14px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

@media (max-width: 1000px) {
  .personal-data__nav {
    display: none;
  }
  .order-product h2 {
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .registration {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .order-history__group {
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 25px;
  }
  .order-history__group-start {
    margin-bottom: 12px;
  }
  .order-history__group-end {
    text-align: start;
  }
  .count-page_second {
    align-items: flex-start;
    gap: 25px;
  }
  .count-page_second .count-page__top {
    display: none;
  }
  .count-page_second .count-page__item {
    padding: 0 19px;
    height: 46px;
  }
  .count-page_second .offer__button {
    display: flex;
    max-width: 100%;
    margin-top: 30px;
  }
  .order-product .order-opt__titles {
    display: flex;
  }
  .order-product .order-opt__titles-wrapper {
    grid-template-columns: 1fr 1fr;
    max-width: 180px;
  }
  .order-product .order-opt__titles-wrapper span:first-child {
    display: none;
  }
  .order-product .order-card-opt {
    flex-direction: row;
    padding: 15px 0px;
    gap: 0px;
  }
  .order-product .order-card-opt:not(:last-child) {
    margin-bottom: 0;
  }
  .order-product .order-card-opt:first-child {
    border-top: 1px solid rgba(51, 51, 51, 0.1);
  }
  .order-product .order-card__wrapper-opt {
    padding-top: 25px;
    grid-template-columns: 1fr 1fr;
    max-width: 180px;
  }
  .order-product .order-card__price:first-child {
    display: none;
  }
  .order-one {
    padding: 20px 25px;
  }
}
@media (max-width: 360px) {
  .order-product .order-card__wrapper-opt,
.order-product .order-opt__titles-wrapper {
    max-width: 135px;
  }
}
@media (min-width: 1000px) {
  .order-history__group:hover {
    background-color: #f5f5f5;
  }
  .order-history__group:hover .order-history__group-title {
    border-color: transparent;
  }
  .order-one .order-form__btn:hover {
    background: #927d54;
    border-color: #927d54;
  }
}
.news {
  display: flex;
  padding-top: 70px;
  padding-bottom: 90px;
}
.news__list {
  display: grid;
  gap: 32px;
}
.news__item {
  display: flex;
  padding-bottom: 40px;
  border-bottom: 1px solid #eaeaea;
}
.news__item-img {
  flex-shrink: 0;
  width: 360px;
  height: 250px;
  margin-right: 30px;
  margin-top: 9px;
}
.news__item-desc {
  display: grid;
  gap: 20px;
}
.news__item-desc h2 {
  font-size: 27px;
  line-height: 120%;
}
.news__item-desc > span {
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0.0025em;
  color: rgba(51, 51, 51, 0.5);
}
.news__item-desc p {
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.005em;
}
.news__item-desc .info__company {
  margin-top: 0;
}
.news .order-history__back {
  margin-bottom: 0;
}

.news-one {
  padding-bottom: 30px;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 40px;
}
.news-one h3 {
  font-size: 35px;
  line-height: 120%;
  margin-bottom: 20px;
}
.news-one > span {
  display: block;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.0025em;
  color: rgba(51, 51, 51, 0.5);
  margin-bottom: 30px;
}
.news-one > p:nth-child(3) {
  font-size: 25px;
  line-height: 160%;
  margin-bottom: 30px;
}
.news-one__img {
  border: 1px solid #e6e6e6;
}
.news-one__img:nth-child(4) {
  width: 100%;
  max-width: 750px;
  max-height: 362px;
  margin-bottom: 30px;
}
.news-one__img:last-child {
  width: 100%;
  height: 100vh;
  max-height: 400px;
}
.news-one__img:last-child img {
  width: 100%;
  height: 100%;
}
.news-one__text,
.news-one li {
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.005em;
}
.news-one__text {
  display: grid;
  gap: 22px;
  margin-bottom: 30px;
}
.news-one ul {
  display: grid;
  gap: 5px;
  margin-bottom: 30px;
  padding-left: 34px;
}
.news-one ul:nth-child(9) {
  margin-bottom: 40px;
}
.news-one li {
  list-style: disc;
}

@media (max-width: 1173px) {
  .news__item {
    flex-direction: column;
  }
  .news__item-img {
    margin: 0;
    margin-bottom: 30px;
  }
  .news .offer__button {
    display: flex;
  }
}
@media (max-width: 1000px) {
  .news {
    padding-top: 40px;
    padding-bottom: 70px;
  }
  .news__list {
    gap: 35px;
  }
  .news__item {
    padding-bottom: 30px;
  }
  .news__item-img {
    margin-bottom: 25px;
  }
  .news-one {
    margin-bottom: 30px;
  }
  .news-one h3 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .news .breadcrumbs {
    margin-bottom: 25px;
  }
}
@media (max-width: 750px) {
  .news {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .news__list {
    gap: 30px;
  }
  .news__item {
    padding-bottom: 25px;
  }
  .news__item-img {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .news__item-img img {
    width: 100%;
  }
  .news__item-desc h2 {
    font-size: 23px;
  }
  .news .breadcrumbs {
    margin-bottom: 25px;
  }
  .news-one > span {
    margin-bottom: 25px;
  }
  .news-one p:nth-child(3) {
    font-size: 20px;
    margin-bottom: 25px;
  }
  .news-one__img:nth-child(4) {
    margin-bottom: 25px;
  }
  .news-one__img:last-child {
    margin-top: 25px;
  }
  .news-one__text {
    margin-bottom: 25px;
  }
  .news-one ul {
    margin-bottom: 30px;
  }
  .news-one ul:nth-child(9) {
    margin-bottom: 25px;
  }
}
.requisites__desc {
  font-size: 25px;
  line-height: 160%;
  margin-bottom: 40px;
}
.requisites__wrapper {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}
.requisites__group {
  display: grid;
  grid-template-columns: 1fr 2fr;
  line-height: 160%;
  letter-spacing: 0.005em;
  gap: 10px;
}
.requisites__group:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}
.requisites__group-title {
  font-weight: 700;
  font-size: 16px;
}
.requisites__group-desc {
  font-size: 16px;
}
.requisites__document {
  display: flex;
  padding: 40px;
  background-color: transparent;
  border: 1px solid #eaeaea;
  transition: all 0.2s ease;
  cursor: pointer;
}
.requisites__document:not(:last-child) {
  margin-bottom: 20px;
}
.requisites__document-img {
  width: 48px;
  height: 64px;
  margin-right: 20px;
  flex-shrink: 0;
}
.requisites__document-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 140%;
}
.requisites__document-desc p {
  color: #333333;
  font-size: 16px;
  letter-spacing: 0.005em;
  margin-bottom: 5px;
}
.requisites__document-desc span {
  font-size: 14px;
  letter-spacing: 0.0025em;
  color: rgba(51, 51, 51, 0.6);
}

.contacts__map {
  width: 100%;
  height: 450px;
  margin-bottom: 40px;
  border: 1px solid #EAEAEA;
}
.contacts__map img {
  width: 100%;
  height: 100%;
}
.contacts__subtitle {
  font-size: 35px;
  line-height: 120%;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
.contacts .order-form__btn {
  max-width: 155px;
}

.pay__wrapper, .pay__item, .pay__desc {
  font-size: 16px;
  line-height: 160%;
}
.pay__wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.pay__wrapper img {
  width: 166px;
  height: 73px;
  margin-right: 20px;
}
.pay__subtitle {
  margin-bottom: 20px;
  margin-top: 30px;
}
.pay__card {
  width: 266px;
  height: 37px;
  margin-bottom: 20px;
}
.pay__list {
  display: grid;
  gap: 5px;
  padding-left: 35px;
}
.pay__item {
  list-style: disc;
}
.pay__item a {
  color: #333333;
  border-bottom: 1px solid rgba(176, 151, 110, 0.5);
  transition: all 0.2s ease;
}
.pay__mail {
  width: 120px;
  height: 60px;
  margin-bottom: 20px;
}
.pay__mail-desc:last-child {
  margin-top: 25px;
}

.policy {
  font-size: 16px;
  line-height: 160%;
}
.policy__list {
  display: grid;
  gap: 5px;
  padding-left: 35px;
}
.policy__top {
  margin-bottom: 30px;
}
.policy__top p {
  margin-bottom: 20px;
}
.policy__top p:first-child, .policy__top p:nth-child(3) {
  font-weight: 700;
}
.policy__top li {
  list-style: disc;
}
.policy__middle:nth-child(4) {
  margin-bottom: 20px;
}
.policy__middle h2 {
  margin-bottom: 20px;
}
.policy__middle li {
  list-style: decimal;
}
.policy__bottom {
  margin-top: 30px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #eaeaea;
}
.policy__bottom h2 {
  margin-bottom: 30px;
}
.policy__bottom h3 {
  margin-bottom: 20px;
}
.policy__bottom ul:nth-child(3) li {
  list-style: decimal;
}
.policy__bottom ul:last-child li {
  list-style: disc;
}
.policy__bottom .requisites__document {
  margin: 40px 0px;
}

.sale {
  font-size: 16px;
  line-height: 160%;
}
.sale__img {
  width: 100%;
  max-height: 500px;
  margin-bottom: 30px;
}
.sale__img img {
  width: 100%;
  height: 100%;
}
.sale__nav {
  margin-right: 50px;
}
.sale .title-second {
  margin-bottom: 20px;
}
.sale .title-third {
  margin: 30px 0px 20px;
}
.sale__list {
  display: grid;
  gap: 5px;
  padding-left: 35px;
  margin-bottom: 40px;
}
.sale__list li {
  list-style: disc;
}
.sale__desc {
  padding: 40px;
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  letter-spacing: 0.005em;
}
.sale__desc span {
  font-weight: 700;
}

.text-form {
  height: 150px;
}

@media (max-width: 1150px) {
  .requisites__group {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1000px) {
  .requisites__desc {
    margin-bottom: 30px;
  }
  .contacts__subtitle {
    font-size: 30px;
  }
  .sale {
    max-width: 100%;
  }
  .sale__desc {
    padding: 30px;
  }
}
@media (max-width: 750px) {
  .requisites__wrapper {
    margin-bottom: 25px;
  }
  .requisites__desc {
    font-size: 20px;
    margin-bottom: 25px;
  }
  .requisites__document {
    flex-direction: column;
    align-items: center;
    padding: 25px;
  }
  .requisites__document-img {
    margin: 0;
    margin-bottom: 15px;
  }
  .requisites__document-desc {
    align-items: center;
  }
  .requisites__document-desc p {
    text-align: center;
  }
  .requisites .requisites__group:nth-child(5), .requisites .requisites__group:nth-child(6), .requisites .requisites__group:nth-child(7), .requisites .requisites__group:nth-child(8), .requisites .requisites__group:nth-child(9) {
    display: none;
  }
  .contacts__subtitle {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .contacts__map {
    margin-bottom: 30px;
  }
  .pay__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .pay__wrapper img {
    margin: 0;
    margin-bottom: 20px;
  }
  .sale__list {
    margin-bottom: 25px;
  }
  .sale .title {
    margin-bottom: 25px;
  }
  .sale .title-third {
    margin-top: 25px;
  }
  .sale__img {
    margin-bottom: 25px;
  }
  .sale__desc {
    padding: 25px;
  }
}
@media (min-width: 1000px) {
  .requisites__document:hover {
    background-color: #f5f5f5;
    border-color: #f5f5f5;
  }
  .pay__item a:hover {
    border-color: transparent;
  }
}
.search {
  margin-top: 70px;
  margin-bottom: 90px;
}
.search .title {
  text-align: left;
}
.search__form {
  display: flex;
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  padding: 40px;
  margin-bottom: 20px;
}
.search__form input {
  width: 100%;
  height: 52px;
  background-color: #ffffff;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 4px;
  margin-right: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #333333;
  padding: 13px 20px;
  transition: all 0.3s ease;
}
.search__form input:hover {
  border-color: rgba(51, 51, 51, 0.4);
}
.search__form input:focus {
  border-color: rgba(51, 51, 51, 0.6);
}
.search__form .btn-2 {
  width: 170px;
}
.search__form .btn-2 svg {
  display: none;
}
.search .cards__sort {
  margin-bottom: 20px;
}
.search__list {
  border: 1px solid #ebebeb;
}
.search__item {
  display: flex;
  align-items: center;
  padding: 17px 40px 15px;
}
.search__item:not(:last-child) {
  border-bottom: 1px solid #ebebeb;
}
.search__item-desc {
  display: flex;
}
.search__item-desc img {
  width: 43px;
  height: 65px;
  flex-shrink: 0;
  margin-right: 20px;
}
.search__item-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.03em;
  margin: 0 auto;
  color: #d83244;
}
.search__item-price span {
  display: block;
  text-align: right;
}
.search__item-price span:last-child {
  margin-top: 5px;
  color: rgba(119, 119, 119, 0.7);
  text-decoration: line-through;
  -webkit-text-decoration-color: #d83244;
          text-decoration-color: #d83244;
}
.search__item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.search__item-wrapper > span {
  line-height: 120%;
}
.search__item-wrapper > span:first-child {
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.search__item-wrapper > span:nth-child(2) {
  font-size: 14px;
  line-height: 120%;
  color: rgba(119, 119, 119, 0.7);
}
.search__item-wrapper .search__item-price,
.search__item-wrapper .btn-1 {
  display: none;
}

@media (max-width: 1000px) {
  .search {
    margin-top: 40px;
    margin-bottom: 70px;
  }
  .search__form {
    padding: 30px;
  }
  .search__item {
    padding: 15px 30px;
  }
  .search .breadcrumbs__list {
    justify-content: flex-start;
  }
}
@media (max-width: 750px) {
  .search {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .search__item {
    display: block;
    padding: 25px;
  }
  .search__item-price,
.search__item .btn-1 {
    display: none;
  }
  .search__item-wrapper {
    width: 100%;
  }
  .search__item-wrapper .search__item-price,
.search__item-wrapper .btn-1 {
    display: flex;
  }
  .search__item-wrapper > .btn-1 {
    width: 100%;
    padding: 0 15px;
    max-width: 157px;
  }
  .search__item-desc img {
    width: 106px;
    height: 160px;
  }
  .search__item-price {
    flex-direction: row;
    justify-content: flex-start;
    margin: 0;
    margin-top: 15px;
    margin-bottom: 20px;
  }
  .search__item-price span:last-child {
    margin-top: 0;
    margin-left: 10px;
  }
  .search__form {
    position: relative;
    background-color: transparent;
    border: none;
    padding: 0;
    margin-bottom: 15px;
  }
  .search__form input {
    margin-right: 0;
  }
  .search__form .btn-2 {
    position: absolute;
    width: 40px;
    height: 100%;
    top: 0;
    right: 0;
    background: transparent;
    border: none;
    padding: 0;
  }
  .search__form .btn-2 span {
    display: none;
  }
  .search__form .btn-2 svg {
    display: block;
  }
  .search__form .btn-2 svg circle {
    stroke: #333333;
  }
  .search__form .btn-2 svg rect {
    fill: #333333;
  }
  .search .cards__sort {
    display: none;
  }
  .search .breadcrumbs {
    margin-bottom: 25px;
  }
}
.message {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0px;
}
@media (max-width: 750px) {
  .message {
    padding: 40px 0px;
  }
}
.message__logo {
  max-width: 92px;
  max-height: 46px;
  margin-bottom: 69px;
}
@media (max-width: 1000px) {
  .message__logo {
    margin-bottom: 30px;
  }
}
.message .title {
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  .message .title {
    text-align: center;
  }
}
.message__img {
  width: 100%;
  height: 100%;
  max-width: 200px;
  max-height: 200px;
  margin-bottom: 20px;
}
.message__img img {
  pointer-events: none;
}
.message p {
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.005em;
  color: #333333;
  margin-bottom: 10px;
}
.message .btn-1 {
  margin-left: 20px;
}
@media (max-width: 750px) {
  .message .btn-1 {
    margin: 0;
    margin-top: 20px;
  }
}
.message .btn-2 {
  margin-top: 60px;
}
@media (max-width: 1000px) {
  .message .btn-2 {
    margin-top: 20px;
  }
}
.message__btns {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media (max-width: 1000px) {
  .message__btns {
    margin-top: 20px;
  }
}
@media (max-width: 750px) {
  .message__btns {
    flex-direction: column;
  }
}
.message__btns .btn-2 {
  margin-top: 0px;
}
@media (max-width: 1000px) {
  .message__btns .btn-2 {
    margin-top: 0px;
  }
}

@-webkit-keyframes burger-anim {
  0% {
    transform: scaleX(1);
    transform-origin: 0% 100%;
  }
  100% {
    transform: scaleX(0);
    transform-origin: 0% 100%;
  }
}

@keyframes burger-anim {
  0% {
    transform: scaleX(1);
    transform-origin: 0% 100%;
  }
  100% {
    transform: scaleX(0);
    transform-origin: 0% 100%;
  }
}
@-webkit-keyframes progress {
  0% {
    left: -100%;
    background: rgba(176, 151, 110, 0.9);
  }
  100% {
    left: 100%;
    background: rgba(176, 151, 110, 0.9);
  }
}
@keyframes progress {
  0% {
    left: -100%;
    background: rgba(176, 151, 110, 0.9);
  }
  100% {
    left: 100%;
    background: rgba(176, 151, 110, 0.9);
  }
}
@-webkit-keyframes rotate-burger-before {
  0% {
    transform: rotate(0);
  }
  100% {
    bottom: auto;
    top: 50%;
    transform: rotate(45deg);
  }
}
@keyframes rotate-burger-before {
  0% {
    transform: rotate(0);
  }
  100% {
    bottom: auto;
    top: 50%;
    transform: rotate(45deg);
  }
}
@-webkit-keyframes rotate-burger-after {
  0% {
    transform: rotate(0);
  }
  100% {
    top: 50%;
    transform: rotate(-45deg);
  }
}
@keyframes rotate-burger-after {
  0% {
    transform: rotate(0);
  }
  100% {
    top: 50%;
    transform: rotate(-45deg);
  }
}
@-webkit-keyframes head-thumb {
  0% {
    transform: scaleY(1);
    transform-origin: -3px;
  }
  100% {
    transform: scaleY(0);
    transform-origin: -3px;
  }
}
@keyframes head-thumb {
  0% {
    transform: scaleY(1);
    transform-origin: -3px;
  }
  100% {
    transform: scaleY(0);
    transform-origin: -3px;
  }
}


.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  line-height: 120%;
  margin: 0px 0 30px;
  word-wrap: break-word;
}
.content h1 {
  font-size: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.content h2 {
  font-size: 36px;
}
.content h3 {
  font-size: 32px;
}
.content h4 {
  font-size: 28px;
}
.content h5 {
  font-size: 24px;
}
.content h6 {
  font-size: 20px;
}
.content p {
  font-size: 16px;
  line-height: 160%;
  margin: 20px 0;
}
.content img {
  display: block;
  margin: 20px 0;
}
.content mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
.content ul,
.content ol {
  margin: 20px 0 20px 20px;
}
.content ul li,
.content ol li {
  margin: 10px 0;
}
.content ul li::marker,
.content ol li::marker {
  color: #b0976e;
}
.content ul li {
  list-style: disc;
}
.content ol li {
  list-style: decimal;
}
.content table {
  border-collapse: collapse;
}
.content tr {
  transition: background-color 0.2s ease;
}
.content tr:nth-child(odd) {
  background-color: rgba(217, 217, 217, 0.2);
}
.content tr:hover {
  background-color: rgba(232, 232, 232, 0.7);
}
.content th,
.content td {
  border: 1px solid #e7e7e7;
  padding: 12px 17px 14px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 160%;
}
.content a {
  color: #333333;
  border-bottom: 1px solid rgba(176, 151, 110, 0.5);
  transition: all 0.2s ease;
}
.content a:active, .content a:hover {
  border-color: transparent;
}
.content hr {
  height: 1px;
  background-color: #eaeaea;
}
.content blockquote {
  font-weight: 700;
  font-size: 20px;
}
.content blockquote p {
  margin: 20px 0 10px;
}
.content blockquote + p {
  margin: 0 0 20px;
}
.content .map {
  border: 1px solid #e6e6e6;
}
@media (max-width: 1000px) {
  .content h1.title {
    font-size: 42px;
  }
  .content h2 {
    font-size: 30px;
  }
  .content h3 {
    font-size: 25px;
  }
  .content h4 {
    font-size: 20px;
  }
  .content h5 {
    font-size: 18px;
  }
  .content h6 {
    font-size: 16px;
  }
  .content th {
    max-width: 175px;
  }
}
@media (max-width: 750px) {
  .content h1.title {
    font-size: 26px !important;
  }
  .content h2 {
    font-size: 24px;
  }
  .content h3 {
    font-size: 20px;
  }
  .content h4 {
    font-size: 18px;
  }
  .content h5 {
    font-size: 16px;
  }
  .content h6 {
    font-size: 14px;
  }
  .content .table {
    overflow-x: scroll;
    margin: 0 -15px;
    padding: 0 15px 8px;
    scrollbar-width: thin;
    scrollbar-color: rgb(192, 192, 192) transparent;
  }
  .content .table::-webkit-scrollbar {
    height: 6px;
  }
  .content .table::-webkit-scrollbar-track {
    background: transparent;
  }
  .content .table::-webkit-scrollbar-thumb {
    background-color: #c0c0c0;
  }
  .content table {
    min-width: 730px;
  }
}
@media (min-width: 1001px) {
  .content .h1-small {
    font-size: 45px;
  }
}