.block-categories {
  margin-bottom: 60px;
}
.block-categories .block-title-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.block-categories .block-title-wrapper .block-title {
  margin-bottom: 0px;
  padding-right: 15px;
}
.block-categories .block-title-wrapper .go-to-catalog {
  display: flex;
  align-items: center;
  margin-left: auto;
  font-weight: 700;
  line-height: 140%;
  color: #DA6A00;
  transition: opacity 0.3s ease;
}
.block-categories .block-title-wrapper .go-to-catalog:hover {
  opacity: 0.7;
}
.block-categories .block-title-wrapper .go-to-catalog .arrow {
  min-width: 18px;
  width: 18px;
  height: 18px;
}
.block-categories .block-title-wrapper .go-to-catalog .arrow svg {
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.block-categories .block-categories-grid .products {
  margin: 0px;
  padding-left: 0px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

@media (max-width: 991px) {
  .block-categories {
    margin-bottom: 40px;
  }
  .block-categories .block-categories-grid .products {
    grid-gap: 15px;
  }
}
@media (max-width: 767px) {
  .block-categories .block-categories-grid .products {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .block-categories .block-categories-grid .products li.product-category {
    min-width: 200px;
  }
}
@media (max-width: 480px) {
  .block-categories .block-title-wrapper {
    flex-direction: column;
    align-items: normal;
  }
  .block-categories .block-title-wrapper .block-title {
    padding-right: 0px;
    margin-bottom: 10px;
  }
  .block-categories .block-title-wrapper .go-to-catalog {
    margin-left: 0px;
  }
}