section.product-banner{
    height: 450px;
    margin-top: 1.4em;
    color:#fff;
    .banner{
        .text-box {
            position: relative;
            background: rgba(228, 192, 86, .2);
        }
        .text-box-inner{
            max-width: 920px;
            margin: 0 auto;
        }
    }
    h1{
        font-size: 3em;
        font-weight: 700;
        text-shadow: 2px 2px 1px rgba(0, 0, 0, .5);
    }
    p.banner-desc{
        padding:.5em;
        background: rgba(0,0,0,.3);
    }
}

section.product-container{
    margin-bottom: 5em;
    text-align: center;
    .col-inner{
        padding: 2em 3em;
    }
    .carousel-item{
        padding-bottom: 5em;
    }
    .button {
        color: #fff;
        text-wrap:nowrap;
        border-radius: 14px;
        padding: 5px 20px 5px 20px;
        font-size: .9em;
        line-height: 2em;
        text-transform: none;
        display: inline-block;
        background: var(--brand-color);
        &:hover{

        }
    }
    .col-inner{
        background: rgba(var(--brand-color-rgb), .6);
        &.odd{
            background: rgba(var(--brand-color-rgb), .2);
            .button{
                background-color: transparent;
                border: 2px solid var(--brand-color);
                &:hover{
                    background: var(--brand-color);
                    opacity: 1;
                }
            }
            a.product-anchor,a.button{
                color: #000;
            }
        }
    }
    .category-name{
        font-size:2em;
        font-weight:700;
        line-height:2em;
    }
    .category-desc{
        padding: 0;
        font-weight:700;
    }
    .carousel-control-prev{
        left:-2.5em;
    }
    .carousel-control-next{
        right:-2.5em;
    }
    .carousel-control-prev,.carousel-control-next{
        top: 40%;
        bottom: auto;
        height: 2em;
        width: 2em;
        border: 1px solid #fff;
        border-radius: 50%;
    }
    .product-item{
        padding-top: 2em;
        h3{
            font-size: 1.1em;
            padding: 1em 0;
            font-weight: 700;
        }
        &:hover{
            img{
                transform: scale(1.1);
            }
        }
        a.product-anchor{
            color: rgb(33, 37, 41);
            display: block;
            .img-box{
                overflow: hidden;
            }
        }
        img{
            transition: transform .5s;
            width: 100%;
            height: auto;
        }
    }
}
@media (max-width: 992px) {
    section.product-container{
        .col-inner{
            padding: 2em;
        }
    }
}