body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.product {
    width: 300px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product:hover .product-image {
    transform: scale(1.1);
}

.product:hover {
    transform: translateY(-5px);
}
