.container {
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.hero {
    text-align: center;
    padding: 20px 0;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
}

.search-form input[type="text"],
.search-form button {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.categories {
    padding: 20px 0;
    text-align: center;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0 10px;
}

.category-item {
    background-color: #f0f0f0;
    padding: 10px 20px;
    border-radius: 8px;
    white-space: nowrap;
    flex: 1 1 auto;
    min-width: 100px;
    max-width: 150px;
    text-align: center;
}

/* Mobil özel ayarlar */
@media screen and (max-width: 600px) {
    .category-list {
        flex-direction: column;
        align-items: center;
    }

    .category-item {
        width: 80%;
        max-width: 300px;
    }
}
