.sf-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.sf-category-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  padding: 16px;
  padding-bottom: 32px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.sf-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.sf-category-image-wrap {
  border-radius: 18px;
  overflow: hidden;
}

.sf-category-image-wrap img {
  width: 100%;
  height: 254px;
  object-fit: cover;
  display: block;
}

.sf-category-content {
  padding: 18px 4px 6px;
}

.sf-category-content h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 18px;
  color: #101828;
}

.sf-category-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 22px;

  background: #bd004a;
  color: #fff !important;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;

  text-decoration: none !important;

  transition: all 0.2s ease;
}

.sf-category-btn:hover {
  background: #a7004c;
  transform: translateY(-1px);
}

/* TABLET */
@media (max-width: 1024px) {
  .sf-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .sf-category-grid {
    grid-template-columns: 1fr;
  }

  .sf-category-image-wrap img {
    height: 220px;
  }
}
