body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
}
img{
    height: 200px;
}

nav a {
    margin: 0 1rem;
    color: #fff;
    text-decoration: none;
}

main {
    flex: 1;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.category {
    margin-top: 2rem;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
}


.product {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: calc(33% - 2rem);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    padding-bottom: 1rem;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.product:hover img {
    transform: scale(1.1);
}

.product a, .product button {
    display: block;
    margin: 0 1rem 1rem 1rem;
    padding: 0.75rem 1rem;
    text-align: center;
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
}
.product a:hover, .product button:hover {
    background-color: #555;
}
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .product {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .product {
        width: 100%;
    }
}
