
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --main-bg-color:#2346b5;
    --bg-footer:#242424;
}

a, a:hover{
    text-decoration:none;
}

.py-50{
    padding:50px 0px;
}

.fw-300{
    font-weight:300;
}
.fw-400{
    font-weight:400;
}

.btn-primary{
    background-color:var(--main-bg-color) !important;
    border-color:var(--main-bg-color) !important;
    color:#fff !important;
}
.btn-primary:hover, .btn-primary:focus{
    background-color:var(--bs-btn-hover-bg) !important;
    border-color:var(--bs-btn-hover-bg) !important;
}

body{
    font-family: "Poppins", serif;
}

.aws-container{
    min-width:100%;
}

header{

    nav{
        padding:14px 0px !important;
    }

    .navbar-brand img{
        width:200px;
    }
}

.section-head{
    background-color:#f7f7f7;
    padding: 11px 16px;
    border-radius: 4px;

    .section-title{
        color:#232323;
        margin-bottom:0;
        font-size: 1.3em;
        text-transform: uppercase;
    }
}

.page-title{
    font-size: 1.7em;
}

#offcanvasMenu ul li a{
    display: block;
    padding: 13px 0px;
    border-bottom: 1px solid #efefef;
}

/* ------ Main Menu ------- */
.main-menu{

    background-color:var(--main-bg-color);

    ul{
        display:flex;

        li a{

            position:relative;
            display:block;
            padding:20px 15px;
            color:#fff;

            &:hover, &:focus{
                color:#fff;
            }

            &::after{
                content:'';
                position: absolute;
                bottom: 0px;
                width: 100%;
                display: block;
                background: transparent;
                height: 4px;
                left: 0;
                right: 0;
            }

            &:hover::after{
                background-color:#fff;
            }
        }

        li.current-menu-item a{
            color:#fff;

            &::after{
                background: #fd3e3e;
            }
        }
    }
}

.btn-offcanvas{
    border: 0;
    background: transparent;
    color: #fff;
    padding: 16px 0px;
}

/* ------ Product Loop ------ */
.product-loop {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 10px;
    column-gap: 30px;
    grid-row-gap: 10px;
    row-gap: 40px;
    list-style: none;
}

.product-loop .image-area {
    margin-bottom: 20px;
}

.product-loop .caption-area {
    text-align: center;
}

.product-loop .caption-area .product-title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #000;
    text-align: center;
    font-size: 1.1em;
    font-weight: 300;
    margin-bottom: 6px;
}
.woocommerce ul.products li.product .price{
    text-align:center;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price{
    color:#2346b5;
}
.woocommerce ul.products li.product .price ins, .woocommerce div.product p.price ins{
    text-decoration:none;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .out-of-stock{
    color:#444;
}

.product-loop .caption-area .sku {
    display: block;
    color: #788188;
}


/* ------ Filter ------ */
.filter-reset-button{
    position:sticky;
    bottom:10px;
}

/* ----- Product Page ------ */
.woocommerce div.product{
    margin-top:30px;
}
.woocommerce div.product .product_title{
    font-size:1.5em;
    font-weight:400;
}
.woocommerce div.product .product_meta > span{
    display:block;
    color:#666666;
}

/* ----- Stock Locations ------ */
.slw-product-locations{
    margin:15px 0px;
}
.slw-product-locations-list{
    list-style:none;
    margin:0;
    padding:0;
}
.slw-product-locations-list li{
    color: #504ae2;
    font-weight: 600;
}
.slw-product-locations-list li .slw-product-location-qty{
    color:#f5a623;
    font-weight:400;
}

footer{

    .under-footer{
        background-color:var(--bg-footer);
        color: #fff;
        font-size: 0.9em;
        padding: 14px 0px;

        p{
            margin-bottom:0;
        }
    }
}

@media screen and (min-width:992px){

    body.logged-in .main-menu{
        top:32px;
    }
}

@media screen and (max-width:992px){

    .product-loop{
        grid-template-columns: repeat(2, 1fr);
    }
}