.t888-shop-category-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.shop-cat-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background-color: #8f8c4e;
  color: #fff;
}

.shop-cat-card__content {
  position: relative;
  z-index: 3;
  padding: 56px 0 0 59px;
}

.shop-cat-card__title {
  margin: 0 0 6px;
  font-family: var(--font-family, Poppins, sans-serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.shop-cat-card__subtitle {
  margin: 0 0 18px;
  font-family: var(--font-family, Poppins, sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.shop-cat-card__btn {
  display: inline-block;
  padding: 10px 22px;
  background-color: #fff;
  color: #1a1a1a;
  font-family: var(--font-family, Poppins, sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.shop-cat-card__btn:hover {
  background-color: #1a1a1a;
  color: #fff;
}

.shop-cat-card__image {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.shop-cat-card__image img {
  display: block;
  width: 92%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
}

@media (max-width: 1024px) {
  .t888-shop-category-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .t888-shop-category-cards {
    grid-template-columns: 1fr;
  }
  .shop-cat-card {
    min-height: 380px;
  }
}
