/*************************************/
/****************** Delete this stylesheet when shop page is remade and update template.css *******************/
/*************************************/
.shop-content{
    margin-top:30px;
    margin-bottom:15px;
}
.shop-content h1{
    margin:0;
}
.shop-container {
    padding-bottom: 15px;
    margin: 0px 25px;
    display: grid;
    grid-template-columns: 1fr;
}

.shop--column {
    margin: 10px 10px;
    border: var(--section-border);
    padding:10px;
}
.shop--column a{
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.shop--column img {
    width:60%;
    display: block;
    margin: auto;
    padding-bottom: 10px;
}

.shop-column-title, .shop-column-body{
    color: #000000;
    padding-top: 0;
    margin: 0;
}
.shop-column-title{
    font-size: 18px;
    padding-bottom: 10px;
    font-weight: bold;
}
.shop-column-body{
    font-size: 16px;
    font-weight: normal;
}

@media all and (min-width: 720px) {
    .shop-container {
        grid-template-columns: repeat(3, 1fr)
    }
    .shop--column img {
        width: 75%;
    }
    .shop--column a{
        display: block;
        text-align: left;
    }
}
