.productContainer {
    box-sizing: border-box;
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    margin: 10px 0 0 0;
}
.productImage {
    flex-basis: 100%;
    flex-grow: 0;
    max-width: 100%;
}
.productImage img {
    max-width: 100%;
    width: 100%;
}
.productDetails {
    flex-basis: 100%;
    flex-grow: 0;
    max-width: 100%;
    line-height: 3;
    margin-top: 10px;
}

.productDetails .description {
    line-height: 1.5;
}

.productDetails .category a {
    background: var(--pink);
    padding: 1px 5px;
}
.productDetails .category a:hover {
    background: var(--pink-darker);
    color: black;
    padding: 1px 5px;
}
#qty {
    width: 60px;
    display: inline;
}

.productDetails .price {
    font-weight: bold;
    font-family: Verdana, sans-serif;
}

.splide__slide img {
    width: 100%;
    height: auto;
}

#flash {
    line-height: 1;
    border: 1px solid green;
    padding: 8px;
}

@media screen and (min-width:500px) {
    .productDetails {
        flex-basis: 50%;
        max-width: 50%;
        margin-top: 0px;
    }
    .productImage {
        flex-basis: 50%;
        max-width: 50%;
        padding: 0 20px 0 0;
    }
}