.free-product {
    display: flex;
    position: relative;
    margin: 0 0 1em;
    border: 1px solid rgba(0, 0, 0, .1);
}

    .free-product:before {
        content: '+';
        left: -2px;
        top: -2px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        font-size: 1.2em;
        position: absolute;
        background: rgb(143, 174, 27);
        color: #fff;
        line-height: 1.8em;
        width: 1.8em;
        text-align: center;
        z-index: 1;
    }

    .free-product__image-container {
        width: 20%;
        padding-top: 20%;
        position: relative;
        border-right: 1px solid;
        border-color: inherit;
    }

        .free-product__image-container img {
            position: absolute;
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 100%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

    .free-product__caption {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        justify-content: space-between;
    }

        .free-product__name {
            padding: 1em;
        }

        .free-product__caption-bottom {
            display: flex;
            justify-content: space-between;
        }

            .free-product__variation-pulldown {
                margin: 0;
                width: auto;
            }

            .free-product__price-container {
                line-height: 3em;
            }

            .free-product__price-container:only-child {
                margin-left: auto;
            }

                .free-product__price {
                    margin-left: 1em;
                }

                .free-product__price--old {
                    opacity: .5;
                }

                .free-product__price--new {
                    display: inline-block;
                    background-color: rgb(143, 174, 27);
                    color: rgb(255, 255, 255);
                    padding: 0 1.5em;
                    text-decoration: none;
                    font-weight: bold;
                }
