.hit-product * {
  box-sizing: border-box;
}

.hit-product__wrap {
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
}

.hit-product .catalog-item {
  height: auto;
}

.hit-product .catalog-item-img {
  height: 230px;
  padding: 15px;
}

.hit-product .catalog-item-fast {
  bottom: 50%;
  transform: translateY(50%);
  background-color: rgba(255, 255, 255, 0.5);
}

.hit-product__navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hit-product__navigation-next,
.hit-product__navigation-prev {
  cursor: pointer;
  position: absolute;
  width: 40px;
  height: 100%;
  top: 0;
}

.hit-product__navigation-next::before,
.hit-product__navigation-prev::before {
  content: "";
  position: absolute;
  border: solid #a6a6a6;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
}

.hit-product__navigation-next:hover::before,
.hit-product__navigation-prev:hover::before {
  border-color: #535252;
}

.hit-product__navigation-next {
  right: 0;
}

.hit-product__navigation-next::before {
  transform: rotate(-45deg);
  right: 5px;
  top: 50%;
}

.hit-product__navigation-prev {
  left: 0;
}

.hit-product__navigation-prev::before {
  transform: rotate(135deg);
  left: 5px;
  top: 50%;
}

.hit-product .a-btn,
.hit-product a.a-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.hit-product a.catalog-item-title__text {
  font-size: 14px;
  line-height: 175%;
  padding-bottom: 15px;
  color: #535252;
  text-decoration: none;
  transition: color .3s ease;
}

.hit-product .catalog-item {
  box-shadow: inset 0 0 0 1px #efefef;
}

.hit-product .catalog-item:hover {
  box-shadow: inset 0 0 0 1px #dededf;
}

.hit-product .catalog-item:hover a.catalog-item-title__text {
  color: #c98c5f;
  text-decoration: none;
}

.hit-product .catalog-item-img-bottom {
  top: 35px;
  bottom: initial;
}

.hit-product .catalog-item-title {
  padding: 0 30px 20px;
}

.hit-product .catalog-item-properties {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hit-product .catalog-item-price {
  display: flex;
  flex-direction: column-reverse;
  font-weight: 500;
}

.hit-product .catalog-item-fasovka {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: #656669;
  padding: 0 30px 15px;
}
.catalog-item-img__place {
  overflow: hidden;
  position: relative;
}
@media (min-width: 1025px) {
  .catalog-item-img__place::before {
    position: absolute;
    top: 0;
    left: -55%;
    z-index: 2;
    display: block;
    content: "";
    width: 25%;
    height: 100%;
    opacity: 0;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
  }

  .hit-product .catalog-item:hover .catalog-item-img__place::before {
    -webkit-animation: shine .5s;
    animation: shine .5s;
    opacity: 1;
  }
}

@media (max-width: 450px) {
  .hit-product__navigation {
    display: none;
  }

  .hit-product__wrap {
    padding-left: 0;
    padding-right: 0;
  }
}