.hotmaincategory-wrapper {
  position: relative;    
  width: 100%;
}

.hotmaincategory-viewport {
  overflow: hidden;
  width: 100%;
}

.hotmaincategory-track {
  display: flex;
  gap: 12px;
  transition: transform 0.3s ease;
}

.hotmaincategory-item {
  position: relative;
  min-width: calc(100% / 6 - 10px);
  height: 120px;
  background: #F4F4F4;
  border-radius: 12px;
  padding: 12px;
  box-sizing: border-box;
  font-family: "Myriad Pro", Arial, sans-serif;
  font-weight: bold;
}

.hotmaincategory-item {
  transition: background-color 0.2s ease;
}

.hotmaincategory-item:hover {
  background-color: #ededed;
}

.hotmaincategory-title {
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
  max-width: 80%;
}

/* контроль размера шрифта */
@media (max-width: 1090px) {
  .hotmaincategory-title {
    font-size: 15px;
    line-height: 1.2;
  }
}

/* контроль размера шрифта */
@media (max-width: 1005px) {
  .hotmaincategory-title {
    font-size: 14px;
    line-height: 1.2;
  }
}

.hotmaincategory-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.hotmaincategory-image {
  position: absolute;
  right: 12px;
  bottom: 4px;
  height: 78px;        /* ТОЛЬКО ВЫСОТА */
  pointer-events: none;
}

.hotmaincategory-image img {
  height: 95%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* убирает перетаскивание картинки */
.hotmaincategory-image img {
  user-drag: none;
  -webkit-user-drag: none;
}

/* кнопки */
.hotmaincategory-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 36px;
  height: 36px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.hotmaincategory-nav {
  transition:
    transform 0.1s ease,
    box-shadow 0.1s ease;
}

/* hover */
.hotmaincategory-nav:hover {
  transform: translateY(-50%) scale(1.01);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hotmaincategory-prev {
  left: -22px;   /* заезжает на карточку */
  background-image: url("images/sl1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.hotmaincategory-next {
  right: -22px;  /* заезжает на карточку */
  background-image: url("images/sl2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

/* убираем текст < > */
.hotmaincategory-nav {
  color: transparent;
}

/* адаптив */
@media (max-width: 960px) {
  .hotmaincategory-wrapper {
    flex-direction: column;
    gap: 0;
  }

  .hotmaincategory-nav {
    display: none;
  }

  .hotmaincategory-viewport {
    overflow: visible;
  }

  .hotmaincategory-track {
    flex-wrap: wrap;
    transform: none !important;
  }

  .hotmaincategory-item {
    min-width: calc(33.333% - 8px);
    margin-bottom: 12px;
  }

  .hotmaincategory-item:nth-child(n+7) {
    display: none;
  }
    
  .hotmaincategory-image {
    height: 100px;        /* MOBILE */
    right: 20px;
    bottom: 5px;
  }
  .hotmaincategory-title {
    font-size: 16px;
    line-height: 1.2;
  }
}

/* контроль заголовка */
@media (max-width: 727px) {
  .hotmaincategory-title {
    font-size: 14px;
    line-height: 1.2;
  }
}

/* контроль изображения и заголовка */
@media (max-width: 680px) {
  .hotmaincategory-image {
    height: 80px;        /* MOBILE */
    right: 10px;
    bottom: 5px;
  }
  .hotmaincategory-title {
    font-size: 14px;
    line-height: 1.2;
  }
}

@media (max-width: 494px) {
    
  .hotmaincategory-item {
    min-width: calc(50% - 8px); /* 2 блока в строке */
  }

  .hotmaincategory-item:nth-child(n+7) {
    display: none; /* по-прежнему только 6 блоков */
  }

}