/* default tags */


.tags {
  display: flex;
  flex-wrap: wrap;
}
.tags .tags__item {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  margin-right: 8px;
}
.tags .tags__link {
  transition: all 0.3s;
  text-decoration: none;
  color: #2b2a29;
  display: inline-flex;
  align-items: center;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  border-radius: 6px;
  background: #f0f0f0;
  position: relative;
}
.tags .tags__link:before {
  transition: all 0.3s;
  margin-right: 10px;
  border-radius: 100%;
  background: var(--main-accent-color);
  width: 6px;
  height: 6px;
  content: "";
  display: inline-block;
}
.tags .tags__link:hover,
.tags .tags__link.is-active {
  background: var(--main-accent-color);
  color: #fff;
}
.tags .tags__link:hover:before,
.tags .tags__link.is-active:before {
  background-color: #fff;
}

/* default qty */
/* .qty__counter {min-width:120px;max-width:160px;height:40px;display:flex;justify-content:center;border:1px solid #ccc;border-radius:6px;background:#F0F0F0;} */
.qty__counter {
  min-width: 120px;
  max-width: 140px;
  height: 40px;
  display: flex;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f0f0f0;
}
.qty__counter .qty__input {
  font-size: 18px;
  font-weight: 600;
  width: 50%;
  flex: 0 0 50%;
  text-align: center;
}
.qty__counter .qty__input[disabled] {
  background: none !important;
  color: var(--main-body-color) !important;
}
.qty__counter .qty__btn {
  transition: all 0.3s;
  cursor: pointer;
  flex: 0 0 25%;
  max-width: 25%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty__counter .qty__btn:hover {
  color: var(--main-accent-color);
}
.qty__counter .qty__btn:before {
  font-family: var(--font-icons);
  font-size: 20px;
}
.qty__counter .qty__btn--plus {
  padding-right: 5px;
}
.qty__counter .qty__btn--minus {
  padding-left: 5px;
}
.qty__counter .qty__btn--plus:before {
  content: "\E803";
}
.qty__counter .qty__btn--minus:before {
  content: "\E804";
}

@media (max-width: 991px) {
  .qty__counter {
    min-width: 110px;
    max-width: 110px;
  }
  .qty__counter .qty__btn {
    max-width: 35px;
    flex: 0 0 35px;
  }
  .qty__counter .qty__input {
    width: 40px;
    flex: 0 0 40px;
    font-size: 14px;
  }
}
/* faq page */
.faq__page .faq__header {
  margin-bottom: 50px;
}
.faq__page .faq__header .faq__headerDescription {
  line-height: 155%;
  margin-bottom: 20px;
}
.faq__page .faq__list .item__bubble {
  position: relative;
  line-height: 155%;
  margin-bottom: 26px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
}
.faq__page .faq__list .item__bubble:before {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 26px 0 0;
  border-color: #fff transparent transparent transparent;
}
.faq__page .faq__list .item__bubble .item__label {
  flex: 0 0 70px;
  color: var(--main-accent-color);
  margin-bottom: 6px;
}
.faq__page .faq__list .item__bubble--answer {
  background: var(--main-body-color);
  color: #fff;
}
.faq__page .faq__list .item__bubble--answer p:last-child {
  margin-bottom: 0;
}
.faq__page .faq__list .item__bubble--answer .item__label {
  color: #ccc;
}
.faq__page .faq__list .item__bubble--answer:before {
  left: auto;
  right: 30px;
  border-width: 0 26px 18px 0;
  border-color: transparent var(--main-body-color) transparent transparent;
}

@media (min-width: 992px) {
  .faq__page .faq__list .item__bubble {
    display: flex;
    margin-bottom: 36px;
  }
  .faq__page .faq__list .item__bubble .item__label {
    flex: 0 0 100px;
    margin-bottom: 0;
  }
  .faq__page .faq__list .item__bubble {
    padding: 30px;
    font-size: 16px;
  }
  .faq__page .faq__header .faq__headerDescription {
    margin-bottom: 0;
    padding-right: 30px;
    font-size: 16px;
  }
  .faq__page .faq__header {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1400px) {
  .faq__page .faq__list .item__bubble {
    font-size: 18px;
  }
  .faq__page .faq__header .faq__headerDescriptio {
    flex: 0 0 40%;
    font-size: 18px;
  }
}

/* batteryQty */
.batteryQty {
  position: relative;
  width: 28px;
  height: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 2px;
  display: flex;
  justify-content: space-between;
}
.batteryQty:after {
  display: block;
  height: 8px;
  width: 2px;
  background: #ccc;
  content: "";
  position: absolute;
  right: -3px;
  top: 3px;
}
.batteryQty > span {
  opacity: 0;
  width: 4px;
  height: 100%;
  background: #ccc;
}
.batteryQty--0 span:nth-child(-n + 1) {
  width: 3px;
  opacity: 1;
}
.batteryQty--1 span:nth-child(-n + 1) {
  background: #e00000;
  opacity: 1;
}
.batteryQty--2 span:nth-child(-n + 2) {
  background: #f97613;
  opacity: 1;
}
.batteryQty--3 span:nth-child(-n + 3) {
  background: #e5cf29;
  opacity: 1;
}
.batteryQty--4 span {
  background: #00e825;
  opacity: 1;
}
@media (min-width: 992px) {
  .batteryQty {
    width: 38px;
    height: 20px;
    border: 2px solid #ccc;
  }
  .batteryQty:after {
    right: -4px;
    top: 4px;
  }
  .batteryQty > span {
    width: 6px;
  }
}

/* catalog */
.side__block + .side__block {
  padding-top: 30px;
}
.side__block .side__title {
  margin-bottom: 20px;
}
.side__block .mainmenu__list {
  font-size: 16px;
}
.side__block .mainmenu__list .mainmenu__item:not(.mainmenu__item:first-child) {
  padding-top: 6px;
}
.side__block .mainmenu__list .mainmenu__itemLink {
  color: var(--main-boy-color);
  text-decoration: none;
}
.side__block .mainmenu__list .mainmenu__itemLink:hover,
.side__block .mainmenu__list .mainmenu__itemLink.is-selected {
  color: var(--main-accent-color);
}
.side__block .mainmenu__list .mainmenu__itemLink.is-selected {
  font-weight: 700;
}
@media (min-width: 992px) {
  /*.side__block--filter {position:sticky;top:0;position:-webkit-sticky;}*/
}

.video-thumb {
  width: 100%;
  border: 0px;
  position: relative;
}
.video-thumb .video-thumb__poster {
  cursor: pointer;
}
.video-thumb .video-thumb__poster:before {
  content: "\f16a";
  text-indent: 0px;
  color: #ff0000;
  display: block;
  z-index: 9999;
  font-size: 80px;
  line-height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s;
  margin: -40px 0 0 -40px;
  font-family: "icons";
}
.video-thumb .video-thumb__poster:hover:before {
  color: #fff;
}

/* product */
.productBox {
  display: block;
}
.productBox__preview {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1);
}
.product .product__qtys {
  justify-content: flex-start;
  display: flex;
}
.product .product__qtys--variants {
  display: none;
}
.product .product__qtys--variants .qty__counter {
  justify-content: center;
}
.product .product__qtys .qty__wrap {
  margin-right: 10px;
  min-width: 160px;
}
.product .product__qtys .qty__label {
  font-size: 14px;
  margin-bottom: 8px;
}
.product .product__qtys .qty__error {
  padding-top: 4px;
  display: none;
  color: #f00;
}
.product .product__qtys.is-error .js-qty-qtyWrap .qty__error {
  display: block;
}
.product .product__packonlyMsg {
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 8px;
  color: var(--main-accent-color);
}
.productBox--large {
  display: block;
  padding-top: 25px;
}
.productBox--large .product {
  display: flex;
}
.productBox--large .productBox__preview .product__qtys {
  border-top: 1px solid #ccc;
  padding: 20px 30px;
}
.productBox--large .col--left {
  padding: 15px;
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
}
.productBox--large .col--right,
.productBox--large .col--right-bottom {
  flex: 0 0 40%;
  border-left: 1px solid #ccc;
}
.productBox--large .col--right .col__content,
.productBox--large .col--right-bottom .col__content {
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* .productBox--large .product__gallery {flex:0 0 30%;min-width:30%;text-align:center;margin-right:20px;} */
.productBox--large .product__gallery {
  flex: 0 0 40%;
  min-width: 40%;
  text-align: center;
  margin-right: 15px;
  max-height: 100%;
  max-width: 382.5px;
}
.productBox--large .product__details {
  flex: 1;
}
.productBox--large .product__title {
  line-height: 90%;
  margin-bottom: 10px;
}
.productBox--large .product__title > *:not(span) {
  line-height: 94%;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 0;
}
.productBox--large .product__title .product__titleUrl {
  transition:all 0.3s;
  color: var(--main-body-color);
  text-decoration: none;
}
.productBox--large .product__title .product__titleUrl:hover {
  color: var(--main-accent-color);
}
.productBox--large .product__avlCounter {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 500;
  color: #0077ff;
}
.productBox--large .product__specs {
  margin-bottom: 20px;
}
.productBox--large .product__specs .item {
  padding-top: 0px;
}
.productBox--large .product__specs .item__value {
  font-weight: 600;
}
.productBox--large .product__specsLink {
  margin: -10px 0 20px 0;
}

.productBox--large .product__variantButtons {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.productBox--large .product__variantButtons .item:not(.item:last-child) {
  margin-bottom: 3px;
  padding-right: 10px;
}
.productBox--large .product__variantButtons .btn {
  width: 100%;
}
.productBox--large .product__variantButtons .btn:before {
  transition: all 0.3s;
}
/* .productBox--large .product__variantButtons .btn.is-selected {cursor:default;background:#F0F0F0;border-color:#ccc;color:var(--main-body-color)} */
.productBox--large .product__variantButtons .btn.is-selected:before {
  transform: rotate(180deg);
}
.productBox--large .product__variantButtons--single {
  display: block;
}
.productBox--large .product__variantButtons--single .btn {
  display: inline-flex;
  width: 50%;
}
.productBox--large .product__variantButtons--added {
  display: none;
}
.productBox--large .product__prices .price__col {
  padding: 8px 15px;
}
.productBox--large .product__prices .price__regular {
  padding: 20px 0 15px;
}
.productBox--large .product__prices .price__regular .price {
  font-size: 18px;
}
.productBox--large .product__prices .price__regular .price__value {
  font-weight: 600;
}
.productBox--large
  .product__prices
  .price__regular
  .price__col:not(.price__col--onlypack) {
  display: flex;
  justify-content: space-between;
}
.productBox--large
  .product__prices
  .price__regular
  .price__col--onlypack
  .price--piece {
  padding-top: 8px;
  font-size: 14px;
}
.productBox--large .product__prices .price__regular .price__moreLink {
  text-decoration: none;
  border-bottom: 1px dashed var(--main-accent-color);
}
.productBox--large .product__prices .price__regular .price__moreLink:hover {
  border-bottom-style: solid;
}
.productBox--large .product__prices .price__next {
  padding: 15px 0;
  border-top: 1px dashed #ccc;
}
.productBox--large .product__prices .price {
  display: flex;
}
.productBox--large .product__prices .price__value {
  margin-left: 6px;
}
.productBox--large .product__prices .price__valueCount {
  font-weight: 600;
}
.productBox--large .product__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--main-body-color);
  color: #fff;
  padding: 20px 15px;
}
.productBox--large .product__summary .summary__price {
  padding-right: 25px;
}
.productBox--large .product__summary .summary__price .label {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 5px;
}
.productBox--large .product__summary .summary__price .price {
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}
.productBox--large .product__summary .summary__buttons .btn3 {
  display: none;
}

/* CUSTOM: Белый цвет текста и стрелки для кнопки "Выбрать вкус/цвет" внутри product__summary */
.productBox--large .product__summary .product__variantButtons .btn,
.productBox--large .product__summary .product__variantButtons .btn:before {
  color: #fff;
}
.productBox--large .product__summary .product__variantButtons .btn.is-selected,
.productBox--large
  .product__summary
  .product__variantButtons
  .btn.is-selected:before {
  color: var(--main-accent-color);
}
.productBox--large .product__summary .product__variantButtons {
  width: 50%;
}
.productBox--large .product__summary .product__variantButtons > * {
  width: 100%;
}
.productBox--large .product__summary .product__variantButtons > * > * {
  height: 45px !important;
  padding: 10px 20px;
}
.productBox--large
  .product__summary
  .product__variantButtons
  .item:first-child {
  margin: initial;
}
/* .productBox--large .product__summary .product__variantButtons {
  height: 45px!important;
  padding: 10px 20px;
} */

.productBox--product .product__xls {
  display: flex;
  align-items: center;
  padding: 15px 15px;
  border-bottom: 1px dashed #ccc;
}
/* .productBox--product .product__xls .xls__icon img {width:48px;} */
.productBox--product .product__xls .xls__icon img {
  width: 25px;
  margin-right: 5px;
}
.productBox--product.is-custom .col--right-bottom .product__xls--mini,
.productBox--product .product__col--xls {
  display: none;
}

/* .productBox--product.is-custom .product__col--xls {display:block;} */

@media (min-width: 992px) {
  /* .productBox--product.is-custom .product__col--xls {display:flex;} */
  /* .productBox--product.is-custom .product__xls--large {border:0; display:flex;flex-wrap:wrap;flex-direction:column;justify-content:center;}
  .productBox--product.is-custom .product__xls--large .xls__icon img {width:80%;} 
*/

  /* .productBox--product.is-custom .product__col--xls {display:flex;flex:0 0 30%;justify-content:center;align-items:center;padding:34px;} */
  /* .productBox--product.is-custom  .col--left {flex:0 0 70%;} */
}

.productBox--mini .product {
  padding: 10px 20px;
  display: flex;
  align-items: center;
}
.productBox--mini .product__specs,
.productBox--mini .product__avlCounter,
.productBox--mini .product__variantButtons--added,
.productBox--mini .product__summary .summary__buttons .btn3 {
  display: none;
}
.productBox--mini .product__summary .label,
.productBox--mini .price__next,
.productBox--mini .price__regular .price__label,
.productBox--mini .price--piece {
  display: none;
}
.productBox--mini .product__qtys .qty__label {
  font-size: 12px;
}
.productBox--mini .product__qtys {
  min-width: 240px;
}
.productBox--mini .summary__buttons .btn {
  padding: 0px 10px;
  border-radius: 5px;
  font-size: 11px;
  height: 36px;
}
.productBox--mini .summary__buttons .btn .btn__text {
  margin-left: 5px;
}
.productBox--mini .summary__buttons .btn:before {
  margin: 0;
}
.productBox--mini .product__col {
}
.productBox--mini .col--left {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
}
.productBox--mini .col--right {
  flex: 1;
}
.productBox--mini .product__gallery {
  width: 60px;
  min-width: 60px;
  flex: 0 0 60px;
}
.productBox--mini .product__galleryLink {
  height: 60px;
  display: block;
  text-align: center;
  line-height: 60px;
  font-size: 0;
}
.productBox--mini .product__galleryLink img {
  max-height: 100%;
  max-width: 100%;
}
.productBox--mini .product__details {
  padding-left: 30px;
  flex: 1;
}
.productBox--mini .product__details .h1 {
  font-size: 16px;
  margin-bottom: 10px;
}
.productBox--mini .product__details .product__titleUrl {
  color: var(--main-body-color);
}
.productBox--mini .col--right .col__content {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  justify-content: space-between;
}
.productBox--mini .product__variantButtons--choose {
  display: flex;
}
.productBox--mini .product__variantButtons--choose .item + .item {
  padding-left: 8px;
}
.productBox--mini .product__variantButtons--choose .btn {
  height: 24px;
  font-size: 13px;
  padding: 0 10px;
}
.productBox--mini .alert-warning {
  padding: 8px 10px;
  font-size: 12px;
}
.productBox--mini .price {
  font-size: 15px;
  font-weight: 600;
}
.productBox--mini .qty__counter {
  min-width: auto;
  max-width: 110px;
  height: 30px;
}
.productBox--mini .product__qtys .qty__counter {
  margin: 0 auto;
}

.productBox--mini .product__prices,
.productBox--mini .summary__price {
  text-align: center;
  min-width: 100px;
  min-width: 100px;
  padding: 0 6px;
}
.productBox--mini .summary__price {
  min-width: 120px;
}
.productBox--mini .product__summary {
  display: flex;
  align-items: center;
}
.productBox--mini .product__qtys .qty__wrap {
  min-width: auto;
  flex: 0 0 50% !important;
  padding: 0 6px;
  margin-right: 0;
}
.productBox--mini .qty__counter .qty__input {
  font-size: 14px;
}
.productBox--mini.is-custom .productBox__variants .variants__list .item .col {
  padding: 8px;
}

.catalog__list .catalog__listItem .productBox__preview {
  width: 100%;
  position: relative;
}

.product__bottom .section__productImages .swiper-slide {
  text-align: center;
}
.product__bottom .product__description .video {
  max-width: 60%;
  margin-bottom: 35px;
}
.product__bottom .product__videos {
  display: flex;
  margin: 0 -10px;
  flex-wrap: wrap;
}
.product__bottom .product__videos .item {
  padding: 0 10px;
  flex: 0 0 33%;
}
.product__bottom .tabs__group {
  padding-top: 20px;
}
.product__bottom .tabs__group .tabs__links {
  margin-bottom: 25px;
}

.product__bottom .wBox {
  padding: 35px 35px 15px 35px;
  background: #fff;
  border-radius: 10px;
}

.product__bottom .specs__list .group {
  margin-bottom: 20px;
}
.product__bottom .specs__list .group__name {
  font-weight: 700;
  margin-bottom: 10px;
}
.product__bottom .specs__list .group__items {
  font-size: 16px;
  color: #555;
}
.product__bottom .specs__list .group__items .item {
  margin-bottom: 10px;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.product__bottom .specs__list .group__items .item:before {
  width: 100%;
  z-index: 1;
  height: 1px;
  border-bottom: 1px dashed #c8c8c8;
  content: "";
  position: absolute;
  left: 0px;
  top: 12px;
}
.product__bottom .specs__list .group__items .item > * {
  position: relative;
  z-index: 2;
  background: #fff;
}
.product__bottom .specs__list .group__items .item .item__name {
  max-width: 55%;
  padding-right: 6px;
}
.product__bottom .specs__list .group__items .item .item__value {
  max-width: 45%;
  padding-left: 6px;
}
@media (min-width: 1300px) {
  .product__bottom .specs__list .group {
    margin-bottom: 35px;
  }
  .product__bottom .specs__list {
    columns: 2;
    column-gap: 4%;
  }
  .product__bottom .specs__list .group__items .item {
    margin-bottom: 15px;
  }
  .product__bottom .specs__list .group__name {
    font-size: 18px;
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .productBox--large {
    padding-top: 10px;
  }
}
@media (max-width: 575px) {
  .product__bottom .specs__list .group__name {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .product__bottom .specs__list .group__items .item {
    font-size: 12px;
  }
}

/* .productBox.is-custom .productBox__preview .qty__counter .qty__btn {display:none;} */

/* 
  .tpl__product .productBox--large.is-custom  .col--right {color:#ccc;border-left:0;font-size:14px;background: var(--main-body-color);z-index:999;position:fixed;left:0;right:0;bottom:0;}
  .tpl__product .productBox--large.is-custom  .col--right .col__content {display:flex;flex-direction:row;align-items:center;justify-content:space-around;} 
  */
.tpl__product .productBox--large .col--right-bottom {
  display: none;
}
.tpl__product .productBox--large.is-custom .col--right-bottom {
  display: block;
  color: #ccc;
  border-left: 0;
  font-size: 14px;
  background: var(--main-body-color);
  z-index: 999;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
}
.tpl__product .productBox--large.is-custom .col--right-bottom .col__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.tpl__product
  .productBox--large.is-custom
  .col--right-bottom
  .product__prices
  .price__regular,
.tpl__product
  .productBox--large.is-custom
  .col--right-bottom
  .product__prices
  .price__next {
  padding: 0;
  border: 0;
}
/* .tpl__product .productBox--large.is-custom  .product__prices .price__more {display:none;} */
.tpl__product
  .productBox--large.is-custom
  .col--right-bottom
  .product__prices
  .price__next {
  padding: 0;
}
.tpl__product .productBox.is-custom .product .product__qtys {
  padding: 0;
  border: 0;
}
.tpl__product
  .productBox--large.is-custom
  .col--right-bottom
  .product__prices
  .price__col {
  padding-top: 2px;
  padding-bottom: 2px;
}

@media (min-width: 1200px) {
  .product__bottom .product__description {
    display: flex;
    flex-wrap: wrap;
  }
  .product__bottom .product__description .video {
    flex: 0 0 33%;
    margin-right: 30px;
    min-width: 33%;
  }
  .product__bottom .product__description .editor {
    flex: 1;
  }
  /*
  .tpl__product .productBox--large.is-custom  .col--right {color:#ccc;border-left:0;font-size:14px;background: var(--main-body-color);z-index:999;position:fixed;left:0;right:0;bottom:0;}
  .tpl__product .productBox--large.is-custom  .col--right .col__content {display:flex;flex-direction:row;align-items:center;justify-content:space-around;}
  .tpl__product .productBox--large.is-custom  .product__prices .price__regular, .tpl__product .productBox--large.is-custom  .product__prices .price__next {padding:0;border:0;}
  .tpl__product .productBox--large.is-custom  .product__prices .price__more {display:none;}
  .tpl__product .productBox--large.is-custom  .product__prices .price__next {padding:0;}
  .tpl__product .productBox.is-custom .product .product__qtys {padding:0;border:0;}
  .tpl__product .productBox--large.is-custom  .product__prices .price__col {padding-top:2px;padding-bottom:2px;}
  */
}

@media (max-width: 1199px) {
  .product__bottom .section__productImages {
    position: relative;
  }
  .product__bottom .section__productImages .swiper__buttons {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
  }
  /*
  .tpl__product .productBox--large.is-custom  .product__summary .summary__price {display:flex;align-items:center;}
  .tpl__product .productBox--large.is-custom  .product__summary .summary__price .label {margin-bottom:0}
  .tpl__product .productBox--large.is-custom  .product__summary .summary__price .price {padding:0 15px;}
  .tpl__product .productBox--large.is-custom  .product__summary {position:fixed;left:0;right:0;bottom:0;z-index:999;}
  */
}
/*
 @media (max-width:575px){
   .product__bottom .product__description .video {max-width:100%;}
   .tpl__product .productBox--large.is-custom  .product__summary .summary__price {display:flex;margin-bottom:0}
   .tpl__product .productBox--large.is-custom  .product__summary {padding-top:15px;padding-bottom:15px;display:flex;}
   
}
@media (max-width:380px){
  .tpl__product .productBox--large.is-custom  .product__summary .summary__price .price {padding-left:0}
  .tpl__product .productBox--large.is-custom  .product__summary .summary__price .label {display:none;}
}
*/
@media (min-width: 1025px) {
  /* .tpl__product .productBox--large.is-custom .product__prices {order:3;flex:0 0 100%;padding-bottom:10px;display: flex;justify-content:center;} */
}
@media (min-width: 576px) and (max-width: 1199px) {
  .tpl__product .productBox--large.is-custom .product__prices .price__col {
    padding: 0 10px;
  }
}
@media (max-width: 1199px) {
  /* .tpl__product .productBox--large.is-custom .col--right .col__content {flex-wrap:wrap;} */
  .tpl__product .productBox--large.is-custom .col--right-bottom .col__content {
    flex-wrap: wrap;
  }
  /* .tpl__product .productBox--large.is-custom .product__prices .price__next {display: flex;} */
  /* .tpl__product .productBox--large.is-custom .product__prices .price__regular .price {font-size:14px;} */
  .tpl__product .productBox--large.is-custom .product .product__qtys {
    order: 1;
  }
  .tpl__product .productBox--large.is-custom .product__summary {
    order: 2;
  }
}

@media (max-width: 767px) {
  .tpl__product .productBox--large.is-custom .product__prices .price__next {
    display: block;
  }
}

@media (max-width: 575px) {
  .tpl__product .productBox--large.is-custom .product .product__qtys {
    margin: 0 -10px;
  }
  .tpl__product
    .productBox--large.is-custom
    .product
    .product__qtys
    .qty__wrap {
    margin: 0 10px;
  }
  .tpl__product .productBox--large.is-custom .product .product__qtys {
    padding: 10px 15px 5px 15px;
  }
  /* .tpl__product .productBox--large.is-custom .product__summary {display:flex;padding:10px 15px 10px 15px;} */
  .tpl__product .productBox--large.is-custom .product__summary .btn {
    height: 30px;
  }
  .tpl__product
    .productBox--large.is-custom
    .product
    .product__qtys
    .qty__counter {
    height: 22px;
  }
  /* .tpl__product .productBox--large.is-custom .product__prices {display:none;} */
  /* .tpl__product .productBox--large.is-custom .col--right .col__content {display:block;} */
  .tpl__product .productBox--large.is-custom .col--right-bottom .col__content {
    display: block;
  }
  .tpl__product
    .productBox--large.is-custom
    .product__summary
    .summary__price
    .label {
    margin-bottom: 0;
  }
  .tpl__product
    .productBox--large.is-custom
    .product__summary
    .summary__price
    .price {
    font-size: 16px;
    margin-left: 10px;
  }
  .tpl__product .productBox--large.is-custom .product__summary .summary__price {
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 360px) {
  /* .tpl__product .productBox--large.is-custom .product__summary .summary__price .label {display:none;}  */
}

/* Оставляем кнопки +/- видимыми для товаров в корзине */
.productBox.is-added .qty__counter .qty__btn {
  display: flex;
}

/* Оставляем основную кнопку "В корзину" видимой, меняем только текст через JS */
.productBox.is-added .product__summary .summary__buttons .btn {
  display: flex;
}
.productBox.is-added .product__summary .summary__buttons .btn3 {
  display: none;
}

/* НЕ скрываем опции вариантов после добавления в корзину */
.productBox.is-added .product__variantButtons {
  display: flex;
}
.productBox.is-added .variants__list .item {
  display: flex;
}

/* Скрываем желтое предупреждение */
.productBox.is-added .product__variantButtons--added {
  display: none;
}

/* Подсвечиваем выбранные варианты */
.productBox.is-added .variants__list .item.is-selected {
  background: #f0f9ff;
  border-left: 3px solid #0ea5e9;
}

/* Индикация товаров в корзине */
.variants__list .item.is-in-cart {
  background: #f0fdf4;
  border-left: 3px solid #10b981;
  position: relative;
}

/* .variants__list .item.is-in-cart .item__variant::before {
  content: '🛒';
  margin-right: 8px;
  font-size: 14px;
} */

/* Информационный блок вместо предупреждения */
/* 
.product__cartInfo {
  background: #dbeafe;
  border-left: 4px solid #3b82f6;
  padding: 12px 16px;
  margin: 15px 0;
  border-radius: 4px;
  display: none;
}

.productBox.is-added .product__cartInfo {
  display: block;
}

.product__cartInfo-text {
  color: #1e40af;
  font-size: 14px;
  line-height: 1.5;
} 
*/

.productBox--large .product__prices .price__regular {
  display: flex;
  flex-direction: column;
}
.productBox--large .product__prices .price__regular .price__col {
  /* flex: 1 0 50%;
  align-items:center; */
}

@media (min-width: 1200px) {
  .productBox--large {
    display: block;
  }
  .productBox--large .product__specs .item {
    font-size: 15px;
  }
  .product .product__qtys {
    justify-content: space-between;
  }
  .product .product__qtys .qty__wrap {
    flex: 0 0 48%;
  }
}
@media (min-width: 1400px) {
  /* .productBox--large .product__gallery {flex:0 0 36%;min-width:36%;margin-right:30px;} */
}
@media (max-width: 991px) {
  .product .product__qtys {
    justify-content: space-around;
  }
  .product .product__qtys .qty__label {
    text-align: center;
  }
  .product .product__qtys .qty__wrap {
    min-width: auto;
    margin: 0;
    max-width: 80%;
    flex: 1;
    margin: 0 10px;
  }
  .product .product__qtys .qty__counter {
    max-width: none;
    justify-content: space-around;
  }
  .productBox--large .productBox__preview .product {
    display: block;
  }
}
@media (max-width: 767px) {
  .productBox--large .col--left {
    display: block;
  }
  .productBox--large .product__gallery {
    margin-bottom: 20px;
    margin-right: 0;
  }
  .productBox--large .product__details {
    text-align: center;
  }
  .productBox--large .product__prices .price__regular .price__col,
  .productBox.is-custom .product__qtys--variants {
    justify-content: space-around;
  }
  .productBox--large .product__prices .price {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .productBox--large .col--left {
    padding: 25px 15px 10px 15px;
  }
  .productBox--large .product__prices .price__col {
    padding-left: 15px;
    padding-right: 15px;
  }
  .productBox--large
    .product__variantButtons:not(.product__variantButtons--added),
  .productBox--large .product__prices .price__regular .price__col {
    display: block;
  }
  .productBox--large .product__prices .price__more {
    text-align: center;
    padding-top: 15px;
  }
  .productBox--large .product__variantButtons .item:first-child {
    margin-bottom: 10px;
  }
  .productBox--large .product__variantButtons .item:not(.item:last-child) {
    padding-right: 0;
  }
  /* Оставляем варианты видимыми на мобильных */
  .productBox.is-added
    .product__variantButtons:not(.product__variantButtons--added) {
    display: flex;
  }
  .productBox--large .product__summary {
    /* display: block; */
    text-align: center;
  }
  .productBox--large .product__summary .summary__price {
    margin-bottom: 15px;
    padding-right: 0;
  }
  .productBox--large .product__summary .btn {
    width: 100%;
  }
}
@media (max-width: 360px) {
  .productBox--large .product__prices .price {
    display: block;
    text-align: center;
  }
}

@media (max-width: 1399px) {
  .productBox--mini .col--left {
    flex: 0 0 37%;
  }
  /* .productBox--mini .price__regular {display:none;} */
}
@media (max-width: 1199px) {
  .productBox--mini .price__regular {
    display: block;
  }
  .productBox--mini .product {
    display: block;
  }
  .productBox--mini .col--right {
    padding-left: 60px;
    padding-top: 10px;
  }
}

@media (max-width: 767px) {
  .productBox--mini .col--left {
    padding-bottom: 12px;
  }
  .productBox--mini .col--right {
    border-top: 1px solid #e3e3e3;
  }
  .productBox--mini .col--right .col__content {
    justify-content: unset;
  }
  .product .product__qtys .qty__wrap {
    margin: 0 5px;
  }
  .productBox--mini .col--right {
    padding-left: 0;
  }
  .productBox--mini .product {
    padding-left: 10px;
    padding-right: 10px;
  }
  .productBox--mini .product__prices,
  .productBox--mini .summary__price,
  .productBox--mini .product__qtys {
    min-width: auto;
  }
  .productBox--mini .price__regular {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .productBox--mini .price__regular:before {
    content: "Цена за штуку: ";
    margin-right: 5px;
  }
  .productBox--mini .product__qtys .qty__wrap {
    margin: 0;
  }
  .product .product__qtys .qty__wrap {
    width: 100%;
  }
  .productBox--mini .qty__counter {
    min-width: 110px;
  }
}

@media (max-width: 460px) {
  /* .productBox--mini .product__summary { padding-top:14px;} */
  .productBox--mini .product__summary > * {
    flex: 0 0 50%;
    text-align: center;
  }
  .productBox--mini .col--right .col__content {
    display: block;
  }
}

/* variants list */
.productBox .productBox__variants {
  transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0s 0.4s;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}
.variants__list .item {
  justify-content: space-between;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 10px; /*border-bottom:1px solid #ccc;*/
}
/* CUSTOM: Чередование цветов white/gray для десктопа - первый белый, второй серый */
.variants__list--items .item:nth-child(odd) {
  background: #fff;
}
.variants__list--items .item:nth-child(even) {
  background: #f0f0f0;
}
.variants__list .item .col {
  transition: all 0.3s;
  padding: 10px 20px;
}
.variants__list--header {
  font-size: 14px;
  font-weight: 600;
}
.variants__list--header .item__qty {
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.variants__list .item__variant {
  display: flex;
  align-items: center;
  flex: 0 0 24%;
}
.variants__list .item__inventory {
  flex: 0 0 5%;
}
.variants__list .item__img {
  text-align: center;
  flex: 0 0 50px;
  margin-right: 20px;
}
.variants__list .item__img a {
  background: none;
}
.variants__list .item__title {
  font-size: 16px;
  font-weight: 600;
}
.variants__list .item__link {
  transition: all 0.2s;
  color: var(--main-body-color);
  text-decoration: none;
  background: #f0f0f0;
}
.variants__list .item__link:hover {
  color: var(--main-accent-color);
  text-decoration: underline;
}
.variants__list .item__imgSrc {
  mix-blend-mode: multiply;
}
.variants__list .item__qty .product__qtys {
  display: flex;
  justify-content: space-around;
}
.variants__list .item__qty .qty__wrap {
  max-width: 160px;
  text-align: center;
  flex: 0 0 50%;
}
.variants__list .item__qty .qty__wrap .qty__label {
  display: none;
}
.variants__list .item__qty .qty__wrap .qty__error {
  padding-top: 4px;
  font-size: 12px;
  color: #f00;
  display: none;
}
.variants__list .item__qty .qty__label {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}
.variants__list .item__summary {
  flex: 0 0 10%;
}
.variants__list .item__summary .price {
  font-size: 18px;
  font-weight: 600;
}
/* CUSTOM: Колонка с кнопками заказа */
.variants__list .item__actions {
  flex: 0 0 30%;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}
.is-custom .variants__list .item__actions .btn {
  width: 48%;
  height: 40px !important;
  font-size: 12px;
  padding: 5px 8px;
}
.variants__list .item__actions .btn img {
  height: 11px;
  margin-right: 5px;
}
.variants__list .item__actions .btn__text {
  font-size: 11px;
}
/* CUSTOM: Стили для неактивной кнопки "В корзину" - кликабельна, показывает уведомление */
.productBox__preview .btn--disabled,
.variants__list .item__actions .btn--disabled,
.variants__list .item__actions .btn.btn--order-now:disabled {
  opacity: 0.5;
  cursor: pointer;
  background-color: #e600ff !important;
  color: white !important;
}
.variants__list .product__qtys.is-error .qty__error {
  display: block;
}

.variants__list .item-na {
  opacity: 0.6;
  position: relative;
}
.variants__list .item-na:before {
  content: "";
  opacity: 0.1;
  cursor: not-allowed;
  background: #f00;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.productBox.is-custom .productBox__variants {
  transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0s;
  max-height: max-content;
  overflow: visible;
  opacity: 1;
  visibility: visible;
  margin-bottom: 20px;
}
.productBox.is-custom .variants__list .item .col {
  padding-top: 20px;
  padding-bottom: 20px;
}
/* .productBox.is-custom .product__qtys--single {display:none;} */
.productBox.is-custom .product__qtys--variants {
  display: flex;
}

/* CUSTOM: Анимация стрелки на кнопке выбора вариантов */
.btn--ico-angle-down:before {
  transition: transform 0.3s ease;
}
.btn--ico-angle-down.is-active:before {
  transform: rotate(180deg);
  background-color: #e600ff;
  -webkit-mask-image: url("list_arrow.svg");
  mask-image: url("list_arrow.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-image: none;
}
.btn--ico-angle-down:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 12px;
  background-image: url("list_arrow.svg");
  background-size: contain; /* или cover */
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 6px;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .productBox--collection .variants__list .item__qty .qty__wrap {
    max-width: 110px;
  }
  .productBox--collection .variants__list .item__img {
    display: none;
  }
}
.productBox--collection.productBox--large .product__variantButtons .btn {
  padding: 0 8px;
}

.productBox--collection .variants__list .item__title {
  font-size: 16px;
}

@media (max-width: 1199px) {
  .productBox--collection.is-custom .variants__list .item .col {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .productBox--collection .variants__list .item .col {
    padding: 8px;
  }
  .productBox .variants__list .qty__counter {
    height: 30px;
  }
  .productBox .variants__list .qty__counter .qty__input {
    font-size: 16px;
  }
  .productBox .variants__list .item__title,
  .productBox .variants__list .item__summary .price {
    font-size: 14px;
  }
  .productBox .variants__list--header {
    font-weight: 400;
  }
  .productBox .variants__list--header .col {
    align-items: center;
  }
}

@media (max-width: 991px) {
  .variants__list--header {
    font-size: 13px;
  }
  .variants__list .item .col {
    padding: 5px 10px;
  }
  .variants__list .item__qty .qty__counter {
    margin: 0 auto;
  }
  .variants__list .item__qty .qty__wrap {
    flex: auto;
  }
  .variants__list .item__variant {
    flex: 0 0 28%;
  }
  .variants__list .item__inventory {
    text-align: center;
  }
  .variants__list .item__inventory .batteryQty {
    margin: 0 auto;
  }
  .variants__list .item__summary {
    flex: 0 0 15%;
    text-align: right;
  }
  .variants__list .item__summary .price,
  .variants__list .item__title {
    font-size: 15px;
  }
  .productBox.is-custom .variants__list .item .col {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .variants__list--header {
    display: none;
  }
  .variants__list .item {
    border: 0;
    border-radius: 6px;
    padding: 10px;
  }
  .variants__list .item:nth-child(odd) {
    background: #fff;
  }
  .variants__list .item__variant {
    order: 1;
    flex: 1;
  }
  .variants__list .item__inventory {
    order: 2;
    flex: 0 0 7%;
  }
  .variants__list .item__summary {
    order: 4;
    flex: 0 0 25%;
  }
  .variants__list .item__summary .price {
    padding-top: 18px;
  }
  .variants__list .item__qty .qty__wrap .qty__label {
    display: block;
    margin-bottom: 5px;
  }
  .variants__list .item__qty {
    order: 3;
    flex: 0 0 100%;
    margin-top: 10px;
  }
  .variants__list .item__qty .qty__wrap {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .variants__list .item__qty .qty__counter {
    max-width: 100%;
    justify-content: center;
    margin: 0 auto;
  }
  /* CUSTOM: Кнопки на мобильной версии */
  .variants__list .item__actions {
    order: 5;
    flex: 0 0 100%;
    margin-top: 10px;
    gap: 8px;
    justify-content: center;
  }
  .variants__list .item__actions .btn {
    width: 48%;
    height: 45px;
    font-size: 12px;
    padding: 10px 15px;
    border-radius: 8px;
  }
  .variants__list .item__actions .btn img {
    max-height: 16px;
  }
}
@media (max-width: 575px) {
  .variants__list .item__qty,
  .variants__list .item__summary {
    flex: 0 0 100%;
  }
  .variants__list .item__summary {
    text-align: center;
    padding-top: 10px;
  }
  .variants__list .item__summary .price {
    padding-top: 0;
  }
  /* CUSTOM: Центрирование элементов на маленьких экранах */
  .variants__list .item__qty {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .variants__list .item__qty .qty__wrap {
    margin: 0 5px;
  }
}

.filter .filter__group + .filter__group {
  padding-top: 30px;
}
.filter .filter__group {
  display: flex;
  flex-wrap: wrap;
}
.filter .filter__group .filter__item .filter__input {
  display: none;
}
.filter .filter__group .filter__item {
  display: inline-flex;
  margin: 0 2px 5px 0;
}
.filter .filter__group .filter__label {
  transition: all 0.3s;
  font-size: 13px;
  border-radius: 6px;
  cursor: pointer;
  padding: 5px 7px;
  border: 1px solid #ccc;
}
.filter .filter__group .filter__label:hover,
.filter .filter__group .filter__label.is-selected {
  background: #fff;
  color: var(--main-accent-color);
  border-color: var(--main-accent-color);
}
.filter .filter__group .filter__title {
  margin-bottom: 20px;
  line-height: normal;
  font-size: 16px;
  font-weight: 600;
}

.filter .filter__group-range {
  display: block !important;
  max-width: 96%;
}

.range__wrap .range__slider {
  padding: 0 8px;
}
.range__wrap .range__inputs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.range__wrap .range__inputs .item {
  background: #e0e0e0;
  padding: 4px 8px;
  border-radius: 3px;
}

.sub__collections {
  margin: 0 10px;
}
.sub__collections .col-12 {
  background: #fff;
  align-content: center;
  border: 1px solid #f7f7f7;
  background: #fff;
  transition: box-shadow ease 0.2s, border ease-out 0.2s, transform ease 0.2s;
}
.sub__collections .col-12 a {
  text-decoration: none;
}
.sub__collections .item {
  display: flex;
  align-items: center;
  padding: 10px 6px;
  height: 100%;
}
.sub__collections .item__img {
  flex: 0 0 40px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub__collections .item__details {
  padding-left: 10px;
  flex: 1;
  width: 60%;
}
.sub__collections .item__link {
  transition: all 0.3s;
  text-decoration: none;
  color: #000;
}
.sub__collections .item__link:hover {
  color: var(--main-accent-color);
}
/* .sub__collections .item__title {margin-bottom:2px;font-size: 12px;} */
.sub__collections .item__title {
  /* margin-bottom:2px; */
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  line-height: normal;
  margin-bottom: initial;
}
.sub__collections .item__title .item__link {
  font-weight: 500;
  display: inline-block;
  line-height: 1;
}
.sub__collections .item__count {
  color: #999;
  font-size: 12px;
}
.sub__collections .col-12:hover {
  box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 10%);
  transform: translateY(-1px);
}
.section__collection-menu {
  display: flex;
  justify-content: space-between;
}
.section__collection-menu .view_by {
  display: none;
}
@media (max-width: 991px) {
  .js-show-filter .advPopup--filter {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .js-show-filter .layer {
    opacity: 0.6;
    visibility: visible;
  }
  .section__mobile-filter {
    display: block;
  }
  .section__collection-menu .view_by {
    display: flex;
  }
  .collection__sorter .view_by {
    display: none;
  }
}
.collection__sorter {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.view_by {
  display: flex;
}
.view_by .item {
  margin-left: 6px;
}
.view_by .item__value {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  transition: all 0.3s;
  font-size: 26px;
  border-radius: 6px;
  cursor: pointer;
  padding: 5px 7px;
  border: 1px solid #ccc;
}
.view_by .item__value:hover,
.view_by .item__value.is-selected {
  background: #fff;
  color: var(--main-accent-color);
  border-color: var(--main-accent-color);
}
.view_by .item__value:before {
  margin: 0;
}
.sorter {
  display: flex;
  flex-wrap: wrap;
}
.sorter .sorter__label {
  font-size: 14px;
  font-weight: 700;
}
.sorter .sorter__item {
  transition: all 0.3s;
  cursor: pointer;
  margin-left: 10px;
  border-bottom: 1px dashed #ccc;
}
.sorter .sorter__item:hover {
  border-color: #000;
  cursor: pointer;
}
.sorter .sorter__item.is-selected {
  color: var(--main-accent-color);
  border-color: var(--main-accent-color);
}

@media (max-width: 460px) {
  .collection__sorter {
    display: block;
  }
  .sorter {
    margin-bottom: 12px;
  }
}

/* pagination */
.pagination {
  padding-top: 25px;
  border-top: 1px solid #e9e1e1;
}
.pagination .pagination__more {
  text-align: center;
  margin-bottom: 25px;
}
.pagination .pagination__more .btn {
  width: 100%;
}
.pagination .pagination__more .btn:before {
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
}
.pagination .pagination__items {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 16px;
  text-align: center;
}
.pagination .pagination__items .item__link {
  transition: all 0.3s;
  color: #333;
  border-radius: 6px;
  text-decoration: none;
  margin: 0 4px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 36px;
  padding: 0 10px;
}
.pagination .pagination__items .item__link:hover {
  background: #f3f3f3;
}
.pagination .pagination__items .item__link--is-selected {
  background: var(--main-accent-color) !important;
  color: #fff !important;
}
.pagination .pagination__items .item--arrow .item__link:after {
  display: inline-block;
  font-family: var(--font-icons);
  content: "\e817";
  transform: rotate(-180deg);
  margin: 0 6px;
  font-size: 20px;
}
.pagination .pagination__items .item--arrow-prev .item__link:after {
  transform: none;
}
@media (min-width: 768px) {
  .pagination .pagination__more .btn {
    width: 33.33%;
  }
}
/* pagination separator */
.pagination-separator {
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}
.pagination-separator:after {
  height: 1px;
  background: #e9e1e1;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  content: "";
}
.pagination-separator .pagination-separator__item {
  background: #fff;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  padding: 5px 15px;
}

/* insales misc */
#add_product_notification {
  background: #282828;
  color: #fff;
  padding: 10px;
  opacity: 0.8;
  filter: alpha(opacity=80);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  z-index: 9;
}
#own_preloader {
  z-index: 1000;
  text-align: center;
  vertical-align: middel;
  font-weight: normal;
  font-size: 12px;
  width: 200px;
  height: 60px;
}

#feedback_form * {
  text-align: center !important;
}
#feedback_form #thanks {
  color: green;
  margin-bottom: 10px;
}
#feedback_form label {
  display: block;
  font-size: 13px;
  line-height: normal !important;
  margin-bottom: 5px;
}
#feedback_form table {
  width: 100% !important;
  background: none !important;
  border: 0px !important;
}
#feedback_form table tr td,
#feedback_form table tr th {
  background: none !important;
  border: 0px !important;
  padding: 0px !important;
}
#feedback_form table p {
  line-height: normal !important;
  margin-bottom: 10px !important;
}

/* 404 */
.p404 {
  text-align: center;
  padding: 40px 0 90px 0;
}
.p404 .p404__header {
  font-size: 130px;
  margin-bottom: 0px;
  font-weight: 700;
}

/* --------------------------------------------------------------------------------------------------
UNSORTED
--------------------------------------------------------------------------------------------------- */

@media (min-width: 992px) {
  .section__filter {
    padding: 0 0 0 0;
    margin-bottom: 10px;
  }
  .section__sorter {
    display: flex;
    justify-content: space-between;
  }
}

/* order page */
.order__page {
  text-align: center;
}
.order__page .page__content {
  padding: 25px;
  border-radius: 25px;
  background: #fff;
}

/* CATALOG */

/* subcollections */
.catalogSub {
  margin-bottom: 20px;
  font-size: 13px;
}
.catalogSub .catalogSub__item {
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  color: #777;
  display: inline-block;
  padding: 5px 10px;
  background: #f5f5f5;
  border-radius: 6px;
  margin: 0 3px 8px 0;
  text-decoration: none;
}
.catalogSub .catalogSub__item:hover {
  color: #000;
  z-index: 2;
  background-color: #e6e6e6;
  box-shadow: 0px 10px 30px rgb(0 0 0 / 10%);
}

@media (max-width: 991px) {
  /* catalog sections */
  .section__mobile-filter {
    display: block;
    margin-bottom: 20px;
  }
  .section__sorter {
    padding-top: 25px;
    display: block;
  }
  .section__sorter .selectBox__group {
    padding-top: 15px;
    text-align: left;
    display: block;
  }
  .section__sorter .selectBox__group .selectBox__group-label {
    margin: 0 0 10px 0;
  }
  .section__sorter .selectBox .selectBox__title {
    background: #fafafa;
  }
  .js-show-filter .advPopup--filter {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .js-show-filter .layer {
    opacity: 0.6;
    visibility: visible;
  }
}

.collection__filter {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.collection__sorting {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

/* page reviews */
.page-reviews {
  padding-bottom: 0px;
}
.page-reviews .p-bottom {
  padding: 0px;
  background: none;
}
/* reviews v2 */
.r-reviews .r-reviews-header {
  display: flex;
  align-items: center;
  vertical-align: middle;
  font-size: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}
.r-reviews .r-reviews-header label {
  margin-right: 15px;
  display: block;
  float: left;
}
.r-reviews .r-reviews-header .rating {
  margin-top: 2px;
  display: block;
  float: left;
}
.r-reviews .r-reviews-header .rating span {
  display: inline-block;
  float: right;
  color: #ccc;
  font-size: 16px;
}
.r-reviews .r-reviews-header .btn {
  margin-left: auto;
}
.r-reviews .r-reviews-list {
  margin-bottom: 20px;
}
.r-reviews .t {
  text-align: center;
  padding-top: 30px;
  font-size: 18px;
  margin-bottom: 20px;
}
.r-reviews-list .item {
  border-bottom: 1px solid #e0e0e0;
  padding: 30px 20px;
}
.r-reviews-list .item:last-child {
  border: 0;
}
.r-reviews-list .item .review {
  align-items: center;
  display: flex;
}
.r-reviews-list .item .img {
  flex: 0 0 10%;
}
.r-reviews-list .item .img img {
  max-width: 100px;
  max-height: 100px;
  width: 100%;
  border-radius: 100%;
}
.r-reviews-list .item .text {
  padding-left: 20px;
}
.r-reviews-list .item .author {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.r-reviews-list .item .author span {
  margin-right: 8px;
  display: inline-block;
}
.r-reviews-list .item .author .name {
  padding: 3px 10px;
  border-radius: 5px;
  background: #2a72de;
  color: #fff;
  font-size: 15px;
}
.r-reviews-list .item .author .date {
  color: #888;
}
.r-reviews-list .item .review {
  line-height: 22px;
}
.r-reviews-list .item .reply {
  margin: 20px 0 0 12%;
  padding: 0px 0 0px 20px;
  border-left: 3px solid #77d277;
}
.r-reviews-list .item .reply .author .name {
  background: #77d277;
  font-size: 12px;
}
.r-reviews-form .rating {
  padding-left: 20px;
}
.r-reviews-form {
  width: 60%;
  margin: 0 auto;
  display: none;
}
.r-reviews-form .filewrap {
  padding: 15px 0;
  padding-left: 20px;
}
.r-reviews-form .filewrap label {
  margin-bottom: 10px;
  display: block;
}
.r-reviews.open .r-reviews-form {
  display: block;
}

.js-choose-default.is-selected,
.js-choose-custom.is-selected {
  border-color: var(--main-accent-color);
  color: var(--main-accent-color);
  background: none;
}

/* 27.09.2024 */
@media (min-width: 992px) {
  .sidebar {
    padding-top: 10px;
  }
}

/* sitemap */
.sitemap .sitemap__group {
  margin-bottom: 40px;
}
.sitemap .sitemap__group .sitemap__group_list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px 30px;
}

@media (min-width: 768px) {
  .sitemap .sitemap__group .sitemap__group_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .sitemap .sitemap__group .sitemap__group_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1400px) {
  .sitemap .sitemap__group .sitemap__group_list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.sitemap .sitemap__group .sitemap__group_list li {
  padding: 2px 0;
}
.sitemap .sitemap__group .sitemap__group_list li a {
  color: #000;
}
.sitemap .sitemap__group .sitemap__group_title {
  font-size: 16px;
  font-weight: 700;
}
.sitemap .sitemap__group .sitemap__group_list li > ul {
  padding-top: 10px;
  padding-left: 20px;
}
.sitemap .sitemap__group .sitemap__group_list li > ul li {
  margin-bottom: 10px;
}

/* CUSTOM: Этап 4 - Изменения карточек товаров */

/* 0. Одинаковая высота карточек товаров */
.productBox--mini .productBox__preview {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.productBox--mini .product {
  display: flex;
  flex-direction: row;
  flex: 1;
  height: 100%;
}

.productBox--mini .product__title {
  width: 185px;
}

.productBox--mini .col--right {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.productBox--mini .col--right .price__value.js-regular-price {
  display: flex;
}

.productBox--mini .col--right .col__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  margin-top: auto;
}

/* 1. Скрываем кнопки "Без выбора" и "Выбрать вкус/цвет" в листинге товаров (не на странице товара) */
.productBox--mini .product__variantButtons--choose,
.productBox--collection .product__variantButtons--choose {
  display: none !important;
}

/* 2. Скрываем счетчики количества в листинге товаров (не на странице товара) */
.productBox--mini .product__qtys,
.productBox--collection .product__qtys {
  display: none !important;
}

/* 3. Скрываем счетчик вариантов "В наличии: X из Y" */
.product__avlCounter {
  display: none !important;
}

/* 4. Новая плашка "Товар в наличии" с иконкой батарейки */
.product__availability {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 500;
  color: #0077ff;
  min-width: 190px;
}

/* 5. Новые кнопки для листинга товаров */
.summary__buttons--listing {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 0;
}

.btn--order-now,
.btn--order-whatsapp,
.btn--order-telegram {
  width: 50%;
  height: 45px !important;
  background: var(--main-accent-color);
  color: #fff;
  border: 1px solid var(--main-accent-color);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  padding: 10px 20px;
  border-radius: 5px;
}
.btn--order-now img,
.btn--order-whatsapp img,
.btn--order-telegram img {
  height: 13px;
}
.btn--order-now:hover,
.btn--order-whatsapp:hover,
.btn--order-telegram:hover {
  background: rgba(var(--main-accent-color-rgb), 0.8);
  opacity: 0.85;
  color: #fff;
  text-decoration: none !important;
  border: 1px solid var(--main-accent-color);
}

/* 6. Скрываем старые кнопки "В корзину" в листинге товаров */
.productBox--mini .summary__buttons,
.productBox--collection .summary__buttons {
  display: none !important;
}

/* 7. Показываем новые кнопки только в листинге, не на странице товара */
.productBox--large.productBox--product .summary__buttons--listing {
  display: none !important;
}

/* 8. Компактное отображение цен в одну строку (скрыто по умолчанию) */
.price__compact {
  display: none;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.price__compact-main {
  color: var(--main-body-color);
}

.price__compact-separator {
  color: #999;
  margin: 0 4px;
}

.price__compact-min {
  color: var(--main-body-color);
}

.price__compact-from {
  color: #666;
  font-size: 14px;
  margin-left: 4px;
}

/* 9. Показываем компактные цены только в виде таблицей (если такой класс есть) */
/* По умолчанию скрыты, будут показаны через JS или специальный класс */
.catalog-view--table .price__regular,
.catalog-view--table .price__next {
  display: none !important;
}

.catalog-view--table .price__compact {
  display: block !important;
}

/* 10. Уменьшение изображений товаров на 25% и убираем отступы */
.productBox--mini .product__gallery,
.productBox--collection .product__gallery {
  max-width: 75%;
  margin: 0 auto;
}

/* .productBox--mini .product__gallery img,
.productBox--collection .product__gallery img {
  width: 75%;
  height: auto;
} */

.productBox--mini .product__galleryLink,
.productBox--collection .product__galleryLink {
  padding: 0;
  margin: 0;
  display: block;
}

/* 11. Доработка стилей кнопок с иконками */
.btn--order-now {
  background: #e600ff !important;
  border-color: #e600ff !important;
}

.btn--order-now:hover {
  background: #c000d9 !important;
  border-color: #c000d9 !important;
}

.btn--order-whatsapp {
  background: transparent !important;
  border: 1px solid #00e825 !important;
  color: #00e825 !important;
}

.btn--order-whatsapp:hover {
  background: rgba(0, 232, 37, 0.1) !important;
  color: #00e825 !important;
}

.btn--order-telegram {
  background: #039be5 !important;
  border: 1px solid #039be5 !important;
  color: #fff !important;
}

.btn--order-telegram:hover {
  background: rgba(3, 155, 229, 0.85) !important;
  border-color: #039be5 !important;
  color: #fff !important;
}

/* Иконки внутри кнопок - используем SVG */
.btn--order-now img,
.btn--order-whatsapp img,
.btn--order-telegram img {
  flex-shrink: 0;
  vertical-align: middle;
  height: 13px;
  margin: 0 6px 2px 0;
  width: auto;
}

.btn--order-telegram img {
  filter: brightness(0) invert(1);
  width: 15px;
  height: 15px;
}

.btn--order-now,
.btn--order-whatsapp,
.btn--order-telegram {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}

.productBox--mini .btn--order-now,
.productBox--mini .btn--order-whatsapp,
.productBox--mini .btn--order-telegram {
  font-size: 10px;
  font-weight: 600;
  padding: 13px 15px;
  border-radius: 8px;
  height: 15px !important;
}
.optom-price {
  display: none;
}
.productBox--mini .optom-price {
  display: flex;
  align-items: center;
  justify-content: center;
}
.productBox--mini .optom-price .i-rub-bold:before {
  margin: initial;
}
/* Центрирование цен */
.productBox--mini .product__prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.productBox--mini .price__regular {
  display: flex;
  align-items: center;
  justify-content: center;
}

.productBox--mini .product .product__packonlyMsg {
  position: absolute;
  bottom: -65%;
  font-size: 8px;
}

.productBox__preview
  .product__col.col--left
  .product__availability
  .batteryQty {
  transform: scale(0.7);
  margin-left: -5px;
}
.productBox__preview .product__col.col--left .product__availability * {
  font-size: 14px !important;
  font-weight: 400;
}
@media (min-width: 375px) and (max-width: 389px) {
  .productBox--large .btn.btn--order-now,
  .productBox--large .btn.btn--order-whatsapp,
  .productBox--large .btn.btn--order-telegram {
    width: 50% !important;
  }
  .productBox--large .btn.btn--order-now,
  .productBox--large .btn.btn--order-whatsapp,
  .productBox--large .btn.btn--order-telegram,
  .productBox--large .js-choose-custom {
    font-size: 12px !important;
  }
  .productBox--mini .btn.btn--order-now,
  .productBox--mini .btn.btn--order-whatsapp,
  .productBox--mini .btn.btn--order-telegram {
    /* width: 45% !important; */
    font-size: 12px !important;
  }
  .section__content .page__columns.page__columns--sidebar {
    flex-direction: column;
  }
  .product__details .product__availability {
    justify-content: center;
  }
  .productBox--mini .product__details > * {
    text-align: initial;
  }
  /* .productBox--large .product__variantButtons:not(.product__variantButtons--added), .productBox--large .product__prices .price__regular .price__col {
        display: block !important;
    } */
  .productBox--mini .product__summary {
    width: 100%;
  }
  .variants__list .item__qty .product__qtys {
    width: 100%;
  }
}
@media (min-width: 390px) and (max-width: 575px) {
  .productBox--large .btn.btn--order-now,
  .productBox--large .btn.btn--order-whatsapp,
  .productBox--large .btn.btn--order-telegram {
    width: 50% !important;
  }
  .productBox--large .btn.btn--order-now,
  .productBox--large .btn.btn--order-whatsapp,
  .productBox--large .btn.btn--order-telegram,
  .productBox--large .js-choose-custom {
    font-size: 12px !important;
  }
  .productBox--mini .btn.btn--order-now,
  .productBox--mini .btn.btn--order-whatsapp,
  .productBox--mini .btn.btn--order-telegram {
    width: 50% !important;
    font-size: 12px !important;
  }
  .section__content .page__columns.page__columns--sidebar {
    flex-direction: column;
  }
  .product__details .product__availability {
    justify-content: center;
  }
  .productBox--mini .product__details > * {
    text-align: initial;
  }
  /* .productBox--large .product__variantButtons:not(.product__variantButtons--added), .productBox--large .product__prices .price__regular .price__col {
      display: block !important;
  } */
  .productBox--mini .product__summary {
    width: 100%;
  }
  .productBox--mini .product__prices .price__regular,
  .productBox--large .product__prices .price__regular {
    padding: 10px 0 !important;
  }
  .variants__list .item__qty .qty__wrap {
    margin: initial;
  }
  .variants__list .item__qty .product__qtys {
    width: 100%;
    gap: 7px;
    justify-content: space-between;
  }
  .variants__list .item__qty .qty__wrap {
    max-width: 48%;
    flex: 0 0 48%;
  }
}
@media (min-width: 375px) and (max-width: 575px) {
  .productBox__variants .variants__list {
    position: relative;
    z-index: 2;
  }
  .variants__list .item {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .variants__list .item__img {
    margin: initial;
  }
  .variants__list .item__qty .qty__wrap {
    max-width: 50%;
    flex: 0 0 48%;
  }
  /* три первых нужных блока — в одну строку */
  .variants__list .item .item__variant,
  .variants__list .item .item__inventory,
  .variants__list .item .item__summary {
    order: 1;
    flex: 0 0 auto; /* ширина по содержимому */
    display: flex;
    white-space: nowrap; /* не переносить текст */
    white-space: normal; /* разрешаем перенос строк */
    overflow-wrap: break-word; /* переносим длинные слова */
    word-break: break-word; /* дополнительная страховка */
  }
  .variants__list .item .item__variant {
    /* width: 40%; */
    width: 63%;
  }
  .variants__list .item .item__inventory {
    /* width: 20%; */
    display: none;
  }
  .variants__list .item .item__summary {
    width: 35%;
    justify-content: center;
  }
  /*
  .productBox.is-custom .variants__list .item .col {
    display: flex;
  }
  */
  .variants__list .item__actions {
    gap: 13px;
  }
  .productBox.is-custom .variants__list .item .col {
    padding-top: initial;
  }
  .is-custom .variants__list .item__actions .btn,
  .variants__list .btn.btn--order-now,
  .variants__list .btn.btn--order-whatsapp,
  .variants__list .btn.btn--order-telegram {
    height: 30px !important;
  }
  .variants__list .item__actions .btn {
    border-radius: 5px;
  }

  .product__availability {
    margin-bottom: initial !important;
  }
  .productBox--product .product__xls {
    padding: 10px 15px !important;
  }
  .productBox--large .product__prices .price__regular .price {
    font-size: 14px !important;
  }
  .productBox--large .product__prices .price__col {
    padding: 8px 15px;
  }
  .productBox--catalog .product__galleryLink {
    padding: 15px;
  }
}
@media (min-width: 576px) and (max-width: 853px) {
  .productBox--mini .product__prices .price__regular,
  .productBox--large .product__prices .price__regular {
    padding: initial !important;
  }
  .productBox--large .product__prices .price__col {
    padding: 0;
  }
  .productBox--large .product__prices .price__regular {
    padding: 10px 0;
  }
  /* .productBox--mini .col--right .col__content {
    gap: 10px;
  } */
  /* .productBox.is-custom  */
  .variants__list .item__summary .price,
  .variants__list .item__title {
    text-align: center;
    justify-content: center;
  }
  .variants__list .item {
    flex-direction: column;
  }
  .productBox.is-custom .variants__list .item .col {
    justify-content: center;
  }
  .variants__list .item__qty .qty__wrap {
    max-width: 50%;
  }
  .variants__list .qty__counter {
    width: 50%;
    max-width: 50%;
  }
  .variants__list .item .col,
  .variants__list .item__actions {
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 853px) {
  .productBox--mini .product__availability {
    /* position: absolute;
    top: 118%;
    left: 0px; */
    position: relative;
    width: 100%;
  }
}
@media (max-width: 853px) {
  .productBox--mini .product__details .product__availability {
    justify-content: center;
    gap: 8px;
  }
  .product__col.col--left .product__availability .batteryQty {
    transform: scale(0.8);
  }
  .productBox__preview
    .product__col.col--left
    .product__availability
    .batteryQty {
    transform: scale(1);
  }
  .product__col.col--left .product__availability * {
    font-size: 14px !important;
    font-weight: 400;
  }
  .productBox--large .product__title > *:not(span) {
    font-size: 30px !important;
    font-weight: 500 !important;
  }
  .productBox--mini .product__summary > * {
    flex: 0 0 100%;
  }
  /* Запрет переноса текста цен на мобиле */
  .productBox--mini .price__regular,
  .productBox--mini .price,
  .productBox--mini .optom-price {
    white-space: nowrap;
  }
  .section__content .productBox--large .product {
    height: initial;
    max-height: initial;
  }

  .summary__buttons--listing {
    width: 100%;
  }
  .product__col.col--right .product__prices .price,
  .product__col.col--right .price__next.js-next-price-wrapper .price {
    text-align: center;
    width: 100%;
    justify-content: center;
  }
  .productBox--large
    .product__variantButtons:not(.product__variantButtons--added),
  .productBox--large .product__prices .price__regular .price__col {
    /* display: block !important; */
  }
  .productBox--mini .col--left {
    flex: 0 0 40%;
    position: relative;
  }
  .productBox--mini .col--right {
    flex: 0 0 60%;
    padding-top: initial !important;
    padding-left: initial !important;
  }
  .productBox--mini .product__gallery {
    width: 100px;
    min-width: 60px;
    flex: initial;
  }
  .productBox--large .product__col {
    flex-direction: column;
  }
  .productBox--mini .product__col {
    flex-direction: column;
    width: 100%;
  }
  .productBox--mini .product,
  .productBox--large .product {
    height: initial;
    max-height: initial;
    flex-direction: column;
  }
  .productBox--large .product__availability,
  .productBox--mini .product__availability {
    transform: scale(1.1);
  }
  .productBox--mini .product__details {
    padding-left: initial;
  }
  .btn--order-now,
  .btn--order-whatsapp,
  .btn--order-telegram {
    font-size: 15px;
  }

  .productBox--mini .product__title,
  .productBox--large .product__title {
    width: auto;
  }
  .productBox--mini .product__title *:not(span) {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
  }
  .productBox--large .product__title *:not(span) {
    font-size: 30px;
    font-weight: 400;
    text-align: center;
  }
  .product__details > * {
    text-align: center;
    justify-content: center;
  }
  /* .productBox--mini .product__prices .price__regular {
    margin-top: 20px;
  } */
  .productBox--mini .product__prices {
    padding: 15px;
  }
  .productBox--mini .btn--order-now,
  .productBox--mini .btn--order-whatsapp,
  .productBox--mini .btn--order-telegram {
    font-size: 12px;
    font-weight: 600;
    padding: 18px 20px;
    border-radius: 8px;
    height: 18px !important;
  }
  .productBox--mini .product__col.col--left {
    position: relative;
  }
  .productBox--mini .product .product__packonlyMsg {
    bottom: -68%;
  }
  .productBox--catalog.productBox--large .product__col.col--left {
    display: block;
  }
  .variants__list .item__actions {
    float: 0 0 100%;
  }
  .productBox--product .product__xls {
    justify-content: center;
  }

  .productBox--catalog.productBox--large
    .productBox__preview
    .product__gallery {
    max-width: 100%;
    /* width: 350px;
    height: 350px; */
    /* width: 250px;
    height: 250px; */
    width: 210px;
    height: 210px;
    margin: 0 auto;
  }

  .productBox--catalog.productBox--mini .productBox__preview .product__gallery {
    max-width: 100%;
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }

  .productBox--large .product__title *:not(span) {
    font-size: 25px;
  }
  .variants__list .item__qty .product__qtys.counter-num-3 .qty__wrap {
    max-width: 100%;
    flex: 0 0 98%;
  }

  .productBox--catalog .product__title,
  .productBox--collection .product__title {
    font-size: 12px;
  }

  .productBox--catalog .product__price,
  .productBox--collection .product__price {
    font-size: 14px;
  }

  .section--relatedProducts .product__gallery {
    max-width: 100%;
    width: 120px;
  }
  .section--relatedProducts .product__gallery .product__galleryLink {
    height: initial;
  }
  .faq__page .faq__header {
    margin-bottom: 30px;
  }
}

@media (min-width: 853px) and (max-width: 1024px) {
  .productBox--catalog.productBox--large
    .productBox__preview
    .product__gallery {
    /* width: 450px;
    height: 450px; */
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }
  .productBox--catalog.productBox--mini .productBox__preview .product__gallery {
    /* width: 450px;
    height: 450px; */
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }
  .productBox--catalog.productBox--large .product__col.col--left {
    display: block;
  }
  .wholesale-progress.wholesale-progress--product-card .wholesale-progress__message {
    text-align: center;
  }
}

@media (min-width: 854px) and (max-width: 1024px) {
  .summary__buttons--listing {
    width: 100%;
  }
  .product__col.col--right .product__prices .price,
  .product__col.col--right .price__next.js-next-price-wrapper .price {
    text-align: center;
    width: 100%;
    justify-content: center;
  }
  .productBox--large
    .product__variantButtons:not(.product__variantButtons--added),
  .productBox--large .product__prices .price__regular .price__col {
    display: block !important;
  }
  .productBox--mini .col--left {
    flex: 0 0 40%;
    position: relative;
  }
  .productBox--mini .col--right {
    flex: 0 0 60%;
  }
  .productBox--mini .product__gallery {
    width: 100px;
    min-width: 60px;
    flex: initial;
  }
  .productBox--large .product__col {
    flex-direction: column;
  }
  .productBox--mini .product__col {
    flex-direction: column;
    width: 100%;
  }
  .productBox--mini .product,
  .productBox--large .product {
    height: initial;
    max-height: initial;
    flex-direction: column;
  }
  .productBox--mini .product__availability {
    transform: scale(1.1);
  }
  .productBox--large .product__availability {
    transform: scale(1.1);
  }
  .productBox--mini .product__details {
    padding-left: initial;
  }
  .btn--order-now,
  .btn--order-whatsapp,
  .btn--order-telegram {
    font-size: 15px;
  }

  .productBox--mini .product__title,
  .productBox--large .product__title {
    width: auto;
  }
  .productBox--mini .product__title * {
    font-size: 20px;
    font-weight: 400;
  }
  .productBox--large .product__title * {
    font-size: 30px;
    font-weight: 400;
  }
  .product__details > * {
    text-align: center;
    justify-content: center;
  }
  .productBox--mini .product__prices .price__regular,
  .productBox--large .product__prices .price__regular {
    padding: initial !important;
  }
  .productBox--mini .product__prices .price__regular {
    margin-top: 15px;
  }
  .productBox--mini .product__prices {
    padding: 15px;
  }
  .productBox--mini .btn--order-now,
  .productBox--mini .btn--order-whatsapp,
  .productBox--mini .btn--order-telegram {
    font-size: 12px;
    font-weight: 600;
    padding: 18px 20px;
    border-radius: 8px;
    height: 18px !important;
  }
  .productBox--large .product__prices .price__col {
    padding: 0;
  }
  .productBox--mini .product__col.col--left {
    position: relative;
  }
  .productBox--mini .product__availability {
    position: absolute;
    top: 115%;
    width: 100%;
    left: 0px;
  }
  .variants__list .item__actions {
    flex: 0 0 33%;
  }
  .variants__list .item__qty .qty__wrap {
    flex: 0 0 48%;
  }
  .variants__list .item .item__inventory {
    /* width: 20%; */
    display: none;
  }
  .productBox--product .product__xls {
    justify-content: center;
  }
}

@media (min-width: 1025px) {
  .productBox--large.productBox--catalog
    .productBox__preview
    .product__gallery {
    height: 100%;
    /* width: 250px; */
    /* height: 250px; */
    display: block;
    margin: 0 auto;
    padding-right: 10px;
  }
  .productBox--product .product__prices {
    display: flex;
    flex-direction: column;
    height: inherit;
    justify-content: space-evenly;
  }

  .productBox--mini.productBox--catalog .productBox__preview .product__gallery {
    height: -webkit-fill-available;
    min-height: 60px;
  }
  .productBox--mini.productBox--catalog
    .productBox__preview
    .product__gallery
    .product__galleryBg {
    background-size: contain;
  }
}

@media (min-width: 1199px) and (max-width: 1399px) {
  .productBox--mini .product__col.col--right *,
  .productBox--mini .product__col.col--left .product__availability * {
    font-size: 10px !important;
  }
  .productBox--mini .product__col.col--left * {
    margin: initial;
  }
  .productBox--mini .product__title {
    /* width: 160px; */
    width: initial;
    max-width: 280px;
  }
  /* Расположение элементов на средних экранах */
  .productBox--mini .product__col.col--right .col__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; /**************!!!!!!!***************/
    gap: 10px;
  }
  .productBox--mini .product__prices {
    flex: 0 0 auto;
    /* margin-right: 8px; */
  }
  .productBox--mini .summary__buttons--listing {
    flex: 0 0 auto;
  }
  .productBox--mini .product__details .h1 {
    font-size: 14px;
  }
  .productBox--mini .product__details {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    padding-left: initial;
    position: relative;
  }
  .productBox--mini .btn--order-now {
    padding: 15px 8px;
  }
  .productBox--mini .btn--order-whatsapp,
  .productBox--mini .btn--order-telegram {
    padding: 15px 15px;
  }
  .productBox--mini .product .product__packonlyMsg {
    left: 0px;
    max-width: 160px;
  }
  .productBox--mini .product__availability {
    gap: 0;
    min-width: 140px;
  }
  .productBox--mini .product__col.col--left .product__availability .batteryQty {
    transform: scale(0.6);
  }
  .section__content .productBox--large .product {
    height: 283px;
    max-height: 283px;
  }
  .section__content .productBox--large .price__col.js-next-prices {
    padding-bottom: 0px;
  }
  .productBox--mini .product__col.col--left {
    flex: 0 0 45% !important;
  }
  .variants__list .item__actions {
    flex: 0 0 33%;
  }
  .variants__list .item__qty .qty__wrap {
    flex: 0 0 45%;
  }
  .variants__list .item .col {
    padding: 10px 15px;
  }
  .variants__list.variants__list--header .col {
    justify-content: center;
  }
  .productBox--large .product__summary > *,
  .productBox--product .product__summary > * {
    font-size: 14px;
    font-weight: 500;
  }
  .section--relatedProducts .productBox--mini .product__col.col--right *,
  .section--relatedProducts
    .productBox--mini
    .product__col.col--left
    .product__availability
    * {
    font-size: 12px !important;
  }
  .section--relatedProducts .productBox--mini .i-rub-bold:before {
    font-size: 10px !important;
  }
  .section--relatedProducts .productBox--mini .product__col.col--left {
    flex: 0 0 50% !important;
  }
  .section--relatedProducts .productBox--mini .product__details {
    padding-left: 15px;
  }
  .section--relatedProducts .productBox--mini .product__details {
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
    justify-content: space-between;
  }
  .section--relatedProducts .productBox--mini .product__availability {
    align-items: center;
    width: 40%;
  }
  .section--relatedProducts .productBox--mini .product__title {
    width: initial;
    max-width: 285px;
  }
  .section--relatedProducts .productBox--mini .product__col.col--left {
    flex: 0 0 45% !important;
  }
}

@media (min-width: 1400px) {
  /* .productBox--mini .product__col.col--right *,
  .productBox--mini .product__col.col--left .product__availability * {
    font-size: 10px!important;
  } */
  .productBox--mini .product__details {
    padding-left: 15px;
  }
  .productBox--mini .btn--order-now,
  .productBox--mini .btn--order-whatsapp,
  .productBox--mini .btn--order-telegram {
    font-size: 10px;
  }
  .productBox--mini .btn--order-now img,
  .productBox--mini .btn--order-whatsapp img,
  .productBox--mini .btn--order-telegram img {
    height: 10px;
  }
  .productBox--mini .product__col.col--left .product__details {
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
    justify-content: space-between; /*space-between;*/ /*space-around;*/ /**************!!!!!!!***************/
  }
  .productBox--mini .product__title {
    /* width: 230px; */ /**************!!!!!!!***************/
  }
  .productBox--mini .product__col.col--left .product__details * {
    margin: 0;
  }
  /* Оптимизация расположения элементов на десктопе */
  .productBox--mini .product__col.col--right .col__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; /**************!!!!!!!***************/
    gap: 15px;
  }
  .productBox--mini .product__prices {
    flex: 0 0 auto;
    /* margin-right: 10px; */
  }
  .productBox--mini .summary__buttons--listing {
    flex: 0 0 auto;
  }
  .productBox--mini .product__availability {
    align-items: center;
    width: 50%;
  }
  .section__content .productBox--large .product {
    height: 283px;
    max-height: 283px;
  }
  .productBox--mini .product__col.col--left {
    flex: 0 0 55% !important;
  }
  .productBox--mini .product__title {
    width: initial;
    max-width: 285px;
  }
  .productBox--catalog.productBox--mini .product__col.col--left {
    flex: 0 0 45% !important;
  }
  .productBox--large .product__title > *,
  .productBox--product .product__title > * {
    font-size: 30px;
    font-weight: 600;
  }
  .productBox--large .product__summary > *,
  .productBox--product .product__summary > * {
    font-weight: 500;
    font-size: 14px;
  }
}
@media (min-width: 1199px) {
  /* CUSTOM: Синхронизация ширины колонок заголовка с телом таблицы (только для больших экранов) */
  .variants__list--header .item__variant,
  .variants__list--items .item__variant {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24%;
  }
  .variants__list--header .item__inventory,
  .variants__list--items .item__inventory {
    flex: 0 0 10%;
    text-align: center;
  }
  .variants__list--header .item__qty,
  .variants__list--items .item__qty {
    flex: 0 0 25%;
    text-align: center;
  }
  .variants__list--header .item__summary,
  .variants__list--items .item__summary {
    flex: 0 0 10%;
    text-align: center;
  }
  .variants__list--header .item__actions,
  .variants__list--items .item__actions {
    flex: 0 0 30%;
    text-align: center;
  }

  /*head*/
  .variants__list--header .item__variant,
  .variants__list--header .item__inventory,
  .variants__list--header .item__qty,
  .variants__list--header .item__summary,
  .variants__list--header .item__actions {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  /*body*/
  .variants__list .item .col {
    padding-left: initial !important;
    padding-right: initial !important;
  }
  .variants__list--items .item__inventory,
  .variants__list--items .item__summary {
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
  }
  .variants__list--items .item__qty {
    justify-content: space-between;
    align-items: center;
    text-align: center;
  }
  .variants__list--items .item__variant {
    justify-content: start;
    align-items: self-start;
    text-align: left;
    align-items: center;
  }
  .variants__list--items .item__actions {
    justify-content: end;
    align-items: end;
    text-align: right;
  }
  .variants__list--items .item__variant.col {
    padding-left: 10px !important;
  }
  .variants__list--items .item__actions.col {
    padding-right: 15px !important;
  }
}

/* CUSTOM: Всплывающее уведомление "Пожалуйста, выберите количество" */
.qty-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  background: rgba(255, 255, 255, 0.77);
  border: 1px solid #e600ff;
  border-radius: 10px;
  padding: 30px 40px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  max-width: 90%;
  text-align: center;
  align-items: center;
  min-width: 50%;
  min-height: 150px;
  display: flex;
  justify-content: center;
}

.qty-notification.is-visible {
  opacity: 1;
  visibility: visible;
}

.qty-notification__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  color: #737373;
  font-size: 20px;
  line-height: 24px;
  transition: color 0.3s;
  background: none;
  border: none;
  padding: 0;
}

.qty-notification__close:hover {
  color: #e600ff;
}

.qty-notification__close:before {
  content: "\00d7";
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.qty-notification__text {
  color: #e600ff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 767px) {
  .qty-notification {
    padding: 20px 30px;
    max-width: 85%;
  }

  .qty-notification__text {
    font-size: 16px;
  }
}

/* Product Cards - Background Image Approach for Catalog/Collection */
.productBox--catalog .product__gallery,
.productBox--collection .product__gallery {
  position: relative;
  overflow: hidden;
}

.productBox--catalog .product__galleryLink,
.productBox--collection .product__galleryLink {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .productBox--catalog .product__galleryBg,
  .productBox--collection .product__galleryBg {
    background-size: contain;
    /* background-size: auto 230px;  */
    /*или 250*/
  }
  .cart .cart__items .item__details {
    justify-content: space-between;
  }
  .cart .cart__items .item__details .qty__counter .qty__btn {
    padding-top: 1px;
    max-width: 40%;
    flex: 0 0 40%;
  }
}
@media (min-width: 1025px) {
  .productBox--catalog .product__galleryBg,
  .productBox--collection .product__galleryBg {
    background-size: auto 150px;
  }
}
.cart .cart__items .item__details .item__col {
  width: 50%;
}
.productBox--catalog .product__galleryBg,
.productBox--collection .product__galleryBg {
  width: 100%;
  height: 100%;
  /* background-size: contain; */
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.productBox--catalog .product__galleryLink:hover .product__galleryBg,
.productBox--collection .product__galleryLink:hover .product__galleryBg {
  transform: scale(1.05);
}

/* @media (max-width:991px){
  .qty__counter {min-width:110px;max-width:110px;}
  .qty__counter .qty__btn {max-width:35px;flex:0 0 35px;}
  .qty__counter .qty__input {width:40px;flex:0 0 40px;font-size: 14px;}
  .cookie-banner-pc {
    display: none!important;
  }
}
@media (min-width:991px){
  .cookie-banner-mobile {
    display: none!important;
  }
} */

/* ===========================
   WHOLESALE PROGRESS NOTICE
   Уведомления о прогрессе до оптовой цены
   =========================== */

/* Базовые стили для всех уведомлений */
.wholesale-progress {
  transition: opacity 0.3s, visibility 0.3s;
}

.wholesale-progress__message {
  line-height: 155%;
}

/* 1. Уведомление в карточке товара */
.wholesale-progress--product-card {
  margin-top: 8px;
}

.wholesale-progress--product-card .wholesale-progress__message {
  font-size: 12px;
  color: #0077ff;
  font-weight: 400;
  text-align: left;
}

@media (max-width: 992px) {
  .wholesale-progress--product-card .wholesale-progress__message {
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 60%;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .wholesale-progress--product-card .wholesale-progress__message {
    /* font-size: 14px;  */
  }
}

/* 2. Уведомление в виджете корзины */
.wholesale-progress--cart-widget {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #515151;
}

.wholesale-progress--cart-widget .wholesale-progress__message {
  font-size: 11px;
  color: var(--main-accent-color);
  text-align: left;
  line-height: 145%;
}

@media (min-width: 576px) {
  .wholesale-progress--cart-widget .wholesale-progress__message {
    font-size: 12px;
  }
}

/* 3. Уведомление на странице чекаута */
.cart__progress-notice {
  margin-top: 15px;
}

.wholesale-progress--checkout {
  background: #ccc;
  border-radius: 10px;
  padding: 15px 20px;
  border: 1px solid #ccc;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
}

.wholesale-progress--checkout .wholesale-progress__message {
  font-size: 14px;
  text-align: left;
  font-weight: 400;
}

@media (min-width: 768px) {
  .cart__progress-notice {
    margin-top: 20px;
  }
  /* 
  .wholesale-progress--checkout {
    padding: 15px 20px;
  }
  .wholesale-progress--checkout .wholesale-progress__message {
    font-size: 15px;
  } 
  */
}

/* @media (min-width: 992px) {
  .wholesale-progress--checkout .wholesale-progress__message {
    font-size: 16px;
  }
} */
.wholesale-progress--checkout span.price__valueCount {
  font-weight: 600;
}
/* Rating input styles */
.rating-input {
  display: flex;
  gap: 8px;
  align-items: left;
  justify-content: left;
  margin-top: 8px;
}

.rating-star {
  font-size: 32px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  user-select: none;
}

.rating-star:hover,
.rating-star.active {
  color: #ffd700;
  transform: scale(1.1);
}

.rating-star.active {
  color: #ffd700;
}

.product__label {
  background-color: var(--main-accent-color);
  float: left;
  clear: both;
  padding: 2px 5px 1px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 3px;
  position: absolute;
  top: 18px;
  left: 18px;
  max-height: 18px;
  z-index: 100;
}
.product__label * {
  font-size: 10px !important;
  line-height: 14px !important;
  font-weight: 600 !important;
}

@media (min-width: 1200px) {
  .productBox.productBox--mini .product__label {
    left: 93px;
    top: 10px;
  }
  .productBox.productBox--mini .product__label,
  .productBox.productBox--large .product__label {
    font-size: 14px;
  }
}
.productBox.productBox--large .product__title .product__label {
  top: 29px;
}
@media (min-width: 1025px) {
  .productBox.productBox--mini .product__title .product__label {
    position: relative;
    left: initial;
    top: initial;
    width: fit-content;
  }
}

@media (max-width: 1024px) {
  .productBox.productBox--mini .product__title .product__label {
    left: 0px;
    top: 0px;
  }
}
.productBox.productBox--mini .product__title {
  display: flex;
  flex-direction: column;
}
/* Sale icon for menu */
.mainmenu__itemLink--icon-sale:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 8px;
  background-color: var(--main-accent-color);
  mask-image: url("discount.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("discount.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  vertical-align: middle;
}

.section__header .section__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.section__header .section__title img {
  border-radius: 10px;
  max-width: 110px;
}

@media (max-width: 763px) {
  .section__header .section__title {
    flex-direction: column;
    justify-content: center;
  }
  .section__header .section__title .brand__logo {
    text-align: center;
    margin-top: 20px;
    /*
    order: -1;
    margin-bottom: 20px;
    */
  }
}

/* Product Gallery Thumbnails */
.product__galleryThumbs {
  margin-top: 15px;
  position: relative;
}

.product__galleryThumbsContainer {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  transform: scale(0.9);
}

.product__galleryThumbsWrapper {
  display: flex;
  gap: 10px;
  transition: transform 0.3s ease;
}

.product__galleryThumb {
  flex: 0 0 calc(25% - 7.5px);
  max-width: calc(25% - 7.5px);
  width: calc(25% - 7.5px);
  height: 0;
  padding-bottom: calc(25% - 7.5px);
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #f5f5f5; */
}

.product__galleryThumb:hover {
  border-color: #ccc;
}

.product__galleryThumb.is-active {
  border-color: var(--main-accent-color);
}

.product__galleryThumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.product__galleryArrows {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translate(-5%, -50%);
  z-index: 10;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 110%;
}

.product__galleryArrow {
  /*
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  */
  background: none;
  border: none;
  border-radius: 0px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.product__galleryArrow:hover {
  /*
  background: var(--main-accent-color);
  border-color: var(--main-accent-color);
  color: #fff;
  */
  color: var(--main-accent-color);
}

.product__galleryArrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.product__galleryArrow svg {
  width: 10px;
  height: 16px;
}

/* Responsive */
@media (max-width: 991px) {
  .product__galleryThumb {
    flex: 0 0 calc(33.333% - 6.67px);
    max-width: calc(33.333% - 6.67px);
    width: calc(33.333% - 6.67px);
    height: 0;
    padding-bottom: calc(33.333% - 6.67px);
  }
}

@media (max-width: 767px) {
  .product__galleryThumb {
    flex: 0 0 calc(25% - 7.5px);
    max-width: calc(25% - 7.5px);
    width: calc(25% - 7.5px);
    height: 0;
    padding-bottom: calc(25% - 7.5px);
  }

  .product__galleryThumbs {
    margin-top: 10px;
  }

  .product__galleryArrow {
    width: 25px;
    height: 25px;
  }

  .product__galleryMainContainer {
    overflow: hidden;
  }
}

/* Product Gallery Main Container & Wrapper - для мобильного свайпа */
.product__galleryMainContainer {
  position: relative;
  /* overflow: hidden;*/
  width: 100%;
}

.product__galleryMainWrapper {
  display: flex;
  transition: transform 0.3s ease;
  width: 100%;
}

.product__gallerySlide {
  flex: 0 0 100%;
  width: 100%;
  display: none;
}

.product__gallerySlide.is-active {
  display: block;
}

.product__gallerySlide .product__galleryLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.product__gallerySlide img {
  max-width: 100%;
  max-height: 300px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  overflow: hidden;
}

/* Mobile - показываем все слайды для свайпа */
@media (max-width: 767px) {
  .product__gallerySlide {
    display: block;
  }
}

/* Product Gallery Dots - индикаторы для мобильной версии */
.product__galleryDots {
  display: none;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.product__galleryDot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.product__galleryDot.is-active {
  background-color: #000;
}

/* Mobile version - show dots, hide thumbnails */
@media (max-width: 767px) {
  .product__galleryDots {
    display: flex;
  }

  .product__galleryThumbs {
    display: none;
  }
}

/* Product Bottom First - Brand Logo and Disclaimer */
.product__bottom-first {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: center;
}
/*
.product__bottom-first .product__inner-disclaimer {
  padding: 18.5px 25px;
}
*/
.product__bottom-first > div {
  height: 100%;
}
/*
.product__bottom-first img {
  height: 100%;
  width: auto;
}
*/
.product__inner-logo {
  flex: 0 0 auto;
  max-width: 200px;
}
.product__inner-logo img {
  border-radius: 5px;
}

.product__inner-logo .brand__logo {
  display: block;
}

.product__inner-logo .brand__logo a {
  display: block;
}

.product__inner-logo .brand__logo img {
  width: auto;
  height: 100%;
  display: block;
}

.product__inner-disclaimer {
  flex: 1 1 auto;
}

@media (min-width: 1024px){
  .product__bottom-first .product__inner-logo,
  .product__bottom-first .product__disclaimer .alert-error {
    height: 69px;
  }
}
/* Mobile version - hide logo, disclaimer takes full width */
@media (max-width: 767px) {
  .product__bottom-first {
    gap: 0;
  }

  .product__inner-logo {
    display: none;
  }

  .product__inner-disclaimer {
    width: 100%;
  }
}
.product__inner-logo-mobile {
  display: none;
}
@media (max-width: 768px) {
  .product__inner-logo-mobile {
    margin-top: 15px;
    margin-bottom: 15px;
    display: block;
  }
}
