.home-menu a {
    float: left;
    font-size: 13px;
    line-height: 15px;
    padding: 1px 10px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    color: #4c586b;
    ;
    text-indent: 8px;
}

.container {

    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

/* Sidebar */
.sidebar {
    border: 1px solid #f7f1f1;
    width: 20%;
    background: #ffffffff;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Add gap between each details block */
.sidebar details {
    margin-bottom: 15px;
    /* spacing between items */
    /* border: 1px solid #ddd; */
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); */
}

.sidebar summary {
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    padding: 5px 25px 5px 0;
    font-weight: 600;
    color: #252733;
    position: relative;
    list-style: none;
    background-color: #fff;
}

.sidebar summary::marker {
    display: none;
}

/* + / - icon */
.sidebar summary {
    cursor: pointer;
    width: auto;
    white-space: normal;
    word-wrap: break-word;
}

.sidebar summary::marker {
    display: none;
}

.sidebar summary::before {
    content: "+";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #565656ff;
    transition: transform 0.3s ease;
}



/* Show - only when that summary is open */
.sidebar details[open]>summary::before {
    content: "−";
}

/* For child summaries */
.sidebar details details>summary::before {
    content: "+";
    font-size: 16px;
    right: 12px;
    color: #444;
}

.sidebar details details[open]>summary::before {
    content: "−";
}

/* Keep child '+' when parent is open */
.sidebar>details>ul>li>details[open]>summary::before {
    content: "-" !important;
}

.sidebar>details>ul>li>details>summary::before {
    content: "+" !important;
}

/* Inside list */
.sidebar ul {
    list-style: none;
    padding: 0 16px 12px 25px;
    margin: 0;
}

.sidebar ul li {
    margin: 8px 0;
}

.sidebar ul li a {
    font-weight: 600;
    text-decoration: none;
    color: #252733 !important;
    font-size: 13px;
    transition: color 0.3s ease;
}

.sidebar ul li a:hover {
    color: #4a3aff;
}

/* Main Content */
.main-content {
    width: 80%;
    /* flex: 3 1 800px; */
    /* padding: 10px; */
}

/* Banner */
.banner {
    padding: 0 !important;
    text-align: center;
}

.banner-img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}



/* Featured Categories */
.featured {
    margin-top: 30px;
}

.featured h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.category-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}




/* Best Sellers */
.bestsellers {
    margin-top: 40px;
}

.title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.title-row h2 {
    font-size: 24px;
}

.title-row button {
    padding: 8px 16px;
    background: #4a3aff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.product-card h4 {
    font-size: 15px;
    margin: 10px 0;
    color: #333;
}

.product-card p {
    color: #444;
    margin-bottom: 10px;
}

.product-card button {
    background: #4a3aff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
}

.product-card button:hover {
    background: #352ecc;
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        order: 2;
    }

    .main-content {
        order: 1;
    }


}

@media (max-width: 600px) {
    .category-card {
        flex: 1 1 100%;
    }

    .banner h1 {
        font-size: 28px;
    }

    .title-row h2 {
        font-size: 20px;
    }
}



/* Section styling */
.category-section {
    padding: 50px 0px;
    background: #fff;
    text-align: center;
}

/* Heading */
.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #222;
}

/* Responsive grid layout */
.category-grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    gap: 10px;
    white-space: nowrap;
}

.category-card {
    flex: 0 0 auto;
    /* Keep original width */
}

/* Card design */
.category-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* padding: 5px 20px 5px 0; */
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 160px;
    margin-bottom: 5px;
}

.category-card p {
    width: 190px;
    text-align: center;
    word-wrap: break-word;
    margin: 0 auto;
}

.category-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

/* Images */
.category-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 5px;
    margin-top: 10px;
    transition: opacity 0.3s ease;
}

.category-card:hover img {
    opacity: 0.85;
}

/* Text */
.category-card p {
    padding: 10px 5px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .category-card img {
        width: 80px;
        height: 80px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .category-grid {
        gap: 15px;
    }

    .category-card {
        padding: 15px 8px;
    }

    .category-card p {
        font-size: 0.9rem;
    }
}

/* Industry-page */
#feat_prod .grid,
#new_arrivals .grid,
#Close_Out .grid {
    padding-top: 10px;
    margin-left: -1px;
    clear: both;
    height: auto;
}

#feat_prod .grid .gridcol,
#new_arrivals .grid .gridcol,
#Close_Out .grid .gridcol {
    width: 19% !important;
    float: left;
    height: 400px;
    margin-bottom: 18px;
    margin-left: 5px;
    margin-right: 5px;
    overflow: hidden;
    /* width: 226px; */
}

#new_arrivals .grid .gridcol {
    overflow: inherit;
    position: relative;
}

#new_arrivals .icon-new {
    width: 60px;
    height: 32px;
    position: absolute;
    right: -8px;
    top: -2px;
    background: url("/UI/images/new_icon.png");
}

#feat_prod .grid .gridcol .inwhitbrd,
#new_arrivals .grid .gridcol .inwhitbrd,
#Close_Out .grid .gridcol .inwhitbrd {
    text-align: center;
    margin: 10px auto;
    width: 94%;
}

#feat_prod .grid .gridcol .imgbx,
#new_arrivals .grid .gridcol .imgbx,
#Close_Out .grid .gridcol .imgbx {
    margin: 0 auto;
    padding-bottom: 10px;
    text-align: center;
    width: 160px;
}

#feat_prod .grid .gridcol .imgbx img,
#new_arrivals .grid .gridcol .imgbx img,
#Close_Out .grid .gridcol .imgbx img {
    border: none;
    margin-top: 15px;
}

#feat_prod .grid .gridcol .imgbx img:hover,
#new_arrivals .grid .gridcol .imgbx img:hover,
#Close_Out .grid .gridcol .imgbx img:hover {
    border: none;
}

#feat_prod .sku_class,
#new_arrivals .sku_class,
#Close_Out .sku_class {
    font-size: 14px;
    font-weight: 700;
    display: block;
    max-height: 13px;
    overflow: hidden;
    text-align: center;
    margin-left: 0px;
}

#feat_prod .title_class,
#new_arrivals .title_class,
#Close_Out .title_class {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    margin-top: 20px;
    max-height: 50px;
    min-height: 50px;
    overflow: hidden;
    padding: 0 4px;
    text-align: left;
}

#feat_prod .desc_width,
#new_arrivals .desc_width,
#Close_Out .desc_width {
    min-height: 60px;
    margin-top: 9px;
}

#feat_prod .desc,
#new_arrivals .desc,
#Close_Out .desc {
    font-size: 12px;
    font-weight: 400;
    min-height: 269px;
}

#feat_prod .grid .gridcol .price,
#new_arrivals .grid .gridcol .price,
#Close_Out .grid .gridcol .price {
    display: block;
    font-size: 16px;
    font-weight: bold;
    line-height: 65px;
    margin: 5px 4px 0 5px;
    text-align: center;
}

#feat_prod .grid .gridcol .price span,
#new_arrivals .grid .gridcol .price span,
#Close_Out .grid .gridcol .price span {
    font-size: 16px;
    font-weight: 700;
}

/*#feat_prod .redaddbtn {    border: medium none !important;    display: block;    float: left;    margin: 0px 4px !important;    padding: 4px 0 4px 20px;    width: 70px;    font-weight: bold;    background: #6ca536 url("/UI/images/sprite.png") repeat scroll -249px -163px / 558% !important;}*/
#feat_prod .redaddbtn,
#new_arrivals .redaddbtn,
#Close_Out .redaddbtn {
    /* background: #252733 url("/UI/images/cart-icon.png") no-repeat scroll 5px center !important; */
    border: 2px solid #252733 !important;
    display: block;
    color: white !important;
    float: left;
    font-weight: bold;
    height: 36px;
    line-height: 24px;
    margin: 0 4px;
    padding: 4px 0 4px 27px;
    width: 125px;
    /* -webkit-transition: background-color 250ms ease-out 50ms;    -moz-transition: background-color 250ms ease-out 50ms;    -o-transition: background-color 250ms ease-out 50ms;    transition: background-color 250ms ease-out 50ms; */
    border-radius: 3px;
    /* font-size: 14px !important; */
}

/*#feat_prod .redaddbtn:hover {    background: #202020 url("/UI/images/sprite.png") repeat scroll -249px -163px / 558% !important}*/
#feat_prod .redaddbtn:hover,
#new_arrivals .redaddbtn:hover,
#Close_Out .redaddbtn:hover {
    /* background: #30bac4 url("/UI/images/cart-icon.png") no-repeat scroll 5px center !important; */
    border: 2px solid #30bac4 !important;
}

.qly_add_card div>span {
    font-weight: normal;
}

#feat_prod .Spec_list,
#new_arrivals .Spec_list,
#Close_Out .Spec_list {
    padding: 0;
    height: auto;
    width: 100%;
    overflow: hidden;
}

#feat_prod .titles,
#new_arrivals .titles,
#Close_Out .titles {
    text-align: left;
    width: 220px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    padding: 0 15px;
    height: 36px;
    line-height: 36px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#feat_prod .ad-forward,
#new_arrivals .ad-forward,
#Close_Out .ad-forward {
    height: 36px;
    width: 25px;
    display: inline-block;
    background: rgba(0, 0, 0, 0) url("/UI/images/next_arr_btn.png") no-repeat scroll center center;
    position: relative;
    margin-left: 10px;
    opacity: 0.8;
    cursor: pointer;
    vertical-align: middle;
}

#feat_prod .ad-back:hover,
#new_arrivals .ad-back:hover,
#Close_Out .ad-back:hover {
    background: rgba(0, 0, 0, 0) url("/UI/images/prev_arr_btn_red.png") no-repeat scroll center center;
}

#feat_prod .ad-forward:hover,
#new_arrivals .ad-forward:hover,
#Close_Out .ad-forward:hover {
    background: rgba(0, 0, 0, 0) url("/UI/images/next_arr_btn_red.png") no-repeat scroll center center;
}

#feat_prod .title_class,
#new_arrivals .title_class,
#Close_Out .title_class {
    color: #252733;
}

#feat_prod .grid .gridcol,
#new_arrivals .grid .gridcol,
#Close_Out .grid .gridcol {
    /*background:rgba(0, 0, 0, 0) linear-gradient(#fff, #fff, #e3e3e1) repeat scroll 0 0;*/
    border: 1px solid #ccc;
    border-radius: 5px;
}

#feat_prod .grid .gridcol:hover,
#new_arrivals .grid .gridcol:hover,
#Close_Out .grid .gridcol:hover,
.slist01.fl:hover,
#Manuf .small:hover {
    box-shadow: 2px 3px 5px #ccc
}

#feat_prod .sku_class,
#new_arrivals .sku_class,
#Close_Out .sku_class {
    color: #0e6f76;
}

#feat_prod .desc,
#new_arrivals .desc,
#Close_Out .desc {
    color: #444444;
}

#feat_prod .grid .gridcol .price span,
#new_arrivals .grid .gridcol .price span,
#Close_Out .grid .gridcol .price span {
    color: #0e6f76;
}



.ourpage {
    float: left;
    min-height: 500px;
    /* padding: 1%; */
    width: 100%;
}

#content div .in_box.fl {
    width: 100%;
}

.ourpage p {
    line-height: 18px;
}

.ourpage li {
    line-height: 16px;
}

.ourpage .form input[type="radio"],
input[type="checkbox"] {
    margin: 2px;
}

.ourpage a {
    color: #0e6f76 !important;
}


.special_main {
    display: block;
    width: 100%;
    padding-left: 0;
    float: left;
    box-sizing: border-box;
    border-bottom: 1px solid #d94e3b;

}

.special_main .module_title.titles,
.special_main .link-wrap {
    display: inline-block;
    vertical-align: top;
}

.industry-wrap {
    margin-right: 5px;
    text-align: right;
    width: 100%;
    font-weight: 600;
}

.slider_container {
    width: 100%;
    margin: auto;
    clear: both;
    background: url(/UI/images/shadow_top.png) no-repeat top center;
    padding: 0px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: row;
        align-items: flex-start;
    }

    .sidebar {
        width: 30%;
        order: 1;
    }

    .main-content {
        padding: 2px;
        width: 70%;
        order: 2;
    }

    .banner-img {
        width: 100%;
        height: auto;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

/* ===== 992px to 769px (Sidebar visible) ===== */
@media (max-width: 992px) and (min-width: 769px) {
    .container {
        display: flex;
        flex-direction: row;
        /* Keep sidebar visible */
        align-items: flex-start;
    }

    .sidebar {
        width: 25%;
        /* Slightly wider for readability */
        order: 1;
    }

    .main-content {
        width: 75%;
        order: 2;
    }

    /* Adjust inner elements */
    .banner-img {
        width: 100%;
        height: auto;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}


.flex-container a:active,
.flexslider a:active {
    outline: none;
}

.flexslider {
    width: 100%;
    margin: 0 auto 20px auto;
    padding: 0 0 0px 0;
    background: url(/UI/images/shadow_bottom.png) no-repeat center bottom;
}

.flexslider .slides>li {
    display: none;
}

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
    width: 100%;
    display: block;
    border: 0px #ededed solid;
    height: auto;
}

.flexslider {
    position: relative;
    zoom: 1;
}

.flexslider .slides {
    zoom: 1;
}

.flexslider .slides>li {
    position: relative;
}

/* Control Nav */
.flex-control-nav {
    width: 97%;
    position: absolute;
    bottom: -30px;
    text-align: center;
}

.flex-control-nav li {
    margin: 0 0 0 5px;
    display: inline-block;
    zoom: 1;
    display: inline;
}

.flex-control-nav li:first-child {
    margin: 0;
}

.flex-control-nav li a {
    width: 13px;
    height: 13px;
    display: block;
    cursor: pointer;
    text-indent: -9999px;
}

.flex-control-nav li a:hover {
    background-position: 0 -13px;
}

.flex-control-nav li a.active {
    background-position: 0 -26px;
    cursor: default;
}


.slides,
.flex-control-nav,
.flex-direction-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.flexslider .slides>li {
    display: none;
}

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
    width: 100%;
    display: block;
    border: 0px #ededed solid;
    height: auto;
}

.slides:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

html[xmlns] .slides {
    display: block;
}

* html .slides {
    height: 1%;
}

.no-js .slides>li:first-child {
    display: block;
}

.flexslider .slides {
    zoom: 1;
}

.flexslider .slides>li {
    position: relative;
}

/* Control Nav */
.flex-control-nav {
    width: 97%;
    position: absolute;
    bottom: -30px;
    text-align: center;
}

.flex-control-nav li {
    margin: 0 0 0 5px;
    display: inline-block;
    zoom: 1;
    display: inline;
}

.flex-control-nav li:first-child {
    margin: 0;
}

.flex-control-nav li a {
    width: 13px;
    height: 13px;
    display: block;
    cursor: pointer;
    text-indent: -9999px;
}

.flex-control-nav li a:hover {
    background-position: 0 -13px;
}

.flex-control-nav li a.active {
    background-position: 0 -26px;
    cursor: default;
}

.flex-direction-nav li a {
    cursor: pointer;
    display: block;
    height: 43px;
    position: absolute;
    text-indent: -9999px;
    top: 42%;
    width: 30px;
}

.flex-direction-nav li a.next {
    right: 0;
    content: "&#187;";
}

.flex-direction-nav li a.prev {
    left: 0;
    content: "&#171;";
}

/*.flex-direction-nav li a.next {background:rgba(0, 0, 0, 0.8); bottom:184px; color:#fff; font-size:24px; font-weight:600;}
.flex-direction-nav li a.prev {background:rgba(0, 0, 0, 0.8);bottom:141px; color:#fff; font-size:24px; font-weight:600;}
.flex-direction-nav li a.next:hover {background:rgba(0, 0, 0, 0.5);}
.flex-direction-nav li a.prev:hover {background:rgba(0, 0, 0, 0.5);}*/
.flex-direction-nav li a.next {
    background: url(/UI/images/next_arr.png) no-repeat center;
    bottom: 184px;
}

.flex-direction-nav li a.prev {
    background: url(/UI/images/prev_arr.png) no-repeat center;
    bottom: 141px;
}

.flex-direction-nav li a.next:hover {
    background: url(/UI/images/next_arr_hover.png) no-repeat center;
}

.flex-direction-nav li a.prev:hover {
    background: url(/UI/images/prev_arr_hover.png) no-repeat center;
}

.flex-direction-nav li a.disabled {
    opacity: .3;
    filter: alpha(opacity=30);
    cursor: default;
}

.icon-size {
    width: 30px !important;
    height: 30px !important;
    top: 45% !important;
}



.flex-direction-nav li a.prev {
    left: 0;
    content: "&#171;";
}

.module_title {
    font-size: 18px;
    font-weight: normal;
    padding: 9px 0;
}

#sidebar .module_title {
    font-size: 14px;
    text-align: center;
    padding: 9px;
    font-weight: 700;

}

#sidebar .box_item .module_title {
    border-top: 1px solid #ccc;
    background: #d94e3b;
}

.brand_list .module_title {
    font-size: 16px;
}

#Specials .titles {
    text-align: left;
    margin-left: 0;
    width: 220px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    padding: 0 15px;
    height: 36px;
    line-height: 36px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#Manuf .titles {
    text-align: left;
    margin-left: 0;
    width: 220px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    padding: 0 15px;
    height: 36px;
    line-height: 36px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.boxtype2 .titles {
    font-size: 30px;
    font-weight: 100;
    padding-bottom: 10px;
    padding-top: 0px;
    position: relative;
    text-align: center;
}

.boxtype1 .titles {
    font-size: 30px;
    font-weight: 100;
    padding-bottom: 13px;
    padding-top: 9px;
    position: relative;
    text-align: center
}

.leftbar .boxtype1 .titles {
    padding-bottom: 9px;
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
}

.leftbar .titles {
    font-size: 12px;
}

#filters .leftbar .boxtype1 .titles {
    height: 14px !important;
    line-height: 13px !important;
}

#filters .leftbar .boxtype1 .titles {
    height: 14px !important;
    line-height: 13px !important;
    font-size: 14px;
    font-weight: 700;
}

#feat_prod .titles,
#new_arrivals .titles,
#Close_Out .titles {
    color: black;
    text-align: left;
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    padding: 0 15px;
    height: 36px;
    line-height: 36px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.category-card p {
    text-align: center;
    width: auto;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.special_main {
    display: block;
    width: 100%;
    padding-left: 0;
    float: left;
    box-sizing: border-box;
    border-bottom: 1px solid #3C3F43;
}

.heading-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.heading-row .industry-wrap a {
    position: relative;
    top: 0;
    /* remove inline top styles */
}

.category-card p {
    padding: 10px 5px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    white-space: normal !important;
}

.ourpage p {
    line-height: 18px;
}

.next-page-icon {
    margin: 0 0 0 4px;
}

.flex-direction-nav li a.next {
    right: 0;
    content: "&#187;";
}

/* 20/11/2025 */
@media (max-width: 1519px) and (min-width: 1440px) {
    .category-card  {
        max-width: 150px;
    }
}

/* 20/11/2025 */

/* Mobile : Sidebar goes to bottom (425px - below) */
@media screen and (max-width: 425px) {
    .ourpage {
        padding: 0;
    }

  .ourpage .container {
    display: flex;
    flex-direction: column;
  }

  /* Main content first */
  .main-content {
    order: 1;
    width: 100%;
  }

  /* Sidebar at the bottom */
  .sidebar {
    order: 2;
    width: 100%;
    margin-top: 20px;
    display: block;   /* Make sure it's visible */
  }
}
/* Hide sidebar on desktop */
@media(min-width: 426px) {
    .mobile-filter-btn {
        display: none;
    }
    .gridcol .industry-grid {
        width: 190px !important;
    }
}

/* Filter Button */
.mobile-filter-btn {
    padding: 10px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #ccc;
}

.mobile-filter-btn button {
    width: 100%;
    padding: 10px;
    background: black;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 5px;
}

/* Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: white;
    z-index: 9999;
    transition: 0.3s;
    overflow-y: auto;
}

.mobile-sidebar.show {
    right: 0;
}

/* Header */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: black;
    color: white;
    font-size: 18px;
}

/* Overlay */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9998;
}
@media (max-width: 1520px) and (min-width: 1024px) {

    #feat_prod .grid .gridcol,
    #new_arrivals .grid .gridcol,
    #Close_Out .grid .gridcol {
        width: 21% !important;
    }

}
/* Mobile: 425px and below */
@media (max-width: 425px) {

    #feat_prod .grid .gridcol,
    #new_arrivals .grid .gridcol,
    #Close_Out .grid .gridcol {
        width: 16% !important;
    }

}

/* Mobile: 375px and below */
@media (max-width: 375px) {

    #feat_prod .grid .gridcol,
    #new_arrivals .grid .gridcol,
    #Close_Out .grid .gridcol {
        width: 14% !important;
    }

}