body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    }

.product-container {
	width: 100%;
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
}

.product {
    width: 48%;
    background-color: #43c72314;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
	flex-direction: column;
    align-items: center;
}

.product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 4px;
}

@media (max-width: 600px) {
    .product-container {
        flex-direction: column;
    }

	.product {
		width: 100%;
    }
}