/* USER VARIABLES SECTION */

:root {
    --accent: #2D2D2D;
    --accent-grey: #818181;
    --accent-brown: #554236;
    --white: #FFFFFF;
    --text: #2D2D2D;
    --old-price: #989898;
    --grey-text: #808080;
    --border-color: #D9D9D9;
    --regular-text: 14px;
    --lineheight: 20px;
    --userfont: sf-compact, sans-serif;
    --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { --bs-gutter-x: 15px; }
.row, .row > * { --bs-gutter-x: 12px; }

/* FONTS LOAD SECTION */
@font-face { src: url("../fonts/sf-compact-thin.woff2") format("woff2"); font-family: "sf-compact"; font-weight: 300; font-style: normal; }
@font-face { src: url("../fonts/sf-compact-regular.woff2") format("woff2"); font-family: "sf-compact"; font-weight: 400; font-style: normal; }
@font-face { src: url("../fonts/sf-compact-medium.woff2") format("woff2"); font-family: "sf-compact"; font-weight: 500; font-style: normal; }
@font-face { src: url("../fonts/sf-compact-bold.woff2") format("woff2"); font-family: "sf-compact"; font-weight: 600; font-style: normal; }
/*@font-face { src: url("../fonts/PlayfairDisplay-Regular.woff2") format("woff2"); font-family: "Playfair Display"; font-weight: 400; font-style: normal; }*/

/* GENERAL CSS SETTINGS */

::placeholder { color: var(--accent-grey); }
::selection { background-color: var(--accent); color: var(--text); }
input, textarea { outline: none; }
input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
input:required:valid, textarea:required:valid { border-color: green; }

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
}

/* USER STYLES */
a, a:hover {
  color: var(--text);
  text-decoration: none;
}
.image {
  max-width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin: 0 0 24px 0;
}
h1 {
  font-size: 28px;
  line-height: 36px;
}
h2 {
  font-size: 24px;
  line-height: 32px;
}
h3 {
  font-size: 20px;
  line-height: 28px;
}
h4 {
  font-size: 18px;
  line-height: 24px;
}
h5 {
  font-size: 16px;
  line-height: 22px;
}
h6 {
  font-size: 14px;
  font-size: 20px;
}
.bg-white {
  background-color: var(--white) !important;
}
.xl-text {
	font-size: 20px;
	line-height: 28px;
}
.md-text {
  font-size: 16px;
  line-height: 24px;
}
.sm-text {
  font-size: 12px;
  line-height: 16px;
}
.nowrap {
  white-space: nowrap;
}
.uppercase {
  text-transform: uppercase;
}
.bordered {
  border: 1px solid var(--border-color);
}
.p-10 {
  padding: 10px;
}
.underline,
.hover-underline {
  position: relative;
}
.underline::after,
.hover-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--text);
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.grey-text.underline::after,
.grey-text.hover-underline::after {
  background: var(--grey-text);
}
.underline::after {
  opacity: 1 !important;
  visibility: visible !important;
}
.hover-underline::after {
  opacity: 0;
  visibility: hidden;
}
.hover-underline:hover::after {
  opacity: 1;
  visibility: visible;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-light {
  font-weight: 300;
}
.bold-medium {
  font-weight: 500;
}
.bold {
  font-weight: 600;
}
.grey-text {
  color: var(--grey-text) !important;
}
.w-100 {
  width: 100%;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.position-relative {
  position: relative !important;
}
.position-sticky-baseline {
  top: 72px !important;
}
#pagetitle {
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  margin: 0;
}
.mm-menu--position-bottom, .mm-menu--position-top {
  height: 100%;
  opacity: 0;
  visibility: hidden;
}
.mm-menu--position-bottom.mm-menu--opened, .mm-menu--position-top.mm-menu--opened {
  opacity: 1;
  visibility: visible;
}
.mm-menu--theme-white {
  --mm-color-border: #F2F2F2;
  --mm-color-icon: var(--text);
}
.mm-listitem > a {
  text-transform: uppercase;
  padding: 20px 15px;
}
.mm-listitem:after {
  inset-inline-start: 0;
}
.mm-btn--next:after, .mm-btn--prev:before {
  width: 12px;
  height: 12px;
}
#page {
  padding-top: 72px;
}
.is-home #page {
  padding-top: 0;
}
.is-home .main-header {
  background-color: transparent;
}
.page-content {
  padding: 40px 0 80px;
}
.is-home .page-content {
  padding-top: 0;
}
.page-head-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}
.logotype {
  display: block;
  max-width: 120px;
}
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 101;
  background-color: var(--white);
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 101;
  background-color: var(--white);
  padding: 8px 0;
}
.header .logotype {
  margin: 0 auto;
}
.main-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.main-menu__item {
  margin: 0 12px;
}
.main-menu__item:first-child {
  margin-left: 0;
}
.main-menu__item:last-child {
  margin-right: 0;
}
.main-menu__item:hover > .main-menu__link > .hover-underline::after {
  opacity: 1;
  visibility: visible;
}
.main-menu__item:hover .mega-box {
  opacity: 1;
  visibility: visible;
}
.main-menu__link {
  display: block;
  padding: 26px 0;
  color: var(--text);
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.sub-menu {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(8, 1fr);
  column-gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sub-menu__item {
  margin-bottom: 12px;
}
.sub-menu__link {
  display: inline-block;
  white-space: nowrap;
}
.mega-box {
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 101;
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.mega-box__content {
  padding: 8px 0 40px;
}
.w-icon {
  display: flex;
  align-items: center;
}
.w-icon i {
  position: relative;
  top: -1px;
}
.w-icon.w-icon__left i {
  margin-right: 6px;
}
.w-icon.w-icon__right i {
  margin-left: 6px;
}
.search-form,
.search-form__inner {
  position: relative;
}
.search-form__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--border-color);
  z-index: 1;
  transition: all .1s ease-out;
  opacity: 0;
}
.search-form__inner.active input {
  background: #FFFFFF;
}
.search-form__inner.active::after {
  opacity: 1;
  z-index: 3;
}
.search-form input {
  position: relative;
  z-index: 2;
  border: none;
  width: 100%;
  height: 32px;
  padding: 2px 28px 2px 8px;
  background: #F3F3F3;
  outline: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.search-form .search-button {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.search-form__inner.active .search-button {
  opacity: 0;
}
.search-button {
  width: 32px;
  height: 32px;
  display: block;
  background-image: url(../images/icons/search.svg);
  background-size: 14px 14px;
  background-position: center center;
  background-repeat: no-repeat;
  border: none;
  background-color: transparent;
  outline: none;
}
.main-header .search-form {
  margin: 0 16px 0 32px;
  width: 40%;
}
.icon-link {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  line-height: 32px;
}
.icon-link svg {
  width: 24px;
  height: 24px;
}
.header-nav .icon-link {
  margin: -2px 4px 0;
}
.header-nav .icon-link:last-child {
  margin-right: 0;
}
.header-nav .icon-link:first-child {
  margin-left: 0;
}
.burger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  cursor: pointer;
}
.burger .burger__inner {
  position: relative;
}
.burger > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}
.burger .burger__inner::before,
.burger .burger__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.burger .burger__inner,
.burger .burger__inner::before,
.burger .burger__inner::after {
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 6px;
}
.burger .burger__inner::before {
  transform: translateY(-8px);
}
.burger .burger__inner::after {
  transform: translateY(8px);
}
.mm-navbar .burger {
  position: absolute;
  top: 14px;
  right: 15px;
  z-index: 7;
}
.mm-navbar .burger .burger__inner {
  transform: rotate(45deg);
}
.mm-navbar .burger .burger__inner::after {
  transform: rotate(90deg);
}
.mm-navbar .burger .burger__inner::before {
  display: none;
}
.mm-navbar .burger .burger__inner,
.mm-navbar .burger .burger__inner::before,
.mm-navbar .burger .burger__inner::after {
  height: 2px;
}
.search-trigger {
  display: block;
  width: 26px;
  height: 26px;
  background-image: url(/images/icons/search-icon.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 22px 22px;
  cursor: pointer;
}
.mobile-header .search-trigger {
  margin: 0 12px;
}
.toggle-search {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 102;
  border-bottom: 1px solid var(--accent-grey);
  transition: all .3s ease;
  opacity: 0;
  visibility: hidden;
}
.toggle-search.active {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.toggle-search .search-form input {
  height: 48px;
  font-size: 14px;
  padding: 2px 50px 2px 8px;
  background: var(--white);
}
.toggle-search .search-form .search-button {
  width: 50px;
  height: 50px;
  background-size: 16px 16px;
}
.mobile-header .icon-link {
  background: #ECECEA;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  line-height: 32px;
  border-radius: 50%;
  margin: 0 4px;
}
.mobile-header .icon-link svg {
  width: 18px;
  height: 18px;
}
.section {
  width: 100%;
  height: 100vh;
}
.form-item {
  position: relative;
  margin-bottom: 16px;
}
.form-item:last-child {
  margin-bottom: 0;
}
.form-item input,
.form-item textarea {
  border: 1px solid var(--accent-grey);
  width: 100%;
  outline: none;
  padding: 0 12px;
  background-color: transparent;
}
.form-item input {
  height: 40px;
  border-radius: 0;
}
.btn,
.btn:hover,
.btn.btn-default,
div.bx-blue .btn,
div.bx-blue .btn.btn-default,
div.bx-blue .btn.btn-default:hover,
div.bx-blue .btn.btn-default:active,
div.bx-yellow .btn,
div.bx-yellow .btn.btn-default,
div.bx-yellow .btn.btn-default:hover,
div.bx-yellow .btn.btn-default:active{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border: 1px solid var(--accent);
  background-color: var(--accent);
  color: var(--white);
  text-transform: uppercase;
  min-width: 250px;
  white-space: nowrap;
  font-weight: 400;
  border-radius: 0;
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
}
.btn.btn-sm {
  height: 32px;
  text-transform: none;
}
.btn.btn-md {
  height: 40px;
  text-transform: none;
}
.btn.btn-brown {
  background-color: var(--accent-brown);
  border-color: var(--accent-brown);
  color: var(--white);
}
.btn.btn-dark {
  background-color: var(--text);
  border-color: var(--text);
  color: var(--white);
}
.btn.btn-transparent {
  background-color: transparent;
  border-color: transparent;
  color: var(--text);
}
.btn.btn-border {
  background-color: transparent;
  border-color: var(--accent-brown);
  color: var(--accent-brown);
}
.mega-box .subscribe-form {
  max-width: 508px;
  background: #FAF2ED;
  padding: 32px;
}
.mega-box .subscribe-form p {
  color: var(--accent-brown);
  opacity: 0.5;
}
.mega-box .subscribe-form__descr {
  color: var(--accent-brown);
}
.subscribe-form {
  position: relative;
}
.subscribe-form__title {
  color: #1D1D1B;
  text-transform: uppercase;
  margin: 0 0 12px 0;
  font-weight: 500;
}
.subscribe-form__descr {
  margin-bottom: 24px;
  font-weight: 500;
}
.subscribe-form input {
  height: 32px;
}
.subscribe-form input[type="submit"],
.subscribe-form button[type="submit"] {
  width: 100%;
}
.subscribe-form p {
  margin: 0;
}
.subscribe-form p a {
  text-decoration: underline;
}
.mm-menu .subscribe-form {
  padding: 20px 15px;
}
.category-block {
	padding: 80px 0;
}
.category-block .p-category-list {
	transform: translateX(-10px);
}
.p-category-list {
	max-width: 1000px;
	margin: 0 auto;
}
.p-category {
	position: relative;
	margin-bottom: 16px;
}
.p-category:last-child {
	margin-bottom: 0;
}
.p-category__img {
	position: relative;
	padding-bottom: 78.36%;
	font-size: 0;
}
.p-category__img > a
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}
.p-category.p-category__big .p-category__img {
	padding-bottom: 177.36%;
}
.p-category__img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}
.p-category__content {
	padding: 18px 0 14px;
}
.p-category-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 30px;
}
.p-category__title {
	text-transform: uppercase;
}
.p-category__title i {
	position: relative;
  	top: -1px;
	margin-left: 12px;
}
.footer {
  position: relative;
  padding: 40px 0;
  background-color: #ECECEA;
}
.footer .subscribe-form {
  max-width: 485px;
}
.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 135px;
}
.footer-menu__item:not(:last-child) {
  margin-bottom: 16px;
}
.footer-menu__link {
  display: block;
}
.footer__bottom {
  margin-top: 80px;
}
.footer-copyright,
.footer-copyright a {
  color: var(--grey-text);
}
.copyright,
.footer-link {
  opacity: .6;
}
.footer .social-menu {
  margin-top: 20px;
}
.social-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.social-menu li:not(:last-child) {
  margin-right: 16px;
}
.social-menu li a {
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
}
.page-nav-button {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.page-nav-button__icon {
  border: 1px solid #E2E2E2;
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background-image: url(/images/icons/arrow-back.svg);
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 12px;
}
.page-nav-button__label {
  display: inline-block;
  font-size: 12px;
  line-height: 16px;
  color: var(--grey-text);
}
.catalog-page-title {
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  margin: 0;
  text-align: center;
}
.catalog-head {
  margin: 0 0 30px;
}
.catalog-item {
  position: relative;
}
.catalog-item__img {
  position: relative;
  padding-bottom: 163.15%;
  font-size: 0;
}
.catalog-item__img > img,
.catalog-item__img > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.catalog-item__img > img {
  object-fit: cover;
}
.catalog-item__img > a {
  z-index: 7;
}
.catalog-item__elements {
  position: unset;
}
.catalog-item .label-list {
  position: absolute;
  top: 16px;
  left: 22px;
  z-index: 2;
}
.label-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.label-item {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 16px;
  background-color: var(--accent);
  padding: 2px 4px;
  letter-spacing: 1px;
  color: var(--white);
}
.catalog-item .wish_item_wrapper {
  position: absolute;
  top: 16px;
  right: 12px;
  z-index: 7;
}
.wish_item_wrapper {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.wish_item_wrapper svg path {
  fill: transparent;
  stroke: #554236;
  stroke-width: 1.5px;
}
.wish_item_wrapper.itserw_wishlist_added svg path {
  fill: var(--text);
}
.colors-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.color-box {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.color-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: none;
  transform: translate(-50%,-50%);
}
.color-box.current::after {
  display: block;
}
.color-box > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.element-color .color-box {
  width: 16px;
  height: 16px;
}
.element-color .color-box::after {
  width: 22px;
  height: 22px;
}
.colors-list .color-box:not(:last-child) {
  margin-right: 8px;
}
.catalog-item__content,
.catalog-banner__content {
  padding: 16px 0 32px;
}
.catalog-item__title {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  margin: 10px 0 4px;
}
.catalog-item__title,
.catalog-item__title > a {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.catalog-item .price-wrapper {
  margin: 4px 0;
}
.price-wrapper {
  display: flex;
}
.price-wrapper .price.discount {
  margin-left: 8px;
}
.price.discount {
  color: var(--grey-text);
  text-decoration: line-through;
}
.bx_size .list_values_wrapper {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.bx_size .list_values_wrapper .item:not(:last-child) {
  margin-right: 8px;
}
.list_values_wrapper .item {
  text-transform: uppercase;
  font-weight: 300;
}
.list_values_wrapper .item.missing {
  opacity: .4;
}
.list_values_wrapper .item.active {
  border: .6px solid var(--text);
  padding: 0 2px;
}
.catalog-banner {
  position: relative;
}
.catalog-banner__img {
  position: relative;
  padding-bottom: 80.15%;
  font-size: 0;
}
.catalog-banner__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog-banner__content > a {
  text-transform: uppercase;
  font-weight: 300;
}
.catalog-banner__content > a {
  display: flex;
}
.catalog-banner__content > a i {
  margin-left: 24px;
}
.catalog-filter-trigger,
.catalog-helper {
  margin-bottom: 20px;
}
.catalog-result {
  color: var(--grey-text);
}
.catalog-helper {
  display: flex;
  align-items: center;
}
.catalog-helper .catalog-view {
  margin-left: 24px;
}
.catalog-view {
  display: inline-flex;
  align-items: center;
  position: relative;
  color: var(--grey-text);
}
.catalog-view:hover {
  color: var(--grey-text);
}
.catalog-view::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 8px;
}
.catalog-view.catalog-view-block::before {
  background-image: url(/images/icons/block_view.svg);
}
.catalog-view.catalog-view-block2::before {
  background-image: url(/images/icons/block_view2.svg);
}
.catalog-filter-trigger {
  position: relative;
  color: var(--grey-text);
  display: flex;
  align-items: center;
  cursor: pointer;
}
.catalog-filter-trigger::before {
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  margin-right: 12px;
  background-image: url(/images/icons/filter.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.catalog-filter {
  position: relative;
}
.catalog-filter-reset {
  cursor: pointer;
}
.catalog-filter-reset i {
  margin-right: 14px !important;
}
.catalog-filter__content {
  padding: 20px 0;
}
.left-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.left-menu li:not(:last-child) {
  margin-bottom: 6px;
}
.left-menu li a {
  font-weight: 500;
}
.catalog-filter__content .left-menu {
  margin-bottom: 16px;
}
.accordionjs {
  margin: 0;
  padding: 0;
  list-style: none;
}
.acc_head {
  position: relative;
  padding: 16px 0;
  text-transform: uppercase;
  cursor: pointer;
}
.acc_head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ECECEA;
}
.acc_active .acc_head::before {
  opacity: 0;
}
.acc_content {
  padding-bottom: 16px;
  border-bottom: 1px solid #ECECEA;
}
.acc_section.acc_active:not(:last-child) .acc_content {
  border-bottom: none;
}
.acc_head::after {
  content: "";
  position: absolute;
  top: 17px;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url(/images/icons/arrow.svg);
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center center;
}
.acc_active .acc_head::after {
  transform: rotate(180deg);
}
.filter-param input[type="radio"],
.filter-param input[type="checkbox"] {
  display: none;
}
.filter-param:not(:last-child) {
  margin-bottom: 12px;
}
.filter-param label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 12px;
  height: 12px;
  border: 1px solid var(--text);
  margin-right: 8px;
}
.filter-param label::before {
  content: attr(data-title);
  display: block;
  padding-left: 20px;
  white-space: nowrap;
}
.filter-param label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background-image: url(/images/icons/select.svg);
  background-size: 8px 8px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: var(--accent);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  z-index: 1;
}
.filter-param input:checked + label::after {
  opacity: 1;
  visibility: visible;
}
.filter-form .accordionjs {
  margin-bottom: 24px;
}
.filter-form button {
  width: 100%;
  margin-bottom: 12px;
}
.element-carousel-wrapper {
  position: relative;
  display: flex;
}
.element-carousel__slide {
  position: relative;
  padding-bottom: 163.8%;
}
.element-carousel__slide > a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.element-carousel__slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.element-carousel-thumbs {
  width: 100%;
  height: 800px;
  padding-top: 30px;
}
.element-carousel-thumbs__slide {
  position: relative;
  cursor: pointer;
  opacity: .6;
}
.element-carousel-thumbs__slide.swiper-slide-thumb-active {
  opacity: 1;
}
.element-carousel-thumbs__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.element-carousel {
  width: 100%;
  height: 1104px;
}
.element-carousel.swiper-container .swiper-button-prev,
.element-carousel.swiper-container .swiper-button-next {
  display: none;
}
.swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--text);
  background-image: url(/images/icons/arrow-back-white.svg);
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: center center;
}
.swiper-container .swiper-button-next::before {
  transform: rotate(180deg);
}
.swiper-container .swiper-button-prev::after,
.swiper-container .swiper-button-next::after {
  display: none;
}
.fancybox__container {
  --carousel-button-svg-stroke-width: 1.3;
  --carousel-button-svg-filter: none;
}
.fancybox__container .fancybox__slide {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.fancybox__carousel.has-dots {
  margin-bottom: 0;
}
.has-image[data-image-fit=contain-w] .fancybox__content {
  overflow-x: hidden;
  overflow-y: scroll;
}
.fancybox__container .fancybox__toolbar {
  background: none;
}
.carousel__button {
  background: var(--text);
}
.with-fancybox body {
  overflow-y: hidden;
}
.fancybox__content::-webkit-scrollbar {
  width: 0;
}
.fancybox__content::-webkit-scrollbar-track {
  background: transparent;
}
.fancybox__content::-webkit-scrollbar-thumb {
  background: transparent;
}
.fancybox__content::-webkit-scrollbar-thumb:hover {
  background: transparent;
}
.detail-content {
  padding-left: 36px;
  padding-top: 42px;
  max-width: 400px;
}
.element-title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin: 0 0 12px;
}
.element-color {
  margin: 32px 0 24px;
}
.element-color .colors-list {
  margin-bottom: 4px;
}
.element-description {
  margin: 24px 0 12px;
}
.show-more,
.show-less {
  cursor: pointer;
}
.full-descr {
  display: none;
}
.element-button {
  margin: 32px 0;
}
.element-button .buy-block {
  flex: 1;
  margin-right: 24px;
}
.buy-block .btn {
  min-width: auto;
  width: 100%;
}
.props-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.props-list li:not(:last-child) {
  margin-bottom: 2px;
}
.element-detail .catalog-cards {
  margin-top: 16px;
}
.catalog-cards .title {
  margin: 0 0 32px 0;
  font-weight: 300;
}
.text-container {
  max-width: 1020px;
  margin: 0 auto;
}
.text-container p,
.text-container img {
  margin-bottom: 40px;
}
.text-container img {
  max-width: 100%;
}
.news-item-col {
  margin-bottom: 12px;
}
.news-item {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-item__img {
  position: relative;
  padding-bottom: 26.8%;
}
.news-item__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-item__content {
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 24px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-item__date {
  display: block;
  font-size: 13px;
  line-height: 16px;
  color: var(--grey-text);
  margin: 0 0 12px 0;
}
.news-item__title {
  margin: 0 0 8px 0;
}
.news-item__descr {
  margin: 0 0 20px 0;
}
.news-item__button {
  padding: 0 24px;
  min-width: auto;
}
.contacts-wrapper .contacts-block {
  margin-bottom: 48px;
}
.contacts-block {
  position: relative;
  display: flex;
}
.contacts-block .contacts-block__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 100%;
}
.contacts-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contacts-block .contacts-block__content {
  width: calc(100% - 320px);
  margin-left: auto;
  border-left: none;
}
.contacts-block__content {
  border: 1px solid var(--border-color);
  padding: 40px 24px 66px;
}
.contacts-block__content .w-icon.w-icon__left i {
  margin-right: 12px;
}
.contacts-block .contact-items {
  margin-top: 32px;
}
.contact-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 12px;
}
.contact-item {
  display: flex;
  align-items: center;
}
.contact-item .contact-item__icon {
  width: 48px;
  flex: 0 0 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  margin-right: 24px;
}
.contact-item__value > span {
  display: block;
}
.contact-item__value > span:not(:last-child) {
  margin-bottom: 6px;
}
.form-wrapper {
  max-width: 444px;
  margin: 0 auto;
}
.form-title {
  text-transform: uppercase;
  margin: 0 0 32px 0;
  text-align: center;
}
.form-text {
  margin: 12px 0 8px;
}
.form-text,
.form-text a {
  color: var(--accent-grey);
}
.form-password {
  position: relative;
}
.form-password .pass-switch {
  position: absolute;
  top: 50%;
  right: 16px;
  z-index: 3;
  transform: translateY(-50%);
}
.pass-switch {
  display: block;
  width: 16px;
  height: 16px;
  background-size: 16px 9px;
  background-image: url(/images/icons/glass.svg);
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.form-checkbox input[type="radio"],
.form-checkbox input[type="checkbox"] {
  display: none;
}
.form-checkbox label {
  position: relative;
  display: block;
  cursor: pointer;
  padding-left: 25px;
}
.form-checkbox label::before,
.form-checkbox label::after {
  content: "";
  position: absolute;
}
.form-checkbox label::before {
  top: 4px;
  left: 0;
  border: 1px solid var(--text);
  width: 12px;
  height: 12px;
}
.form-checkbox label::after {
  top: 5px;
  left: 1px;
  width: 10px;
  height: 10px;
  background-image: url(/images/icons/select.svg);
  background-size: 8px 8px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: var(--accent);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  z-index: 1;
}
.form-checkbox input:checked + label::after {
  opacity: 1;
  visibility: visible;
}
.form-item label a {
  text-decoration: underline;
}
.head-nav {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.head-nav li {
  margin: 0 16px;
  text-transform: uppercase;
}
.head-nav li a {
  opacity: .6;
}
.basket-block {
  position: relative;
  padding: 0 16px;
}
.basket-block-head {
  border-bottom: 1px solid var(--border-color);
}
.basket-block-head,
.basket-block-body {
  padding: 16px 0;
}
.basket-block__title {
  text-transform: uppercase;
}
.logout {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.logout::after {
  content: "";
  display: block;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  background-image: url(/images/icons/logout.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: 12px;
}
.edit-el {
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(/images/icons/edit.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.profile-col-title {
  display: inline-block;
  margin-bottom: 16px;
}
.editable-form-item {
  position: relative;
  margin-bottom: 16px;
}
.editable-form-item input {
  width: 100%;
  border: 1px solid var(--border-color);
  padding: 13px 16px;
  pointer-events: none;
}
.editable-form-item input.active {
  pointer-events: unset;
  border-color: var(--accent);
}
.editable-form-item .edit-el {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  z-index: 7;
}
form #save_user_settings {
  display: none;
}
.order-acc__head .order-acc-open {
  display: none;
}
.order-acc .acc_head {
  background: #f3f3f3;
  text-transform: inherit;
  border-bottom: none !important;
}
.order-acc .acc_section:not(.acc_active):last-child .acc_head {
  border-bottom: 1px solid #D9D9D9 !important;
}
.order-acc .acc_head,
.order-acc .acc_content {
  padding: 16px 20px;
  border: 1px solid #D9D9D9;
}
.order-acc .acc_section.acc_active .acc_head {
  border-bottom: none;
}
.order-acc .acc_section.acc_active .acc_head .order-acc-open {
  display: inline-block;
}
.order-acc .acc_section.acc_active .acc_head .order-acc-close {
  display: none;
}
.order-acc .acc_head::before,
.order-acc .acc_head::after {
  display: none;
}
.order-acc .acc_content {
  padding: 0;
}
.count {
  display: block;
  width: 14px;
  height: 14px;
  text-align: center;
  line-height: 14px;
  font-size: 10px;
  position: absolute;
  top: -1px;
  right: -3px;
  border-radius: 50%;
  background: var(--text);
  color: var(--white);
}
.icon-success {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(/images/icons/success-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.catalog-items-table {
  width: 100%;
}
.catalog-items-table tr td {
  padding: 0;
}
.catalog-items-table tr:not(:last-child) {
  border-bottom: 1px solid #D9D9D9;
}
.catalog-items-table .catalog-item .catalog-item__img {
  padding-bottom: 0;
  width: 160px;
  height: 236px;
}
.catalog-items-table__left {
  display: flex;
}
.catalog-items-table__right {
  vertical-align: top;
}
.catalog-items-table .catalog-item .catalog-item__content {
  padding: 24px 32px;
}
.catalog-items-table .catalog-item .catalog-item__title {
  margin: 0 0 16px;
}
.catalog-items-table .catalog-item .colors-list {
  margin: 0 0 6px;
}
.catalog-items-table .catalog-item .bx_size {
  margin: 12px 0 16px;
}
.catalog-items-table .catalog-items-table__right .price-wrapper {
  justify-content: flex-end;
  text-align: right;
  margin: 0;
  padding: 32px 24px;
}





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

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
figure,
blockquote {
  padding: 0;
  margin: 0;
}

table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul,
ol {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a,
button,
input,
textarea,
svg * {
  transition: 0.4s;
}

a,
button,
input,
textarea {
  touch-action: manipulation;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

iframe,
video {
  border: 0;
  display: block;
  max-width: 100%;
}

summary::-webkit-details-marker {
  display: none;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

p {
  margin-block: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select,
button {
  font: inherit;
  appearance: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: none;
}

textarea {
  resize: none;
}

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

input {
  cursor: text;
  text-align: left;
}

input[type=submit] {
  cursor: pointer;
}

button {
  touch-action: manipulation;
  cursor: pointer;
  text-align: center;
}

body {
  margin: 0;
  min-height: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

svg * {
  transition-property: fill, stroke;
}

.swiper {
  width: 100%;
  max-width: 100%;
}

[data-animate] {
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

*:focus-visible {
  outline: none;
}

.swiper-wrapper,
.swiper-slide,
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Tilda Sans";
  src: url("../fonts/tilda-sans_light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tilda Sans";
  src: url("../fonts/tilda-sans_regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tilda Sans";
  src: url("../fonts/tilda-sans_medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tilda Sans";
  src: url("../fonts/tilda-sans_semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tilda Sans";
  src: url("../fonts/tilda-sans_bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Tilda Sans", sans-serif;
  color: #000;
  background: #fff;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1199px) {
  body.hidden {
    overflow: hidden;
  }
}

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 40px;
}
@media (max-width: 1199px) {
  .container {
    padding-inline: 16px;
  }
}

.row {
  --bs-gutter-x: 30px;
}
@media (max-width: 1199px) {
  .row {
    --bs-gutter-x: 7px;
  }
}

.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.header_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 30px;
  min-height: 133px;
}
@media (max-width: 1199px) {
  .header_wrap {
    padding-block: 15px;
    min-height: auto;
    column-gap: 20px;
  }
}
.header_wrap_btn {
  display: flex;
  width: 34px;
  height: 11px;
  position: relative;
}
@media (max-width: 1199px) {
  .header_wrap_btn {
    order: 2;
    width: 24px;
    height: 8px;
  }
}
.header_wrap_btn.active .line:first-child {
  transform: rotate(30deg);
  top: 50%;
}
.header_wrap_btn.active .line:last-child {
  transform: rotate(-30deg);
  top: 50%;
}
.header_wrap_btn .line {
  height: 2px;
  width: 100%;
  background: #000;
  display: inline-block;
  position: absolute;
  left: 0;
  transition: 0.4s;
  will-change: transform;
  transform: translateZ(0);
}
.header_wrap_btn .line:first-child {
  top: 0;
}
.header_wrap_btn .line:last-child {
  bottom: 0;
}
.header_wrap_logo {
  display: flex;
  max-width: fit-content;
  flex-shrink: 0;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  will-change: opacity;
  transform: translateZ(0);
}
@media (max-width: 1199px) {
  .header_wrap_logo {
    max-width: 110px;
    position: relative;
    order: -1;
    margin: 0;
  }
  .header_wrap_logo svg {
    width: 100%;
    height: auto;
  }
}
@media (hover: hover) {
  .header_wrap_logo:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .header_wrap_logo:active {
    opacity: 0.7;
  }
}
@media (max-width: 1199px) {
  .header_wrap_nav {
    margin-left: auto;
    order: 1;
  }
}
.header_wrap_nav ul {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
@media (max-width: 1199px) {
  .header_wrap_nav ul {
    column-gap: 5px;
  }
}
.header_wrap_nav ul li a {
  display: flex;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .header_wrap_nav ul li a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    background: #F5F5F5;
    align-items: center;
    justify-content: center;
  }
  .header_wrap_nav ul li a svg {
    max-width: 14px;
    max-height: 14px;
  }
}
@media (hover: hover) {
  .header_wrap_nav ul li a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .header_wrap_nav ul li a:active {
    opacity: 0.7;
  }
}

.header_menu {
  position: fixed;
  top: 133px;
  width: 100%;
  z-index: 9;
  background: #F5F5F5;
  max-height: calc(100dvh - 133px);
  overflow-y: auto;
  transition: 0.4s;
  transform: translateY(-100%);
  pointer-events: none;
}
@media (max-width: 1199px) {
  .header_menu {
    transform: translateY(0);
    transform: translateX(-100%);
    max-height: calc(100dvh - 60px);
    height: 100%;
    top: 60px;
  }
}
.header_menu.active {
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 1199px) {
  .header_menu.active {
    transform: translateX(0);
  }
}
.header_menu_wrap {
  padding-block: 40px;
  display: flex;
  column-gap: 70px;
  min-height: 430px;
}
@media (max-width: 1199px) {
  .header_menu_wrap {
    min-height: auto;
    padding-block: 24px;
    display: block;
    column-count: 2;
    column-gap: 7px;
  }
}
@media (max-width: 1199px) {
  .header_menu_wrap_block {
    display: inline-block;
    width: 100%;
    break-inside: avoid;
  }
  .header_menu_wrap_block:not(:last-child) {
    margin-bottom: 30px;
  }
}
.header_menu_wrap_block_title {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 127%;
  text-transform: uppercase;
  display: flex;
  max-width: fit-content;
}
.header_menu_wrap_block_title.--sale {
  color: #fe4444;
}
@media (hover: hover) {
  .header_menu_wrap_block_title:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .header_menu_wrap_block_title:active {
    opacity: 0.7;
  }
}
.header_menu_wrap_block_list {
  margin-top: 12px;
}
.header_menu_wrap_block_list li:not(:last-child) {
  margin-bottom: 9px;
}
.header_menu_wrap_block_list li a {
  color: #000;
  font-size: 14px;
  line-height: 127%;
  display: flex;
  max-width: fit-content;
}

.cover {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 1920/780;
}
@media (max-width: 767px) {
  .cover {
    aspect-ratio: 375/513;
  }
}
.cover::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}
.cover .container {
  height: 100%;
}
.cover_wrap {
  height: 100%;
  padding-block: 50px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
}
@media (max-width: 1199px) {
  .cover_wrap {
    min-height: auto;
    padding-block: 30px;
  }
}
.cover_wrap_text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 127%;
  text-transform: uppercase;
}
.cover_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cover_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
  will-change: transform;
  transform: translateZ(0);
}

.category {
  margin-top: 100px;
}
@media (max-width: 1199px) {
  .category {
    margin-top: 40px;
  }
}
.category_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1199px) {
  .category_list {
    column-gap: 7px;
    row-gap: 32px;
  }
}
@media (max-width: 767px) {
  .category_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.category_list_card {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  min-width: 0;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 1199px) {
  .category_list_card {
    row-gap: 8px;
  }
}
@media (hover: hover) {
  .category_list_card:hover img {
    transform: scale(1.025);
  }
}
@media (hover: none) {
  .category_list_card:active img {
    transform: scale(1.025);
  }
}
.category_list_card_image {
  aspect-ratio: 593.67/714.71;
  display: flex;
  max-width: 100%;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .category_list_card_image {
    aspect-ratio: 168/235;
  }
}
.category_list_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
  will-change: transform;
  transform: translateZ(0);
}
.category_list_card_title {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 127%;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .category_list_card_title {
    font-size: 14px;
  }
}

.footer {
  margin-top: 100px;
  background: #F5F5F5;
}
@media (max-width: 1199px) {
  .footer {
    margin-top: 40px;
  }
}
.footer_wrap {
  padding-block: 40px;
  row-gap: 40px;
}
@media (max-width: 1199px) {
  .footer_wrap {
    row-gap: 32px;
  }
}
.footer_wrap_logo {
  display: flex;
  max-width: fit-content;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .footer_wrap_logo {
    max-width: 168px;
  }
  .footer_wrap_logo svg {
    width: 100%;
    height: auto;
  }
}
@media (hover: hover) {
  .footer_wrap_logo:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .footer_wrap_logo:active {
    opacity: 0.7;
  }
}
.footer_wrap_nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
}
@media (max-width: 1199px) {
  .footer_wrap_nav {
    column-gap: 7px;
  }
}
@media (max-width: 767px) {
  .footer_wrap_nav {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }
}
.footer_wrap_nav_block_title {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 127%;
  text-transform: uppercase;
  display: flex;
  max-width: fit-content;
}
.footer_wrap_nav_block_list {
  margin-top: 24px;
}
@media (max-width: 1199px) {
  .footer_wrap_nav_block_list {
    margin-top: 12px;
  }
}
.footer_wrap_nav_block_list li:not(:last-child) {
  margin-bottom: 19px;
}
@media (max-width: 1199px) {
  .footer_wrap_nav_block_list li:not(:last-child) {
    margin-bottom: 9px;
  }
}
.footer_wrap_nav_block_list li a {
  color: #000;
  font-size: 14px;
  line-height: 127%;
  display: flex;
  max-width: fit-content;
}
@media (hover: hover) {
  .footer_wrap_nav_block a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .footer_wrap_nav_block a:active {
    opacity: 0.7;
  }
}
.footer_wrap_sochials_title {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 127%;
  text-transform: uppercase;
}
.footer_wrap_sochials_list {
  margin-top: 21px;
}
@media (max-width: 1199px) {
  .footer_wrap_sochials_list {
    margin-top: 12px;
  }
}
.footer_wrap_sochials_list li:not(:last-child) {
  margin-bottom: 6px;
}
@media (max-width: 1199px) {
  .footer_wrap_sochials_list li:not(:last-child) {
    margin-bottom: 4px;
  }
}
.footer_wrap_sochials_list_link {
  display: flex;
  align-items: center;
  column-gap: 12px;
  color: #000;
  font-size: 14px;
  line-height: 127%;
  max-width: fit-content;
  will-change: opacity;
  transform: translateZ(0);
}
@media (hover: hover) {
  .footer_wrap_sochials_list_link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .footer_wrap_sochials_list_link:active {
    opacity: 0.7;
  }
}
.footer_wrap_sochials_list_link_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 50%;
  overflow: hidden;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .footer_wrap_sochials_list_link_icon {
    width: 22px;
    height: 22px;
  }
  .footer_wrap_sochials_list_link_icon svg {
    max-width: 11px;
    max-height: 11px;
  }
}
.footer_wrap_copyright {
  color: #000;
  font-size: 14px;
  line-height: 127%;
}
.footer_wrap_link {
  display: flex;
  color: #505050;
  font-size: 12px;
  line-height: 127%;
}
@media (hover: hover) {
  .footer_wrap_link:hover {
    color: #000;
  }
}
@media (hover: none) {
  .footer_wrap_link:active {
    color: #000;
  }
}

.shop {
  margin-top: 69px;
}
@media (max-width: 1199px) {
  .shop {
    margin-top: 20px;
  }
}
.shop_title {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 127%;
  text-transform: uppercase;
  margin-bottom: 42px;
}
@media (max-width: 1199px) {
  .shop_title {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.shop_image {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media (max-width: 1199px) {
  .shop_image {
    row-gap: 20px;
  }
}
@media (max-width: 767px) {
  .shop_image {
    display: none;
  }
}
.shop_image_block {
  display: flex;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 437/527;
}
.shop_image_block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop_list_card:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .shop_list_card:not(:last-child) {
    margin-bottom: 20px;
  }
}
.shop_list_card_title {
  color: #000;
  font-size: 18px;
  line-height: 127%;
}
@media (max-width: 1199px) {
  .shop_list_card_title {
    font-size: 14px;
  }
}
.shop_list_card_inform p {
  color: #000;
  font-size: 18px;
  line-height: 127%;
}
@media (max-width: 1199px) {
  .shop_list_card_inform p {
    font-size: 14px;
  }
}
.shop_list_card_inform a {
  color: #000;
  font-size: 18px;
  line-height: 127%;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
@media (max-width: 1199px) {
  .shop_list_card_inform a {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .shop_list_card_inform a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .shop_list_card_inform a:active {
    opacity: 0.7;
  }
}/*# sourceMappingURL=main.css.map */


#mmenu{
  display: none;
}