/* These are basic styles for the demo site only.
Not to be carrried over to production */

body {
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeSpeed;
}

#page {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 0.5rem;
}

.product {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 20rem;
    width: 100%;
}

@media (max-width: 992px) {
    .product {
        grid-template-columns: repeat(1, 1fr);
    }
}

.product--image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    background-color: #f2f2f2;
}

.product--content {
    border: 1.5px dashed #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}