* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7f4;
}

.sayfa {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.baslik-alani {
  text-align: center;
  margin-bottom: 40px;
}

.arama-kutusu {
  display: block;
  margin: 10px auto;
  padding: 12px;
  width: 300px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.konum-buton {
  margin-top: 10px;
  padding: 10px 16px;
  border: none;
  background: #16a34a;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

#meyve-listesi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.meyve-kart {
  background: white;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  position: relative;
}

.meyve-emoji, .meyve-resim-konteynir {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}

.meyve-emoji {
  font-size: 60px;
}

.meyve-resim {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.meyve-kart:hover .meyve-resim {
  transform: scale(1.1);
}

.kart-aciklama {
  font-size: 14px;
  margin-bottom: 10px;
}

.mini-bilgi {
  background: #ecfdf5;
  padding: 8px;
  border-radius: 8px;
  margin-top: 8px;
  font-size: 13px;
}

.detay-buton {
  display: block;
  margin-top: 10px;
  text-align: center;
  background: #166534;
  color: white;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
}

.onerilen-en-iyi {
  border: 2px solid #22c55e;
}

.onerilen-en-iyi::before {
  content: "⭐ En Uygun";
  position: absolute;
  top: -10px;
  left: 10px;
  background: #22c55e;
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
}

.onerilen-kart {
  background: #ecfdf5;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.gizli {
  display: none;
}

.risk-kutusu {
  background: #fff7ed;
  border: 1px solid #fdba74;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 24px;
}

.risk-kutusu h3 {
  margin: 0 0 10px;
  color: #c2410c;
}

.risk-kutusu ul {
  margin: 0;
  padding-left: 20px;
}

.risk-kutusu li {
  margin-bottom: 8px;
  color: #7c2d12;
}