body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
header h2 {
    font-size: 2.5rem;
    color: #333;
}
header p {
    font-size: 1rem;
    color: #777;
}
.filters-button {
    display: none;
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.3s;
}
.filters-button:hover {
    border-color: #888;
}
.filters {
    display: none;
    margin-top: 20px;
}
.filters label {
    display: block;
    font-size: 0.9rem;
    color: #555;
}
.filters select, .filters input[type="number"] {
    width: 100%;
    padding: 5px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.filters details {
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}
.filters summary {
    padding: 10px;
    background-color: #f9f9f9;
    cursor: pointer;
}
.filters summary:hover {
    background-color: #eee;
}
.filters ul {
    padding: 10px;
    list-style: none;
    background-color: #fff;
}
.filters ul li {
    margin-bottom: 5px;
}
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.product-card h3 {
    margin: 10px;
    font-size: 1rem;
    color: #333;
}
.product-card p {
    margin: 10px;
    font-size: 1.2rem;
    color: #000;
}
@media (max-width: 768px) {
    .filters-button {
        display: block;
    }
    .filters {
        display: none;
    }
}
@media (min-width: 769px) {
    .filters {
        display: block;
    }
}