.shop-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, auto));
    grid-gap: 30px;
    justify-items: center;
}

.shop-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.shop-item-title,
.shop-item-subtitle {
    font-family: Oswald-Light;
    text-align: center;
}

.shop-item-title {
    font-size: 22px;
}

.shop-item-subtitle {
    font-size: 16px;
    color: #fff8;
}

.shop-item .price {
    margin-top: 0;
    font-size: 18px;
    margin-bottom: 20px;
    font-family: Oswald-Light;
}

.shop-item-image-wrapper {
    width: 300px;
    height: 300px;
}

a.shop-item-image-wrapper-a {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-top: 20px;
    align-items: center;
    max-width: 300px;
    max-height: 300px;
}

.shop-item img {
    width: 100%;
}

.shop-item-data-wrapper {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0 0;
}

.shop-item-variation-property-title {
    font-size: 26px;
    text-align: center;
}

.shop-item-variations-color,
.shop-item-variations-size {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.shop-item-variation-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: transparent 4px solid;
    margin: 0 5px;
}

.shop-item-variation-color.selected {
    border-color: #6A1B0D;
}

.shop-item-variation-size {
    width: 40px;
    padding: 4px 8px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    background: grey;
    background: #6A1B0D77;
    margin: 0 5px;
}

.shop-item-variation-size.selected {
    background: #6A1B0D;
}

.shop-item-buttons-container {
    display: flex;
}

.shop-item-add-to-cart-button,
.shop-item-go-to-cart-button,
.shop-item-out-of-stock {
    text-decoration: none;
    padding: 10px 20px;
    padding: 8px 18px;
    margin: 0 8px;
    font-family: 'Oswald-Regular';
    color: white;
    text-align: center;
}

.shop-item-add-to-cart-button img,
.shop-item-go-to-cart-button img,
.shop-item-out-of-stock img {
    width: 18px;
}

.shop-item-add-to-cart-button {
    background: #6A1B0D;
}

.shop-item-go-to-cart-button {
    background: #6A1B0D;
}

.shop-item-out-of-stock {
    background-color: grey;
}

.shop-error {
    color: #fff3;
}