.pop-cat-section {
  background: url("/assets/images/background/pop-cat-section.png") center center /
      contain repeat,
    #f4f4f5;
  padding: 32px 0 40px;
  margin: 32px 0;
}
.category-card {
  display: flex;
  max-width: 312px;
  height: 0;
  border-radius: 20px;
  padding-bottom: 117.4%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.category-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.category-card_inner {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(
    212.65deg,
    rgba(0, 0, 0, 0) 1.6%,
    rgba(0, 0, 0, 0.7) 70.81%
  );
  width: 100%;
  height: 100%;
  padding: 12px 16px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 576px) {
  .category-card_inner {
    font-size: 18px;
  }
}
.breadcrumbs {
  display: flex;
  align-items: center;
  padding: 12px 0 8px;
  overflow-x: auto;
}
.breadcrumbs > * {
  flex: 0 0 auto;
}
.breadcrumbs_link {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-grey);
  white-space: nowrap;
}
.breadcrumbs_separator {
  width: 12px;
  height: 12px;
  background-color: #888;
  -webkit-mask: url(/assets/images/elements/CaretRight.svg) center center /
    contain no-repeat;
  mask: url(/assets/images/elements/CaretRight.svg) center center / contain
    no-repeat;
  margin: 0 8px;
}
.page_title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-dark);
  margin: 0 0 20px;
}
.title-subtle {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--color-grey);
}
.page_text a,
.policy a {
  color: var(--color-primary);
  color: #b99c69;
  position: relative;
}
/*.page_text a:after,
.policy a:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--color-primary);
  position: absolute;
  top: 100%;
  left: 0;
  transition: width 0.35s;
}
.page_text a:hover:after,
.policy a:hover:after {
  width: 100%;
}*/
.control-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
  position: relative;
}
.control-row_input {
  width: 100%;
  height: 48px;
  background-color: #fff;
  outline: none;
  border: 1px solid rgba(var(--color-grey-rgb), 0.3);
  border-radius: 8px;
  padding: 8px 16px;
}
textarea.control-row_input {
  min-height: 90px;
}
.control-row_select {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-dark);
  height: 48px;
  outline: none;
  border: 1px solid rgba(var(--color-grey-rgb), 0.3);
  border-radius: 4px;
  background: url(/assets/images/elements/CaretDown.svg) center right 16px /
      16px no-repeat,
    #fff;
  padding: 0 32px 0 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (min-width: 1200px) {
  .control-row_input,
  .control-row_select {
    height: 56px;
  }
}
.control-row_input::placeholder {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-dark-grey);
}
.control-row_label {
  font-weight: 500;
  line-height: 1;
  color: var(--color-dark);
  margin-bottom: 6px;
}
@media (min-width: 1200px) {
  .control-row_label {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.control-row[data-req="1"] .control-row_label:after {
  content: " *";
  color: var(--color-accent);
}
.control-row_input:focus {
  border-color: var(--color-grey);
}
.control-row.accented .control-row_input {
  border-color: var(--color-accent);
}
.checkbox-row {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding-left: 36px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox-row input {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}
.checkbox-row_label:before,
.checkbox-row_label:after {
  content: "";
  width: 24px;
  height: 24px;
  background-color: rgba(var(--color-grey-rgb), 0.2);
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
}
.checkbox-row_label:after {
  background-color: var(--color-primary);
  -webkit-mask: url(/assets/images/elements/Check.svg) center center / 12px
    no-repeat;
  mask: url(/assets/images/elements/Check.svg) center center / 12px no-repeat;
  border: none;
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
}
.checkbox-row input:checked + .checkbox-row_label:after {
  opacity: 1;
}
.radio-row {
  display: inline-block;
  padding-left: 32px;
  margin-bottom: 8px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.radio-row input {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}
.radio-row_label:before,
.radio-row_label:after {
  content: "";
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.radio-row_label:after {
  width: 14px;
  height: 14px;
  background-color: var(--color-primary);
  top: 5px;
  left: 5px;
  opacity: 0;
  transition: opacity 0.2s;
}
.radio-row input:checked + .radio-row_label:after {
  opacity: 1;
}
.radio-group {
  display: flex;
  flex-direction: column;
}
.radio-group_label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #555;
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .control-row_label,
  .control-row_input::placeholder,
  .radio-group_label {
    font-weight: 400;
  }
}
.pagination-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.pagination-wrap > * {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-grey);
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  width: 32px;
  border-radius: 8px;
  background-color: rgba(var(--color-grey-rgb), 0.15);
  padding: 4px;
  margin: 0 2px;
}
.pagination-wrap .activepage {
  color: var(--color-dark);
}
.pagination-wrap .prevlink,
.pagination-wrap .nextlink {
  position: relative;
}
.pagination-wrap .prevlink:before,
.pagination-wrap .nextlink:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-grey);
  -webkit-mask: url(/assets/images/elements/CaretRight.svg) center center / 12px
    no-repeat;
  mask: url(/assets/images/elements/CaretRight.svg) center center / 12px
    no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.pagination-wrap .prevlink {
  transform: rotate(-180deg);
}
.pagination-wrap .disabled {
  opacity: 0.3;
  pointer-events: none;
}
.popup-overlay {
  display: none;
  background-color: rgba(var(--color-grey-rgb), 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1105;
}
.popup-wrapper {
  padding: 24px 0.75rem 0.75rem;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1110;
}
.popup-body {
  background: url(/assets/images/background/popup-bg.png) center center / cover
      no-repeat,
    #fff;
  max-width: 790px;
  max-height: 100%;
  border-radius: 10px;
  padding: 48px 16px 24px;
  margin: 0 auto;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
}
.popup-body_close {
  display: block;
  width: 32px;
  height: 32px;
  background-color: var(--color-grey);
  -webkit-mask: url(/assets/images/elements/plus-thin.svg) center center / 24px
    no-repeat;
  mask: url(/assets/images/elements/plus-thin.svg) center center / 24px
    no-repeat;
  position: absolute;
  top: 16px;
  right: 16px;
  transition: background-color 0.35s;
  transform: rotate(45deg);
}
.popup-body_title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--color-dark);
  display: block;
  margin-bottom: 16px;
}
.popup-body_form {
  max-width: 340px;
  padding-bottom: 20px;
  margin: 0 auto;
}
.restore-pass-btn {
  font-weight: 400;
  color: #555;
  transition: color 0.35s;
}
.extra-actions_text {
  font-weight: 400;
  color: var(--color-dark);
  display: inline-block;
  margin-right: 8px;
}
.extra-actions_btn {
  font-weight: 500;
  color: var(--color-accent);
  position: relative;
}
.extra-actions_btn:before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  position: absolute;
  top: 100%;
  left: 0;
  transition: width 0.35s;
}
.policy {
  font-size: 14px;
  font-weight: 400;
}
.policy a {
  color: var(--color-primary);
  position: relative;
}
.info-section {
  min-height: 678px;
  background: url(/assets/images/background/wall-patt_dark.webp) left top /
    300px repeat;
  padding: 48px 0;
  margin-bottom: 40px;
}
.info-section .page_title {
  color: #fff;
}
.info-section_row {
  --bs-gutter-x: 8px;
  --bs-gutter-y: 24px;
}
.info-block {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.info-block_ico {
  height: 240px;
  border: 4px solid #fff9;
  border-radius: 10px;
  background: url(/assets/images/background/wall-patt_ellipse.webp) center
    center / cover no-repeat;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.info-block_ico:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ico-url) center center / 140px no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.info-block_title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-primary);
  padding: 0 12px;
  margin-bottom: 12px;
}
.info-block_content {
  color: #e5e5e5;
  padding: 0 12px;
}
.category-section {
  margin-bottom: 24px;
}
.category-section_row {
  --bs-gutter-x: 8px;
  --bs-gutter-y: 24px;
}
.category-block {
  display: block;
  max-width: 448px;
  border-radius: 8px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.category-block_overlay {
  display: flex;
  flex-direction: column;
  padding: 24px 12px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.category-block img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.category-block_title {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  text-align: center;
  text-shadow: 0 4px 5px #0000001a;
  text-transform: uppercase;
  white-space: break-spaces;
  flex: 1 0 0;
}
.category-block_title strong {
  color: var(--color-primary);
}
.category-block_btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #f5f5f5;
  text-align: center;
  width: 130px;
  border-radius: 4px;
  background-color: var(--color-primary);
  padding: 10px 12px;
  margin: 0 auto;
}
.brands-section {
  background: url(/assets/images/background/wall-patt_gray.webp) left top /
    300px repeat;
  padding: 32px 0 56px;
  margin: 48px 0 64px;
}
.swiper-pagination.brands-crsl-pagination {
  bottom: -34px;
}
.article-preview {
  display: flex;
  flex-direction: column;
}
.article-preview_img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}
.article-preview_date {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-grey);
}
.article-preview_title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-dark);
}
.contacts-page .row {
  --bs-gutter-x: 8px;
}
.contact-block {
  color: #555;
  display: flex;
  height: 100%;
  background-color: #fff;
  border: 1px solid #e5e5e580;
  border-radius: 8px;
  padding: 18px 16px 18px 18px;
}
.contact-block_title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}
.contact-block_subtitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #888;
  padding: 16px 0 2px;
}
.contact-block td {
  vertical-align: top;
  padding: 0;
}
.contact-block td:first-child {
  font-size: 15px;
  padding-right: 20px;
}
.contact-block_map iframe {
  width: 100%;
  min-height: 260px;
  height: 100%;
  border-radius: 4px;
}
.contact-form {
  padding-top: 20px;
}
.contact-form .row {
  --bs-gutter-x: 10px;
}
.category-list {
  min-height: 594px;
  background: url(/assets/images/elements/logo-gray.svg) right 16px bottom 16px /155px
      no-repeat,
    #fff;
  border: 1px solid #e5e5e580;
  border-radius: 8px;
  padding: 24px 18px;
}
.category-list_link {
  margin-bottom: 8px;
}
.category-list_link.main-link {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
}
.category-list_link.sale-link {
  color: var(--color-accent);
}
.subcategory-list {
  --bs-gutter-x: 8px;
  --bs-gutter-y: 8px;
}
.subcategory-list_link {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #fff;
  border: 1px solid rgba(var(--color-grey-rgb), 0.3);
  border-radius: 8px;
  padding: 12px 18px;
}
@media (min-width: 576px) {
  .subcategory-list_link {
    text-align: left;
    justify-content: flex-start;
  }
}
.prod-sort {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.prod-sort_title {
  font-weight: 600;
  color: var(--color-dark);
  margin-right: 8px;
}
.prod-sort_options {
  display: flex;
}
.prod-sort_options .item {
  color: var(--color-dark);
  text-transform: lowercase;
  margin: 0 8px;
  cursor: pointer;
}
.prod-sort_options .item.active {
  color: var(--color-accent);
}
.filter-selected {
  color: var(--color-dark);
}
.prod-sort .control-row_select {
  min-width: 132px;
  max-width: 264px;
  height: 40px;
  background-size: 12px;
  background-position: center right 8px;
  padding-right: 24px;
}
.catalog-filter {
  width: 280px;
}
.catalog-filter_item {
  border-top: 1px solid rgba(var(--color-grey-rgb), 0.3);
  padding: 8px 0;
}
.catalog-filter_item:last-child {
  border-bottom: 1px solid rgba(var(--color-grey-rgb), 0.3);
}
.catalog-filter_title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  display: block;
  padding-right: 24px;
  position: relative;
  cursor: pointer;
}
.catalog-filter_title:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--color-dark);
  -webkit-mask: url(/assets/images/elements/CaretDown.svg) center center /
    contain no-repeat;
  mask: url(/assets/images/elements/CaretDown.svg) center center / contain
    no-repeat;
  position: absolute;
  top: calc(50% - 8px);
  right: 0;
  transition: transform 0.2s;
}
.catalog-filter_item.active .catalog-filter_title:after {
  transform: rotate(-180deg);
}
.catalog-filter_counter {
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-align: center;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  background-color: var(--color-primary);
  border-radius: 16px;
  padding: 3px;
}
.catalog-filter_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-height: 0;
  overflow-y: hidden;
  overflow-x: hidden;
  transition: max-height 0.2s ease-in-out, padding 0.2s ease-in-out;
}
.catalog-filter_item.active .catalog-filter_content {
  max-height: 192px;
  padding: 8px 0;
  animation: showScrollbar 0.2s forwards;
  animation-delay: 0.2s;
}
@keyframes showScrollbar {
  100% {
    overflow-y: auto;
  }
}
.catalog-filter_item.active .catalog-filter_content::-webkit-scrollbar {
  width: 4px;
}
.catalog-filter_item.active .catalog-filter_content::-webkit-scrollbar-track {
  background: var(--color-grey);
  border-radius: 4px;
}
.catalog-filter_item.active .catalog-filter_content::-webkit-scrollbar-thumb {
  background: var(--color-dark);
  border-radius: 4px;
}
.catalog-filter_link {
  padding-left: 24px;
  margin-bottom: 4px;
  position: relative;
}
.catalog-filter_link:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--color-dark-grey);
  -webkit-mask: url(/assets/images/elements/CaretRight.svg) center center /
    contain no-repeat;
  mask: url(/assets/images/elements/CaretRight.svg) center center / contain
    no-repeat;
  position: absolute;
  top: calc(50% - 8px);
  left: 0;
}
.catalog-filter_link:last-child {
  margin-bottom: 0;
}
.catalog-filter_link.active {
  font-weight: 600;
  color: var(--color-dark);
}
.catalog-filter_link.active:before {
  background-color: var(--color-dark);
}
.catalog-filter_content .checkbox-row:not(:last-child) {
  margin-bottom: 8px;
}
.price-inputs {
  display: flex;
  padding-top: 20px;
}
.price-inputs label {
  flex: 1 0 0;
  display: flex;
  align-items: center;
  border-radius: 4px;
  background-color: rgba(var(--color-grey-rgb), 0.2);
  padding: 4px 16px;
  margin-left: 4px;
}
.price-inputs label:first-child {
  margin-left: 0;
  margin-right: 4px;
}
.price-inputs input {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark-grey);
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  border-radius: 0;
  padding: 0;
}
.price-inputs_label {
  font-size: 14px;
  margin-right: 8px;
}
.slider-theme.noUi-target {
  background: #ebece7;
  border: none;
  border-radius: 10px;
  box-shadow: none;
}
.slider-theme.noUi-horizontal {
  height: 4px;
  margin-bottom: 8px;
}
.slider-theme.noUi-horizontal .noUi-handle {
  width: 20px;
  height: 20px;
  right: -20px;
  top: -8px;
}
.slider-theme.noUi-horizontal .noUi-handle.noUi-handle-upper {
  right: 0;
}
.slider-theme .noUi-handle {
  background: #555;
  border-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.251);
}
.slider-theme .noUi-handle:after,
.slider-theme .noUi-handle:before {
  display: none;
}
.slider-theme .noUi-connects {
  border-radius: 4px;
  background: rgba(var(--color-grey-rgb), 0.2);
}
.slider-theme .noUi-connect {
  background: #555;
}
@media (max-width: 1199.98px) {
  .filter-overlay {
    display: none;
    background-color: rgba(var(--color-grey-rgb), 0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1010;
  }
  .filter-btn {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    color: #fff;
    text-align: center;
    display: inline-block;
    background-color: var(--color-grey);
    border-radius: 4px;
    padding: 10px 16px 10px 32px;
    cursor: pointer;
    position: relative;
  }
  .filter-btn:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-color: #fff;
    -webkit-mask: url(/assets/images/elements/sliders-solid.svg) center center /
      contain no-repeat;
    mask: url(/assets/images/elements/sliders-solid.svg) center center / contain
      no-repeat;
    position: absolute;
    top: calc(50% - 8px);
    left: 12px;
  }
  .catalog-filter {
    width: 320px;
    height: 100%;
    background-color: #f5f5f5;
    padding: 0 12px 72px;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: -320px;
    z-index: 1020;
    transition: left 0.2s;
  }
  .catalog-filter.is-visible {
    left: 0;
  }
  .hide-filter-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #888;
    border-radius: 50%;
    margin: 12px 0 12px auto;
    position: relative;
  }
  .hide-filter-btn:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #888;
    -webkit-mask: url(/assets/images/elements/Plus.svg) center center / 20px
      no-repeat;
    mask: url(/assets/images/elements/Plus.svg) center center / 20px no-repeat;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 0;
  }
}
.prod-list {
  --bs-gutter-x: 8px;
  --bs-gutter-y: 16px;
  margin-bottom: 48px;
}
.prod-list ~ .page_text--bottom {
  margin-top: 80px;
}
.showcase {
  overflow: hidden;
  padding-bottom: 32px;
}
.showcase_thumbs {
  display: flex;
  overflow-y: hidden;
  overflow-x: auto;
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: var(--color-grey) #eee; /* For Firefox */
}
.showcase_thumbs::-webkit-scrollbar {
  width: 4px;
}
.showcase_thumbs::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 4px;
}
.showcase_thumbs::-webkit-scrollbar-thumb {
  background: var(--color-grey);
  border-radius: 4px;
}
.showcase_thumbs {
  max-width: 520px;
  padding-top: 24px;
  margin-left: auto;
  margin-right: auto;
}
.showcase_thumbs .item {
  flex: 0 0 auto;
  width: 104px;
  height: 104px;
  background-color: #fff;
  border: 1px solid rgba(var(--color-grey-rgb), 0.3);
  border-radius: 10px;
  margin-right: 8px;
  opacity: 0.5;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.showcase_thumbs .item.active {
  opacity: 1;
}

.showcase_thumbs img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.showcase_main {
  width: 520px;
  max-width: 100%;
  background-color: #fff;
  border: 1px solid rgba(var(--color-grey-rgb), 0.3);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1600px) {
  .showcase_main {
    height: 520px;
  }
}
.showcase_main .item {
  display: none;
}
.showcase_main .item.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.showcase_main img {
  max-height: 100%;
}
.showcase_main .labels-wrapper {
  display: flex;
  flex-direction: column;
  padding: 16px;
  position: absolute;
  top: 0;
  left: 0;
}
.showcase_main .label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  flex: 0 0 auto;
  background-color: var(--color-grey);
  border-radius: 4px;
  padding: 8px 12px;
  margin-bottom: 4px;
}
.showcase_main .sale {
  color: #fff;
  background-color: var(--color-accent);
}
.showcase_main .new {
  color: #fff;
  background-color: var(--color-dark-accent);
}
.showcase_main .fav {
  display: block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 1px solid rgba(var(--color-grey-rgb), 0.3);
  border-radius: 50%;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
}
.showcase_main .fav:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-dark);
  -webkit-mask: url(/assets/images/elements/HeartStraight.svg) center center /
    60% no-repeat;
  mask: url(/assets/images/elements/HeartStraight.svg) center center / 60%
    no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.showcase_main .fav.active:after {
  background-color: var(--color-dark);
  -webkit-mask: url(/assets/images/elements/HeartStraightFilled.svg) center
    center / 60% no-repeat;
  mask: url(/assets/images/elements/HeartStraightFilled.svg) center center / 60%
    no-repeat;
}
.showcase_main .fav.fav_ok:after {
  animation: heartBeat 1s;
}
.showcase_info .price-wrapper {
  margin-bottom: 20px;
}
.showcase_info .price {
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
}
.showcase_info .price small {
  font-size: 0.9em;
}
.showcase_info .price.new {
  color: var(--color-accent);
}
.showcase_info .price.old {
  color: var(--color-grey);
  text-decoration: line-through;
}
.showcase_info .control-row_select {
  width: 100%;
  max-width: 334px;
  height: 56px;
}
.option-table {
  width: 100%;
  max-width: 426px;
}
.option-table tr:not(:last-child) {
  margin-bottom: 4px;
}
.option-table td {
  padding: 0;
}
.option-table td:last-child {
  max-width: 220px;
}
.option-table hr {
  border-top: 1px dashed #88888880;
  margin: 18px 4px 8px;
}
.option-table .in-stock {
  color: #5b9f16;
}
.option-table .out-stock {
  color: var(--color-dark-accent);
}
.anchor-link {
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-primary);
}
.product-actions {
  max-width: 588px;
  margin-bottom: 18px;
}

.product-actions .btn {
  position: relative;
  transition: color 0.15s ease-in-out;
}

.product-actions .btn::after {
  content: attr(data-success);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease-in-out, visibility 0.15s ease-in-out;
}

.product-actions .btn.is-added {
  color: transparent;
  overflow: hidden;
}

.product-actions .btn.is-added::after {
  color: var(--color-primary);
  background-color: #fff;
  opacity: 1;
  visibility: visible;
}
.qty-widget_units {
  display: flex;
  border: 1px solid rgba(var(--color-grey-rgb), 0.3);
  border-radius: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  overflow: hidden;
}
.qty-widget_units input {
  width: 32%;
  height: calc(var(--qty-widget-size) - 16px);
  border: none;
  padding: 0 8px;
}
.qty-widget_units-val {
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68%;
  height: 100%;
  border-left: 1px solid rgba(var(--color-grey-rgb), 0.3);
  padding: 8px 16px;
}
@media (min-width: 992px) {
  .product-actions .qty-widget {
    max-width: 264px;
  }
  .product-actions--wide .qty-widget {
    max-width: 100%;
  }
}
.note-success {
  color: var(--color-dark);
  background-color: rgba(var(--color-primary-rgb), 0.12);
  border-radius: 8px;
  padding: 12px 18px;
}
.showcase_info .note-success {
  max-width: 588px;
  margin-bottom: 18px;
}
.note-info {
  font-weight: 600;
  font-style: italic;
  color: var(--color-dark);
}
.detail-page .page_text {
  max-width: 790px;
}
.tabs-list {
  display: flex;
  width: 100%;
  padding-bottom: 16px;
  overflow-x: auto;
  overflow-y: hidden;
}
.tabs-list_item {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #555;
  margin-right: 30px;
}
.tabs-list_item.active {
  color: var(--color-dark);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.accordion_item {
  border-top: 1px solid rgba(var(--color-grey-rgb), 0.5);
  padding-top: 16px;
  padding-bottom: 16px;
}
.accordion_item:last-child {
  border-bottom: 1px solid rgba(var(--color-grey-rgb), 0.5);
}
.accordion_title {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-dark);
  padding-left: calc(1.4em + 12px);
  margin: 0;
  cursor: pointer;
  position: relative;
}
.accordion_title::before {
  content: "";
  display: block;
  width: 1.4em;
  height: 1.4em;
  background: url("/assets/images/elements/plus-thin.svg") center center /
    contain no-repeat;
  position: absolute;
  top: 2px;
  left: 0;
  transition: transform 0.15s ease-in-out;
}
.accordion_item.active .accordion_title::before {
  transform: rotate(45deg);
}
.accordion_content {
  display: none;
  padding-top: 16px;
  padding-bottom: 16px;
}
.carousel-section--bg {
  background: url("/assets/images/background/pop-cat-section.png") center center /
      contain repeat,
    #f4f4f5;
  padding-top: 36px;
  padding-bottom: 36px;
  margin-bottom: 36px;
}
.user-page hr {
  border-color: #888;
}
.user-page_form {
  max-width: 285px;
  margin-left: auto;
  margin-right: auto;
}
.user-page .user-page_form {
  max-width: 100%;
  margin: 0;
}
.user-page_title {
  background-color: rgba(var(--color-grey-rgb), 0.15);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 20px;
}
.user-page_title strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-dark);
}
.user-page_title em {
  font-size: 16px;
  line-height: 1;
  color: var(--color-dark-grey);
}
.user-page .user-page_form button[type="submit"] {
  max-width: 340px;
}
@media (min-width: 1200px) {
  .user-page_title {
    padding: 18px 32px 18px 28px;
    margin-bottom: 40px;
  }
  .user-page_title strong {
    font-size: 20px;
  }
  .user-page_title em {
    font-size: 18px;
  }
}
.logout-btn {
  font-weight: 500;
  color: var(--color-dark-accent);
  transition: color 0.35s;
}
.logout-btn:hover {
  color: #888;
}
.history-btn {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  display: inline-block;
  background-color: var(--color-primary);
  border-radius: 4px;
  padding: 8px 20px 8px 40px;
  position: relative;
}
.history-btn:before {
  content: "";
  display: block;
  width: 24px;
  height: 100%;
  background-color: #fff;
  -webkit-mask: url(/assets/images/elements/ShoppingCartSimple.svg) center
    center / 24px no-repeat;
  mask: url(/assets/images/elements/ShoppingCartSimple.svg) center center / 24px
    no-repeat;
  position: absolute;
  top: 0;
  left: 8px;
}
.user-order_header {
  display: flex;
  align-items: center;
  color: var(--color-dark);
  background-color: rgba(var(--color-grey-rgb), 0.15);
  border-radius: 8px;
  padding: 12px 16px;
}
.user-order_header::after {
  content: "";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background: url("/assets/images/elements/CaretDown.svg") center center /
    contain no-repeat;
  cursor: pointer;
  transition: transform 0.15s ease-in-out;
}
.user-order_header.active::after {
  transform: rotate(-180deg);
}
.user-order_body {
  padding-top: 16px;
  padding-bottom: 24px;
}
.user-order_body .cart-product {
  max-width: 920px;
}
.order-summary {
  font-size: 18px;
  line-height: 1.2;
}
.order-summary_title {
  font-weight: 500;
  color: #555;
}
.order-summary_title em {
  font-weight: 400;
}
.order-summary_title strong,
.order-summary_val strong {
  font-size: 20px;
  color: var(--color-dark);
}
.order-summary_sep {
  border-bottom: 1px dashed var(--color-grey);
}
.order-summary_val {
  color: var(--color-dark-grey);
}
.order-summary hr {
  border-width: 2px;
  border-color: var(--color-grey);
  margin: 32px 0 24px;
}
@media (min-width: 1200px) {
  .user-order_header {
    padding: 20px 24px;
  }
  .user-order_body {
    padding-bottom: 50px;
  }
  .order-summary {
    font-size: 20px;
  }
  .order-summary_title strong,
  .order-summary_val strong {
    font-size: 22px;
  }
}
/**Blog*/
.article-list {
  margin-bottom: 40px;
}
.article-date {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-grey);
  display: block;
  margin-bottom: 20px;
}
.blog-detail .blog-section {
  margin-top: 40px;
}
.footer {
  background: url(/assets/images/background/footer-bg.svg) bottom center / 100%
      no-repeat,
    var(--color-dark);
  padding-top: 40px;
  padding-bottom: 20px;
  position: relative;
}
.footer-nav_title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  display: block;
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .sm-screen-acc .footer-nav_title {
    line-height: 24px;
    padding-right: 32px;
    position: relative;
  }
  .sm-screen-acc .footer-nav_title:after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-color: var(--color-primary);
    -webkit-mask: url(/assets/images/elements/CaretDown.svg) center center /
      contain no-repeat;
    mask: url(/assets/images/elements/CaretDown.svg) center center / contain
      no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(-90deg);
    transition: transform 0.2s;
  }
  .sm-screen-acc.active .footer-nav_title:after {
    transform: rotate(0);
  }
  .sm-screen-acc .footer-nav_list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s;
  }
  .sm-screen-acc.active .footer-nav_list {
    max-height: 100%;
  }
}
.footer-nav_item:not(:last-child) {
  margin-bottom: 10px;
}
.footer-nav_link {
  line-height: 1;
  color: var(--color-grey);
}
.footer-nav_link.link-ico {
  padding-left: 36px;
  position: relative;
}
.footer-nav_link.link-ico:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--color-primary);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.footer-nav_link.phone {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  color: #fff;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.footer-nav_link.phone:before {
  -webkit-mask: url(/assets/images/elements/DeviceMobileCamera.svg) center
    center / contain no-repeat;
  mask: url(/assets/images/elements/DeviceMobileCamera.svg) center center /
    contain no-repeat;
}
.footer-nav_link.small {
  font-size: 14px;
  line-height: 1;
  color: #d9d9d9;
}
.app-link:first-child {
  margin-right: 12px;
}
.social-link {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  position: relative;
}
.social-link:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.35s;
}
.social-link.fb:after {
  -webkit-mask: url(/assets/images/elements/facebook.svg?v=2.0) center center /
    contain no-repeat;
  mask: url(/assets/images/elements/facebook.svg?v=2.0) center center / contain
    no-repeat;
}
.social-link.inst:after {
  -webkit-mask: url(/assets/images/elements/streamline_instagram.svg) center
    center / contain no-repeat;
  mask: url(/assets/images/elements/streamline_instagram.svg) center center /
    contain no-repeat;
}
.footer hr {
  border-top-color: var(--color-grey);
  margin-top: 44px;
  margin-bottom: 16px;
}
.copyright {
  font-weight: 400;
  font-size: 14p;
  line-height: 1.4;
  color: var(--color-dark-grey);
}
.p-stock-0 img {
  Xfilter: saturate(30%);
  transition: all 0.3s;
}

.p-stock-0 .qty-widget{
	display: none !important;
	visibility: hidden;
	opacity: 0;
}

.p-stock-0:hover img {
  filter: saturate(70%);
}
.l-nstock {
  color: #a0a0a0;
}
.scroll-top-btn {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -56px;
  left: 0.75rem;
  transition: background-color 0.15s ease-in-out;
}
.scroll-top-btn::after {
  content: "";
  flex: 0 0 auto;
  width: 50%;
  height: 50%;
  background: #fff;
  -webkit-mask: url(/assets/images/elements/CaretDoubleUp.svg) center center /
    contain no-repeat;
  mask: url(/assets/images/elements/CaretDoubleUp.svg) center center / contain
    no-repeat;
  transition: background-color 0.15s ease-in-out;
}
@media (min-width: 1200px) {
  .scroll-top-btn {
    top: 8px;
  }
  .scroll-top-btn:hover {
    background-color: transparent;
  }
  .scroll-top-btn:hover::after {
    background-color: var(--color-primary);
  }
}
@media (min-width: 1870px) {
  .scroll-top-btn {
    width: 64px;
    height: 64px;
    left: 40px;
    top: 64px;
  }
}



p a:hover, li a:hover{
		text-decoration: underline;
	    color: #b99c69;
	    text-decoration-thickness: 0.02em;
	    text-underline-offset: 2px;
	}
