@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

.main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.filters {
    gap: 10px;
    margin-bottom: 20px;
}
.filters > button {
    /* font-size: 17px; */
    padding: 12px;
    /* width: 101px; */
    border: none;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.filters > input, select {
    padding: 5px;
    width: 120px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: none;
    outline: none;
}

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

.product {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.product img {
    max-width: 300px;
    max-height: 300px;
    margin-bottom: 10px;
}

.filter-btn.active {
    background-color: #f14406;
    color: white;
}
.product {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px;
    text-align: center;
}
.product img {
    margin-bottom: 10px;
}