/* ===============================
   HOME CATEGORY SECTION
=============================== */

.home-cat{
  padding: 80px 40px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f6f1f8 35%,
    #7a4a8c 100%
  );
  text-align: center;
}

.home-cat-title{
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1a1a1a;
}

/* ===============================
   GRID
=============================== */

.home-cat-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

/* ===============================
   CARD
=============================== */

.home-cat-card{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 3 / 4.2;
  text-decoration: none;
  display: block;
}

.home-cat-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

/* Hover zoom */
.home-cat-card:hover img{
  transform: scale(1.08);
}

/* ===============================
   OVERLAY
=============================== */

.home-cat-text{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 32px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.55),
    rgba(0,0,0,0)
  );
}

.home-cat-text h3{
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 18px;
}

/* ===============================
   BUTTON (İSTEĞE BAĞLI)
   – HTML'de yok ama hazır
=============================== */

.home-cat-text::after{
  content: "Hızlı Alışveriş";
  display: inline-block;
  padding: 10px 26px;
  border: 1.5px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  transition: all .3s ease;
}

.home-cat-card:hover .home-cat-text::after{
  background: #ffffff;
  color: #2d0147;
}

/* ===============================
   RESPONSIVE
=============================== */

@media(max-width: 992px){
  .home-cat-grid{
    grid-template-columns: 1fr;
  }

  .home-cat-title{
    font-size: 36px;
  }
}
.home-cat-title{
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
}
.home-cat-text h3{
  font-family: inherit;     /* banner fontu neyse aynısı */
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
