body {
    margin: 0;
    padding: 0;
    background: #e5e3d2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
}

.urunler-container {
    max-width: 700px;
    margin: 120px auto;
    padding: 24px;
    background: #e5e3d2;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(11, 11, 11, 0.08);
    text-align: center;
} 

.urunler-container h1 {
    color: #D4AF37;
    margin-bottom: 32px;
    font-size: 2.2rem;
    letter-spacing: 1px;
}

.kategori-listesi {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.kategori-kart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 70px;
    background: #e5e3d2;
    border: 2px solid #D4AF37;
    border-radius: 12px;
    color: #D4AF37;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.kategori-kart:hover {
    background: #D4AF37;
    color: #ffffff;
}

@media (max-width: 800px) {
    .kategori-kart {
        width: 45vw;
        min-width: 120px;
    }
}

@media (max-width: 500px) {
    .urunler-container {
        padding: 8px;
    }
    .kategori-listesi {
        gap: 10px;
    }
    .kategori-kart {
        font-size: 1rem;
        height: 54px;
    }
} 