#shop {
  margin: 50px 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.categories {
  text-align: center;
  display: flex;
}
.shop {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.categories {
  padding: 5px 0;
  border-bottom: solid 1px red;
  margin: 10px 0;
}
.category {
  width: 200px;
  height: 200px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.category > img {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: white;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  z-index: -1;
}
.category > div {
  width: 70%;
  height: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--primary);
  color: white;
  padding: 14px 26px;
  border-radius: 5px;
  font-size: 14px;
  justify-content: center;
}
.category > div:hover {
  transition: all 0.2s ease-in-out;
  background-color: var(--secondary);
  transform: scale(1.05);
}
.category:hover > img {
  transition: all 0.2s ease-in-out;
  filter: blur(2px) grayscale(50%);
}
