
/* Остаток товара */
.product-item.out-of-stock {
  opacity: 0.5;
  filter: grayscale(30%);
  pointer-events: auto;
}
.product-item.out-of-stock .image img {
  filter: brightness(0.9);
}

/* Всё в корзине - неактивный вид, но кнопки активны */
.product-item.all-in-cart {
  opacity: 0.6;
  filter: grayscale(20%);
}
.product-item.all-in-cart .image img {
  filter: brightness(0.95);
}
.product-item.all-in-cart .cost-line,
.product-item.all-in-cart .button-active,
.product-item.all-in-cart .button-passive {
  opacity: 1;
  filter: none;
}
.stock-info {
  display: inline-block;
  margin: 8px 0;
  padding: 4px 10px;
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #2e7d32;
  text-align: left;
  float: left;
  clear: both;
}
.stock-info.low-stock {
  background: #fff3e0;
  border-color: #ffe0b2;
  color: #e65100;
}
.out-of-stock-label {
  display: inline-block;
  margin: 8px 0;
  padding: 4px 10px;
  background: #ffebee;
  border: 1px solid #ffcdd2;
  color: #c62828;
  font-weight: 600;
  font-size: 11px;
  border-radius: 4px;
}

/* Страница товара - нет в наличии */
.product-item.out-of-stock .item_photo img {
  filter: grayscale(50%) brightness(0.9);
}
.product-item.out-of-stock .information {
  opacity: 0.7;
}
.out-of-stock-banner {
  margin: 12px 0 16px 0;
}
.out-of-stock-banner .out-of-stock-label {
  padding: 10px 20px;
  font-size: 14px;
  background: #ffebee;
  border: 1px solid #ffcdd2;
  color: #c62828;
}

.products_heading {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 1em;
}
.products_heading img {
  position: relative;
  margin-right: 16px;
  padding: 0;
  width: 96px;
}
.products_heading h3 {
  position: relative;
  top: 0;
  width: 100%;
  margin: 0;
  text-align: left;
  font-weight: 900;
}
.products_heading a.button {
  display: none;
  background: #B8860B;
  border-radius: 999px;
  padding: 8px 24px;
  font-weight: 700;
  color: #fff;
}

.cat-anchor-nav {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  margin: 12px 0 20px;
}
.cat-anchor-nav.desktop-only {
  position: sticky;
  top: 110px;
  align-self: flex-start;
}
.cat-anchor-nav.mobile-only {
  position: sticky;
  top: 64px;
  padding: 8px 4px;
  background: transparent;
  z-index: 3;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  align-items: center;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cat-anchor-nav.mobile-only::-webkit-scrollbar { display: none; }
.cat-anchor-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.05);
  color: #111;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
  margin: 0;
  border: 1px solid #dcdcdc;
  box-shadow: none;
}
.cat-anchor-nav a.active {
  background: #000;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.category-section {
  margin-bottom: 32px;
  scroll-margin-top: 120px;
}

/* Подсветка пунктов бокового меню на десктопе */
.cat-anchor-desktop.active {
  font-weight: 700;
  color: #000 !important;
}

@media screen and (max-width: 1025px) {
  .cat-anchor-nav.desktop-only { display: none; }
  .cat-anchor-nav.mobile-only { width: 100%; }
}
@media screen and (min-width: 1026px) {
  .cat-anchor-nav.mobile-only { display: none; }
}

@media screen and (max-width: 1025px) {

.products_heading h2 {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
}

}



section.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
}
  section.banner .banner_image {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    filter: blur(1px);
  }
  section.banner .bg {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,.25);
    border-radius: 16px;
  }

  .banner_text {
    position: relative;
    z-index: 9;
    color: #fff;
    text-align: center;
  }
    .banner_text h1 {
      text-shadow: 0 3px 15px rgba(0,0,0,.35);
      font-weight: 700;
      font-size: 3em;
    }
    .banner_text h2 {
      text-shadow: 0 3px 15px rgba(0,0,0,.35);
      font-weight: 500;
      font-size: 1.5em;
    }

@media screen and (max-width: 1025px) {

  section.banner {
    display: none;
  }

}


































.filters {
  display: grid;
  grid-template-columns: 32px 2fr 2fr;
  grid-column-gap: 48px;
  grid-row-gap: 32px;
  align-items: center;
  margin-bottom: 0;
  background: #f5f5f5;
  border-radius: 16px;
  padding: 8px 0px;
  color: #000;
}
  .filters .filter_off {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin-right: 16px;

  }
    .filters .filter_off img {
      width: 32px;
      margin-left: 16px;
      background: #B8860B;
      border-radius: 999em;
    }
  .tags .tags_item {
    display: inline-block;
    cursor: pointer;
    margin: 8px 8px;
    border: 1px solid #000;
    border-radius: 160px;
    padding: 4px 16px;
    font-size: .85em;
    font-weight: ;
  }
  .tags .tags_item.active {
    background: red;
    border: 1px solid red;
    font-weight: 700;
    color: #fff;
  }
    .tags .tags_item.active span {
      position: relative;
      left: 0px;
      margin-left: 8px;
    }


@media screen and (max-width: 1025px) {
  .filters {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 8px;
    margin-bottom: 12px;
    padding: 12px 8px;
    text-align: center;
  }

    .filters .filter_off {
      display: none;
    }
    .filters .tags {

    }
      .tags .tags_item {
        display: inline-flex;
        height: 28px;
        align-items: center;
        margin: 4px 4px;
        border-radius: 160px;
        padding: 0px 12px;
        font-size: .65em;
      }

}



















.products {
  border-radius: 10px;
  text-align: center;
}

.products h1 {
  text-align: left;
}
.products h2 {
  margin: 1em 0;
  text-align: left;
  font-weight: 700;
}

.products a {
  color: #000;
}

.products .search {
  background: ;
}


.products .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-column-gap: 1.5em;
  grid-row-gap: 3em;
  margin-bottom: 32px;
  padding: 0;
  text-align: center;
}

.products .product-item {
  box-sizing: border-box;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  border-top: 0px solid #eee;
  padding: 0px;
  overflow: hidden;
  transition: .3s;
}

  .products .product-item .image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 265px;
    text-align: center;
    overflow: hidden !important;
  }
    .products .product-item .image img {
      position: relative;
      left: 0;
      top: 0px;
      display: block;
      width: 100%;
      height: 265px;
      margin: auto;
      overflow: hidden;
      object-fit: cover;
      object-position: center center;
      transition: .6s;
    }
    .products .product-item .image.stock img {
      position: relative;
      left: 0;
      top: 20px;
      display: block;
      width: 100%;
      height: 240px;
      overflow: hidden;
      object-fit: contain;
      object-position: center center;
      transition: .6s;
    }
    .products .product-item .image img.label {
      position: absolute;
      top: 0;
      left: 0px;
      display: none;
      width: 60%;
      height: auto;
    }

    .labels_group {
      display: block;
      text-align: left;
    }
      .labels_group .newlabel {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto;
        border: 0;
        border-radius: 4px;
        padding: 1px 4px;
        font-family: Montserrat;
        font-size: .75em;
        font-weight: 500;
      }
      .labels_group .newlabel.t1 { background: #efe53d; }
      .labels_group .newlabel.t2 { background: #609241; color: #fff; }


  .products .product-item .text {
    position: relative;
    padding: 12px 12px 0 12px;
  }



    .products .product-item .title {
      position: relative;
      height: 48px;
      text-align: ;
      margin: 0;
      margin-top: 12px;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      text-align: left;
      line-height: 1.0;
      font-size: 1.0em;
      font-weight: 700;
    }
    .products .product-item .desc {
      display: block;
      min-height: 56px;
      margin: 0px 0;
      text-align: left;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      line-height: 1.3;
      font-size: .85em;
      color: #777;
    }

   @media screen and (min-width: 1025px) {

    .products .product-item .weight select {
      position: relative;
      top: 0px;
      cursor: pointer;
      width: 100%;
      height: 32px;
      margin: 0px 0 0 0;
      background: transparent;
      border: 1px solid #aaa;
      border-radius: 4px;
      -webkit-appearance: none;
      background-image: url('../images/icons/ic_select.png');
      background-size: 16px 16px;
      background-position: right 10px center;
      background-repeat: no-repeat;
      padding: 0px 16px 0px 8px;
      font-weight: 400;
      color: #000;
    }
      .products .product-item .weight select option {
        color: #000;
      }

    .products .product-item .weight span {
      position: relative;
      top: 0px;
      display: flex;
      align-items: center;
      max-width: 100%;
      height: 32px;
      margin: 0px 0 0 0;
      background: transparent;
      border: 1px solid #aaa;
      border-radius: 4px;
      padding-left: 4px;
      font-weight: 400;
      color: #000;
    }
  }





    .products .product-item .cost-line {
      position: relative;
      display: grid;
      grid-template-columns: 11fr 1fr;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 64px;
    }

    .products .product-item .oldcost {
      position: ;
      left: 0;
      margin: 0;
      line-height: 1;
      text-align: left;
      text-decoration: line-through;
      font-size: ;
      font-weight: 500;
      color: #aaa;
    }
    .products .product-item .cost {
      position: relative;
      display: inline-block;
      margin: 0;
      line-height: 1;
      text-align: left;
      font-size: 1.1em;
      font-weight: 900;
    }

.products .hide {
  display: none !important;
}




@media screen and (max-width: 1480px) {

  .products .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-column-gap: 1em;
    grid-row-gap: 3em;
    margin-bottom: 32px;
    padding: 0;
    text-align: center;
  }

  .products .product-item {
    box-sizing: border-box;
    border-radius: 16px;
    padding: 0px;
    overflow: hidden;
    transition: .3s;
  }

    .products .product-item .image {
      height: 245px;
    }
      .products .product-item .image img {
        height: 245px;
      }


}

@media screen and (max-width: 1280px) {

    .products .product-item .image {
      height: 320px;
    }
      .products .product-item .image img {
        height: 330px;
      }

}


@media screen and (max-width: 1025px) {

  .products .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-row-gap: 24px;
  }

    .products .product-item {
      display: grid;
      grid-template-columns: 144px 1fr;
      grid-column-gap: 8px;
      align-items: start;
      margin: 0;
      box-shadow: var(--shadow);
      padding: 12px;
      border: 0;
      border-radius: 8px;
    }
    .products .product-item:hover {
      border: 0;
    }

    .products .product-item .image {
      position: relative;
      display: flex;
      align-items: start;
      width: 100%;
      height: 165px;
      overflow: hidden;
    }
      .products .product-item .image img {
        top: -0px;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contсain;
        object-position: center;

        border-radius: 0;
        transition: .6s;
      }
      .products .product-item .image img.label {
        position: absolute;
        top: 0;
        left: 0px;
        width: 100%;
        height: auto;
      }

      .sp {

      }

    .products .product-item .text {
      padding: 0;
    }

      .products .product-item .title {
        height: auto;
        margin-bottom: 8px;
        text-align: left;
        font-size: 16px;
        font-weight: 700;
      }

      .products .product-item .desc {
        display: none;
        min-height: auto;
        line-height: 1.3;
        -webkit-line-clamp: 3;
        font-size: 12px;
      }


      .products .product-item .weight select {
        width: 100%;
        height: 36px;
        margin: 4px 0 0 0;
        background: #f5f5f5;
        border: 1px solid #aaa;
        border-radius: 4px;
        -webkit-appearance: none;
        background-image: url('../images/icons/ic_select.png');
        background-size: 16px 16px;
        background-position: right 10px center;
        background-repeat: no-repeat;
        padding: 0px 16px 0px 6px;
        font-weight: 400;
        color: #000;
      }


      .products .product-item .weight span {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: auto;
        height: 36px;
        margin: 4px 0;
        background: #f5f5f5;
        border: 0px solid rgba(0,0,0,.1);
        border-radius: 4px;
        padding: 0 4px;
      }




    .products .product-item .cost-line {
      margin: 0;
    }
      .products .product-item .cost {
        font-size: 16px;
        font-weight: 700;
      }


}













@media screen and (max-width: 480px) {

  .products .products-grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;


    grid-template-columns: 1fr 1fr;
    /*grid-template-columns: repeat(2, auto);*/
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }
    .products .product-item {
      grid-template-columns: 1fr;
      grid-template-rows: ;
      padding: 0px;

      display: block;
      width: calc(50% - 8px);
    }
    .products .product-item.special {
      width: 100%;
      background: #eee6e4;
      border: 0px solid #000;
    }


      .products .product-item .image {
        height: 180px;
      }
      .products .product-item.special {
        padding: 12px 0 0 0;
      }
        .products .product-item .image img {

        }
        .products .product-item.special .image img {
          box-sizing: border-box;
          max-height: 180px;
          border-radius: 12px;
          /*border: 4px solid #B8860B;*/
        }

        .products .product-item .image img.label {
          position: absolute;
          top: 0;
          left: 0px;
          width: 60%;
          height: auto;
        }


        .labels_group {
          text-align: left;
        }
          .labels_group .newlabel {
            font-size: .5em;
          }
          .labels_group .newlabel.t1 { background: #efe53d; }
          .labels_group .newlabel.t2 { background: #609241; color: #fff; }



      .products .product-item .text {
        position: relative;
        padding: 8px;
      }



        .products .product-item .title {
          position: relative;
          height: 36px;
          text-align: ;
          margin: 0;
          margin-top: 8px;
          overflow: hidden;
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          line-height: 1.2;
          font-size: .95em;
          font-weight: 700;
        }
        .products .product-item.special .title {
          height: auto;
          -webkit-line-clamp: 1;
        }

        .products .product-item .desc {
          display: block;
          min-height: 0px;
          margin: 0px 0;
          text-align: left;
          overflow: hidden;
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-line-clamp: 3;
          -webkit-box-orient: vertical;
          line-height: 1.3;
          font-size: .85em;
          color: #777;
        }

        .products .product-item .weight select {
          position: relative;
          top: 0px;
          cursor: pointer;
          width: 100%;
          height: 32px;
          margin: 8px 0 0 0;
          background: transparent;
          border: 1px solid #aaa;
          border-radius: 4px;
          -webkit-appearance: none;
          background-image: url('../images/icons/ic_select.png');
          background-size: 16px 16px;
          background-position: right 10px center;
          background-repeat: no-repeat;
          padding: 0px 16px 0px 8px;
          font-weight: 400;
          color: #000;
        }
          .products .product-item .weight select option {
            color: #000;
          }

        .products .product-item .weight span {
          position: relative;
          top: 0px;
          display: flex;
          align-items: center;
          max-width: 100%;
          height: 32px;
          margin: 8px 0 0 0;
          background: transparent;
          border: 1px solid #ddd;
          border-radius: 4px;
          padding-left: 4px;
          font-weight: 400;
          color: #000;
        }




        .products .product-item .cost-line {
          position: relative;
          display: grid;
          grid-template-columns: 1fr;
          justify-content: center;
          align-items: center;
          width: 100%;
          height: 64px;
          margin-top: 6px;
        }
        .products .product-item.special .cost-line {
          grid-template-columns: 1fr 1fr;
          height: 48px;
        }

        .products .product-item .oldcost {
          position: ;
          left: 0;
          margin: 0;
          line-height: 1;
          text-align: left;
          text-decoration: line-through;
          font-size: ;
          font-weight: 500;
          color: #aaa;
        }
        .products .product-item .cost {
          position: relative;
          display: inline-block;
          margin: 0;
          margin-bottom: 0px;
          line-height: 1;
          text-align: left;
          font-size: 1.0em;
          font-weight: 900;
        }




      .button-active .updateCart, .button-active .updateCart_fake {
        width: 32px;
        height: 32px;
      }

      .button-passive .addToCart, a.addToCart_a {
        width: 100% !important;
        height: 32px;
        border-radius: 6px !important;
      }

        .products .product-item .button-passive .addToCart {
          width: 112px;
          height: 29px;
        }

        .button-active .updateCart.minus span, .button-active .updateCart_fake.minus span {
          position: relative;
          top: 0px;
        }
        .button-active .updateCart.plus span, .button-active .updateCart_fake.plus span {
          position: relative;
          top: 3px;
        }

        .products .product-item .button-active .updateCart {
          min-width: 32px;
          height: 32px;
        }

          .products .product-item .button-active .kolvo {
            width: 100% !important;
          }



}














@media screen and (max-width: 330px) {

  .products .products-grid {
    grid-row-gap: 8px;
  }
    .products .product-item {
      grid-template-columns: 104px 1fr;
      grid-template-rows: ;
    }
    .products .product-item .desc {
      -webkit-line-clamp: 2;
    }
}






























/* Вёрстка новостей/акций */
.stock .stock-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  grid-column-gap: 16px;
  grid-row-gap: 32px;
  margin-bottom: 32px;
  padding: 0;
  text-align: center;
}

.stock .stock-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-column-gap: 16px;
  align-items: center;
  justify-content: center;
}

  .stock .stock-item .image {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
  }
    .stock .stock-item .image img {
      position: relative;
      left: 0;
      top: 0px;
      display: block;
      width: 100%;
      max-height: 320px;
      overflow: hidden;
      object-fit: cover;
      object-position: center center;
      transition: .6s;
    }


  .stock .stock-item .text {
    padding: 0 8px;
  }

    .stock .stock-item .title {
      display: block;
      text-align: left;
      margin: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      font-size: 1.8em;
      font-weight: 900;
    }
    .stock .stock-item .desc + p {
      display: block;
      margin: 0;
      text-align: left;
      color: #777;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }

.stock .hide {
  display: none !important;
}


@media screen and (max-width: 1025px) {
  .stock h1 {
    text-align: ;
    font-size: 1.5em;
    font-weight: 700;
  }

  .stock .stock-item {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 16px;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }

    .stock .stock-item .image {
      top: 0;
      display: block;
      width: 100%;
      height: auto;
      position: relative;
      text-align: center;
      overflow: hidden;
    }
      .stock .stock-item .image img {
        top: 0;
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center center;
        transition: .6s;
      }


      .stock .stock-item .title {
        padding-top: 12px;
        font-size: 16px;
        font-weight: 900;
      }
      .stock .stock-item .desc {
        margin: 4px 0 0 0;
        line-height: 1.3 !important;
        font-size: 12px;
      }
}
/*---*/
































/* Вёрстка новостей/акций */
.news .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  grid-column-gap: 16px;
  grid-row-gap: 32px;
  margin-bottom: 32px;
  padding: 0;
  text-align: center;
}

.news .news-item {
  display: grid;
  grid-template-columns: auto 1.5fr;
  grid-column-gap: 16px;
  align-items: center;
  justify-content: center;
}

  .news .news-item .image {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
  }
    .news .news-item .image img {
      position: relative;
      left: 0;
      top: 0px;
      display: block;
      width: 100%;
      max-height: 320px;
      overflow: hidden;
      object-fit: contain;
      object-position: center center;
      transition: .6s;
    }


  .news .news-item .text {
    padding: 0 8px;
  }

    .news .news-item .title {
      display: block;
      text-align: left;
      margin: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      font-size: 1.8em;
      font-weight: 900;
    }
    .news .news-item .title:hover {
      color: #ff0000;
    }

    .news .news-item .desc + p {
      display: block;
      margin: 0;
      text-align: left;
      color: #777;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }

.news .hide {
  display: none !important;
}


@media screen and (max-width: 1025px) {

  .news .news-item {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 16px;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: #f3f3f3;
    border-radius: 12px;
    padding: 0 0 12px 0;
  }

    .news .news-item .image {

    }
      .news .news-item .image img {

      }


    .news .news-item .text {
      
    }

      .news .news-item .title {
        padding-top: 12px;
        font-size: 16px;
        font-weight: 900;
      }
      .news .news-item .desc {
        margin: 4px 0 0 0;
        line-height: 1.3 !important;
        font-size: 12px;
      }
}
/*---*/






































/* Кнопки */
.button-passive,
.button-active {
  display: flex;
  align-items: center;
}



.button-passive .addToCart, a.addToCart_a {
  cursor: pointer;
  -webkit-user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 33px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #B8860B;
  padding: 0;
  padding-top: 3px;
  font-size: .9em;
  font-weight: 700;
  color: #fff;
}

.button-active .updateCart, .button-active .updateCart_fake {
  cursor: pointer;
  -webkit-user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #B8860B;
  padding: 0;
  font-size: 1.5em;
  font-weight: 500;
  color: #fff;
}
  .button-active .updateCart.minus span, .button-active .updateCart_fake.minus span {
    position: relative;
    top: 0px;
    font-size: 1.0em;
  }
  .button-active .updateCart.plus span, .button-active .updateCart_fake.plus span {
    position: relative;
    top: 2px;
    font-size: 1.0em;
  }

  .button-active .kolvo {
    position: relative;
    top: 2px;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    text-align: center;
    font-size: 1.2em;
    font-weight: 500 !important;
    color: #000;
  }

@media screen and (max-width: 1025px) {

  .button-active .updateCart, .button-active .updateCart_fake {
    width: 32px;
    height: 32px;
  }

  .button-passive .addToCart, a.addToCart_a {
    width: 112px;
    height: 32px;
  }

    .products .product-item .button-passive .addToCart {
      width: 112px;
      height: 29px;
    }

    .button-active .updateCart.minus span, .button-active .updateCart_fake.minus span {
      position: relative;
      top: 0px;
    }
    .button-active .updateCart.plus span, .button-active .updateCart_fake.plus span {
      position: relative;
      top: 3px;
    }

    .products .product-item .button-active .updateCart {
      width: 32px;
      height: 32px;
    }

      .products .product-item .button-active .kolvo {
        width: 48px;
      }
}

/* */




