body {
    background-color: whitesmoke;
}
.subcategory {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}

.subcategory > h2.subcategory-name > a {
    font-family: "Taviraj", serif;
    color: black;
}

.subcategory > h2.subcategory-name > a:hover {
    text-decoration: none;
}

.subcategory-view-more {
    text-align: center;
    text-transform: uppercase;
    font-family: "Taviraj", serif;
}

.subcategory-view-more a {
    font-size: .8em;
    color: black;
    border: 1px solid #555;
    padding: .5em .5em;
    transition: 300ms;
}

.no-product-notification {
    font-family: "Taviraj", serif;
}

.no-product-found {
    width: 100%;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    font-style: italic;
}
.product-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 3em;
    flex-wrap: wrap;
}

.product {
    width: 24%;
    border: 1px solid #DDD;
    box-shadow: 3px 5px 2px #EEE;
    margin-bottom: 1em;
}

.product img {
    width: 100%;
    margin-bottom: 1em;
}

.product-name {
    font-family: "Taviraj", serif;
    text-align: center;
    color: black;
}

.product-price {
    font-family: "Taviraj", serif;
    text-align: center;
    color: #5F7848;
    font-weight: bold;
}

.product a:hover {
    text-decoration: none;
}

img[rendered] {
    width: 100%;
}

figure.image {
    width: 100%;
}
figure.image img {
    width: 100%;

}

figcaption {
    text-align: center;
    font-size: .8em;
}

blockquote {
    border-left: 8px solid #DDD;
    padding-left: 2em;
    font-style: italic;
}
#category-detail-description {
    padding: 1.5em 2em;
    font-family: "Taviraj", serif;
    font-weight: .8em;
    background-color: white;
    overflow-y: hidden;
    transition: height 1s;
    position: relative;        
    margin-top: 2em;
    margin-bottom: 2em;
}
#view-more-description {
    background-color: white;
    text-align: center;
    font-family: "Taviraj", serif;
    padding: 2em 1em;
}

#view-more-description button {
    padding: .5em 1em;
    text-transform: uppercase;
    border: 1px solid black;
    transition: 300ms;
}

#view-more-description button:hover {
    background-color: black;
    color: white;
}

.bold {
    font-weight: bold;
}
.italic {
    font-style: italic;
}
#no-item-in-category {
    font-family: "Quicksand", sans-serif;
    font-style: italic;
}
.category-title {
    display: flex;
    justify-content: center;
    align-content: center;
    width: 100%;
    height: 100px;
    background-color: rgb(235, 235, 235);
}
.category-title > span {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.15em;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.category-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.category-container > .side-bar {
    width: 25%;
}
.category-container > .main-content {
    width: 75%;
}
.mobile-filter {
    display: none;
}
.category-notification {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1em 1.5em 1em 1.5em;
}
.product-sortby {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.product-list-sortby {
    margin-right: .5em;
    font-family: "Montserrat", sans-serif;
    font-size: .8em;
}
#sort-order {
    padding: .25em 1em;
    font-family: "Quicksand", sans-serif;
    min-width: 200px;
    font-size: .7em;
    border-color: #AAA;
}
.category-report {
    font-size: .8em;
    font-family: "Montserrat", sans-serif;
}

div.load-more {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

div.load-more > button {
    padding: .5em 1.5em;
    text-transform: uppercase;
    background-color: white;
    color: black;
    font-family: "Monserrat", sans-serif;
    border: 1px solid #555;
    font-size: .9em;
    transition: all 200ms;
}

div.load-more > button:hover {
    background-color: black;
    color: white;
}

@media screen and (max-width: 768px) {
    .product-container {
        justify-content: space-between;
    }
    .product {
        width: 49%;
    }
    .product-name {
        font-size: .8em;
    }
    .product-price {
        font-size: .8em;
    }
   .category-container {
        flex-direction: column;
    }
    .category-container > .side-bar {
        width: 100%;
    }
    .category-container > .main-content {
        width: 100%;
    }
    .category-notification {
        justify-content: space-around;
        flex-wrap: wrap;
    }
    .category-notification > *:nth-child(3n) {
        margin-top: .75em;
    }
    .mobile-filter {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 48%;
        padding: .25em 1em;
        font-family: "Quicksand", sans-serif;
        font-size: .7em;
        border: 1px solid #AAA;
        pointer-events: all;
    }
    .mobile-filter:hover {
        cursor: pointer;
        border-color: black;
    }
    .product-sortby {
        width: 48%;
    }
    #sort-order {
        min-width: none;
        width: 100%;
    }
    .product-list-sortby {
        display: none;
    }
}