/*Shop page style*/
div#mobile.rowFilter {
    display: none;
}

section#shop {
    width: 100%;
    padding: 0;
}

section#shop div.rowFilter {
    position: fixed;
    background-color: #99CC66;
    width: 90%;
    text-align: center;
    padding: 1em 5%;
    top: 8em;
    z-index: 100;
}

section#shop div.rowFilter a {
    margin: 0 2%;
    background-color: var(--lightGrey);
    color: var(--green);
    line-height: 2em;
    cursor: pointer;
}

section#shop div.rowFilter.scrollFilters {
    top: 7em;
    transition: .5s linear;
}


section#shop div.rowFilter a:hover {
    background-color: rgba(255, 255, 255, .3);
    color: var(--white);
}

section#shop div.row {
    padding: 5em 3%;
}

section#shop div.product {
    display: inline-block;
    width: 33%;
    text-align: center;
    padding: 2em 2%;
}

section#shop div.product img {
    width: 70%;
}

section#shop div.product h3 {
    font-size: 1.3em;
    height: 3em;
}

section#shop div.product p {
    font-size: .8em;
    margin-bottom: 1em;
}

section#shop div.product p.price {
    font-weight: bold;
}

p#description {
    height: 3em;
    margin-top: 2em;
    margin-bottom: 1em;
}

section#shop div.product a.button {
    font-size: .7em;
    margin-top: 1em;
    border: 1px solid var(--green);
}

section#shop div.product a.button:hover {
    color: var(--green);
    border: 1px solid var(--green);
}

section#shop div.product a:hover {
    color: unset;
}

@media screen and (max-width: 768px) {

    section#shop div.rowFilter a {
        padding: 0.2em 1em 0.2em 1em;
        margin: 0 1%;
    }

    section#shop div.rowFilter {
        width: 100%;
        text-align: center;
        padding: 1em 0;
        top: 5em;
    }

    section#shop div.rowFilter.scrollFilters {
        top: 4.5em;
        transition: .5s linear;
    }
}

@media screen and (max-width: 576px) {
    section#shop div.rowFilter {
        display: none;
    }

    section#shop div.rowFilter.scrollFilters {
        display: none;
    }

    section#shop div.row {
        padding-top: 0;
    }

    section#shop div.product {
        width: 50%;
    }

    p#description {
        height: 4em;
        margin-top: 3em;
        margin-bottom: 2em;
    }

    .button {
        padding: 0.1em 1.5em;
    }
}