body {
    font-family: system-ui, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #fcfcfc;
    color: #333;
}
.container {
    max-width: 1000px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 768px) {
    .container { grid-template-columns: 1fr 1fr; align-items: center; }
}

.image-wrapper {
    max-width: 400px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.product-image {
    width: 100%;
    height: 100%;
    background-color: #eaeaea;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    color: #888;
}
.price {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 15px 0;
}