body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 20px;
    background: #4CAF50;
    color: white;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px;
}

select, input {
    padding: 10px;
    width: 200px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.section-title {
    text-align: center;
}

.shop-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    grid-gap: 15px;
    padding: 20px;
}

.shop-card {
    background: white;
    padding: 15px;
    border-radius: 7px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.shop-card h3 {
    margin: 0 0 5px;
    color: #333;
}

.shop-card p {
    margin: 4px 0;
}
