body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

/* ÜRÜNLER */
.urunler {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.urun {
  background: white;
  width: 260px;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

/* GÖZLÜK RESMİ */
.urun img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* ETİKET */
.etiket {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #e91e63;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
}

/* FİYAT */
.fiyat {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

/* BUTON */
.btn {
  background-color: #111;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.btn:hover {
  background-color: #e91e63;
}/* ÜST KISIM (HEADER) */
header {
  background-color: #111;
  color: white;
  padding: 20px;
  text-align: center;
}

/* LOGO */
header h1 {
  margin: 0;
  font-size: 28px;
}

/* MENÜ */
nav {
  margin-top: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}/* KATEGORİLER BAŞLIĞI */
.kategoriler h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
}

/* KATEGORİ BUTONLARI */
.kategori-listesi {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.kategori {
  background-color: #111;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
}

.kategori:hover {
  background-color: #e91e63;
}

/* ÖNE ÇIKAN KATEGORİLER BAŞLIĞI */
h2 {
  text-align: center;
  margin: 40px 0 20px;
}