.product {
  display: block;
  background: #020617;
  padding: 30px;
  border-radius: 14px;
  margin-top: 20px;
  color: #e5e7eb;
  text-decoration: none;
  position: relative;
  transition: 0.2s;
}

.product:hover {
  transform: translateY(-3px);
}

/* PASİF ÜRÜN */
.product.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none; /* 🔴 TIKLAMAYI KAPATIR */
}

/* Pasifken hover animasyonu iptal */
.product.disabled:hover {
  transform: none;
}

/* YAKINDA ETİKETİ */
.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #facc15;
  color: #1f2937;
  padding: 6px 10px;
  font-size: 0.8rem;
  border-radius: 6px;
  font-weight: bold;

  /* 👇 BAŞTA GÖRÜNMEZ */
  opacity: 0;
  transform: scale(0.9);
  transition: 0.2s ease;
}

/* 👇 SADECE PASİF ÜRÜNDE HOVER OLUNCA GÖSTER */
.product.disabled:hover .badge {
  opacity: 1;
  transform: scale(1);
}
