﻿/* CATEGORY-ONE */
.category-one {
    width: 100%;
}

.category-one section.page-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 50px;
}

.category-one #featured-image-container {
  position: relative;
  width: 100%;
  max-height: 350px;
  padding: 0;
  margin: 0;
  overflow:hidden;
}

figure.featured-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-bottom: 50px;
}
figure.featured-image > img {
    width: 100%;
    height: auto;
}

/* SIDE NAVS */
.categories-brand-container {
    width: 20%;
}

    .categories-brand-container h3.title {
        color: #000;
        margin-bottom: .5em;
    }

    .categories-brand-container ul {
        margin-bottom: 50px;
    }

    .categories-brand-container ul li {
        padding: .25em 0 .25em 2.5%;
    }

    .categories-brand-container ul li:nth-of-type(odd) {
        background-color: #E6E7E8;
    }

    .categories-brand-container a:not(.ammo-seek) {
        display: block;
        color: #000;
        width: 97.5%;
    }

    .categories-brand-container input {
        color: #000;
        /*margin: .25em 0 .25em 2.5%;*/
    }

    .categories-brand-container label {
        color: #000;
        margin-left: 2.5%;
        /*margin: .25em 0 .25em 2.5%;*/
    }

    .categories-brand-container li:hover {
        color: #B2542E;
    }
/* END SIDE NAVS */


.category-one .product-wrapper {
    width: 70%; /* Leaving room (.05%) for 2px border-left */
    padding-left: 2.5%;
    padding-top: 25px;
    border-left: 2px solid #BBBDBF;
}

@media only screen and (max-width: 768px) {
    .category-one .product-wrapper {
        width: 100%; 
    }
    .sidebar {
        width: 100%;
    }
}

.category-one .product-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    /* For IE */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .category-one .product-container .product {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 240px;
        min-height: 300px;
        margin-bottom: 50px;
        /* For IE */
        margin-left: 25px;
        margin-right: 25px;
    }

@supports (display: grid) {
    .category-one .product-container{
    display: grid;
    grid-template-columns: repeat(auto-fill, 240px);
    grid-gap: 25px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.category-one .product-container .product {
    margin-left: 0;
    margin-right: 0;
}

.category-one .product-container .product img {
    height: 100%;
    width: auto;
}

.category-one .product-container .product .image-container {
    display: block;
    width: 240px;
    height: 240px;
    background-color: #BBBDBF;
    overflow: hidden;
}

.product-container a {
    color: #000;
    text-decoration: none;
}

.product-container a:hover {
    color: #B2542E;
}

.product-container h4 {
    text-align: center;
    letter-spacing: .15em;
}

figcaption {
    position: absolute;
    bottom: 3px;
    background: rgba(0,0,0,.4);
    color: #fff;
    width: 100%;
    font-size: 4em;
    text-align: right;
    padding: 0;
}
/* END CATEGORY-ONE */
