/* ==========================================================================
   ЦВЕТОВАЯ ПАЛИТРА И ПЕРЕМЕННЫЕ ФИРМЕННОГО СТИЛЯ «БЕРУСЕБЕ»
   ========================================================================== */
:root {
  /* Фирменные цвета из логотипа */
  --color-olive: #788233;              /* Оливковый (корзина в логотипе #837e27) */
  --color-olive-hover: #646d29;        /* Темный оливковый при наведении */
  --color-olive-light: #f2f5e8;        /* Светлый оливковый фон */
  --color-olive-rgba: rgba(120, 130, 51, 0.15);

  --color-brown-dark: #6e4d2f;         /* Темный благородный коричневый из логотипа (#846342) */
  --color-brown-hover: #583c22;        /* Глубокий шоколадный при наведении */
  --color-brown-light: #f8f4f0;        /* Мягкий бежевый фон */

  --color-primary: #788233;            /* Основной цвет интерфейса и кнопок действий (Оливковый) */
  --color-primary-hover: #646d29;      /* Наведение */
  --color-primary-light: #f2f5e8;
  --color-primary-rgba: rgba(120, 130, 51, 0.15);

  --color-secondary: #6e4d2f;          /* Вторичный цвет (Темно-коричневый) */
  --color-secondary-hover: #583c22;
  --color-secondary-light: #f8f4f0;

  --color-caramel: #b87333;            /* Акцентный янтарь/карамель (#c77a36) */

  /* Текстовые и нейтральные цвета */
  --color-text-dark: #2b231d;          /* Глубокий шоколадно-графитовый (заголовки, иконки, цены) */
  --color-text-body: #292929;          /* Основной текст описаний */
  --color-text-muted: #888888;         /* Приглушенный текст */
  --color-border: #e7e9ec;             /* Границы и разделители */
  --color-border-hover: #788233;       /* Цвет границ при наведении */
  --color-bg-sand: #f7f3ee;            /* Теплый песочно-бежевый фон */
  --color-white: #ffffff;

  /* Кнопки и интерфейс */
  --btn-primary-bg: #788233;           /* Кнопка «В корзину», «Купить» (Оливковая) */
  --btn-primary-hover-bg: #646d29;
  --btn-primary-text: #ffffff;
  --btn-secondary-bg: #6e4d2f;         /* Темно-коричневая кнопка */
  --btn-secondary-hover-bg: #583c22;
  --btn-border-radius: 4px;

  /* Бейджи и статусы */
  --badge-cart-bg: #788233;            /* Оливковый бейдж корзины и избранного */
  --badge-hit-bg: #6e4d2f;             /* Хит (Темно-коричневый) */
  --badge-new-bg: #788233;             /* Новинка (Оливковый) */
  --badge-act-bg: #b83f44;             /* Акция */
  --badge-garant-bg: #829c7d;          /* Гарантия */

  /* Интерактивные элементы */
  --link-hover-color: #788233;
  --tab-active-border: #c77a36;        /* Теплый коричневый/карамель для активного таба (#c77a36) */
  --price-color: #2b231d;
  --price-old-line: #6e4d2f;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.35em;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

h1 {
  font-size: 2.75em;
}

h2 {
  font-size: 2.4em;
}

h3 {
  font-size: 2.1em;
}

h4 {
  font-size: 1.6em;
}

h5 {
  font-size: 1.2em;
}

p {
  line-height: 1.65em;
}

ul {
  list-style: none;
}

.section-title {
  text-align: center;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding-bottom: 30px;
}

.section-title h2,
.section-title h1 {
  margin: 0;
  padding: 0;
  font-size: 2.1em;
}

.section-all-link {
  text-align: center;
  text-transform: uppercase;
  padding-top: 10px;
}

.section-all-link a {
  color: #010101;
  text-decoration: underline;
}

.section-all-link a:hover {
  color: var(--link-hover-color);
  text-decoration: none;
}

.section-title h2:after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 62px;
  height: 15px;
  background: url('../img/separator.svg');
  background-size: 62px;
}

.section-title-left h1:after {
  content: '';
  display: block;
  width: 62px;
  height: 15px;
  background: url('../img/separator.svg');
  background-size: 62px;
}

.section-title-left {
  text-align: left;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding-bottom: 30px;
}

.section-title-left h2,
.section-title-left h1 {
  margin: 0;
  padding: 0;
  font-size: 2.8em;
}

.section-desc {
  font-size: 1.2em;
}

.section-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.2em;
}

.section-categories ul li {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
}

.section-categories ul li a {
  display: block;
  padding: 10px 25px;
  border-radius: 3px;
  color: #010101;
  text-decoration: none;
  border: 1px solid #e1e1e1;
  transition: all 0.3s ease;
}

.section-categories ul li a span {
  font-size: 0.75em;
  color: var(--color-primary);
}

.section-categories ul li a:hover {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.container-auto {
  width: auto;
}

body,
.home,
.other {
  padding-top: 100px;
}

@media (min-width: 48em) {
  .container-auto {
    margin: 0 2%;
  }
}

@media (min-width: 62em) {
  .container-auto {
    margin: 0 2%;
  }
}

@media (min-width: 85.375em) {
  .container-auto {
    margin: 0 2%;
  }
}

@media (min-width: 120em) {
  .container-auto {
    margin: 0 2%;
  }
}

@media (min-width: 160em) {
  .container-auto {
    margin: 0 2%;
  }
}

.container-products,
.container-actions,
.container-articles,
.container-blog,
.container-page,
.container-cart,
.container-order,
.container-footer,
.container-other,
.container-category,
.container-slider {
  max-width: 1360px;
  position: relative;
}

.container-product {
  max-width: 1200px;
  position: relative;
}

#collections {
  padding: 60px 0;
}

#collection {
  padding: 60px 0;
}

#category {
  padding: 60px 0;
}

#product {
  padding: 60px 0;
}

#page {
  padding: 60px 0;
}

#cart {
  padding: 60px 0;
}

#order {
  padding: 60px 0;
}

#browsed-products {
  padding: 0 0 60px 0;
}

.btn-w {
  position: relative;
  display: inline-block;
  padding: 12px 50px;
  line-height: normal;
  border: 1px solid #ffffff;
  border-radius: 3px;
  font-size: 1.2em;
  border-radius: 3px;
  text-align: center;
  font-weight: 500;
  font-style: normal;
  background-color: transparent;
  -webkit-transition:
    color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
    border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition:
    color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
    border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
  color: #010101;
  text-decoration: none;
  -webkit-tap-highlight-color: initial;
}

.btn-w:hover {
  color: #ffffff;
  text-decoration: none;
}

.btn-w:before {
  position: absolute;
  content: '';
  display: block;
  background-color: #ffffff;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1, 1);
  transform: scale(1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition:
    transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
    -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.btn-w:hover:before {
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1);
  transform: scaleX(0);
}

.btn,
.btn-b {
  position: relative;
  display: inline-block;
  padding: 10px 50px;
  line-height: normal;
  border: 1px solid var(--btn-primary-bg);
  border-radius: var(--btn-border-radius);
  font-size: 1.2em;
  text-align: center;
  font-weight: 500;
  font-style: normal;
  background-color: var(--btn-primary-bg);
  -webkit-transition:
    color 0.3s ease,
    border 0.3s ease,
    background-color 0.3s ease;
  transition:
    color 0.3s ease,
    border 0.3s ease,
    background-color 0.3s ease;
  z-index: 1;
  color: var(--btn-primary-text);
  text-decoration: none;
  -webkit-tap-highlight-color: initial;
}

.btn:hover,
.btn-b:hover {
  color: var(--btn-primary-text);
  text-decoration: none;
  background-color: var(--btn-primary-hover-bg);
  border-color: var(--btn-primary-hover-bg);
}

.btn:before,
.btn-b:before {
  position: absolute;
  content: '';
  display: block;
  background-color: var(--btn-primary-hover-bg);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1, 1);
  transform: scale(1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition:
    transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
    -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.btn:hover:before,
.btn-b:hover:before {
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1);
  transform: scaleX(0);
}

.btn i,
.btn-w i,
.btn-b i {
  vertical-align: middle;
}

.btn i.ic-cart,
.btn-w i.ic-cart,
.btn-b i.ic-cart {
  vertical-align: baseline;
}

.other {
  padding-top: 103px;
}

/*-------------------------*/

/***** HEADER *****/

/*-------------------------*/

#header {
  position: fixed !important;
  z-index: 10000 !important;
  top: 0 !important;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -1px #d7d6d6 inset;
  color: #010101;
  -webkit-transition:
    background 0.3s ease-in-out,
    -webkit-box-shadow 0.3s ease-in-out;
  transition:
    background 0.3s ease-in-out,
    -webkit-box-shadow 0.3s ease-in-out;
  transition:
    background 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
  transition:
    background 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out,
    -webkit-box-shadow 0.3s ease-in-out;
  position: relative;
}

.header-sticky {
}

.header-body {
  display: table;
  width: 100%;
}

.header-phone-col {
  display: table-cell;
  width: 180px;
  vertical-align: middle;
}

.header-phone a {
  font-size: 1.2em;
  color: var(--color-text-dark);
  transition: color 0.3s ease;
}

.header-phone a i {
  color: var(--color-primary);
  margin-right: 4px;
}

.header-phone a:hover {
  color: var(--link-hover-color);
  text-decoration: none;
}

.header-logo-col {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  height: 100px;
}

.header-buttons-col {
  display: table-cell;
  width: 300px;
  vertical-align: middle;
  text-align: right;
}

.header-topline {
  background: #010101;
  color: #ffffff;
  text-transform: uppercase;
  padding: 7px 0;
  text-align: center;
  display: none;
}

/*-------------------------*/

/***** TOP SLIDER *****/

/*-------------------------*/

/*-------------------------*/

/***** TOP SLIDER *****/

/*-------------------------*/

#slider-section {
  position: relative;
  margin-top: 20px;
  margin-bottom: 0px;
}

#slider-section .slider-wrapper {
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
}

#slider {
  height: 300px;
  min-height: 300px;
  background-color: #f7efe2;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

#slider-section .slide-item {
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  display: flex !important;
  align-items: center;
}

#slider-section .slide-item picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#slider-section .slide-item img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: all 3s cubic-bezier(0.7, 0, 0.3, 1);
  transform: scale(1.3);
}

#slider-section .slide-item .slide-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: 1;
}

#slider-section .slide-item.slick-active img {
  transform: scale(1);
  animation: slide_animate 2s 1 ease-in-out;
}

@keyframes slide_animate {
  from {
    transform: scale(1.3) translate(0px);
  }
  to {
    transform: scale(1) translate(0px);
  }
}

#slider-section .slide-body {
  display: block;
  text-align: left;
  font-size: 1em;
  position: relative;
  z-index: 2;
  margin-left: 40px;
  max-width: 65%;
  height: auto !important;
  color: #ffffff;
}

#slider-section .slide-pretitle {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

#slider-section .slide-title h2 {
  padding: 0;
  margin: 0;
  font-size: 1.9em;
  line-height: 1.15;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

#slider-section .slide-title {
  color: #ffffff;
  padding-bottom: 6px;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#slider-section .slide-price {
  font-size: 1.3em;
  padding: 12px 0;
  font-weight: 500;
  font-family: Arial;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

#slider-section .slide-desc {
  font-size: 1em;
  line-height: 1.3em;
  padding-bottom: 10px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

#slider-section .slide-title a {
  color: #ffffff;
  text-decoration: none;
}

#slider-section .slide-category {
  color: #ffffff;
  font-size: 1em;
  text-transform: uppercase;
}

#slider-section .slide-category a {
  color: #ffffff;
  text-decoration: none;
}

#slider-section .slide-btn {
  padding-top: 10px;
}

#slider-section .slide-btn .btn-w {
  padding: 8px 22px;
  font-size: 14px;
}

#slider-section .slick-list,
#slider-section .slick-track,
#slider-section .slick-slide,
#slider-section .slick-slide > div {
  height: 100%;
}

#slider-section .home-slider-arrows {
  width: 100%;
  margin: auto;
  position: absolute;
  top: 50%;
}

#slider-section .slick-prev:before,
#slider-section [dir='rtl'] .slick-prev:before,
#slider-section .slick-down:before,
#slider-section [dir='rtl'] .slick-down:before,
#slider-section .slick-next:before,
#slider-section [dir='rtl'] .slick-next:before {
  color: #ffffff;
}

#slider-section .slick-prev,
#slider-section .slick-next {
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#slider-section .slick-prev {
  left: 15px;
  z-index: 101;
  border-radius: 100%;
}

#slider-section .slick-next {
  right: 15px;
  z-index: 101;
  border-radius: 100%;
}

#slider-section:hover .slick-prev,
#slider-section:hover .slick-next {
  opacity: 1;
}

#slider-section:hover .slick-prev:hover,
#slider-section:hover .slick-prev:focus,
#slider-section:hover .slick-next:hover,
#slider-section:hover .slick-next:focus {
  opacity: 0.8;
}

#slider-section .home-slider-dots .slick-dots {
  position: absolute;
  bottom: 20px;
  left: auto;
  right: 25px;
  text-align: right;
  width: auto;
}

/*-------------------------*/

/***** ROOT CATEGORIES (HOME) *****/

/*-------------------------*/

#home-categories,
body.home #ldu-content > #home-categories:first-child {
  padding: 24px 0 35px 0;
}

.home-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.home-category-card {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid #e2e4e8;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-sizing: border-box;
  min-height: 56px;
}

.home-category-card:hover {
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.home-category-img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 12px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #efeaea;
}

.home-category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-category-title {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: #2b231d;
  line-height: 1.25;
  transition: color 0.2s ease;
  word-break: break-word;
}

.home-category-card:hover .home-category-title {
  color: var(--color-primary);
}

/*-------------------------*/

/***** MENU *****/

/*-------------------------*/

.menu-header {
  border-bottom: 1px solid #e1e1e1;
  padding: 15px 45px;
}

.menu-header-table {
  display: table;
  width: 100%;
}
.menu-header-td-close {
  display: table-cell;
  vertical-align: middle;
}
.menu-header-td-buttons {
  display: none;
  vertical-align: middle;
  text-align: right;
}

.menu-header .menu-close {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  color: black;
  border: 0;
  z-index: 10000;
  font-size: 1.2em;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  padding-left: 0;
  line-height: 1;
  background: none;
}

.menu-header .menu-close:hover i {
  color: var(--link-hover-color);
}

.menu-header .menu-close i {
  font-size: 1.2em;
  vertical-align: bottom;
}

.menu-panel {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: auto;
  border: 0;
  z-index: 19990;
  max-width: 400px;
  background: #ffffff;
  box-sizing: border-box;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.32);
  transform: translateX(-120%);
  transition: all 0.3s cubic-bezier(0.35, 0.38, 0.07, 0.83);
  overflow: auto;
}

.menu-panel.active {
  transform: translateX(0%);
}

#menu {
  font-size: 1.033em;
  font-weight: normal;
  text-transform: uppercase;
}

#menu > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: table;
  width: 100%;
  display: flex;
  flex-direction: row;
}

#menu > ul > li {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding: 18px 5px;
}

#menu > ul > li > a {
  color: #010101;
  display: block;
  padding: 8px 5px;
}

/*-------------------------*/

/***** MOBILE TRIGGER *****/

/*-------------------------*/

.trigger-col {
  display: table-cell;
  width: 120px;
  vertical-align: middle;
  text-align: left;
}

.trigger-btn {
  display: inline-block;
  padding: 0;
  margin: 0;
  text-align: center;
}

.nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 24px;
  line-height: 1;
  white-space: nowrap;
  color: #010101;
  border: 0;
  z-index: 10000;
  font-size: 1.25em;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  padding-left: 28px;
  vertical-align: middle;
  background: none;
  cursor: pointer;
}

.nav-trigger span.line,
.nav-trigger span.line::before,
.nav-trigger span.line::after {
  position: absolute;
  display: inline-block;
  height: 2px;
  width: 20px;
  border-radius: 1px;
  background: #010101;
}

.nav-trigger span.line {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}

.nav-trigger span.title {
  display: inline-block;
  line-height: 1;
}

.nav-trigger span.line::before,
.nav-trigger span.line::after {
  /* other 2 lines */
  content: '';
  right: 0;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 0% 50%;
  -moz-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  -o-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transition: -webkit-transform 0.2s;
  -moz-transition: -moz-transform 0.2s;
  transition: transform 0.2s;
}

.nav-trigger span.line::before {
  /* menu icon top line */
  top: -6px;
}

.nav-trigger span.line::after {
  /* menu icon bottom line */
  top: 6px;
}

.nav-trigger.nav-is-visible span.line::after {
  top: 5px;
}

.nav-trigger.nav-is-visible span.line {
  /* hide line in the center */
  background: rgba(255, 255, 255, 0);
}

.nav-trigger.nav-is-visible span.line::before,
.nav-trigger.nav-is-visible span.line::after {
  /* keep visible other 2 lines */
  background: #010101;
}

.nav-trigger.nav-is-visible span.line::before {
  -webkit-transform: translateX(4px) translateY(-1px) rotate(45deg);
  -moz-transform: translateX(4px) translateY(-1px) rotate(45deg);
  -ms-transform: translateX(4px) translateY(-1px) rotate(45deg);
  -o-transform: translateX(4px) translateY(-1px) rotate(45deg);
  transform: translateX(4px) translateY(-1px) rotate(45deg);
}

.nav-trigger.nav-is-visible span.line::after {
  -webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -moz-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -o-transform: translateX(4px) translateY(2px) rotate(-45deg);
  transform: translateX(4px) translateY(2px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  left: 0;
  margin-top: 0px;
  width: 100%;
  overflow-y: scroll;
  height: 100%;
  background: #ffffff;
  z-index: 8000;
}

.js-menu {
}

.js-search {
  flex: 1 0 auto;
}

.js-search .search-form {
  padding: 30px 30px 20px 30px;
}

.js-contact {
  flex: 0 0 auto;
  text-align: center;
  margin: 50px 0 0 0;
  padding: 20px 20px;
  /* font-size: 17px; */
  line-height: 1.45em;
  font-weight: 400;
}

.js-contact a {
  color: #010101;
}

.js-contact i {
  color: #d4573f;
}

#header .js-contact .address {
  font-size: 0.9em;
  margin-bottom: 15px;
}

#header .js-contact .phone-text {
  display: block;
  font-weight: 500;
  padding: 4px 0;
  font-size: 1.2em;
}

#header .js-contact .phone-text .phone-title {
  font-size: 1.22em;
  font-weight: 800;
}

#header .js-contact .phone-text .phone-time {
  color: #5e5e5e;
  padding: 5px 0;
  font-weight: 300;
  font-size: 0.7em;
}

.menu-box {
  padding: 35px;
  display: flex;
  flex-direction: column;
}

.menu-box .location {
  margin-bottom: 15px;
}

.nav-is-visible {
  display: block;
}

.slinky-menu {
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/*-------------------------*/
/***** SEARCH *****/
/*-------------------------*/

.search-box {
  position: relative;
  max-width: 435px;
  margin: 0 auto;
}

.search-form {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  padding: 30px 0;
  background: #fdfdfd;
  border-bottom: 1px solid #d7d6d6;
}

.search-formю.active {
  display: block;
}

.search-group {
  position: relative;
}

.search-control {
  position: relative;
  font-size: 1.15em !important;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important;
  background-color: #fff !important;
  border: 1px solid #ddd !important;
  padding: 10px 10px !important;
  width: 100%;
  color: #010101 !important;
}

.search-control:focus,
.search-control:hover {
  border: 1px solid #4a4a4a !important;
}

.search-control::-webkit-input-placeholder {
  color: #cccccc;
}
.search-control:-ms-input-placeholder {
  color: #cccccc;
}
.search-control::-ms-input-placeholder {
  color: #cccccc;
}
.search-control::placeholder {
  color: #cccccc;
}

.search-control-btn {
  border: none;
  display: block;
  outline: none;
  cursor: pointer;
  position: absolute;
  background: none;
  top: 0;
  right: 0;
  z-index: 4;
  height: 100%;
  background: #010101;
  color: #ffffff;
  width: 65px;
  font-size: 16px;
  line-height: 1em;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.search-control-btn:hover {
  background: #333333;
}

.search-control-btn:before {
  font-family: 'Berysebe' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: '\eb1c';
}

.search-group-focus {
  position: absolute;
  /* width: 100%; */
  right: 15px;
  left: 88px;
  top: 12px;
  background: #ffffff;
  padding: 8px 0;
  z-index: 100002;
}

.search-focus .search-btn-mobile {
  display: none;
}

.search-focus .search-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 63px;
  display: table;
  background: #222222;
  z-index: 100;
}

.search-focus .gosearch {
  display: table-cell;
  vertical-align: middle;
  padding-right: 15px;
}

.search-focus .goback {
  display: table-cell;
  vertical-align: middle;
  width: 40px;
  padding-left: 5px;
}

.search-focus .goback .back-btn {
  width: 30px;
  height: 30px;
  display: inline-block;
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
  color: #ffffff;
  font-size: 30px;
  line-height: 20px;
}

.search-focus .goback .back-btn:before {
  font-family: 'Berysebe' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: '\ea60';
}

.goback {
  display: none;
}

/*-------------------------*/

/***** LOGO *****/

/*-------------------------*/

.logo {
}

.logo a {
  line-height: 1;
  display: inline-block;
}

.logo img {
  width: 220px;
}

/*-------------------------*/

/***** CART & AUTH & WHISHLIST *****/

/*-------------------------*/

.auth-btn,
.wishlist-btn,
.cart-btn,
.search-btn {
  display: inline-block;
  padding: 5px 10px;
  margin: 0 0 0 10px;
  text-align: center;
}

.auth-btn {
  padding: 5px 0px 5px 10px;
}

.crt-link {
  color: var(--color-text-dark);
  transition: color 0.3s ease;
}

.crt-link:active,
.crt-link:hover,
.crt-link:focus {
  text-decoration: none !important;
  color: var(--link-hover-color);
}

.crt-link .crt-icon {
  position: relative;
  font-size: 1.5em;
  line-height: 0;
}

.crt-link span.count {
  font-size: 11px;
  top: -2px;
  position: absolute;
  background: var(--badge-cart-bg);
  line-height: 14px;
  margin-left: -8px;
  color: #fff;
  min-width: 18px;
  padding: 2px;
  font-weight: 500;
  text-align: center;
  border-radius: 100%;
}

/*-------------------------*/

/***** PRODUCT GRID *****/

/*-------------------------*/

#new-products,
#discounted-products,
#hit-products,
#featured-products {
  padding: 0 0 40px 0;
}

body.home #ldu-content > section:first-child {
  padding-top: 30px;
}

#related-products {
  border-top: 1px solid #e0e0e0;
  padding: 60px 0;
}

#actions {
  padding: 0 0 70px 0;
}

#blog {
  padding: 70px 0 0 0;
}

#articles {
  padding: 70px 0 0 0;
}

.product-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*

.product-col-33 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
}

.product-col-25 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
}

.product-col-50 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

*/

.product-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.product-card-double-img {
  position: relative;
}

.product-card-img,
.product-card-img-hover {
  display: block;
  /* height: 0;*/
  position: relative;
  /*  padding-bottom: 100%;*/
}

.product-card-content {
    text-align: center;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/*

.product-card-img:before {
    position: absolute;
    top: 0;
    left: -1px;
    content: ' ';
    display: block;
    height: 100%;
    width: 1px;
    background: #fff;
    z-index: 2;
}

*/

/*
.product-card-img:after {
    position: absolute;
    top: 0;
    right: 0;
    content: ' ';
    display: block;
    height: 100%;
    width: 1px;
    background: #fff;
    z-index: 2;
}

*/

.product-card-img-hover {
  -webkit-transition: all 333ms ease;
  transition: all 333ms ease;
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 0;
  z-index: 2;
}

.product-card-img img,
.product-card-img-hover img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  /* position: absolute; 
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; */
}

.product-card:hover .product-card-img-hover {
  opacity: 1;
}

.product-card:hover .product-card-action,
.product-card:hover .product-card-info,
.product-card:hover .wishlist-tiny-btn {
  opacity: 1;
}

.product-card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.product-card-action {
  -webkit-transition: all 333ms ease;
  transition: all 333ms ease;
  position: absolute;
  left: 2rem;
  right: 2rem;
  opacity: 0;
  z-index: 3;
  text-align: center;
  bottom: 3rem;
  z-index: 4;
}

.product-card-info {
  -webkit-transition: all 333ms ease;
  transition: all 333ms ease;
  /*background: rgb(255 255 255 / 64%);*/
  position: absolute;
  left: 1rem;
  opacity: 0;
  right: 1rem;
  padding: 25px 5px;
  z-index: 3;
  text-align: center;
  bottom: 1rem;
  z-index: 4;
}

.product-color {
  display: inline-block;
  border: 1px solid transparent;
  margin: 0 4px;
  padding: 2px;
  border-radius: 100%;
  width: 26px;
  height: 26px;
  position: relative;
}

.product-color a {
  width: 20px;
  height: 20px;
  padding: 2px;
  border-radius: 100%;
  border: none;
  display: inline-block;
  position: relative;
  box-shadow: 0px 0px 4px #ccc;
}

.product-color button {
  width: 20px;
  height: 20px;
  padding: 15px;
  border-radius: 100%;
  border: none;
  display: inline-block;
  position: relative;
  box-shadow: 0px 0px 4px #ccc;
}

.product-color-box .product-color {
  display: inline-block;
  border: 1px solid transparent;
  margin: 0px 0px;
  padding: 2px;
  border-radius: 100%;
  width: 36px;
  height: 36px;
  position: relative;
}

.product-color-box .product-color a {
  width: 30px;
  height: 30px;
  padding: 2px;
  border-radius: 100%;
  display: inline-block;
  position: relative;
  box-shadow: 0px 0px 4px #ccc;
}

.product-color.active,
.product-color-box .product-color.active {
  border: 1px solid #cccccc;
}

.product-color:hover,
.product-color-box .product-color:hover {
  border: 1px solid var(--color-primary);
}

.product-razmer {
  padding: 0;
  margin: 4px 4px 4px 0;
  display: inline-block;
  min-width: 22px;
  height: 20px;
  font-size: 18px;
  position: relative;
}

.product-card-razmer {
  padding-bottom: 15px;
}

.product-card-colors {
  padding-bottom: 15px;
}

.out-of-stock:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 20px;
  background:
    linear-gradient(
      to top left,
      transparent 0,
      transparent calc(50% - 1px),
      red 50%,
      transparent calc(50% + 1px),
      transparent
    ),
    linear-gradient(
      to top right,
      transparent 0,
      transparent calc(50% - 1px),
      red 50%,
      transparent calc(50% + 1px),
      transparent
    );
}

.product-card .btn-b,
.product-card .btn-w {
  padding: 9px 40px;
}

.product-card-rating {
}

.product-card-content {
  padding-bottom: 25px;
}

.product-card-content .product-rating {
  display: none;
}

.product-card-title {
  /* text-transform: uppercase; */
  padding: 20px 0 15px 0;
  font-weight: 500;
  font-size: 1.25em;
  line-height: 1.25em;
  flex-grow: 1;
}

.product-card-title a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}

.product-card-title a {
  color: var(--color-text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-card-price {
	padding: 10px 0;
	font-weight: 600;
	font-size: 1.3em;
	color: var(--price-color);
	font-family: Arial;
	border: 1px solid #e2e4e8;
	border-radius: 9px;
}

.product-now-price,
.product-old-price {
  display: inline-block;
  position: relative;
}

.product-old-price {
  color: #cccccc;
  font-weight: 500;
}

.product-old-price:before {
  border-bottom: 2px solid var(--price-old-line);
  position: absolute;
  content: '';
  width: 100%;
  height: 50%;
  transform: rotate(347deg);
}

.product-collection-category {
  padding-bottom: 25px;
}

.wishlist-tiny-btn {
  -webkit-transition: all 333ms ease;
  transition: all 333ms ease;
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.5em;
  z-index: 3;
  /*opacity: 0;*/
}

.wishlist-tiny-btn a {
  color: var(--color-text-dark);
  text-decoration: none;
  background: #ffffff90;
  display: inline-block;
  height: 26px;
  width: 26px;
  text-align: center;
  line-height: 1.52em;
  border-radius: 5px;
  -webkit-transition: all 333ms ease;
  transition: all 333ms ease;
}

.wishlist-tiny-btn a:active,
.wishlist-tiny-btn a:hover,
.wishlist-tiny-btn a:focus {
  text-decoration: none !important;
  color: var(--color-primary);
  background: #ffffff;
}

.wishlist-tiny-btn a.selected {
  color: var(--color-primary);
}

.wishlist-tiny-btn a.selected .ic-heart:before {
  content: '\e922';
}

/*-------------------------*/

/***** TOGGLE VARIANT *****/

/*-------------------------*/

.product-card-variant {
  -webkit-transition: all 333ms ease;
  transition: all 333ms ease;
  position: absolute;
  left: 2rem;
  right: 2rem;
  opacity: 0;
  z-index: 3;
  text-align: center;
  bottom: 7rem;
  z-index: 4;
}

.product-card:hover .product-card-variant {
  opacity: 1;
}

.toggle-item {
  margin-bottom: 12px;
}

.toggle-variant-radio .toggle-item > input + label {
  border: 1px solid #e1e1e1;
  margin: 0 10px 0 0;
  color: #3e3e3e;
  transition: all 0.2s ease;
}

.toggle-variant-radio .toggle-item > input + label:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
}

.toggle-variant-radio .toggle-item > input:checked + label {
  color: var(--color-primary) !important;
  border: 1px solid var(--color-primary) !important;
}

.toggle-variant-radio {
  display: inline-flex;
  flex-wrap: wrap;
}

.toggle-variant-radio .toggle-item > input[type='radio'] {
  display: none;
}

.toggle-variant-radio .toggle-item > input[disabled] + label {
  opacity: 0.5;
}

.toggle-variant-radio .toggle-item > input[disabled] + label:hover {
  cursor: not-allowed;
}

.toggle-variant-radio .toggle-item > input + label {
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 0;
  padding: 16px 0px;
  font-size: 1.2em;
  height: 50px;
  width: 50px;
  text-align: center;
  float: left;
  cursor: pointer;
  line-height: 1em;
  position: relative;
}

.toggle-variant-radio.small-variant .toggle-item > input + label {
  padding: 9px 0px;
  font-size: 1.2em;
  height: 36px;
  width: 36px;
}

.toggle-variant-radio .toggle-item > input + label.out-of-stock:before {
  width: 48px;
  height: 48px;
}

.toggle-variant-radio.small-variant .toggle-item > input + label.out-of-stock:before {
  width: 34px;
  height: 34px;
}

.hot,
.garant,
.new,
.act {
  display: inline-block;
  position: absolute;
  padding: 8px 14px;
  color: #ffffff;
  font-size: 1em;
  /* left: 0px;*/
  top: 0px;
  z-index: 5;
  border-radius: 2px;
}

.hot {
  background: var(--badge-hit-bg);
}

.new {
  background: var(--badge-new-bg);
}

.act {
  background: var(--badge-act-bg);
}

.garant {
  background: var(--badge-garant-bg);
}

/*-------------------------*/

/***** CATEGORY GRID *****/

/*-------------------------*/

#category-products {
  /*padding: 0 40px 0 30px 0;*/
  padding: 0 0 5.143em 0;
}

.category-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.category-col-33 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.3333%;
  flex: 0 0 33.3333%;
}

.category-col-25 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
}

.category-col-50 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.category-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.category-card-img {
  display: block;
  height: 0;
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}

.category-card-img:before {
  position: absolute;
  top: 0;
  left: -1px;
  content: ' ';
  display: block;
  height: 100%;
  width: 1px;
  background: #fff;
  z-index: 2;
}

.category-card-img:after {
  position: absolute;
  top: 0;
  right: 0;
  content: ' ';
  display: block;
  height: 100%;
  width: 1px;
  background: #fff;
  z-index: 2;
}

.category-card-img img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition:
    opacity 0.3s ease,
    -webkit-transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition:
    opacity 0.3s ease,
    -webkit-transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition:
    opacity 0.3s ease,
    transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition:
    opacity 0.3s ease,
    transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover .category-card-img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.category-card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.category-card-action {
  -webkit-transition: all 333ms ease;
  transition: all 333ms ease;
  position: absolute;
  left: 2rem;
  right: 2rem;
  opacity: 1;
  z-index: 3;
  text-align: center;
  bottom: 3rem;
  z-index: 4;
}

.category-card-title {
  text-transform: uppercase;
  font-size: 1.55em;
  color: #ffffff;
  padding-bottom: 35px;
  line-height: 1.45em;
  text-shadow: -1px 0px 5px rgba(0, 0, 0, 0.3);
}

/*-------------------------*/

/***** RATING *****/

/*-------------------------*/

.rating_starOff,
.rating_starOn {
  display: inline-block;
  vertical-align: top;
  max-width: 90px;
  width: 90px;
  height: 18px;
  vertical-align: top;
  background: url('../img/rating.svg') left top repeat-x;
}

.rating_starOn {
  display: block;
  background-position: left bottom;
}

.rating_count {
  color: #6c7d8f;
}

.rating_value {
  color: #000000;
  font-size: 0.9em;
  font-weight: 500;
}

.rating_text {
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
  line-height: 25px;
}

/*-------------------------*/

/***** ACTION *****/

/*-------------------------*/

.action-banner {
  background: #e1e1e1;
  display: table;
  width: 100%;
}

.action-banner-td {
  display: table-cell;
  width: 50%;
}

.action-banner-text {
  padding: 0 0 50px 50px;
}

.action-banner-img {
  text-align: center;
}

.action-banner-img img {
  display: inline-block;
}

.action-col {
  margin-bottom: 24px;
}

.action-banner-text h1,
.action-banner-text h2,
.action-banner-text h3,
.action-banner-text h4 {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
}

.txt-td {
  order: 2;
  vertical-align: bottom;
}

.bn-td {
  order: 1;
  text-align: center;
}

.container-actions .slick-next,
.container-actions .slick-prev {
  top: calc(50%);
}

/*-------------------------*/

/***** ARTICLES & BLOGS *****/

/*-------------------------*/

.article-item,
.blog-item {
  position: relative;
}

.article-title,
.blog-title {
  font-size: 1.3em;
  padding: 15px 0 0 0;
  text-align: center;
}

.article-date,
.blog-date {
  position: absolute;
  left: 5px;
  top: 5px;
  border-radius: 3px;
  padding: 3px 5px;
  color: #ffffff;
  background: #000000;
  font-size: 0.9em;
}

.page-date {
  display: inline-block;
  border-radius: 3px;
  padding: 3px 5px;
  color: #ffffff;
  background: #000000;
  font-size: 0.9em;
}

.page-list {
  margin-bottom: 24px;
}

.page-anons {
  font-size: 1.2em;
}

.page-more {
  margin-top: 24px;
}

.page-share-title {
  font-weight: 600;
  padding-bottom: 20px;
}

.article-title a,
.blog-title a {
  color: #010101;
}

.article-img img,
.blog-img img {
  width: 100%;
}

.page-share {
  padding-bottom: 34px;
}

.pager {
  display: table;
  width: 100%;
  margin: 0;
  padding: 0;
}

.pager-first {
  display: table-cell;
  text-align: left;
}

.pager-last {
  display: table-cell;
  text-align: right;
}

.container-articles .slick-next,
.container-articles .slick-prev,
.container-blog .slick-next,
.container-blog .slick-prev {
  top: calc(45%);
}

/*-------------------------*/

/***** ABOUT *****/

/*-------------------------*/

#about {
  padding: 30px 0 50px 0;
  font-size: 1.2em;
  border-top: 1px solid #e0dfdf;
}

/*-------------------------*/

/***** FOOTER *****/

/*-------------------------*/

#footer {
  padding: 60px 0 0px 0;
  background: #f2f2f2;
}

.footer-top {
  padding-bottom: 40px;
}

.footer-table,
.footer-menu-table {
  display: table;
  width: 100%;
}
.footer-td {
  display: table-cell;
  vertical-align: top;
}

.footer-logo-td {
  width: 250px;
}

.footer-contact-td {
  width: 280px;
}

.footer-nav-td .footer-menu-table {
  max-width: 750px;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 30px;
  text-align: left;
}

.logo-icon {
  display: inline-block;
}

.footer-phone {
  margin-bottom: 24px;
}

.footer-phone a {
  font-size: 1.2em;
  color: #010101;
}

.footer-phone a:hover {
  text-decoration: none;
}

.footer-email a {
  font-size: 1.2em;
  color: #010101;
}

.footer-menu-td {
  width: 50%;
  display: table-cell;
  vertical-align: top;
}

.footer-menu-td ul {
  padding: 0;
  margin: 0;
  max-width: 250px;
  list-style: none;
  font-weight: 300;
}

.footer-menu-td ul li {
  display: block;
  font-size: 1.2em;
  padding: 5px 0;
}

.footer-menu-td ul li a {
  color: #010101;
  display: inline-block;
  line-height: 1.15em;
}

.footer-td-title {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.25em;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-subscribe {
}

.subscribe-form {
  margin: 24px 0;
}

.subscribe-box {
  position: relative;
}

.input-subscribe {
  width: 100%;
  border-radius: 5px !important;
  font-size: 1.1em !important;
}

.button-subscribe {
  position: absolute;
  right: 5px;
  top: 2px;
  border: none;
  line-height: 34px;
  background: none;
  height: 32px;
  color: #b9bcbc;
}

.button-subscribe:hover {
  color: var(--color-primary);
}

.footer-recviz {
  margin-bottom: 24px;
  font-size: 1.2em;
  line-height: 1.35em;
  font-weight: 300;
}

.footer-pays {
}

.footer-bottom {
  border-top: 1px solid #e0dfdf;
  padding: 20px 0;
}

.footer-copyright-td {
  text-align: left;
  font-size: 1.1em;
  width: 40%;
}

.footer-social-td {
  text-align: center;
}

.footer-social {
}

.social {
  background: #bdbdbd;
  color: #ffffff !important;
  width: 27px;
  height: 27px;
  display: inline-block;
  border-radius: 100%;
  text-align: center;
  margin-left: 5px;
  line-height: 31px;
  font-size: 13px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.social:hover {
  background: var(--color-primary);
  text-decoration: none;
}

.footer-dev-td {
  text-align: right;
  font-size: 1.1em;
  width: 40%;
}

/*-------------------------*/
/***** FILTER *****/
/*-------------------------*/

.col-sorting {
  text-align: right;
}

.filters-container {
  /* margin: 0 36px; */
  padding-top: 25px;
  padding-bottom: 20px;
}

.filter-color a {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  display: inline-block;
  border: 2px solid transparent;
  position: relative;
  box-shadow: 0px 0px 4px #ccc;
}

.filter-color a:hover {
  opacity: 0.8;
}

.filter-color a:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
}

.filter-color a.coloractive:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 2px solid #ffffff;
}

.filter-color a.coloractive.whitefix:before {
  border: 2px solid #f2f2f2;
}

.filter-color a.coloractive:after {
  position: absolute;
  content: '';
  width: 4px;
  height: 4px;
  top: 5px;
  left: 5px;
  border-radius: 100%;
  border: 5px solid rgb(255, 255, 255, 0.33);
}

.filter-color a.coloractive.whitefix:after {
  border: 5px solid rgb(255, 255, 255, 0.33);
}

.filter-panel {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: auto;
  right: 0px;
  border: 0;
  z-index: 19990;
  max-width: 400px;
  background: #ffffff;
  box-sizing: border-box;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.32);
  transform: translateX(100%);
  transition: all 0.3s cubic-bezier(0.35, 0.38, 0.07, 0.83);
  overflow: auto;
}

.filter-panel-btn {
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: none;
  font-size: 1.1em;
  text-transform: uppercase;
}

.sort-title i,
.filter-panel-btn i {
  color: var(--color-primary);
}

.filter-close-btn {
  position: absolute;
  top: 0;
  left: 0px;
  width: 51px;
  height: 51px;
  line-height: 54px;
  font-size: 1.2em;
  color: #fff;
  display: block;
  color: #010101;
  text-decoration: none;
  cursor: pointer;
}

.filter-close-btn:hover {
  text-decoration: none;
  color: var(--color-primary);
}

.filter-panel.close .btn-close {
  background: #cf2828;
  float: right;
  box-shadow: none;
}

.filter-panel .close::after {
  content: '';
  display: block;
  clear: both;
  visibility: hidden;
}

.filter-panel.right {
  left: initial;
  right: 0;
  left: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transform: translateX(120%);
}

.filter-panel.right .close .btn-close {
  float: left;
}

.filter-panel.active {
  transform: translateX(0);
}

.filter-main-title {
  font-weight: 600;
  font-size: 1.2em;
  border-bottom: 1px solid #e4e4e4;
  padding: 17px 0 15px 40px;
  text-align: center;
  position: relative;
  margin-bottom: 0px;
}

.filter-main-title i.ic-filter {
  color: var(--color-primary);
}

.filter-title {
  font-weight: 600;
  font-size: 1em;
}

.filter-title a {
  text-decoration: none;
  color: #010101;
  display: block;
  position: relative;
}

.filter-title a:after {
  font-family: 'Berysebe' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: '\ea5f';
  font-size: 17px;
  padding-left: 8px;
  color: #b9b9b9;
  position: absolute;
  right: 0;
}

.filter-title.open a:after {
  font-family: 'Berysebe' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: '\ea62';
  font-size: 17px;
  padding-left: 8px;
  color: var(--color-primary);
  position: absolute;
  right: 0;
}

.filter-body {
  padding-top: 15px;
  position: relative;
}

.filter-body-checkbox {
  max-height: 250px;
}

.filter-item {
  border-bottom: 1px solid #e7e9ec;
  padding: 18px 0;
  font-size: 1.1em;
}

.filters-clear {
  text-align: center;
  padding: 18px 0;
}

.filter-title {
  padding: 0 14px 0 18px;
}

.filter-body {
  padding: 18px 18px 0 18px;
}

.price-slider-table {
  display: table;
  width: 100%;
}

.price-slider-col {
  display: table-cell;
  width: 48%;
  vertical-align: middle;
}

.price-slider-col-separator {
  display: table-cell;
  width: 4%;
  padding: 0 2px;
  vertical-align: middle;
}

.price-slider-col input[type='text'] {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #e7e9ec;
  background: #ffffff;
}

.price-slider-box {
  margin-top: 22px;
  margin-left: 4px;
  margin-right: 4px;
}

.checkbox-item {
  padding: 5px 0;
}

#product .slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.product-slider {
  width: 100%;
  position: relative;
}

.product-slider-big {
  width: 100%;
  padding-left: 0;
  position: relative;
}

.product-slider-nav-box {
  width: 100%;
  max-width: 440px;
  margin: 15px auto 0 auto;
  padding: 0 30px;
  position: relative;
  height: auto;
  display: block;
}

.product-slider .product-slider-for img {
  max-width: 100%;
  border-radius: 6px;
}

.product-slider .product-slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.product-slider .product-slider-nav.slick-initialized {
  display: block;
  gap: 0;
}

.product-slider .product-slider-nav .product-slide-nav {
  width: 90px;
  max-width: 25%;
  flex: 0 0 auto;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.65;
  transition: all 0.25s ease;
}

.product-slider .product-slider-nav.slick-initialized .product-slide-nav {
  width: auto;
  max-width: none;
  margin: 0 5px;
}

.product-slider .product-slider-nav .slick-track {
  margin-left: 0;
  margin-right: auto;
}

.product-slider .product-slider-nav .slick-arrow.slick-disabled {
  display: none !important;
}

.product-slider .product-slider-nav .slick-list {
  margin: 0 -5px;
}

.product-slider .product-slider-nav .product-slide-nav img {
  display: block;
  width: 100%;
  border-radius: 4px;
}

.product-slider .product-slider-nav .product-slide-nav:hover,
.product-slider .product-slider-nav .product-slide-nav.slick-current,
.product-slider .product-slider-nav .product-slide-nav.active {
  opacity: 1;
  border-color: var(--color-primary);
}

.product-slider .product-slider-nav .slick-prev,
.product-slider .product-slider-nav .slick-next {
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  line-height: 1;
}

.product-slider .product-slider-nav .slick-prev {
  left: 0;
  margin: 0;
}

.product-slider .product-slider-nav .slick-next {
  right: 0;
  left: auto;
  margin: 0;
}

.product-slider .product-slider-nav .slick-prev:before,
.product-slider .product-slider-nav .slick-next:before {
  transform: none;
  display: inline-block;
  color: #f2fab7;
  font-size: 20px;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

.product-slider .product-slider-nav .slick-prev:hover:before,
.product-slider .product-slider-nav .slick-next:hover:before {
  opacity: 1;
  color: var(--color-primary);
}

.product-slider .slick-dots li {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 4px;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 100%;
}

.product-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 5px;
  height: 4px;
  padding: 4px;
  margin: 0;
  cursor: pointer;
  color: var(--color-primary);
  border: none;
  border-radius: 100%;
  outline: none;
  background: #d4d7d6;
}

.product-slider .slick-dots li.slick-active button {
  background: var(--color-primary);
}

.product-slider .slick-dots {
  bottom: 30px;
  opacity: 0.8;
}

.product-info-col {
  padding-left: 35px;
}

.product-title {
  padding-bottom: 25px;
}

.product-title h1 {
  padding: 0;
  margin: 0;
  line-height: 1;
}

.product-skurat-table {
  margin-top: 0;
  display: table;
  width: 100%;
  font-size: 1.1em;
}

.product-skurat-td {
  display: table-cell;
  vertical-align: top;
}

.product-skurat-td-rating {
  text-align: left;
}

.product-sku-card {
  padding: 0;
}

.product-skurat-td-sku {
  text-align: right;
}

.product-price {
  padding: 15px 0 10px 0;
  font-weight: 600;
  font-size: 1.7em;
  color: var(--price-color);
  font-family: Arial;
}

.product-color-variant {
  padding-top: 10px;
}

.product-color-variant span {
  font-weight: 500;
  color: var(--color-primary);
}

.product-razmer-box {
  padding-top: 15px;
}

.product-razmer-table {
  display: table;
  width: 100%;
}
.product-razmer-td {
  display: table-cell;
}

.razmer-table-link {
  text-align: right;
  font-size: 1em;
}

.razmer-table-link a {
  text-decoration: underline;
}

.razmer-table-link a:hover {
  text-decoration: none;
}

.product-addcart {
  padding-top: 15px;
}

.product-addcart-table {
  display: table;
}

.product-addcart-td {
  display: table-cell;
  vertical-align: top;
}

.product-addcart-count {
  width: 170px;
}

.product-part-title {
  font-size: 1.2em;
  padding: 0 0 15px 0;
}

/*-------------------------*/

/***** MINUS-PLUS *****/

/*-------------------------*/

.product-minus-plus {
  display: table;
  margin-bottom: 3px;
  font-size: 1.2em;
}

.amount-btn {
  display: table-cell;
  width: 28px;
  height: 28px;
  vertical-align: top;
}

.amount-inp {
  display: table-cell;
  width: 28px;
  height: 28px;
  vertical-align: top;
}

.product-minus-plus .product-count {
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 0;
  padding: 15px 0;
  height: 50px;
  width: 50px;
  text-align: center;
  float: left;
  cursor: pointer;
  line-height: 1em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #e1e1e1;
  transition: all 0.2s ease;
}

.product-minus-plus .product-amount {
  padding: 16px 9px;
  height: 50px;
  width: 50px;
  text-align: center;
  border: none !important;
  display: block;
}

.product-minus-plus .product-count:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.product-tabs {
  font-size: 1.2em;
  padding-top: 30px;
}

.product-tabs .r-tabs .r-tabs-nav .r-tabs-state-active {
  color: var(--tab-active-border);
  font-weight: 600;
  background: #ffffff;
  border-bottom: 5px solid var(--tab-active-border);
}

.r-tabs ul.r-tabs-nav li:hover {
  border-bottom: 5px solid #ead5c2;
}

.r-tabs .r-tabs-nav a,
.r-tabs .r-tabs-nav .r-tabs-anchor {
  width: 100%;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: #a38c78;
  padding: 15px 30px;
}

.product-tabs .r-tabs .r-tabs-nav .r-tabs-state-active a,
.product-tabs .r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
  color: var(--tab-active-border);
}

/*-------------------------*/

/***** PRODUCT OPTIONS *****/

/*-------------------------*/

.product-options {
  margin: 0;
  padding: 0;
  margin-top: 15px;
  list-style: none;
  font-size: 0.9em;
}

.product-options li {
  display: table;
  width: 100%;
  margin-bottom: 12px;
  background: url(../img/dots.svg) 100% 93% repeat-x;
}

.product-options li div span {
  background: #ffffff;
}

.product-options li div {
  display: table-cell;
}

.product-options li div.value {
  text-align: right;
  /* line-height: 1;*/
}

.product-options li div.name {
  color: #484848;
}

.product-options li div.name span {
  padding-right: 10px;
}

.product-options li div.value span {
  padding-left: 10px;
  color: var(--color-text-dark);
}

/*-------------------------*/

/***** MINUS-PLUS *****/

/*-------------------------*/

.purchase-minus-plus {
  display: table;
  margin-bottom: 0;
}

.purchase-minus-plus .amount-btn {
  display: table-cell;
  width: 28px;
  height: 28px;
  vertical-align: top;
}

.purchase-minus-plus .amount-inp {
  display: table-cell;
  width: 28px;
  height: 28px;
  vertical-align: top;
}

.purchase-minus-plus .product-count {
  text-decoration: none;
  cursor: pointer;
  text-decoration: none;
  padding: 8px 8px !important;
  width: 28px;
  height: 28px;
  text-align: center;
  display: inline-block;
  line-height: 0.6em;
  font-size: 17px;
  font-weight: 400;
  display: block;
  border-radius: 100%;
  float: left;
  background: #ccc;
  color: #ffffff;
}

.purchase-minus-plus .product-amount {
  width: 28px;
  border-radius: 5px;
  padding: 5px 5px !important;
  height: 28px;
  text-align: center;
  border: none !important;
  display: block;
}

.purchase-minus-plus .product-count:hover {
  background: #e4e6e9;
}

.variant-razmer {
  font-size: 0.8em;
}

.ldu-cart-link {
  background: #ffffff;
  color: var(--color-primary);
  padding: 10px 15px;
  border: 2px dotted var(--color-primary);
  margin-bottom: 25px;
}

.ldu-cart-link span {
  color: red;
  font-weight: bold;
}

.cart-head .breadcrumbs,
.order-head .breadcrumbs {
  text-align: center;
}

.purchase-list {
  display: table;
  width: 100%;
  margin: 24px 0;
}

.purchase-row {
  display: table-row;
  width: 100%;
}

.purchase-img {
  display: table-cell;
  vertical-align: middle;
  width: 120px;
  border-bottom: 1px solid #efefef;
  padding: 12px 0;
}

.purchase-img img {
  max-width: 90%;
}

.purchase-main {
  display: table-cell;
  vertical-align: top;
  padding: 30px 0 15px 0;
  border-bottom: 1px solid #efefef;
}

.purchase-actions {
  display: table-cell;
  vertical-align: top;
  width: 40px;
  text-align: right;
  padding: 30px 0 0 0;
  border-bottom: 1px solid #efefef;
}

.purchase-name {
  line-height: 1.25em;
  margin-top: 0;
  text-transform: uppercase;
  font-size: 1.25em;
}

.purchase-name a {
  color: #010101;
}

.purchase-price,
.purchase-full-price {
  font-size: 1.25em;
  color: #cccccc;
  font-weight: 400;
  font-family: Arial;
}

.purchase-price span,
.purchase-full-price span {
  font-weight: 600;
  color: #010101;
}

.purchase-itog {
  display: table-cell;
  font-size: 1.25em;
  color: #010101;
  font-weight: 600;
  text-align: right;
}

.purchase-itog span {
  color: #cccccc;
  font-weight: 400;
}

.purchase-price-table {
  display: table;
  width: 100%;
}

.purchase-price-td {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
}

.purchase-fullprice-td {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
  text-align: right;
}

.purchase-variant-table {
  display: table;
  width: auto;
}

.purchase-variant-td {
  display: table-cell;
  vertical-align: middle;
}

.purchase-remove a {
  color: #010101;
  font-size: 1.25em;
}

.purchase-remove a:hover {
  text-decoration: none;
}

.purchase-separate {
  display: block;
  height: 1px;
  width: 100%;
  background: #efefef;
}

.purchase-coupon,
.purchase-discount,
.purchase-full-price {
  display: table-cell;
  vertical-align: middle;
  padding: 1.2em 0;
}

.purchase-discount {
  text-align: right;
  font-size: 1.2em;
  padding-right: 12px;
}

.purchase-coupon {
  padding-left: 12px;
}

.purchase-full-price {
  text-align: right;
  font-family: Arial;
}

.purchase-full-price span {
  color: #010101;
}

.purchase-itog-price {
  text-align: center;
  display: block;
  vertical-align: middle;
  padding: 0.8em 0;
  font-size: 1.2em;
  color: #ffffff;
  background: #010101;
  font-weight: 600;
  text-transform: uppercase;
  min-width: 120px;
  margin-bottom: 30px;
  font-family: Arial;
}

.purchase-itog-price span {
  color: #ffffff;
}

.purchase-row-coupon {
  background: #efefef;
  padding: 0 12px;
}

.purchase-coupon input {
  vertical-align: middle;
}

.purchase-coupon .btn {
  background: #010101;
  padding: 6px 20px;
  vertical-align: middle;
}

.purchase-coupon .btn:hover,
.purchase-coupon .btn:active,
.purchase-coupon .btn:focus {
  background: transparent;
  color: #010101;
}

.purchase-error-coupon {
  padding: 5px 0 0 0;
  color: var(--badge-act-bg);
  font-size: 0.9em;
}

.cart-body {
  padding-bottom: 30px;
  margin: 0 auto;
}

.cart-submit {
  text-align: center;
  padding-top: 26px;
}

.cart-submit .btn {
  width: 100%;
}

.cart-submit .form-group {
  margin-bottom: 15px;
}

.cart-variant {
  color: #ffffff;
  display: inline-block;
  padding: 5px 9px;
  border: 1px solid #e1e1e1;
  margin: 0;
  color: #3e3e3e;
  border-radius: 5px;
}

.cart-color {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  vertical-align: middle;
  cursor: pointer;
  display: inline-block;
  border: 2px solid transparent;
  position: relative;
  box-shadow: 0px 0px 4px #ccc;
}

.purchase-variant-cart-td {
  padding-right: 8px;
}

.purchase-color-cart-td {
  padding-right: 8px;
}

.agree-policy {
  font-size: 0.9em;
  padding: 1.5em 0 0 0;
  position: relative;
  max-width: 680px;
}

.agree-policy a {
  color: #010101;
}

.agree-policy label {
  text-transform: uppercase;
}

.box-errors {
  padding: 20px 30px;
  background: var(--badge-act-bg);
  color: #ffffff;
  margin-bottom: 20px;
  border-radius: var(--btn-border-radius);
}

.purchase-coupon .form-group {
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-label,
.form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}

.field-responsive {
  position: relative;
}

.form-group {
  padding-bottom: 20px;
}

.login-form-box .form-group:last-child {
  padding-bottom: 0;
}

.form-column {
  display: table;
  width: 100%;
  margin-bottom: 10px;
}

.form-zip {
  width: 150px;
  padding-right: 15px;
}

.form-50 {
  width: 50%;
  padding-right: 15px;
}

.form-captcha {
  width: 100px;
}

.form-captcha-code {
  width: 150px;
}

.form-column .form-group {
  display: table-cell;
  vertical-align: middle;
}

.form-label {
  padding: 3px 0;
  font-weight: 600;
  font-size: 16px;
  color: #333333;
}

.form-textarea {
  min-height: 150px;
}

.form-group img {
  margin: 0;
}

.field-responsive input[type='text'] {
  width: 100%;
}

select:disabled {
  opacity: 0.2;
}

select.loadingData {
  background: url(../img/ajax-loader.gif) center center no-repeat;
}

.field-responsive select {
  width: 100%;
}

.page-head .breadcrumbs {
  text-align: center;
}

.page-body {
  padding: 0px 0 10px 0;
  font-size: 1.2em;
}

.page-body img {
  max-width: 100%;
}

.category-body {
  padding: 30px 0 10px 0;
  font-size: 1.2em;
}

.detaly-table {
  display: table;
  background: #f7f7f7;
  border: 1px solid #efeaea;
  border-radius: 5px;
  width: 100%;
  font-size: 1.2em;
}

.detaly-thead {
  display: table-row;
  color: #b1b1b1;
  font-size: 13px;
  background: #f7f7f7;
  text-align: left;
}

.detaly-date {
  width: 100px;
}

.detaly-status {
  width: 115px;
}

.detaly-cell {
  display: table-cell;
  vertical-align: middle;
  padding: 17px 10px;
}

.detaly-title {
  font-weight: 500;
}

.detaly-row {
  display: table-row;
}

.detaly-row:nth-child(odd) {
  background: #f7f7f7;
}

.detaly-row:nth-child(even) {
  background: #ffffff;
}

.delivery-title {
  text-align: center;
  display: block;
  vertical-align: middle;
  padding: 0.8em 0;
  font-size: 1.2em;
  color: #010101;
  background: #efefef;
  font-weight: 600;
  text-transform: uppercase;
  min-width: 120px;
  margin-bottom: 20px;
  cursor: pointer;
}

.delivery-title.active {
  background: #010101;
  color: #ffffff;
}

.delivery-title input[type='radio'] {
  display: none;
}

.cart-form-box {
  padding-bottom: 10px;
  padding-top: 8px;
}

/*-------------------------*/

/***** LOGIN & REGISTER *****/

/*-------------------------*/

.login-form-box {
  max-width: 500px;
}

.register-form-box {
  max-width: 600px;
}

.users-form-box {
  max-width: 100%;
}

.users-form-box ul,
.login-section ul {
  margin: 0;
  padding: 0;
  line-height: 1.45em;
}

.users-form-box ul li,
.login-section ul li {
  margin: 0;
  padding: 2px 0;
}

.users-form-box ul li::before,
.login-section ul li::before {
  font-family: 'Berysebe' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1.1em;
  content: '\ea61';
  color: var(--color-primary);
  display: inline-block;
  width: 1em;
  font-size: 1em;
  vertical-align: middle;
}

.register-form-box input[type='text'],
.register-form-box input[type='password'],
.users-form-box input[type='text'],
.users-form-box input[type='password'],
.login-form-box input[type='text'],
.login-form-box input[type='password'] {
  width: 100%;
}

.users-form-box .btn {
  padding: 8px 38px;
}

.remind-form .btn {
  background: #010101;
  padding: 9px 20px;
  vertical-align: middle;
}

.page-text img {
  max-width: 100%;
  height: auto;
}

.iframe_video {
  height: 0px;
  padding-bottom: 56.2%;
  position: relative;
}
.iframe_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-detail-fulltext img {
  max-width: 100%;
  height: auto;
}

.cart-empty,
.empty-page {
  min-height: 500px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-info-notice {
  padding: 20px 40px;
  background: #efefef;
  margin-bottom: 30px;
}

.form-delivery-1,
.form-delivery-2 {
  display: none;
}

.form-delivery-1.active {
  display: block;
}

/*-------------------------*/
/***** CDEK DELIVERY PVZ *****/
/*-------------------------*/

.btn-pvz {
  font-size: 1em;
  margin-bottom: 8px;
  padding: 6px 12px;
  border: 1px dotted #000;
  display: inline-block;
  margin-top: 10px;
  border-radius: 1px;
  color: #000;
  text-decoration: none;
}

.btn-pvz[disabled] {
  opacity: 0.2;
}

.btn-pvz:hover {
  text-decoration: none;
  border: 1px solid #000;
  color: #010101;
}

.cdek_map_container {
  position: fixed;
  display: flex;
  flex-direction: column;
  background: white;
  width: 50%;
  height: 50%;
  z-index: 10000;
  left: 25%;
  top: 25%;
  border: 1px solid #8a8a8a;
  box-shadow: 2px 2px 4px 0px rgb(0 0 0 / 50%);
}

.cdek_map_header {
  text-align: center;
  padding: 15px;
  font-weight: 700;
  font-size: 1.3em;
  position: relative;
}

@media (max-width: 768px) {
  .cdek_map_container {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
}

.cdek_map_container_map {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cdek_map_container_map_control a.control_button {
  display: inline-block;
  float: right;
  padding: 5px;
  margin-right: 10px;
  font-size: 16px;
}

.cdek_description {
  border: 1px solid #c3c3c3;
  border-radius: 4px;
  padding: 5px;
  margin: 5px 0 0 20px;
}

.cdek_close {
  position: absolute;
  right: 6px;
  z-index: 10;
  height: 24px;
  line-height: 28px;
  text-decoration: none !important;
  border-radius: 100%;
  background: #010101;
  text-align: center;
  width: 24px;
  font-size: 1em;
  color: #fff;
  cursor: pointer;
}

.cdek_close:hover {
  background: #cccccc;
  color: #ffffff;
}

.cdek_checked p {
  margin-bottom: 15px !important;
  color: #d1280b;
}

.cdek_checked p strong {
  color: #000;
}

[class*='-layers-pane'],
.ymaps-layers-pane {
  filter: grayscale(1);
  -ms-filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
}

.order-note {
  max-width: 800px;
  font-weight: 600;
  font-size: 1.2em;
}

/*-------------------------*/

/***** COLLECTIONS *****/

/*-------------------------*/

.collection-col {
  margin-bottom: 24px;
}

.collections-item {
  position: relative;
  overflow: hidden;
}

.collections-item {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.collections-item {
  display: block;
  height: 0;
  position: relative;
  padding-bottom: 100%;
  width: 100%;
}

.collections-img {
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}

.collections-item img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition:
    opacity 0.3s ease,
    -webkit-transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition:
    opacity 0.3s ease,
    -webkit-transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition:
    opacity 0.3s ease,
    transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition:
    opacity 0.3s ease,
    transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collections-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.collections-body {
  display: block;
  text-align: left;
  font-size: 1em;
  bottom: 100px;
  z-index: 100;
  color: #010101;
  position: absolute;
  z-index: 100;
  text-align: center;
  width: 100%;
}

.collections-body .collections-title {
  color: #ffffff;
  font-size: 1.6em;
  line-height: 1.45em;
  padding: 0.9em 0 1.2em 0;
  text-transform: uppercase;
  text-shadow: -1px 0px 5px rgba(0, 0, 0, 0.4);
}

.collections-body .collections-title a {
  color: #ffffff;
  text-decoration: none;
}

.collection-body {
  display: block;
  padding: 20px;
}

.subscribe-success {
  background: #11be11;
  color: #ffffff;
  padding: 2px 5px;
  margin-top: 5px;
  display: inline-block;
}

.subscribe-error {
  background: #be1111;
  color: #ffffff;
  padding: 2px 5px;
  margin-top: 5px;
  display: inline-block;
}

.payments-logos {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-top: 15px;
}

.payments-logos__item {
  border: 2px solid #ffffff;
  position: relative;
  margin-left: 0px;
  -webkit-transition: all 0.2s !important;
  transition: all 0.2s !important;
}

.brand-logo {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.brand-logo_form_round {
  border-radius: 50%;
}

.brand-logo_size_s {
  width: 40px;
  height: 40px;
}

.brand-logo_name_jcb {
  background-image: url(../payslogo/brand-logo_name_jcb.svg);
}

.brand-logo_name_visa {
  background-color: #fff;
  background-image: url(../payslogo/brand-logo_name_visa.svg);
}

.brand-logo_name_mastercard {
  background-image: url(../payslogo/brand-logo_name_mastercard.svg);
}

.brand-logo_name_maestro {
  background-image: url(../payslogo/brand-logo_name_maestro.svg);
}

.brand-logo_name_mir {
  background-image: url(../payslogo/brand-logo_name_mir.svg);
}

.brand-logo_name_itunes {
  background-image: url(../payslogo/brand-logo_name_itunes.svg);
}

.brand-logo_name_android-pay {
  background-image: url(../payslogo/brand-logo_name_android-pay.svg);
}

.brand-logo_name_yamoney {
  background-image: url(../payslogo/brand-logo_name_yamoney.svg);
}

.brand-logo_name_union-pay {
  background-color: #fff;
  background-image: url(../payslogo/brand-logo_name_union-pay.svg);
}

.brand-logo_name_sbp {
  background-image: url(../payslogo/brand-logo_name_sbp.svg);
}

.paid {
  color: green;
}

.nopaid {
  color: red;
}

.payment-form {
  text-align: center;
}

.pay-help {
  padding: 10px;
  font-size: 1.2em;
}

.pay-icons {
  padding: 20px 0 10px 0;
}

/* =============================================
   Социальная авторизация — кнопки VK, Яндекс, Сбер ID
   ============================================= */

.social-login {
  margin-top: 25px;
  padding-top: 0;
}

.social-login-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: #999;
  font-size: 0.9em;
  text-transform: lowercase;
}

.social-login-divider::before,
.social-login-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}

.social-login-divider span {
  padding: 0 15px;
  white-space: nowrap;
}

.social-login-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  flex: 1;
  min-width: 130px;
  text-align: center;
}

.btn-social:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-decoration: none;
  color: #fff;
}

.btn-social:active {
  transform: translateY(0);
  opacity: 0.95;
}

.btn-social svg,
.btn-social img {
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.social-account-badge img {
  filter: brightness(0) invert(1);
}

/* VK ID — фирменный синий */
.btn-social-vk {
  background-color: #0077FF;
}

/* Яндекс ID — фирменный красный */
.btn-social-yandex {
  background-color: #FC3F1D;
}

/* Mail.ru — фирменный синий */
.btn-social-mailru {
  background-color: #005FF9;
}

@media (max-width: 576px) {
  .social-login-buttons {
    flex-direction: column;
  }
  .btn-social {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   Привязанные социальные аккаунты (профиль)
   ============================================= */

.social-accounts-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-account-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #f8f8f8;
  border-radius: 8px;
  border: 1px solid #eee;
}

.social-account-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  padding: 4px 10px;
  border-radius: 5px;
}

.social-account-badge.badge-vk { background-color: #0077FF; }
.social-account-badge.badge-yandex { background-color: #FC3F1D; }
.social-account-badge.badge-mailru { background-color: #005FF9; }

.social-account-status {
  font-size: 13px;
}

.social-account-status.connected {
  color: #21A038;
  font-weight: 500;
}

.social-account-status.connect-link {
  color: #0077FF;
  text-decoration: none;
  font-weight: 500;
}

.social-account-status.connect-link:hover {
  text-decoration: underline;
}

.social-account-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-account-unlink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #999;
  font-size: 12px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.social-account-unlink:hover {
  background: #e74c3c;
  color: #fff;
  text-decoration: none;
}

/* ==========================================================================
   Оформление заказа и модули доставки (СДЭК и др.)
   ========================================================================== */

/* Единая ширина контейнера для всех блоков формы заказа */
#cart .delivery-form-container,
#cart .cart-contact-container {
    max-width: 580px !important;
    margin: 0 auto !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Стилизуем СТРОГО поля формы оформления заказа (Город, Адрес, ФИО, Телефон, Email) */
#cart .delivery-form-container .form-label,
#cart .cart-contact-container .form-label {
    font-weight: 700 !important;
    font-size: 15px !important;
    color: #000000 !important;
    margin-bottom: 8px !important;
    display: block !important;
}

#cart .delivery-form-container .form-label a.form-help-tips,
#cart .cart-contact-container .form-label a.form-help-tips {
    color: #b5b5be;
    text-decoration: none;
    font-weight: bold;
    margin-left: 4px;
}

#cart .delivery-form-container .form-control,
#cart .delivery-form-container .form-select,
#cart .cart-contact-container .form-control,
#cart .cart-contact-container .form-select {
    background: #ffffff !important;
    border: 1px solid #e2e2e6 !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    height: 46px !important;
    font-size: 15px !important;
    color: #333333 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease;
}

#cart .delivery-form-container .form-control:focus,
#cart .delivery-form-container .form-select:focus,
#cart .cart-contact-container .form-control:focus,
#cart .cart-contact-container .form-select:focus {
    border-color: #000000 !important;
    outline: none !important;
}

#cart .delivery-form-container .form-group,
#cart .cart-contact-container .form-group {
    margin-bottom: 20px !important;
}

.delivery-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    margin-top: 24px;
    margin-bottom: 12px;
}

.delivery-card-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.delivery-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 14px;
    background-color: #f1f1f3;
    color: #000000;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    user-select: none;
    margin: 0;
    position: relative;
    border: 1px solid transparent;
}

.delivery-card:hover {
    background-color: #e8e8ec;
}

.delivery-card:has(input:checked),
.delivery-card.active {
    background-color: #050505 !important;
    color: #ffffff !important;
}

.delivery-card:has(input:checked):hover,
.delivery-card.active:hover {
    background-color: #111111 !important;
}

.delivery-card-left {
    display: flex;
    align-items: center;
}

/* Скрываем стандартный инпут радио */
.delivery-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Кастомный круг радио-кнопки */
.delivery-radio-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #d5d5dc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.delivery-card:has(input:checked) .delivery-radio-dot,
.delivery-card.active .delivery-radio-dot {
    border-color: #ffffff;
    background-color: #ffffff;
}

.delivery-radio-inner {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ff6b52;
    display: none;
}

.delivery-card:has(input:checked) .delivery-radio-inner,
.delivery-card.active .delivery-radio-inner {
    display: block;
}

.delivery-card-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.delivery-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    white-space: nowrap;
    text-align: right;
}

.delivery-card-price {
    font-size: 17px;
    font-weight: 800;
    margin-right: 6px;
}

.delivery-card-period {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

.delivery-card-freefrom {
    font-size: 12px;
    margin-top: 2px;
    font-weight: 500;
    color: #666666;
}

.delivery-card.active .delivery-card-period,
.delivery-card:has(input:checked) .delivery-card-period {
    color: rgba(255, 255, 255, 0.75);
}

.delivery-card.active .delivery-card-freefrom,
.delivery-card:has(input:checked) .delivery-card-freefrom {
    color: rgba(255, 255, 255, 0.85);
}

.cdek-delivery-msg {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 15px;
}
.cdek-delivery-msg.error {
    background-color: #fff2f2;
    color: #d93025;
    border: 1px solid #f8d7da;
}
.cdek-delivery-msg.loading {
    background-color: #f8f9fa;
    color: #5f6368;
    border: 1px solid #e8eaed;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
}
.cdek-loader-icon {
    width: 24px;
    height: 24px;
    background: url(../img/ajax-loader.gif) center center no-repeat;
    background-size: contain;
    display: inline-block;
    flex-shrink: 0;
}
.btn-pvz {
    border-radius: 10px;
    height: 44px;
}


/* Блок с кнопками */
.download-section {
	margin-bottom: 40px;
	background-color: #f9f9f9;
	padding: 25px;
	border-radius: 8px;
}
.download-text {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
	display: block;
}
.buttons-container {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}
/* Стили кнопок */
.btn-doc {
	display: inline-block;
	padding: 15px 25px;
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
	border-radius: 4px;
	transition: opacity 0.3s;
	text-align: center;
}
.btn-doc:hover {
	opacity: 0.8;
}
/* Цвета кнопок */
.btn-pink {
	background-color: var(--btn-primary-bg); 
	color: #fff !important;
	border: 1px solid var(--btn-primary-bg);
}
.btn-black {
	background-color: #000;
	color: #fff !important;
	border: 1px solid #000;
}
.btn-white {
	background-color: #fff;
	color: #000 !important;
	border: 2px solid #000;
}

/* Блок адресов */
.address-block {
	background: #f4f4f4;
	padding: 20px;
	border-left: 5px solid #ff007f; /* Розовый акцент */
	margin-bottom: 15px;
}
.address-title {
	display: block;
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 10px;
	text-transform: uppercase;
}
/* Акцентный блок (Exchange alert) */
.alert-box {
	background-color: #fff0f5; /* Светло-розовый фон */
	padding: 20px;
	border-radius: 6px;
	margin: 30px 0;
	font-style: italic;
}

/* Кнопка быстрой очистки поля Город */
.clear-input-city-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #e4e4e8;
    color: #71717a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    z-index: 5;
    user-select: none;
}
.clear-input-city-btn:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

/* Фоновое видео товара */
.product-slider-for .slick-slide {
  position: relative;
}

.product-slide.video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  overflow: hidden;
  cursor: pointer;
}

.product-slide.video-slide video.product-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-slide-nav.video-nav-slide {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.product-slide-nav.video-nav-slide .video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 2;
}

.product-slide-nav.video-nav-slide:hover .video-play-overlay,
.product-slide-nav.video-nav-slide.slick-current .video-play-overlay {
  background: rgba(0, 0, 0, 0.15);
}

.product-slide-nav.video-nav-slide .video-play-overlay i {
  color: #ffffff;
  font-size: 20px;
  background: rgba(0, 0, 0, 0.65);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  padding-left: 2px;
}

