html{
    margin-top: 80px;
    background-color: #ffffff;
}

html::after{
    content: '';
    position: absolute;
    left: 0;
    top: 80px;
    width: 100%;
    height: 600px;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.0), transparent);
    background-attachment:scroll;
    opacity: 1;
    z-index: -1;
}

#shop{
    padding: 0;
    display: flex;
    flex-flow: column;
    margin: 0 auto;
    max-width: 1200px;
}

#shop .section-title{
    text-align: center;
    margin: 30px 0;
    font-size: 3em;
    text-shadow: 0 0 15px #ffffff;
    border-bottom: 1px solid lightgray;
}

.shop-store{
    padding: 0 30px;
    justify-self: stretch;
    background-color: #ffffff;
    border-bottom: 1px solid lightgray;
}

.shop-store p{
    font-size: 2.5em;
    line-height: 1.5em;
    margin-bottom: 20px;
}

.shop-store .shop-logos{
    text-align: center;
}

.shop-store .shop-logos img{
    pointer-events: auto;
}

.shop-store .shop-front{
    margin: 40px;
    padding: 10px;
}

.shop-store .shop-front img{
    width: 100%;
}

.shop-store .shop-front{
    border: 2px solid white;
    border-radius: 10px;
    transition: .2s ease;
    transition-property: border;
}

.shop-store .shop-front:hover{
   border: 2px solid orange;
}

.shop-item{
    padding: 30px;
    background-color: #ffffff;
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 20px;
    border-bottom: 1px solid lightgray;
}

.shop-item h2{
    font-size: 3em;
    width: 100%;
}

.shop-item .item-description p{
    font-size: 2em;
    margin-bottom: 20px;
}

.shop-item .prompt{
    font-weight: bold;
    font-size: 2.5em;
    text-align: center;
    width: 100%;
    line-height: 2em;
    align-self:flex-end;
}

.shop-item .item-image {
    text-align: center;
    margin: 20px 0;
}

.shop-item .item-image img{
    width: 100%;
}

.shop-item .item-buy {
    font-size: 2em;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    align-self:flex-end;
    margin: 0 auto 10px auto;
    min-width: 40%;
}

.shop-item .item-buy a{
    background-color: white;
    border: 2px solid rgb(255, 165, 0);
    padding: 10px;
    padding-bottom: 5px;
    border-radius: 10px;
    margin-top: 30px;
    font-size: 1.8rem;
    text-transform: uppercase;
    color: orange;
    transform: scale(1);
    transition: .2s ease;
    transition-property: background-color, color, transform;
}

.shop-item .item-buy a:hover{
    background-color: orange;
    color: white;
    transform: scale(1.2);
}

/* Media Query - TABLET - */

@media only screen and (min-width: 768px){

    html{
        margin-top: 100px;
        background-image: url(../images/bg-tile-white.jpg);
        background-attachment: fixed;
    }

    #shop{
        padding: 30px;
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
    }

    #shop .section-title{
        border: none;
    }
    
    .shop-store{
        margin: 30px 3%;
        width: 100%;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        border: none;
        padding: 30px;
    }

    .shop-item{
        width: 46%;
        margin: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        border: none;
    }   
    
    .shop-store .shop-logos{
        display: flex;
        flex-wrap: wrap;
        border-top: 1px solid lightgrey;
        border-bottom: 1px solid lightgrey;
        justify-content: center;
    }

    .shop-store .shop-front img{
        width: 100%;
    }

}

/* END of Media Query - TABLET - */



/* Media Query - DESKTOP - */

@media only screen and (min-width: 1200px){

    html{
        margin-top: 0px;
        padding-top: 100px;
        background-image: url(../images/bg-fantasy-city.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }

    html::after{
        background-image: none;
    }

    #header{
        background-color: white;
    }

    #header .brand-logo img{
        height: 80px;
    }

    #header .nav ul li{
        color: black;
    }

    #header .nav ul li a{
        color: black;
    }

    #header .nav ul li:last-child{
        display: block;
    }

    #shop{
        padding: 60px;
    }

    #shop .section-title{
        color: #ffffff;
        text-shadow: 0 0 15px #000000;
        margin-top: 0;
    }

    .shop-store{
        margin: 30px 6%;
        width: 100%;
    }

    .shop-item{
        width: 40%;
        margin: 40px;
    }

    .shop-store .shop-logos{
        flex-wrap: nowrap;
    }


}

/* End of Media Query - DESKTOP - */