:root {
  --layout-max: 1920px; /* ширина макету */

  --container-pad: 15px; /* padding контейнера (desktop) */
  --container-pad-mobile: 5px;

  --gutter-1600: 50px; /* відступ від краю екрану ДО КОНТЕНТУ при 1600 */
  --gutter-1920: 160px; /* відступ від краю екрану ДО КОНТЕНТУ при 1920 */

  --bp-md: 992px;
  --bp-lg: 1200px;
  --bp-1600: 1600px;
}

:focus {
  outline: none;
  outline-offset: 0;
}

.container {
  --padding: var(--container-pad);

  margin-left: auto;
  margin-right: auto;
  padding-left: var(--padding);
  padding-right: var(--padding);
  width: 100%;
  box-sizing: border-box;
}

.mobile .container {
  --padding: var(--container-pad-mobile);
}

.wrapper {
  min-height: 100vh;
}

/* bootstrap-like (970 контент + 30 padding) */
@media (min-width: 0px) {
  .container {
  --padding: var(--container-pad-mobile);
  }
}

@media (min-width: 745px) {
  .container {
    max-width: 1000px;
    --padding: var(--container-pad);
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 1000px;
  }
}

@media (min-width: 1200px) {
  .container {
    /* “додаткове поле” (зовнішній відступ до бордера контейнера) */
    --outer-1600: calc(var(--gutter-1600) - var(--padding)); /* 50-15 = 35 */
    --outer-1920: calc(var(--gutter-1920) - var(--padding)); /* 160-15 = 145 */

    /* максимальна ширина контейнера (по бордеру) під макет 1920 */
    --container-max: calc(var(--layout-max) - (2 * var(--outer-1920))); /* 1920 - 290 = 1630 */

    /* 1200..1600: outer 0 -> outer-1600 */
    --outer: clamp(0px, calc(8.75vw - 105px), var(--outer-1600));

    max-width: min(var(--container-max), calc(100% - (2 * var(--outer))));
  }
}

/* 1600..1920: outer outer-1600 -> outer-1920 */
@media (min-width: 1600px) {
  .container {
    --outer: clamp(var(--outer-1600), calc(34.375vw - 515px), var(--outer-1920));
  }
}

/* .container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

.mobile .container {
  padding-right: 5px;
  padding-left: 5px;
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

@media (min-width: 1360px) {
  .container {
    width: 1325px;
  }
}

@media (min-width: 1700px) {
  .container {
    width: 1625px;
  }
} */

/* !!!!!!!!PRELOADER!!!!!!!! */ /* !!!!!!!!PRELOADER!!!!!!!! */ /* !!!!!!!!PRELOADER!!!!!!!! */
/* !!!!!!!!PRELOADER!!!!!!!! */ /* !!!!!!!!PRELOADER!!!!!!!! */ /* !!!!!!!!PRELOADER!!!!!!!! */
/* !!!!!!!!PRELOADER!!!!!!!! */ /* !!!!!!!!PRELOADER!!!!!!!! */ /* !!!!!!!!PRELOADER!!!!!!!! */
#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

html.lock {
  overflow: hidden;
}

body.lock {
  width: 100%;
  overflow: hidden;
}
/* !!!!!!!!PRELOADER!!!!!!!! */ /* !!!!!!!!PRELOADER!!!!!!!! */ /* !!!!!!!!PRELOADER!!!!!!!! */
/* !!!!!!!!PRELOADER!!!!!!!! */ /* !!!!!!!!PRELOADER!!!!!!!! */ /* !!!!!!!!PRELOADER!!!!!!!! */
/* !!!!!!!!PRELOADER!!!!!!!! */ /* !!!!!!!!PRELOADER!!!!!!!! */ /* !!!!!!!!PRELOADER!!!!!!!! */

/* !!!!!!!!!!!!!!!Breadcrumb!!!!!!!!!!!!!!! */ /* !!!!!!!!!!!!!!!Breadcrumb!!!!!!!!!!!!!!! */
/* Breadcrumb = START */
.breadcrumb {
  margin: 21px 0;
  padding: 8px 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  overflow: auto;
}

.breadcrumb i {
  font-size: 15px;
}

.breadcrumb > li {
  list-style-type: none;
  position: relative;
  padding-right: 8px;
  white-space: nowrap;
}

.breadcrumb > li:not(:first-child) {
  padding-left: 8px;
}

.breadcrumb > li + li::before {
  content: '';
  padding: 0;
}

.breadcrumb > li::after {
  content: '';
  display: block;
  position: absolute;
  background: #bcbcbc;
  top: 4px;
  right: 0;
  width: 1px;
  height: 8px;
}

.breadcrumb > li:last-child::after {
  display: none;
}

.breadcrumb > li a,
.breadcrumb > li span {
  color: #000;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.breadcrumb > li a svg {
  margin-right: 10px;
}

@media (max-width: 991.98px) {
  .breadcrumb {
    margin: 10px 0;
  }
}
/* Breadcrumb = END */
/* !!!!!!!!!!!!!!!Breadcrumb!!!!!!!!!!!!!!! */ /* !!!!!!!!!!!!!!!Breadcrumb!!!!!!!!!!!!!!! */


/* !!!!!!!!!SEARCH STYLE!!!!!!!!! */ /* !!!!!!!!!SEARCH STYLE!!!!!!!!! */
/* !!!!!!!!!SEARCH STYLE!!!!!!!!! */ /* !!!!!!!!!SEARCH STYLE!!!!!!!!! */
/* !!!!!!!!!SEARCH STYLE!!!!!!!!! */ /* !!!!!!!!!SEARCH STYLE!!!!!!!!! */
/* !!!!!!!!!SEARCH STYLE!!!!!!!!! */ /* !!!!!!!!!SEARCH STYLE!!!!!!!!! */

.search .dropdown-menu {
  top: 58px;
  max-width: 100%;
  min-width: 360px;
  max-height: none;
  overflow: auto;
  border-radius: 0;
  box-shadow: none;
  border: none;
  left: 50%;
  transform: translateX(-50%);
  border: 0;
  flex-wrap: wrap;
  box-shadow: 0px 16px 12px 0px rgba(0, 0, 0, 0.03);
}

ul.dropdown-menu .box_search {
  padding: 10px;
  width: 50%;
}

.header__search .box_search li:nth-child(1),
.header__search .box_search li:nth-last-child(1),
.header__search .box_search li:nth-last-child(2) {
  border: none;
}
header .search #search .dropdown-menu {
  border-radius: 5px !important;
  max-height: 60vh;
  width: 390px;
  max-width: none !important;
  border: none;
  right: 0;
  margin-top: 20px;
  transform: translateX(-30px);
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  padding: 9px 25px;
}

.mobile .search #search .dropdown-menu {
  max-height: 40vh;
  overflow: auto;
  z-index: 10;
}

.mobile .search #search .dropdown-menu .box_search {
  width: 100%;
}

#search .dropdown-menu > li > a,
#search .dropdown-menu li.disabled {
  padding: 0 !important;
}

.search #search .dropdown-menu .disabled {
  margin-bottom: 27px;
}

header .search #search .dropdown-menu .disabled:not(:first-child) {
  border-top: 1px solid #f3f3f3;
  padding-top: 10px !important;
  margin-top: 10px;
}

header .search #search .dropdown-menu .title {
  font-family: var(--main-font) !important;
  font-weight: 600 !important;
  font-size: 20px !important;
  color: #000 !important;
  padding: 0 !important;
  border: none !important;
}

header .search #search .dropdown-menu li {
  margin-bottom: 7px;
}

header .search #search .dropdown-menu li.last {
  margin-bottom: 26px;
}

header .search #search .dropdown-menu .category .name {
  margin-bottom: 0;
  padding-bottom: 0;
}

header .search #search .dropdown-menu .name {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  color: #3e3e3e;
}

header .search #search .dropdown-menu .product .name {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  color: #3e3e3e;
  height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0 !important;
  white-space: wrap;
  width: 100%;
}

header .search #search .dropdown-menu .price-base {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: #000;
}


.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
  background-color: #fff !important;
}

.mobile .header__search {
  position: fixed;
  top: 70px;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f5f5f5;
  visibility: hidden;
  opacity: 0;
}

.mobile .header__search.in {
  animation: slide-down 0.5s;
  visibility: visible;
  opacity: 1;
}

.header__search .dropdown-menu {
  position: absolute;
  z-index: 1000;
  left: unset !important;
  right: 0;
  display: none;
  padding: 25px;
  margin: 2px 0 0;
  font-size: 12px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-top: 1px solid #f2f2f2;
  box-shadow: none;
  border-radius: 15px;
  overflow: hidden auto;
  height: 80vh;
  width: 390px;
}

.mobile .header__search .dropdown-menu {
  transform: translateX(0);
}

.header__search .dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.header__search .dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.header__search .dropdown-menu > li > a {
  display: block;
  padding: 3px 10px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: unset;
  text-decoration: none;
}
.mobile .header__search .dropdown-menu li.more a {
  margin-top: 9px;
  margin-bottom: 17px;
}
.header__search .dropdown-menu li.disabled {
  display: block;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: unset;
  text-decoration: none;
  border-top: 1px solid #f3f3f3;
}
.header__search .dropdown-menu li.inline a {
  border-radius: 5px;
  padding: 5px 5px;
}
.header__search .dropdown-menu li.more a {
  padding: 0;
}
.header__search .dropdown-menu > li > a:hover,
.header__search .dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
  background-image: none;
}
.header__search .dropdown-menu > .active > a {
  color: #fff;
  text-decoration: none;
  background-image: none;
  outline: 0;
}
.header__search .dropdown-menu > .active > a:hover,
.header__search .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-image: none;
  outline: 0;
}
.header__search .dropdown-menu > .disabled > a {
  color: #777;
}
.header__search .dropdown-menu > .disabled > a:hover,
.header__search .dropdown-menu > .disabled > a:focus {
  color: #777;
}
.header__search .dropdown-menu > .disabled > a:hover,
.header__search .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
}
.header__search .dropdown-menu .box_search a:hover {
  color: #000;
}
.header__search .dropdown-menu::-webkit-scrollbar-track {
  background-color: transparent;
}
.header__search .dropdown-menu::-webkit-scrollbar {
  width: 4px;
  background-color: white;
}
.header__search .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.header__search .dropdown-menu li {
  list-style-image: none !important;
  clear: both;
}


.header__search .dropdown-menu li.inline {
  display: block;
  margin: 0px;
  padding: 0;
  vertical-align: top;
}

.header__search .dropdown-menu li.inline.last {
  margin-bottom: 16px;
}

.header__search .dropdown-menu li.disabled .title {
  width: fit-content;
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
}

.search-suggestion {
  overflow: hidden;
  width: 100%;
  display: flex !important;
  gap: 10px;
  padding-top: 16px;
}

.search-suggestion.product,
.search-suggestion.category {
  padding-top: 0;
}

.search-suggestion.product img {
  width: 100px;
}

.search-suggestion .left,
.search-suggestion .right {
  align-self: center;
  text-align: center;
}

.search-suggestion .left {
  flex-shrink: 0;
}

.search-suggestion .label {
  font-weight: normal;
  color: darkgray;
  padding-left: 0;
  padding-right: 5px;
}
/*
.search-suggestion .more {
  padding: 10px;
  color: #fff;
  background-color: #1e1e1e;
  text-align: center;
  font-family: var(--second-font);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
}
*/
.search-suggestion .more {
  padding: 10px;
  font-family: var(--main-font);
  color: #000;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  text-decoration: underline;
  display: flex;
  align-items: center;
}
.search-suggestion .more svg {
  flex-shrink: 0;
  margin-left: 57px;
}
.search-suggestion .out-stock .value {
  color: #ff2e2e;
  color: white;
  background-color: #ff2e2e;
  width: fit-content;
  padding: 4px 7px;
  border-radius: 3px;
  font-size: 0.8em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: lowercase;
}

.search-suggestion .in-stock .value {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 10px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
  background-color: #70c932;
  width: fit-content;
  padding: 4px 7px;
  border-radius: 3px;
  font-size: 0.8em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: lowercase;
}

.search-suggestion.category div,
.search-suggestion.manufacturer div {
  overflow: hidden;
  display: flex;
  gap: 15px;
}

.search-suggestion.product .name,
.search-suggestion.category .name,
.search-suggestion.manufacturer .name {
  text-decoration: none;
  width: 100%;
  margin-bottom: 5px;
  color: #1e1e1e;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.search-suggestion.product .name {
  height: max-content;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Ліміт у 2 рядки */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 36px;
}

.search-suggestion.category {
  align-items: center;
}

.search {
  color: #000;
  font-family: var(--second-font);
  font-weight: 300;
  font-size: 14px;
  line-height: normal;
}

.search a {
  display: block;
  color: #000;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
}

.search a:hover {
  color: #4d4d4d;
}

#search .input-lg {
  height: 40px;
  line-height: 20px;
  padding: 0 10px;
}

#search .btn-lg {
  font-size: 15px;
  line-height: 18px;
  padding: 10px 35px;
  text-shadow: 0 1px 0 #fff;
}

.dropdown-menu li.disabled .search-suggestion .title,
.search-suggestion.product .price {
  font-family: var(--second-font);
}

.dropdown-menu li.disabled .search-suggestion .title {
  border-bottom: 0;
}

.box_search li {
  margin-bottom: 12px;
}

.box_search li:not(.disabled) {
  border-bottom: 1px solid #ededed;
}

.search-suggestion .center {
  margin-left: unset;
  margin-right: unset;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  height: 100%;
}

.search-suggestion.product .center {
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-menu li.disabled .search-suggestion .title {
  font-weight: 600;
  font-size: 20px;
  font-family: var(--main-font);
}

.search-suggestion.product .name:hover,
.search-suggestion.category .name:hover,
.search-suggestion.manufacturer .name:hover {
  color: #4d4d4d;
}

.search-suggestion.category {
  align-items: center;
  margin-bottom: 5px;
}

.search-suggestion.product .price {
  display: flex;
  /* align-items: end; */
  color: #1e1e1e;
  font-family: var(--second-font);
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  letter-spacing: normal;
  white-space: nowrap;
  height: max-content;
}

.search-suggestion.product .price {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: #000;
  width: 49%;
  padding-right: 20px;
  float: left;
}

.search-suggestion.product .price span.price-old {
  margin-right: 5px;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 12px;
  line-height: 167%;
  text-decoration: line-through;
  color: #7a7a7a;
  text-decoration: line-through;
  white-space: nowrap;
}

.search-suggestion.product span.price-new {
  color: #1e1e1e;
  font-weight: 600;
  font-size: 16px;
}

.search-suggestion.product .stock {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  float: left;
  width: 51%;
  height: max-content;
}

.close-mobile-search {
  display: none;
}

.mobile .close-mobile-search {
  display: block;
  height: 24px;
  margin-left: 25px;
}

.search .dropdown-menu {
  top: 58px;
  max-width: 100%;
  min-width: 360px;
  max-height: none;
  overflow: auto;
  border-radius: 0;
  box-shadow: none;
  border: none;
  left: 50%;
  transform: translateX(-50%);
  border: 0;
  flex-wrap: wrap;
  box-shadow: 0px 16px 12px 0px rgba(0, 0, 0, 0.03);
}

ul.dropdown-menu .box_search {
  padding: 10px;
  width: 50%;
}

.header__search .box_search li:nth-child(1),
.header__search .box_search li:nth-last-child(1),
.header__search .box_search li:nth-last-child(2) {
  border: none;
}

.mobile .header__search .dropdown-menu {
  position: fixed;
  overflow-y: auto;
  top: 120px !important;
  left: 0 !important;
  margin: 0;
  padding: 0 10px 10px;
  min-width: auto;
  width: calc(100%);
  height: calc(100vh - 120px);
  padding-bottom: 40vh;
  /* height: calc(100% - 70px); */
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: 0;
  box-shadow: 0;
  touch-action: pan-y;
  inset: 0;
  z-index: 9999;
  -webkit-overflow-scrolling: touch;
}

.mobile .close-mobile-search.active {
  display: block;
}

.mobile .header__search .dropdown-menu {
  flex-direction: column;
}

.mobile ul.dropdown-menu .box_search {
  width: 100%;
}

#search .input-lg {
  height: 40px;
  line-height: 20px;
  padding: 0 10px;
}
#search .btn-lg {
  font-size: 15px;
  line-height: 18px;
  padding: 10px 35px;
  text-shadow: 0 1px 0 #fff;
}


/* !!!!!!!!!SEARCH STYLE!!!!!!!!! */ /* !!!!!!!!!SEARCH STYLE!!!!!!!!! */
/* !!!!!!!!!SEARCH STYLE!!!!!!!!! */ /* !!!!!!!!!SEARCH STYLE!!!!!!!!! */
/* !!!!!!!!!SEARCH STYLE!!!!!!!!! */ /* !!!!!!!!!SEARCH STYLE!!!!!!!!! */
/* !!!!!!!!!SEARCH STYLE!!!!!!!!! */ /* !!!!!!!!!SEARCH STYLE!!!!!!!!! */



/* !!!!!!!!!MENU STYLE!!!!!!!!! */ /* !!!!!!!!!MENU STYLE!!!!!!!!! */ /* !!!!!!!!!MENU STYLE!!!!!!!!! */
/* !!!!!!!!!MENU STYLE!!!!!!!!! */ /* !!!!!!!!!MENU STYLE!!!!!!!!! */ /* !!!!!!!!!MENU STYLE!!!!!!!!! */
/* !!!!!!!!!MENU STYLE!!!!!!!!! */ /* !!!!!!!!!MENU STYLE!!!!!!!!! */ /* !!!!!!!!!MENU STYLE!!!!!!!!! */

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes slide-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

#menu .nav > li > a {
  padding: 10px 12px;
  color: #1e1e1e;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}
#menu .nav > li:hover > a {
  color: #78c619;
  text-decoration: none;
}
#menu .nav > li > a svg {
  -webkit-transition: transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
}
#menu .nav > li:hover > a svg {
  transform: rotate(-90deg);
}
#menu .nav > li:first-child > a {
  color: #78c619;
  font-weight: 700;
}

@media (min-width: 1400px) {
  .sc-megamenu-container {
    width: 1396px;
  }
}

.sc-megamenu.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  overflow: visible;
}

.sc-megamenu .menu-header {
  display: none;
}

.mobile .sc-megamenu .menu-header {
  display: block;
  margin-bottom: 20px;
  padding-top: 35px;
}

.mobile .sc-megamenu .menu-header .menu-logo {
  max-width: 144px;
}

.sc-megamenu.active.lock {
  left: 0;
  z-index: 99;
}

.sc-megamenu-list,
.sc-megamenu-list ul,
.categories_lvl1,
.categories_lvl2,
.categories_lvl3,
.categories_lvl4 {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.sc-megamenu-list li,
.sc-megamenu-list ul li,
.sc-megamenu-list-item {
  list-style: none;
}

.sc-megamenu-list li::marker,
.sc-megamenu-list ul li::marker,
.sc-megamenu-list-item::marker {
  content: '';
}

.sc-megamenu-list {
  padding-top: 10px;
  height: 100%;
  overflow: auto;
  margin-bottom: 0;
  padding-bottom: 0;
}
.sc-megamenu-list hr {
  margin-top: 10px;
  margin-bottom: 10px;
}
.sc-megamenu-child hr {
  margin-top: 25px;
}

.sidebar-header-bottom {
  display: none;
}

.mobile .sidebar-header-bottom {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  flex: 0 0 auto;
  padding-inline: 30px;
  padding-top: clamp(24px, 3dvh, 150px);
}
.sc-megamenu-child {
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 100%;
  background-color: #fff;
  z-index: 50;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease;
}
.sc-megamenu-child.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.main-title-category {
  padding: 0 10px;
  line-height: 1;
  display: flex;
  align-items: center;
  background-color: #fff;
  margin: 70px 0 30px;
  padding: 0 30px;
}

.prev-catalog {
  width: 100%;
  gap: 10px;
  display: flex;
  justify-content: start;
  align-items: center;
}

.sc-megamenu-child {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  transition: 0.3s ease-in-out;
}

.sc-megamenu-list-item > .sc-megamenu-child.active {
  opacity: 1;
  transition: 0.3s ease-in-out;
  pointer-events: auto;
}

.mobile .sc-megamenu-list-item > .sc-megamenu-child.active {
  left: 0;
  z-index: 4;
}

.sc-megamenu-child-narrow {
  right: auto;
  bottom: 0;
}

.menu-title-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 15px 10px;
  margin-bottom: 30px;
  position: relative;
  z-index: 5;
  background-color: #fff;
  width: 100%;
}

.menu-header .nav_wrapp {
  display: flex;
}

.menu-header .nav_wrapp .account {
  display: none;
}

.mobile .menu-header .nav_wrapp .account {
  width: 50%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6f6f6;
}

.mobile .menu-header .nav_wrapp .social_wrapp {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.menu-title-mobile .language,
.menu-title-mobile .currency {
  margin-left: 20px;
}

.menu-title-mobile .language ul,
.menu-title-mobile .currency ul {
  display: flex;
  align-items: center;
}

.menu-title-mobile .language ul li,
.menu-title-mobile .currency ul li {
  margin-right: 10px;
}

.menu-title-mobile .language-link.activeLanguage,
.menu-title-mobile .currency-select.activeCurrency {
  font-weight: 600;
  pointer-events: none;
}

.menu-title-mobile .currency-select.activeCurrency {
  color: #1e1e1e;
}

.menu-title-mobile .btn-currency {
  display: none;
}

.menu-title-mobile .btn-currency-menu li .currency-select {
  margin-top: 0;
}

.menu-title-mobile .btn-currency-menu {
  position: relative;
  top: 0;
  left: 0;
  transform: translateX(0);
  margin-top: 0;
  padding: 0;
}

.menu-title {
  color: #000;
  font-family: var(--second-font);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
}

#close-mobile-menu,
.menu-title-mobile,
.sc-megamenu hr {
  display: none;
}

.mobile .menu-title-mobile {
  display: flex;
  position: fixed;
  top: 0;
}

.mobile .sc-megamenu > nav.navbar > ul.categories_lvl1 {
  min-height: 0;
  overflow: auto;
}

.categories_lvl1 {
  max-width: 417px;
  width: 100%;
}
.categories_lvl2 {
  left: 100%;
  margin-left: -1px;
  margin-top: -2px;
  width: 100%;
  height: fit-content;
  width: 400px;
  padding: 30px 0px 20px;
  overflow-y: auto;
}
.categories_lvl3 {
  left: 100%;
  margin-top: -1px;
  margin-left: -1px;
  padding-top: 25px;
  padding-bottom: 41px;
  max-width: 430px;
  width: 100%;
  height: inherit;
}
.categories_lvl4 {
  left: 100%;
  margin-left: -1px;
  padding-top: 25px;
  padding-bottom: 41px;
  max-width: 430px;
  width: 100%;
  height: inherit;
}
.sc-megamenu-list-item.active > .sc-megamenu-child,
.sc-megamenu-list-item:hover > .sc-megamenu-child {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
  pointer-events: all;
  border-top: 1px solid #ddd;
}

@media (hover: none), (pointer: coarse) {
  .sc-megamenu-list-item:hover > .sc-megamenu-child {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    pointer-events: none;
  }

  .sc-megamenu-list-item > .sc-megamenu-child.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
  }
}

.sc-megamenu-container {
  position: relative;
  width: 1170px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.sc-megamenu {
  position: absolute;
  top: 100%;
  left: 0px;
  outline-offset: -1px;
  transform: translate3d(-100%, 0, 0);
  border-top: 1px solid #dddddd;
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
  -webkit-transition:
    opacity 0.3s ease-out,
    transform 0.3s ease-out,
    visibility 0s linear 0.3s;
  -o-transition:
    opacity 0.3s ease-out,
    transform 0.3s ease-out,
    visibility 0s linear 0.3s;
  transition:
    opacity 0.3s ease-out,
    transform 0.3s ease-out,
    visibility 0s linear 0.3s;
  outline-offset: -1px;
  background-color: #ffffff;
}

.mobile .sc-megamenu {
  position: fixed;
  top: 0;
  padding: 0;
  height: 100%;
  border: none;
}

.mobile .sc-megamenu > nav {
  margin-bottom: 0;
  min-height: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  border-radius: 0;
  overflow: hidden;
}

.sc-megamenu.active {
  z-index: 52;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.3s ease-out,
    transform 0.3s ease-out,
    visibility 0s linear 0s;
}
@media (prefers-reduced-motion: reduce) {
  .sc-megamenu {
    transition: none;
  }
}

.sc-megamenu-list-item {
  margin-bottom: 6px;
}

.sc-megamenu-list {
  background: #fff;
  height: 75vh;
  width: 400px;
  overflow-y: auto;
  padding: 30px 0px 0;
  margin-top: -1px;
}

.mobile .sc-megamenu-list {
  height: 100%;
  width: 100vw;
  margin: 0 !important;
  max-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 70px;
}
/*
.sc-megamenu-list-item {
  margin-bottom: 5px;
}
*/
.sc-megamenu-list-item .menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.mobile .sc-megamenu-list-item .menu-row {
  padding: 0 30px;
}

.sc-megamenu-list-item .menu-row > a {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: #000;
  width: max-content;
  float: left;
}

.sc-megamenu-list-item .menu-row > a:hover {
  color: #824a0e;
}

.sc-megamenu-list-item .menu-row > a picture {
  display: flex;
  flex-shrink: 0;
}

.sc-megamenu-list-item .menu-row > a img {
  width: 50px;
  /* margin-right: 15px; */
}

.sc-megamenu-list-item .menu-row .category_arrow {
  display: flex;
  align-items: center;
  justify-content: end;
  /* width: 50px;
  height: 50px; */
  padding: 15px;
}

.sc-megamenu-list-item > a img {
  margin-right: 22px;
  width: 50px;
}

.sc-megamenu-list-item .menu-row .menu-toggle .plus {
  display: block;
  position: relative;
  height: 16px;
  width: 16px;
}

.sc-megamenu-list-item .menu-row .menu-toggle .plus span {
  position: absolute;
  background-color: #000;
  display: block;
  transition: 0.2s ease-in-out;
}

.sc-megamenu-list-item .menu-row .menu-toggle .plus span.first {
  width: 100%;
  height: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sc-megamenu-list-item .menu-row .menu-toggle .plus span.second {
  width: 2px;
  height: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sc-megamenu-list-item .menu-row .menu-toggle.is-open .plus span.second {
  height: 0;
  opacity: 0;
}

.sc-megamenu-list-item .js-collapse {
  padding: 0 105px;
  /* margin-bottom: 40px; */
}

.mobile .sc-megamenu-list-item .js-collapse {
  padding: 0 95px;
}

.sc-megamenu-list-item .js-collapse .link_item a {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  color: #727378;
}

.sc-megamenu-child {
  height: calc(75vh + 2px);
  opacity: 0;
  visibility: hidden;
  background: #fff;
  pointer-events: none;
  border: 1px solid #dddddd;
  -webkit-transition:
    opacity 0.3s ease-out 0.05s,
    visibility 0.3s ease-out 0.05s,
    transform 0.2s ease-out 0.05s;
  -o-transition:
    opacity 0.3s ease-out 0.05s,
    visibility 0.3s ease-out 0.05s,
    transform 0.2s ease-out 0.05s;
  transition:
    opacity 0.3s ease-out 0.05s,
    visibility 0.3s ease-out 0.05s,
    transform 0.2s ease-out 0.05s;
  transition:
    opacity 0.3s ease-out 0.05s,
    visibility 0.3s ease-out 0.05s,
    transform 0.2s ease-out 0.05s;
  transform: translateX(100%);
}

.mobile .sc-megamenu-child {
  overflow-y: auto;
  height: 110vh;
  padding-bottom: 20px;
}

.main-title-category {
  display: none;
}

.mobile .main-title-category {
  display: block;
}

/* !!!!!!!!!MENU STYLE!!!!!!!!! */ /* !!!!!!!!!MENU STYLE!!!!!!!!! */ /* !!!!!!!!!MENU STYLE!!!!!!!!! */
/* !!!!!!!!!MENU STYLE!!!!!!!!! */ /* !!!!!!!!!MENU STYLE!!!!!!!!! */ /* !!!!!!!!!MENU STYLE!!!!!!!!! */
/* !!!!!!!!!MENU STYLE!!!!!!!!! */ /* !!!!!!!!!MENU STYLE!!!!!!!!! */ /* !!!!!!!!!MENU STYLE!!!!!!!!! */


/* !!!!!!!!!HEADER STYLE!!!!!!!!! */ /* !!!!!!!!!HEADER STYLE!!!!!!!!! */
/* !!!!!!!!!HEADER STYLE!!!!!!!!! */ /* !!!!!!!!!HEADER STYLE!!!!!!!!! */
/* !!!!!!!!!HEADER STYLE!!!!!!!!! */ /* !!!!!!!!!HEADER STYLE!!!!!!!!! */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  animation: slide-down 0.5s;
}
header.fixed {
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  animation: slide-down 1s;
}

.head-1-links a {
  font-size: 16px;
}
.flex,
.d-flex {
  display: flex !important;
}
.flex-column {
  flex-direction: column !important;
}
.align-items-start {
  align-items: flex-start !important;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s ease;
  z-index: 51;
}

.header {
  width: 100%;
}

.content-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
div#logo {
  max-width: 205px;
  user-select: none;
}
.head-1-links {
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
  align-items: center;
}
.head-1-links a {
  margin-left: 20px;
  margin-right: 20px;
}

.header_phone {
  display: flex;
  align-items: center;
}

.header_phone li {
  flex-shrink: 0;
  margin-right: 10px;
}

.header_phone li a {
  color: black;
}

.head-3 {
  display: flex;
  align-items: center;
  justify-content: end;
  width: calc(50% - 92px);
}

.catalog {
  margin-right: auto;
}
.mobile .catalog {
  margin-left: 10px;
}

.catalog #show_categories_btn {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  text-transform: uppercase;
  color: #000;
}


#show_categories_btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: end;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  color: #000;
  height: 40px;
}

#show_categories_btn .burger {
  position: relative;
  width: 24px;
  height: 18px;
  display: inline-flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
  margin-right: 17px;
}

.mobile #show_categories_btn .burger {
  margin-right: 0;
  margin-bottom: 11px;
  width: 20px;
  height: 16px;
}

#show_categories_btn .burger > span {
  height: 2px;
  width: 100%;
  background: #333; /* змінюй під свій колір */
  border-radius: 2px;
  display: block;
  transition: 0.2s ease-in-out;
}

#show_categories_btn .burger > span:first-child {
  width: 50%;
}

#show_categories_btn .burger > span:last-child {
  width: 75%;
}

#show_categories_btn:hover .burger > span {
  width: 100%;
}

#show_categories_btn.active .burger > span {
  width: 100%;
}

.search {
  position: relative;
  margin-right: 36px;
}
#search {
  position: relative;
  width: 200px;
  display: flex;
  align-items: center;
}

.mobile #search {
  width: 100%;
  align-items: center;
  height: 100%;
}

#search .input-search {
  display: block;
  margin-right: 10px;
}

.mobile #search .input-search {
  display: none;
}

div#search button {
  background: none;
  border: none;
}
.input-main-search {
  margin-right: 11px;
  width: 100%;
  background: #fff;
  height: 40px;
  border-bottom: none;
  cursor: text !important;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #000;
}

.mobile .input-main-search {
  width: 100%;
  height: 50px;
  padding-left: 10px;
  font-size: 16px;
  background: #f5f5f5;
}

.input-main-search::placeholder {
  color: #000;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #000;
}
.mobile .input-main-search::placeholder {
  font-size: 16px;
}
.language,
.currency {
  margin-left: 20px;
  margin-right: 57px;
}
.btn-currency-group,
.btn-language-group {
  position: relative;
}
.btn-currency-menu,
.btn-language-menu {
  position: absolute;
  overflow: hidden;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}

.main-menu-content,
.account-menu,
.container-cart {
  position: absolute;
  overflow: hidden;
  top: 70px;
  right: 0;
  z-index: 9;
  min-width: 220px;
  /*
    margin-top: 10px;
    border-radius: 5px;
    */
  background: #fff;
  border-radius: 5px;
  box-shadow:
    0px 3px 7px 0px rgba(0, 0, 0, 0.1),
    0px 13px 13px 0px rgba(0, 0, 0, 0.09),
    0px 29px 17px 0px rgba(0, 0, 0, 0.05),
    0px 51px 20px 0px rgba(0, 0, 0, 0.01),
    0px 80px 22px 0px rgba(0, 0, 0, 0);
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  cursor: auto;
}

.mobile .main-menu-content,
.mobile .account-menu,
.mobile .container-cart {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100vw;
  height: auto;
  max-height: min(calc(100dvh - 60px), 90dvh);
  overflow-y: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-overflow-scrolling: touch;
}

.mobile .container-cart ul {
  height: 100%;
}

.main-menu-content {
  left: 80%;
  padding: 0px 30px;
}

.btn-currency-menu,
.btn-language-menu {
  padding: 0px 50px;
}
.btn-currency-menu {
  margin-top: 2px;
}
.callback {
  display: flex;
  align-items: center;
}
.callback a {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.container-cart {
  position: absolute;
  width: 100%;
  width: 350px;
  /* top: calc(100% + 30px); */
  top: 80px;
  right: 0;
  padding: 10px 0;
  background-color: #fff;
  border-top: 1px solid #f4f4f4;
  /*
    border-radius: 10px;
    */
  box-shadow:
    0 9px 19px 0 rgba(0, 0, 0, 0.1),
    0 35px 35px 0 rgba(0, 0, 0, 0.09),
    0 78px 47px 0 rgba(0, 0, 0, 0.05),
    0 138px 55px 0 rgba(0, 0, 0, 0.01),
    0 216px 61px 0 rgba(0, 0, 0, 0);
  z-index: 1111;
}
.btn-currency-menu li:not(:first-child) .currency-select,
.btn-language-menu li:not(:first-child) .language-select {
  margin-top: 5px;
}
.currency-select,
.language-select {
  min-width: 90px;
  font-size: 14px;
  line-height: normal;
  color: #000;
  background-color: #fbfbfb;
  padding: 4px 30px;
  border-radius: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.currency-select:hover,
.language-select:hover {
  color: #4d4d4d;
}
#form-language .btn-language,
#form-currency .btn-currency {
  display: flex;
  align-items: center;
  color: #000;
  background-color: transparent;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  user-select: none;
}
#form-language .btn-language img,
#form-currency .btn-currency img {
  margin-right: 8px;
  width: 20px;
  flex-shrink: 0;
}
.btn-currency-menu.in,
.btn-language-menu.in {
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
  padding: 12px 0 0;
}
.main-menu-content.in {
  height: auto;
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
  padding: 20px 30px;
}
.account-menu.in {
  height: auto;
  visibility: visible;
  opacity: 1;
  transition: 1s;
  padding: 20px 30px;
}
.container-cart.in {
  /* height: auto; */
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
  padding: 10px 0 25px;
}
#form-language {
  margin: 0;
}
#cart-total,
.whishlist-total {
  background: #1e1e1e;
  width: 13px;
  height: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  right: -7px;
  border-radius: 100%;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 9px;
  line-height: 140%;
  text-align: center;
  color: #fefefe;
  padding-top: 1px;
}

.mobile #cart-total,
.mobile .whishlist-total {
  padding-left: 0;
}

#wishlist-total .whishlist-total {
  display: none !important;
}

#wishlist-total.not__empty .whishlist-total {
  display: flex !important;
}

button.btn-cart {
  background: no-repeat;
  border: none;
}
.account li {
  padding-top: 3px;
  padding-bottom: 3px;
  list-style-type: none;
}

.main-menu,
.wishlist a,
.mini-cart,
#cart a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-menu {
  flex-direction: row;
}
.main-menu .head-ico,
.callback.head-ico svg {
  margin-right: 9px;
  flex-shrink: 0;
}
.callback button {
  padding: 0;
  color: #fff;
  background-color: transparent;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  display: flex;
  align-items: center;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.callback button:hover {
  color: #f57c27;
}
.header-socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(30px, max-content));
  gap: 11px;
  align-items: center;
  list-style: none;
}
.header-item {
  border-radius: 50%;
  overflow: hidden;
}
.header-item img {
  max-width: 30px;
}
.account-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--main-font);
}

header .account-wrap .account {
  display: flex;
  align-items: center;
  gap: 5px;
}

.account-wrap .mini-cart {
  margin-right: 0;
}

.main-menu,
.account {
  cursor: pointer;
}
button#show_categories_btn {
  background-color: #fff;
}
.head-title {
  color: #fff;
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  user-select: none;
}

.product__item span.price-old {
  margin-bottom: 8px;
  color: #824a0e;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  text-decoration: line-through;
  white-space: nowrap;
}
span.price-new {
  color: #3a3227;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}

.btn-none {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

.header-box {
  position: relative;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  /* background-color: {{ header_marquee_background_color }}; */
  background-color: #1e1e1e;
  overflow: hidden;
}

.header-box a {
  height: 100%;
  display: block;
}

.header-box-info-link {
  display: inline-block;
  height: 100%;
}

.header-box-info-text {
  display: inline-block;
  font-family: var(--second-font);
  font-weight: 600;
  font-size: 12px;
  line-height: normal;
  text-transform: uppercase;
  white-space: nowrap;
}

#logo {
  margin: 0;
}
#logo h1 {
  margin: 0;
  font-size: 28px;
}
#logo h1 a {
  color: #000;
}
.mobile #logo {
  max-width: 144px;
}


.box-info {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  overflow: hidden;
}
.title-info {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  line-height: 16px;
}
.price-info {
  background: #fff;
  width: 105px;
  height: 124px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
span.text_ot,
span.symbol {
  color: #000;
  font-size: 10px;
  font-style: normal;
  line-height: 15px;
}
span.prices {
  color: #000;
  font-size: 14px;
  font-style: normal;
  line-height: 16px;
  margin-left: 5px;
  margin-right: 3px;
}

.navbar {
  border: 0;
  margin: 0 !important;
}
.navbar-menu-top {
  margin-bottom: 0;
  width: 50%;
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar-menu-top hr {
  display: none;
}
.nav.navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile .nav.navbar-nav {
  display: block;
}
.navbar-nav > li {
  float: none;
}
.navbar-nav > li a:hover {
  text-decoration: underline;
}
.navbar-nav > li a.noLink {
  cursor: pointer;
}
.navbar-nav > li a.noLink:hover {
  text-decoration: none;
}
.navbar-nav > li > .dropdown-menu {
  position: absolute;
  width: 220px;
  top: 40px;
  right: 0;
  padding: 20px 30px;
  background-color: #fff;
  border: 0;
  border-radius: 10px;
  box-shadow:
    0 9px 19px 0 rgba(0, 0, 0, 0.1),
    0 35px 35px 0 rgba(0, 0, 0, 0.09),
    0 78px 47px 0 rgba(0, 0, 0, 0.05),
    0 138px 55px 0 rgba(0, 0, 0, 0.01),
    0 216px 61px 0 rgba(0, 0, 0, 0);
  z-index: 1111;
}
.navbar-nav > li > .dropdown-menu li {
  padding-top: 3px;
  padding-bottom: 3px;
}
.navbar-nav > li > .dropdown-menu li a {
  color: #1e1e1e;
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
}
.navbar-nav > li > .dropdown-menu li a:hover {
  color: #4d4d4d;
  text-decoration: none;
}
.mobile .navbar-nav > li > .dropdown-menu li {
  padding-top: 10px;
  padding-bottom: 10px;
}
.mobile .navbar-nav > li > .dropdown-menu li a {
  text-transform: uppercase;
}
.mobile .navbar-nav > li > .dropdown-menu li:hover a {
  color: #78c619;
}

.mobile .container-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 5px;
}

.mobile .container-header .menu_wrapp {
  display: flex;
  align-items: center;
  gap: 16px;
}

#mobile-search {
  display: none;
}

@media (max-width: 1200px) {
  header .account-wrap .account {
    display: none;
  }

  header .dd {
    display: none;
  }

  
  .sc-megamenu .menu-header {
    display: block;
    margin-bottom: 20px;
    padding-top: 35px;
  }

  .sc-megamenu .menu-header .menu-logo {
    max-width: 144px;
  }

  .sidebar-header-bottom {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    flex: 0 0 auto;
    padding-inline: 30px;
    padding-top: clamp(24px, 3dvh, 150px);
  }

  .sc-megamenu-list-item > .sc-megamenu-child.active {
    left: 0;
    z-index: 4;
  }

  .menu-header .nav_wrapp .account {
    width: 50%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f6f6f6;
  }

  .menu-header .nav_wrapp .social_wrapp {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .menu-title-mobile {
    display: flex;
    position: fixed;
    top: 0;
  }

  .sc-megamenu > nav.navbar > ul.categories_lvl1 {
    min-height: 0;
    overflow: auto;
  }

  .sc-megamenu {
    position: fixed;
    top: 0;
    padding: 0;
    height: 100%;
    border: none;
  }

  .sc-megamenu > nav {
    margin-bottom: 0;
    min-height: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    border-radius: 0;
    overflow: hidden;
  }

  .sc-megamenu-list {
    height: 100%;
    width: 100vw;
    margin: 0 !important;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 70px;
  }

  .sc-megamenu-list-item .menu-row {
    padding: 0 30px;
  }

  .sc-megamenu-list-item .js-collapse {
    padding: 0 95px;
  }

  .sc-megamenu-child {
    overflow-y: auto;
    height: 100vh !important;
    padding-bottom: 20px;
    width: 100%;
  }

  .main-title-category {
    display: block;
  }

}

@media (max-width: 840px) {
  div#logo {
      max-width: 144px;
  }

  #mobile-search {
    display: block;
    margin-right: 15px;
  }

  .close-mobile-search {
    display: block !important;
    height: 24px;
    margin-left: 25px;
  }

  .content-header {
    justify-content: start;
    padding: 0px 10px;
  }

  .head-3 {
    margin-left: auto;
    margin-right: 15px;
  }

  .head-3 .search {
    margin-right: 0;
  }

  .head-3 .account-wrap {
    gap: 15px;
  }

  header .catalog {
    order: 5;
    margin-right: 0;
  }

  header .catalog .btn_name {
    display: none;
  }

  #show_categories_btn .burger {
    margin-right: 0;
    margin-bottom: 11px;
    width: 20px;
    height: 16px;
  }

  #search {
    width: 100%;
    align-items: center;
    height: 100%;
  }

  #search .input-search {
    display: none;
  }


  .input-main-search {
    width: 100%;
    height: 50px;
    padding-left: 10px;
    font-size: 16px;
    background: #f5f5f5;
  }

  .input-main-search::placeholder {
    font-size: 16px;
  }

  .main-menu-content,
  .account-menu,
  .container-cart {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    height: auto;
    max-height: min(calc(100dvh - 60px), 90dvh);
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    -webkit-overflow-scrolling: touch;
  }

  .container-cart ul {
    height: 100%;
  }

  .nav.navbar-nav {
    display: block;
  }

  .navbar-nav > li > .dropdown-menu li {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .navbar-nav > li > .dropdown-menu li a {
    text-transform: uppercase;
  }
  .navbar-nav > li > .dropdown-menu li:hover a {
    color: #78c619;
  }

  .container-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 5px;
  }

  .container-header .menu_wrapp {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  
  .header__search #search{
    position: fixed;
    align-items: center;
    top: 70px;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 50px;
    display: flex;
    background: #f5f5f5;
    visibility: hidden;
    opacity: 0;
  }

  .header__search.in #search {
    animation: slide-down 0.5s;
    visibility: visible;
    opacity: 1;
  }

  
  .header__search .dropdown-menu {
    transform: translateX(0);
  }

  .header__search .dropdown-menu li.more a {
    margin-top: 9px;
    margin-bottom: 17px;
  }


  .header__search .dropdown-menu {
    position: fixed;
    overflow-y: auto;
    top: 120px !important;
    left: 0 !important;
    margin: 0;
    padding: 0 10px 10px;
    min-width: auto;
    width: calc(100%);
    height: calc(100vh - 120px);
    padding-bottom: 40vh;
    /* height: calc(100% - 70px); */
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: 0;
    box-shadow: 0;
    touch-action: pan-y;
    inset: 0;
    z-index: 9999;
    -webkit-overflow-scrolling: touch;
  }

  .close-mobile-search.active {
    display: block;
  }

  .header__search .dropdown-menu {
    flex-direction: column;
  }
}

.mobile #mobile-search {
  margin-right: 0;
}

/* !!!!!!!!!HEADER STYLE!!!!!!!!! */ /* !!!!!!!!!HEADER STYLE!!!!!!!!! */
/* !!!!!!!!!HEADER STYLE!!!!!!!!! */ /* !!!!!!!!!HEADER STYLE!!!!!!!!! */
/* !!!!!!!!!HEADER STYLE!!!!!!!!! */ /* !!!!!!!!!HEADER STYLE!!!!!!!!! */

/* MODAL REGISTRATION */ /* MODAL REGISTRATION */ /* MODAL REGISTRATION */ /* MODAL REGISTRATION */
/* MODAL REGISTRATION */ /* MODAL REGISTRATION */ /* MODAL REGISTRATION */ /* MODAL REGISTRATION */
/* MODAL REGISTRATION */ /* MODAL REGISTRATION */ /* MODAL REGISTRATION */ /* MODAL REGISTRATION */
/* MODAL REGISTRATION */ /* MODAL REGISTRATION */ /* MODAL REGISTRATION */ /* MODAL REGISTRATION */

#account-register {
  width: 320px;
  margin: 50px auto 50px;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}

#account-register h1 {
  text-align: center;
  margin-top: 0;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  max-width: 320px;
  color: #0d0802;
  margin-top: 0;
  margin-bottom: 10px;
}

#account-register fieldset {
  padding: 0;
}

#account-register .col-sm-2 {
  padding: 0;
}

#account-register .col-sm-10 {
  padding: 0;
  margin-left: 10px;
}

#account-register .form-group.required input {
  border: 1px solid #f8f8f8 !important;
  height: 35px;
  border-radius: 3px;
  box-shadow: none;
  font-family: var(--main-font);
  font-size: 16px;
}

#account-register .pull-right {
  width: 100%;
  align-items: center;
  justify-content: center;
  font-family: var(--main-font);
  margin-bottom: 15px;
  text-align: center;
}

#account-register .pull-right input {
  margin-left: 10px;
}

#account-register .btn_submit {
  width: 100%;
  height: 40px;
  background-color: #ff4900;
  border-radius: 3px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--main-font);
  padding: 0;
  margin-top: 10px;
  border: 1px solid #0f0f0f;
}

/* MODAL REGISTRATION END */ /* MODAL REGISTRATION END */ /* MODAL REGISTRATION END */
/* MODAL REGISTRATION END */ /* MODAL REGISTRATION END */ /* MODAL REGISTRATION END */
/* MODAL REGISTRATION END */ /* MODAL REGISTRATION END */ /* MODAL REGISTRATION END */
/* MODAL REGISTRATION END */ /* MODAL REGISTRATION END */ /* MODAL REGISTRATION END */

/* !!!!!!!!!TABS STYLE!!!!!!!!!!! */ /* !!!!!!!!!TABS STYLE!!!!!!!!!!! */ /* !!!!!!!!!TABS STYLE!!!!!!!!!!! */
/* !!!!!!!!!TABS STYLE!!!!!!!!!!! */ /* !!!!!!!!!TABS STYLE!!!!!!!!!!! */ /* !!!!!!!!!TABS STYLE!!!!!!!!!!! */
/* !!!!!!!!!TABS STYLE!!!!!!!!!!! */ /* !!!!!!!!!TABS STYLE!!!!!!!!!!! */ /* !!!!!!!!!TABS STYLE!!!!!!!!!!! */
.product-tabs__nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.product-tabs__tab {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0 0 15px;
  cursor: pointer;
  font: inherit;
  opacity: 0.7;
  position: relative;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: #000;
  transition: opacity 0.25s ease;
}

.product-tabs__tab.is-active {
  opacity: 1;
  font-weight: 600;
}

.product-tabs__tab.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: currentColor;
}

.product-tabs__panels {
  position: relative;
}

.product-tabs__panel {
  display: none;
}

.product-tabs__panel.is-active {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* !!!!!!!!!TABS STYLE!!!!!!!!!!! */ /* !!!!!!!!!TABS STYLE!!!!!!!!!!! */ /* !!!!!!!!!TABS STYLE!!!!!!!!!!! */
/* !!!!!!!!!TABS STYLE!!!!!!!!!!! */ /* !!!!!!!!!TABS STYLE!!!!!!!!!!! */ /* !!!!!!!!!TABS STYLE!!!!!!!!!!! */
/* !!!!!!!!!TABS STYLE!!!!!!!!!!! */ /* !!!!!!!!!TABS STYLE!!!!!!!!!!! */ /* !!!!!!!!!TABS STYLE!!!!!!!!!!! */

/* !!!!!!!!!MAIN STYLE!!!!!!!!! */ /* !!!!!!!!!MAIN STYLE!!!!!!!!! */ /* !!!!!!!!!MAIN STYLE!!!!!!!!! */
/* !!!!!!!!!MAIN STYLE!!!!!!!!! */ /* !!!!!!!!!MAIN STYLE!!!!!!!!! */ /* !!!!!!!!!MAIN STYLE!!!!!!!!! */
/* !!!!!!!!!MAIN STYLE!!!!!!!!! */ /* !!!!!!!!!MAIN STYLE!!!!!!!!! */ /* !!!!!!!!!MAIN STYLE!!!!!!!!! */

.dd {
  position: relative;
  display: inline-flex;
}

/* Кнопка (під твої 24x24) */
.dd__toggle {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* Три крапки */
.dd__dots {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    0 -7px 0 currentColor,
    0 7px 0 currentColor;
}

/* Меню */
.dd__menu {
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.02);
  padding: 8px;
  z-index: 9999;

  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: 0.18s ease;
}

.dd.is-open .dd__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dd__item {
  display: flex;
  width: 100%;
  padding: 10px 12px;
  border-radius: 0px;
  color: inherit;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #3a3227;
}

.dd__item:hover {
  background: rgba(0, 0, 0, 0.05);
}

.dd__sep {
  height: 1px;
  margin: 6px 0;
  background: rgba(0, 0, 0, 0.08);
}

/* A11y helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* content */
#content {
  min-height: 600px;
}
/* alert */
.alert {
  padding: 8px 14px 8px 14px;
  font-family: var(--main-font);
}
.alert.alert-danger {
  margin-top: 15px;
  color: #222b45;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  border-radius: 0;
  border-color: #f57c27;
  background-color: #fffaf6;
  display: flex;
  align-items: center;
}
.alert.alert-danger b {
  font-weight: 700 !important;
}
.alert.alert-danger svg {
  margin-left: 24px;
  margin-right: 22px;
  flex-shrink: 0;
}
/* buttons */
.buttons {
  margin: 1em 0;
}
#content .buttons a {
  text-decoration: none;
}
.btn,
.btn-primary {
  color: #1e1e1e;
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  border: 1px solid #000;
  border-radius: 0;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 5px;
}
.btn:hover {
  color: #fff;
  background-color: #3A3227;
  border-color: #3A3227;
}
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: 0;
  outline-offset: 0;
}
.btn:active,
.btn-primary:active {
  box-shadow: none;
}
.btn-primary {
  color: #fff !important;
  background-color: #0f0f0f !important;
  border-color: #0f0f0f !important;
}
.btn-primary:hover {
  color: #0f0f0f !important;
  background-color: #fff !important;
  border-color: #0f0f0f !important;
}
.btn-primary:focus {
  outline: 0 !important;
  outline-offset: 0 !important;
}
.btn-xs {
  font-size: 9px;
}
.btn-sm {
  font-size: 10.2px;
}
.btn-lg {
  padding: 10px 16px;
  font-size: 15px;
}
.btn-group > .btn,
.btn-group > .dropdown-menu,
.btn-group > .popover {
  font-size: 12px;
}
.btn-group > .btn-xs {
  font-size: 9px;
}
.btn-group > .btn-sm {
  font-size: 10.2px;
}
.btn-group > .btn-lg {
  font-size: 15px;
}
.btn-default {
  color: #777;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #e7e7e7;
  background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
  background-repeat: repeat-x;
  border-color: #dddddd #dddddd #b3b3b3 #b7b7b7;
}
.btn-primary {
  color: #1e1e1e;
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  text-shadow: none;
  background-color: transparent;
  background-image: none;
  background-repeat: no-repeat;
  border-color: unset;
}
.btn-primary.focus,
.btn-primary:focus {
  color: #fff;
  background-color: #1e1e1e;
  border-color: #1e1e1e;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
  background-color: #1e1e1e;
  /* background-position: 0 -15px; */
}
.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover {
  color: #fff;
  background-color: #1e1e1e;
  border-color: #1e1e1e;
}
.btn-warning {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #faa732;
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
  background-repeat: repeat-x;
  border-color: #f89406 #f89406 #ad6704;
}
.btn-warning:hover,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
  box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-danger {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #da4f49;
  background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
  background-repeat: repeat-x;
  border-color: #bd362f #bd362f #802420;
}
.btn-danger:hover,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
  box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-success {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #5bb75b;
  background-image: linear-gradient(to bottom, #62c462, #51a351);
  background-repeat: repeat-x;
  border-color: #51a351 #51a351 #387038;
}
.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-info {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #df5c39;
  background-image: linear-gradient(to bottom, #e06342, #dc512c);
  background-repeat: repeat-x;
  border-color: #dc512c #dc512c #a2371a;
}
.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  background-image: none;
  background-color: #df5c39;
}
.btn-link {
  border-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  color: #23a1d1;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled] {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  box-shadow: none;
}
.btn-inverse {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #363636;
  background-image: linear-gradient(to bottom, #444444, #222222);
  background-repeat: repeat-x;
  border-color: #222222 #222222 #000000;
}
.btn-inverse:hover,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
  background-color: #222222;
  background-image: linear-gradient(to bottom, #333333, #111111);
}
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: none;
  outline-offset: 0;
}
.button-group-buy button {
  color: #222b45;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  display: flex;
  align-items: center;
  padding: 0;
}

.wrapper {
  padding-top: 80px;
  width: 100vw;
  display: flex;
  flex-direction: column;
}

.mobile .wrapper {
  padding-top: 70px;
}

::-webkit-scrollbar {
  width: 6px;
  height: 2px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #d3d0ca;
  border-radius: 20px;
}
:focus-visible {
  outline: 0;
}
.search ul::-webkit-scrollbar {
  width: 0;
}
.sc-megamenu-list::-webkit-scrollbar,
.sc-megamenu-list ul::-webkit-scrollbar {
  width: 8px;
}
.breadcrumb::-webkit-scrollbar {
  height: 2px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  right: -10px;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

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

html {
  width: 100vw;
  height: 100%;
}
body {
  width: 100%;
  color: #000;
  background-color: #fff;
  font-family: var(--main-font) !important;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  overflow-x: hidden;
}

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}

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

ul,
table,
fieldset,
hr {
  margin: 0;
  padding: 0;
}
hr {
  border-color: #f2f2f2;
}

body[class*='information-information'] {
  background-color: #f6f6f6;
}

#content ul li:not(:last-child),
#content ol li:not(:last-child) {
  margin-bottom: 10px;
}

#content .btn,
#content ul.dropdown-address li a {
  text-decoration: none;
}

#content ul li {
  list-style-type: none;
}

button {
  background-color: transparent;
  user-select: none;
  cursor: pointer;
}
a {
  color: #1e1e1e;
  background-color: unset;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
a:hover,
a:link,
a:visited {
  text-decoration: none;
}
a:hover {
  color: #4d4d4d;
  text-decoration: none;
  text-underline-position: under;
}
a:link {
  text-underline-position: under;
}
a:focus {
  /* color: inherit; */
  outline: none;
  outline-offset: 0;
}
.btn_continue {
  color: #fff !important;
}

.phone {
  white-space: nowrap;
}
.phone-number {
  white-space: nowrap;
}

.hidden {
  display: none;
}

.form-control:focus {
  border-color: #000;
  outline: 0;
  box-shadow: none;
}

label {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
textarea {
  resize: vertical;
}
input,
button {
  border: none;
}
.tab-content > .active,
.vertical-tab-container .active {
  animation: fadeIn 0.7s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* !!!!!!!!!MAIN STYLE!!!!!!!!! */ /* !!!!!!!!!MAIN STYLE!!!!!!!!! */ /* !!!!!!!!!MAIN STYLE!!!!!!!!! */
/* !!!!!!!!!MAIN STYLE!!!!!!!!! */ /* !!!!!!!!!MAIN STYLE!!!!!!!!! */ /* !!!!!!!!!MAIN STYLE!!!!!!!!! */
/* !!!!!!!!!MAIN STYLE!!!!!!!!! */ /* !!!!!!!!!MAIN STYLE!!!!!!!!! */ /* !!!!!!!!!MAIN STYLE!!!!!!!!! */

/* !!!!!!!!!CART STYLE!!!!!!!!! */ /* !!!!!!!!!CART STYLE!!!!!!!!! */ /* !!!!!!!!!CART STYLE!!!!!!!!! */
/* !!!!!!!!!CART STYLE!!!!!!!!! */ /* !!!!!!!!!CART STYLE!!!!!!!!! */ /* !!!!!!!!!CART STYLE!!!!!!!!! */
/* !!!!!!!!!CART STYLE!!!!!!!!! */ /* !!!!!!!!!CART STYLE!!!!!!!!! */ /* !!!!!!!!!CART STYLE!!!!!!!!! */

#cart {
  cursor: pointer;
}
.title-mini-cart-wrap {
  margin-bottom: 17px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-mini-cart-wrap {
  padding-left: 25px;
  padding-right: 10px;
}

.title-mini-cart {
  color: #0f0f0f;
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  text-transform: uppercase;
  padding: 0 15px;
}

.mobile .title-mini-cart {
  padding: 0;
}

.list-product-cart {
  overflow: auto;
  max-height: 240px;
}

.mobile .list-product-cart {
  height: calc(100% - 150px);
  max-height: unset;
}

.container-cart ul {
  list-style-type: none;
  padding: 0;
}
.cart-totals {
  padding: 0 30px;
}

.cart-totals {
  padding: 0 25px;
}

.item-product-cart,
.information-product-cart,
.top-product-cart,
.bottom-product-cart {
  display: flex;
}
.image-product-cart {
  margin-right: 28px;
  flex-shrink: 0;
}
.image-product-cart img {
  width: 82px;
}
.information-product-cart {
  width: 100%;
  height: 100%;
  flex-direction: column;
}
.top-product-cart {
  margin-bottom: 11px;
  justify-content: space-between;
  align-items: center;
}
.delete-product {
  padding: 2px 0 2px 10px;
}
.delete-product .btn {
  padding: 0;
}
.bottom-product-cart {
  justify-content: space-between;
  align-items: center;
}
.name-product a {
  color: #1e1e1e;
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.29;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.item-totals.total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  margin-top: 15px;
}

.item-totals.total .name-total strong {
  font-family: var(--main-font);
  font: 400;
}

.item-totals.total .value-total {
  font-family: var(--main-font);
}

.name-product-options {
  margin-top: 11px;
  margin-bottom: 11px;
}
.name-product-option {
  display: flex;
  align-items: center;
}
.name-product-option-name,
.name-product-option-value {
  color: #000;
  font-family: var(--main-font);
  font-size: 10px;
  line-height: 1;
}
.name-product-option-value {
  margin-left: 5px;
  font-weight: 700;
}
.total-product {
  min-width: 65px;
  color: #1e1e1e;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  white-space: nowrap;
}
.group-cart-button {
  display: flex;
  flex-direction: column;
  padding: 0 30px;
}

.group-cart-button {
  padding: 0 25px;
}

.quantity-product .quantity {
  width: 35px;
  border: none;
  text-align: center;
  background: #fff;
  font-family: var(--main-font);
  font-weight: 700;
  text-align: center;
  color: #c5cee0;
  font-size: 14px;
  line-height: 1;
}
a.btn-checkout {
  color: #fff;
  background: #3a3227;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-bottom: 22px; */
  text-align: center;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
}
button.btn-exit {
  padding: 10px 18px 10px;
  color: #222b45;
  font-size: 16px;
  background: #fff;
  border: 0;
  text-decoration: none;
}
.item-product-cart {
  display: flex;
  padding: 0 30px 9px 30px;
}

.mobile .item-product-cart {
  padding: 0 25px 9px 25px;
}

/* !!!!!!!!!CART STYLE!!!!!!!!! */ /* !!!!!!!!!CART STYLE!!!!!!!!! */ /* !!!!!!!!!CART STYLE!!!!!!!!! */
/* !!!!!!!!!CART STYLE!!!!!!!!! */ /* !!!!!!!!!CART STYLE!!!!!!!!! */ /* !!!!!!!!!CART STYLE!!!!!!!!! */
/* !!!!!!!!!CART STYLE!!!!!!!!! */ /* !!!!!!!!!CART STYLE!!!!!!!!! */ /* !!!!!!!!!CART STYLE!!!!!!!!! */

/* !!!!!!!!! COLAPSE STYLE !!!!!!!!!! */ /* !!!!!!!!! COLAPSE STYLE !!!!!!!!!! */ /* !!!!!!!!! COLAPSE STYLE !!!!!!!!!! */
/* !!!!!!!!! COLAPSE STYLE !!!!!!!!!! */ /* !!!!!!!!! COLAPSE STYLE !!!!!!!!!! */ /* !!!!!!!!! COLAPSE STYLE !!!!!!!!!! */
/* !!!!!!!!! COLAPSE STYLE !!!!!!!!!! */ /* !!!!!!!!! COLAPSE STYLE !!!!!!!!!! */ /* !!!!!!!!! COLAPSE STYLE !!!!!!!!!! */

.menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.menu-toggle {
  background: transparent;
  border: 0;
  padding: 6px;
  line-height: 0;
  cursor: pointer;
}

.js-collapse {
  overflow: hidden;
  transition: height 0.25s ease;
}

/* !!!!!!!!! COLAPSE STYLE !!!!!!!!!! */ /* !!!!!!!!! COLAPSE STYLE !!!!!!!!!! */ /* !!!!!!!!! COLAPSE STYLE !!!!!!!!!! */
/* !!!!!!!!! COLAPSE STYLE !!!!!!!!!! */ /* !!!!!!!!! COLAPSE STYLE !!!!!!!!!! */ /* !!!!!!!!! COLAPSE STYLE !!!!!!!!!! */
/* !!!!!!!!! COLAPSE STYLE !!!!!!!!!! */ /* !!!!!!!!! COLAPSE STYLE !!!!!!!!!! */ /* !!!!!!!!! COLAPSE STYLE !!!!!!!!!! */

.stickers_image.stickers_image_product {
  height: max-content;
}
.stickers_image li {
  margin-right: 10px;
  display: flex;
  height: max-content;
}
.stickers_image_product.stickers_image img {
  height: 25px;
}
.stickers_image.stickers_image_product {
  height: max-content;
}

.mobile .menu_wrapp .head-ico,
.account-wrap .head-ico {
  position: relative;
}

.modal_login {
  text-decoration: none !important;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.modal_login .head-ico {
  margin-right: 10px;
}

.modal_login span {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #3a3227;
}

.modal-header {
  padding: 0;
  min-height: auto !important;
}

.modal-body {
  background-color: #fff;
}

.modal-header .close {
  position: relative;
  z-index: 99999;
  opacity: 1;
  height: 20px;
  width: 20px;
}

.modal-open .modal {
  padding-right: 0 !important;
}

.modal-dialog {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}

.modal-content {
  border-radius: 5px;
  box-shadow: none;
  border: 0;
  overflow: hidden;
}

.categories_listTitle {
  color: #000;
  font-family: var(--second-font);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
}

button.btn.btn-buy.no-product {
  margin-right: 0;
  margin-bottom: 9px;
  width: 100%;
  color: #000;
  background-color: #fff;
  pointer-events: none;
  cursor: default;
}

.text-danger {
  font-size: 12px;
  line-height: 1.3;
}

/* Mini-product = START */
.product__item--buy-mob {
  display: none;
}

.products__grid--wrapper {
  align-items: stretch;
}

.product__item {
  position: relative;
  border-radius: 5px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: visible;
}

/* якщо НЕ has-sizes — можна ховати “все зайве” і нормально обрізати картинку */

.product__item--stickers {
  position: absolute;
  top: 25px;
  left: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
  z-index: 1;
}

.mobile .product__item--stickers {
  top: 10px;
  left: 7px;
}

.product__item--stickers .sticker {
  margin-bottom: 4px;
  padding: 4px 5px 3px;
  color: #fff;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: -0.2px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 3px;
}

.sticker_top {
  background-color: #000;
  text-transform: uppercase;
}

.sticker_sale {
  background-color: #ff3030;
  text-transform: lowercase;
}

.sticker_points {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  height: 20px;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #fff;
  background-color: #3a3227;
  width: max-content;
  border-radius: 3px;
  gap: 3px;
}

.sticker_points svg {
  width: 15px;
  height: 15px;
}

.sticker_new {
  background-color: #000;
  text-transform: uppercase;
}

.product__item--info {
  flex: 1 1 auto;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.mobile .product__item--info {
  padding: 10px 15px 15px;
}

.product__item--buttons {
  position: absolute;
  top: 25px;
  right: 16px;
  z-index: 1;
}

.mobile .product__item--buttons {
  top: 10px;
  right: 15px;
}

.product__item--buttons,
.product__item--buttons button {
  border-radius: 50%;
  overflow: hidden;
}

.product__item--buttons button {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
}

.second__image {
  display: none;
}
.change__image:hover .second__image,
.change__image:focus .second__image,
.change__image:active .second__image {
  display: block;
}
.change__image:hover .first__image,
.change__image:focus .first__image,
.change__image:active .first__image {
  display: none;
}

.product__item--buttons button.in__wishlist {
  background-color: #0f0f0f;
}

.urn {
  display: none;
}

.in__wishlist .badgewishlist {
  display: none;
}

.in__wishlist .urn {
  display: block;
  /* width: 18px;
  height: 18px; */
}

.product__item--name {
  margin-bottom: 11px;
}

.product__item--name a {
  min-height: 3.6em;
  color: #000;
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.32px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.product__item--name a:hover,
.product__item--name a:focus {
  color: #000;
}

.mobile .product__item--name a {
  font-size: 12px;
  letter-spacing: -0.24px;
}

.product__item--row {
  margin-bottom: 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: lowercase;
  gap: 15px;
}

/* Stock status = START */
.mobile .product__item--status {
  display: block;
}

.product__item--status.stock__green {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 12px;
  line-height: 108%;
  color: #3a3227;
}

.mobile .product__item--status.stock__green {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 10px;
  color: #3a3227;
}

.product__item--status.stock__red {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 12px;
  line-height: 108%;
  color: #bdbdbd;
}

.mobile .product__item--status.stock__red {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 10px;
  color: #bdbdbd;
}
/* Stock status = END */

.product__item--code {
  color: #97938c;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 12px;
  line-height: 108%;
  letter-spacing: -0.24px;
}

.mobile .product__item--code {
  font-size: 10px;
  letter-spacing: -0.2px;
}

.product__item--price-buy {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.product__item--price .price {
  margin-bottom: 0;
  color: #3a3227;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 20px;
  line-height: 108%;
  letter-spacing: -0.4px;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.mobile .product__item--price .price {
  font-size: 16px;
  letter-spacing: -0.32px;
}

/* ТІЛЬКИ desktop-hover */
/* @media (hover: hover) and (pointer: fine) { */
/* hover sizes (desktop only) */
.product-layout {
  position: relative;
  border-radius: 5px;
  transition: box-shadow 0.2s ease-in-out;
  z-index: 1;
}

.product-layout:hover {
  z-index: 2;
  box-shadow:
    0 318px 89px 0 rgba(0, 0, 0, 0),
    0 204px 81px 0 rgba(0, 0, 0, 0.01),
    0 115px 69px 0 rgba(0, 0, 0, 0.05),
    0 51px 51px 0 rgba(0, 0, 0, 0.09),
    0 13px 28px 0 rgba(0, 0, 0, 0.1);
}
.product-layout.active .product__item--options{
  pointer-events: auto;
}
.product-layout.active{
  z-index: 9;
}
.product__item.has-sizes {
  --sizes-shadow-h: 170px;
  overflow: visible;
}

/* Псевдоелемент буде малювати одну тінь на всю “висоту” */
.product__item.has-sizes::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.2s ease-in-out,
    bottom 0.2s ease-in-out;
}

/* ВАЖЛИВО: на has-sizes прибираємо box-shadow з самої картки */
.product__item.has-sizes:hover {
  box-shadow: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* На hover псевдоелемент розтягуємо вниз і даємо одну тінь */
.product__item.has-sizes:hover::after {
  opacity: 1;
  bottom: calc(-1 * var(--sizes-shadow-h));
  box-shadow:
    0 318px 89px 0 rgba(0, 0, 0, 0),
    0 204px 81px 0 rgba(0, 0, 0, 0.01),
    0 115px 69px 0 rgba(0, 0, 0, 0.05),
    0 51px 51px 0 rgba(0, 0, 0, 0.09),
    0 13px 28px 0 rgba(0, 0, 0, 0.1);
}

.product__item.has-sizes .product__item--sizes {
  position: absolute;
  left: 0;
  right: 0;
  padding: 30px;
  background-color: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: 3;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.product__item.has-sizes:hover .product__item--sizes {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Якщо показуємо розміри — ховаємо desktop-buy */
.product__item.has-sizes:hover .btn-cart-item,
.product__item.has-sizes:hover .btn-cart-item-no-quantity {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.product__item.has-sizes {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-cart-item-sizes {
  margin-top: 11px;
  padding: 15px;
  width: 100%;
  background-color: #3a3227;
  color: #fff;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -0.12px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  overflow: hidden;
}
/* } */

.product__item--options {
  transition: opacity 0.25s ease;
}

/*.product-layout:hover .product__item--buy {
  opacity: 0;
}*/

/*
.product-layout:hover .product__item:not(.has_op) .product__item--buy {
  opacity: 1;
}
*/

.hover-active {
  pointer-events: auto;
}

/*.product-layout.hover-active .product__item--options {
  opacity: 1;
  pointer-events: all;
}*/

a.product__item--opt.product-groups-product.is-active {
  background: #3a3227;
  color: #fff;
}

.product__item--info {
  padding: 15px 30px 20px;
  background-color: #fff;
}

.product__item--buy-desk,
.product__item--buy-mob {
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.2s ease-in-out;
}

.product__item--buy-desk {
  width: 50px;
  height: 50px;
  display: flex;
  background-color: #3a3227;
  transition: 0.3s;
}
/*
.product__item .btn-cart-item {
  transition: 0.3s;
}
*/
/*.product__item.has_opt:hover .btn-cart-item {
  opacity: 0;
  pointer-events: none;
}*/
/*.product__item.has_opt .btn-cart-item{
  opacity: 0;
  pointer-events: none;
}*/
.product__item--options.active{
  opacity: 1 !important;
  pointer-events: auto !important;
}
.mobile .product__item.has_opt:hover .btn-cart-item {
  opacity: 1;
  pointer-events: all;
}

.btn-cart-item-no-quantity .product__item--buy-desk,
.mobile .btn-cart-item-no-quantity .product__item--buy-desk,
.btn-cart-item-no-quantity .product__item--buy-mob,
.mobile .btn-cart-item-no-quantity .product__item--buy-mob,
.btn-cart-item-sizes-no-quantity {
  background-color: #dfdfdf;
  pointer-events: none;
  cursor: default;
}

.mobile .product__item--buy-desk {
  display: none;
}

.mobile .product__item--buy-mob {
  display: flex;
  width: 30px;
  height: 30px;
  background-color: #0f0f0f;
}

.btn-cart-item {
  border-radius: 50%;
  overflow: hidden;
}

/* Панель розмірів */
.product__item--sizes-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #121212;
}

.product__item--sizes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px 7px;
}

.product__item .product__item--options {
  width: 100%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 5px);
  left: 0;
  background-color: #fff;
  border-radius: 0px 0px 5px 5px;
  padding: 10px 30px 30px;
  transition: 0.3s;
  box-shadow:
    0 318px 89px 0 rgba(0, 0, 0, 0),
    0 204px 81px 0 rgba(0, 0, 0, 0.01),
    0 115px 69px 0 rgba(0, 0, 0, 0.05),
    0 51px 51px 0 rgba(0, 0, 0, 0.09),
    0 13px 28px 0 rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.product__item .product__item--options::before {
  position: absolute;
  content: '';
  top: -10px;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: #fff;
}

.mobile .product__item .product__item--options {
  padding: 10px 15px 15px;
}

.product__item .product__item--options .group_name {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  color: #141414;
  margin-bottom: 10px;
}

/*.product__item:hover .product__item--options,
.product__item.hover-active .product__item--options {
  opacity: 1;
  pointer-events: all;
}

.product__item:hover .product__item--options,
.has_opt_product__item_change_image.hover-active .product__item--options {
  opacity: 1;
  pointer-events: all;
}*/

.product__item .product__item--option-values {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 7px 5px;
}

.mobile .product__item .product__item--option-values {
  gap: 5px;
}

.product__item .product__item--option-values .product__item--opt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  min-width: 58.5px;
  background: #f4f4f4;
  border-radius: 3px;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 10px;
  line-height: 130%;
  color: #141414;
  padding-top: 3px;
  transition: 0.3s;
}

.mobile .product__item .product__item--option-values .product__item--opt {
  min-width: 49px;
}

.product__item .product__item--option-values .product__item--opt:hover {
  background: #3a3227;
  color: #fff;
}

.product__item--options .btn-buy-item {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3a3227;
  border-radius: 3px;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
  margin-top: 10px;
}

@media (max-width: 835px) {
  
  .product__item--stickers {
    top: 10px;
    left: 7px;
  }

  .product__item--info {
    padding: 10px 15px 15px;
  }

  .product__item--buttons {
    top: 10px;
    right: 15px;
  }

  .product__item--name a {
    font-size: 12px;
    letter-spacing: -0.24px;
  }
  /* Stock status = START */
  .product__item--status {
    display: block;
  }

  .product__item--status.stock__green {
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 10px;
    color: #3a3227;
  }


  .product__item--status.stock__red {
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 10px;
    color: #bdbdbd;
  }


  .product__item--code {
    font-size: 10px;
    letter-spacing: -0.2px;
  }

  .product__item--price .price {
    font-size: 16px;
    letter-spacing: -0.32px;
  }

  .product__item.has_opt:hover .btn-cart-item {
    opacity: 1;
    pointer-events: all;
  }

  .product__item--buy-desk {
    display: none;
  }

  .product__item--buy-mob {
    display: flex;
    width: 30px;
    height: 30px;
    background-color: #0f0f0f;
  }

  .product__item .product__item--options {
    padding: 10px 15px 15px;
  }

  .product__item .product__item--option-values {
    gap: 5px;
  }

  .product__item .product__item--option-values .product__item--opt {
    min-width: 49px;
  }

}

/* На мобільних/тач — панель НЕ показуємо взагалі */
@media (hover: none), (pointer: coarse), (max-width: 992px) {
  /*
  .product__item--sizes {
    display: none !important;
  }
  */

  /* щоб на тач не “залипало” і не ховало buy */
  /*
  .product__item.has-sizes:hover .product__item--buy-desk {
    display: flex;
  }
  */

  /*
  .product__item:hover {
    box-shadow: none;
  }
  */
}
/* Mini-product = END */
