#shop-block {
  margin-top: 80px;
  padding: 80px 0;
  background-color: rgba(245, 157, 22, 0.03);
  background-image: url(images/shop-bg.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}

#shop-block .cats .products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

#shop-block .cats .products .item__link {
  position: relative;
  display: block;
  background: #F1F1F3;
  border-radius: 15px;
  padding-top: 45%;
  overflow: hidden;
  background: radial-gradient(222.22% 337.76% at 41.04% -37.04%, #F59D16 0%, #D96C19 100%);
}

#shop-block .cats .products .item__link:hover::before {
  opacity: 1;
}

#shop-block .cats .products .item__link::before {
  content: "";
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #376ac5;
  transition: opacity 0.3s ease-in;
}

#shop-block .cats .products .item__link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

#shop-block .cats .products .item__link-name {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 142%;
  color: #FFFFFF;
  text-align: center;
}

@media (max-width: 1000px) {
  #shop-block .cats .products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }
}

@media (max-width: 780px) {
  #shop-block {
    padding: 60px 0;
  }

  #shop-block .cats .products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  #shop-block {
    padding: 40px 0;
    margin-top: 20px;
  }

  #shop-block .cats .products {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  #shop-block .cats .products .item__link {
    padding-top: 0;
  }

  #shop-block .cats .products .item__link-name {
    position: relative;
    padding: 10px;
  }
}

/*# sourceMappingURL=block.css.map */