/* Блок с популярными товарами */
.category-popular {
    height: 142px;
    max-width: 100%;
    background: var(--color-bg-box);
    border-radius: 12px;
    padding: 5px;
    border: 1px solid #F6F6F6;
    box-shadow: var(--box-shadow-externa);
    margin-bottom: 25px;
    overflow: hidden;
  }
  
  span.catalog-popular-title {
    display: flex;
    font-weight: 700;
    font-size: 17px;
    text-align: center;
    color: #000000;
    margin-bottom: 7px;
    align-items: center;
    justify-content: center;
}
  
  .category-popular-body {
    height: 119px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: none;
    background-position: right center;
    text-decoration: none;
    box-shadow: var(--box-shadow-interna);
    background: var(--color-bg-box-secondary);
    border-color: transparent;
    align-items: flex-start;
    align-content: center;
    justify-content: flex-start;
    overflow: hidden;
  }
  
  .category-popular-punkt {
    width: 219px;
    height: 109px;
    font-weight: 700;
    position: relative;
  }
  
  .category-popular-punkt a {
    height: auto;
    display: flex;
    line-height: initial;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: var(--box-shadow-interna);
    background-color: var(--color-bg-box-secondary-1);
    flex-wrap: wrap;
    margin: 2px;
  }
  .category-popular-punkt a img {
    height: 105px;
    width: 100%;
    display: flex;
    line-height: initial;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: var(--box-shadow-externa);
    flex-wrap: wrap;
  }

  .category-popular-punkt.slick-slide {
    margin: 5px;
    min-height: 109px;
}
.category-popular-punkt.slick-slide:hover {
  transform: scale(1.05);
  transition: transform 0.3s;
}
.sel-cat-title {
  position: absolute;
  bottom: 5px;
  left: 5px;
  right: 5px;
  line-height: 15px;
  padding: 5px 5px 0px 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1ch;
  color: white;
  text-shadow: 0 1px 3px rgb(0 0 0 / 50%);
  text-transform: uppercase;
  z-index: 1;
}
  
  /* Блок с популярными товарами конец */




.category-popular-body .slick-arrow {
  position: absolute;
  top: 30%;
  font-size: 0;
  width: 39px;
  height: 39px;
  color: rgb(239, 248, 253);
  text-align: center;
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
  background: linear-gradient(180deg, #cfb26194 0%, #ff9a38a6 100%);
  border: 0.5px solid #00000000;
}

.category-popular-body .slick-arrow:hover {
  background: linear-gradient(180deg, #d9b44e 0%, #ff8b1a 100%);
  box-shadow: 0px 4px 12px #bca21a52;
}

.category-popular-body .slick-arrow.slick-next {
    right: 5px;
    border-radius: 20px 30px 30px 20px;
}

.category-popular-body .slick-arrow.slick-prev {
  left: 5px;
  z-index: 1;
  border-radius: 30px 20px 20px 30px;
}
.category-popular-body .slick-prev:before {
  background: transparent url("/static/icon-pages/arrow-left-solid.cb5bb5fbba3b.svg") no-repeat scroll 0 0;
  content: "";
  width: 60%;
  height: 60%;
  position: absolute;
  top: 17%;
  padding: 0;
  right: 5px;
  background-size: cover;
}

.category-popular-body .slick-next:before {
  background: transparent url("/static/icon-pages/arrow-right-solid.41690966244c.svg") no-repeat scroll 0 0;
  content: "";
  width: 60%;
  height: 60%;
  position: absolute;
  top: 17%;
  padding: 0;
  left: 5px;
  background-size: cover;
}
.gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0), rgb(14 14 14) 100%);
    border-radius: 8px;
}