body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

header {
    background-color: #111;
    color: white;
    padding: 20px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 12px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    background-color: #000;
    color: white;
    padding: 40px;
    text-align: center;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

.urunler {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.urun {
    background: white;
    padding: 15px;
    width: 300px;
}
text-align: center;

.urun img {
    width: 100%;
    border-radius: 8px;
}

footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 10px;
}
.kategoriler {
    text-align: center;
}

.kategori-listesi {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.kategori {
    background-color: #111;
    color: white;
    padding: 20px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
}

.kategori:hover {
    background-color: #e91e63;
}
.btn {
    background-color: #111;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.btn:hover {
    background-color: #e91e63;
}
.urun {
    position: relative; /* etiket için gerekli */
}

.etiket {
    position: relative;
    top: 10px;
    left: 10px;
    background-color: #e91e63;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
}
.fiyat {
    font-size: 18px;
    font-weight: bold;
    color: #111;
    margin: 10px 0;
}
  .fiyat {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.indirim-yuzde {
    background-color: #ff5722;
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: bold;
}

.eski-fiyat {
    text-decoration: line-through;
    color: #999;
}

.yeni-fiyat {
    color: #e91e63;
    font-weight: bold;
    font-size: 18px;
}

.urun {
    position: relative;
    text-align: center;
}

.fiyat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.urun img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.etiket {
    position: absolute;
    top: 10px;
    left: 10px;
}