section.product-banner{
    height: 450px;
    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-transform: uppercase;
        text-shadow: 2px 2px 1px rgba(0, 0, 0, .5);
    }
}

section.product-container{
    margin: 5em auto;
    text-align: center;
    .toggle-collapse-btn{
        border: 1px solid #fff;
        border-radius: 1.5em;
        padding:.4em 0;
        margin: 1.8em auto 0 auto;
        cursor: pointer;
        max-width: 300px;
        &:hover{
            background: rgba(255,255,255,.2);
        }
    }
    .text{
        display: inline-block;
        color: #fff;
        text-transform: uppercase;
        margin-right: .3em;
        height: 1.2em;
        overflow: hidden;
    }
    .carousel-control-prev-icon{
        width: 1em;
        height: 1em;
        transform: rotate(90deg);
    }
    .collapsed{
        .carousel-control-prev-icon{
            transform: rotate(270deg);
        }
    }
    .col-inner{
        padding: 2em 5em;
        margin-bottom: 2em;
    }
    .carousel-item{
        padding-bottom: 5em;
    }
    .button {
        width: 100%;
        color: #fff;
        border-radius: 14px;
        font-size: .9em;
        line-height: 2em;
        text-transform: none;
        display: block;
        overflow: hidden;
        .customize-btn{
            display: inline-block;
            border-radius: .5em;
            border:1px solid rgba(255,255,255,.2);
            padding: .2em 1em;
            margin-bottom: 1em;
        }
        &:hover{
            color:#fff;
            .customize-btn{
                border-color: #fff;
            }
        }
        &:hover{

        }
    }
    .col-inner{
        background: rgba(var(--brand-color-rgb), .2);
        &.odd{
            background: rgba(var(--brand-color-rgb), .6);
            .button{
                &:hover{
                    opacity: 1;
                }
            }
        }
    }
    .category-name{
        font-size:2em;
        font-weight:700;
        line-height:2em;
    }
    .category-desc{
        padding: 0;
        font-weight:700;
    }
    .carousel-control-prev{
        left:-3.2em;
    }
    .carousel-control-next{
        right:-3.2em;
    }
    .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{
            height: 3.5em;
            font-size: 1.1em;
            padding: 1em 0;
            font-weight: 700;
        }
        &:hover{
            img{
                transform: scale(1.1);
            }
        }
        img{
            padding: .2em;
            border-top-left-radius: 1em;
            border-top-right-radius: 1em;
            transition: transform .5s;
            width: 100%;
            height: auto;
        }
        .img-box{
            z-index: -1;
        }
        .btn-box{
            background: rgba(43, 45, 66,.6);
            margin-top: -.5em;
            position: relative;
        }
    }
}

@media (max-width: 992px){
    section.product-banner{
        h1{
            font-size: 2em;
        }
    }
    section.product-container{
        .col-inner{
            padding: 2em 1em;
            margin-bottom: 2em;
        }
    }
}