@charset "UTF-8";

.perfume-cat {
  margin: 40px auto 20px;
}

.perfume-cat__heading {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: inherit;
  text-align: center;
}

.perfume-cat__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.perfume-cat__link {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s ease;
  max-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.perfume-cat__link:hover {
  opacity: 0.7;
}

.perfume-cat__img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  width: 100%;
  height: auto;
  display: block;
}

.perfume-cat__text {
  position: absolute;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;
}

.perfume-cat__title {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .perfume-cat__heading {
    font-size: 1.6rem;
  }

  .perfume-cat__grid {
    padding: 0 2%;
  }

  .perfume-cat__title {
    font-size: 1.2rem;
  }
}
