:root{
    --primary-color:#F82643;
    --border-color:#dddddd;
    --black-color: #000000;
    --primary-grey:#F1F1F3;
}
/* Header section */
.header-area{
    background-color: var(--primary-color);
}
.header-area.fixed{
    position: fixed;
    animation: slideDown 0.5s ease-in-out;
    box-shadow: 0 7px 12px rgba(0, 0, 0, 0.05);
    z-index: 9;
    width: 100%;
}
.header-area.header-mini .navbar-brand img{
    width: 60px;
    transition: all 0.3s ease;
}
@keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
}
.navbar-brand img{
    width:90px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-area.fixed .navbar-brand img{
    width:50px;
}
.navbar-collapse{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-navbar{
    position: relative;
}
.cartadded-toast, .cartremoved-toast{
    top: 61px;
    z-index: 99;
    right: 10px;
    position: absolute;
    padding: 0;
}
.category-nav{
    border: 1px solid #ffffff;
    padding: 8px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    cursor: pointer;
    margin-left: 30px;
}
.category-nav .shop-categories{
    display:flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
}
.category-nav .shop-categories i{
    margin-right: 5px;
    font-size:14px;
}
.category-nav .shop-categories p{
    font-weight: 500;
    margin-right: 10px;
    font-size: 15px;
}
.category-nav span{
    transition: 0.6 ease;
    transform: rotate(0deg);
}
.category-nav.active-icon span{
    transform: rotate(180deg);
}
.header-right .header-user{
    align-items: center;
    border-right:1px solid #ffffff;
    padding:0 15px;
    display: flex;
    column-gap: 10px;
}
.header-right .header-user.header-cart{
    padding-right: 0;
}
.header-cart span.wes-cart{
    animation: shakeCart 0.4s ease-in-out forwards;
}
.header-right .header-user span::before{
    font-size: 26px;
    color: #ffffff;
}
.header-right .header-user:nth-last-of-type(1){
    border-right:0;
}
.header-user i{
    font-size: 26px;
    font-weight: 500;
    color:#ffffff;
    margin-right: 10px;
}
.header-user small{
    font-size: 12px;
    font-weight: 500;
}
.header-user-info{
    display: flex;
    align-items: flex-end;
    column-gap: 10px;
}
.headerUserInfo-lft small{
    font-size: 13px;
    font-weight: 400;
}
.headerUserInfo-lft a{
    font-weight:500;
    line-height:18px;
    color: #ffffff;
    display: block;
    font-size: 16px;
}
.headerUserInfo-rht span{
    cursor: pointer;
}
.headerUserInfo-rht span.wes-down-arrow::before{
    font-size: 16px;
    position: relative;
    top: 5px;
}
.header-cart a{
    background-color: #931728;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color:#ffffff;
    font-size: 15px;
}
.header-cart  a.cart-icon{
    background-color: transparent;
    width: auto;
    height: auto;
}
.header-search span{
    position: absolute;
    top: 12px;
    left: 11px;
}
.header-search span:before{
    font-size: 18px;
    color: #999999;
}
.header-search .form-control{
    border:1px solid var(--primary-color);
    height:41px;
    padding: 15px 15px 15px 35px;
    font-size: 15px;
    width: 260px;
}
.form-control:focus{
    box-shadow: none;
}
.quick-menu a {
	position: relative;
}
.quick-menu-effect a {
	overflow: visible;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: color .4s;
	transition: color .4s
}
@keyframes eff24-move {
	30% {
		-webkit-transform: translate3d(0, -5px, 0) rotate(5deg);
		transform: translate3d(0, -5px, 0) rotate(5deg)
	}
	50% {
		-webkit-transform: translate3d(0, -3px, 0) rotate(-4deg);
		transform: translate3d(0, -3px, 0) rotate(-4deg)
	}
	80% {
		-webkit-transform: translate3d(0, 0, 0) rotate(-3deg);
		transform: translate3d(0, 0, 0) rotate(-3deg)
	}
	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}
}
.quick-menu-effect a:hover {
	-webkit-animation-name: eff24-move;
	animation-name: eff24-move;
	-webkit-animation-duration: .4s;
	animation-duration: .4s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1
}
.header-user.reOrder-header .header-user-info, .header-user.reOrder-header .header-user-info small{
    display: block;
}
.header-user.reOrder-header .header-user-info a{
    color: var(--white-color);
}
.myAccount-dropdown{
    position: relative;
}
.myAccount-dropdown .dropdown-toggle::after{
    border:0;
    margin: 0;
    display: none;
}
/* Header section */
.search-suggestions{
    display: none;
    position: fixed;
    top: 4%;
    width: 90%;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 9999;
}
.search-bg{
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
}
.search-backdrop-inner{
    background-color: rgb(255 255 255 / 0);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100%;
}
.suggestion-input {
    position: relative;
    padding: 5px;
}
.suggestion-input input{
    height:45px;
    border:0;
    border-radius: 6px;
}
.suggestion-input button.btn-search{
    background-color: var(--primary-color);
    position: absolute;
    top: 8px;
    right: 8px;
    width: 100px;
    height: 39px;
    font-weight: 500;
    font-size: 14px;
}
.suggestion-input button.btn-search:hover{
    color: #ffffff;
}
.tag-products{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}
.search-results{
    padding: 0px 7px;
}
.search-products{
    height:100%;
}
.search-tags{
    border-right: 1px solid #ddd;
    height: 100%;
}
.search-tags-title{
    padding: 13px;
    border-bottom: 1px solid #dddddd;
}
.search-tags-title h5{
    margin: 0;
    font-weight: 600;
    font-size: 16px;
}
.search-tags-details ul{
    margin:0;
    padding: 0;
    height: 448px;
    overflow-y: auto;
}
.search-tags-details ul::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.search-tags-details ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
.search-tags-details ul::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.search-tags-details ul::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 255, 255, 0.3);
}
.search-tags-details ul li{
    padding: 10px;
    border-bottom:1px solid #dddddd;
}
.search-tags-details ul li a{
    color: #000000;
    font-size: 14px;
    display: flex;
    align-items: center;
    column-gap: 5px;
}
.search-tags-details ul li a span::before{
    font-size: 19px;
    color:#999999;
}
.search-tags-lft{
    padding-right: 0;
}
.search-tags-rht{
    padding-left: 0;
}
.search-suggestion-list{
    padding:0 20px;
}
.product-list.search-product-list:hover{
    transform: scale(1);
}
.product-items.search-product-items{
    height:90px;
}
.product-items.search-product-items img{
    width: 80px !important;
}
.search-product-list .product-details h6{
    font-size: 14px;
}
.search-product-list .product-details .product-price{
    margin-top: 5px;
}
.search-product-list .product-details .product-price p{
    font-size: 13px;
}
.cc-serach-result .product-price p{
    color: #000000;
}
.close-search{
    position: absolute;
    right: -32px;
    top: 0;
}
.close-search i{
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.close-search i:hover{
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.search-body{
    overflow: hidden;
}
/* Shop all Products menu */
.category-backdrop{
    display: none;
}
.category-backdrop.active{
    display: block;
    position: fixed;
    top: 100px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
    width: 100%;
    height: 100%;
}
.category-backdrop.category-bkdrop.active{
    display: block;
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
    width: 100%;
    height: 100%;
}
/*#shop-allProducts{
    z-index: 9;
}*/
.allproducts-dialog{
    top:70px;
    max-width: 1140px;
    padding-bottom: 25px;
}
.allproducts-dialog.allProducts{
    top:34px;
}
.allproducts-content{
    border-radius: 0;
}
.allproducts-body{
    padding: 0;
}
.allproducts-header{
    padding: 12px;
    border-bottom: 1px solid #dddddd;
}
.allproducts-header a.allproducts-close{
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 18px;
}
.allproducts-header a.allproducts-close i{
    color: #000000;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
} 
.allproducts-header a.allproducts-close i:hover{
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.allproducts-header .nav-link{
    color: #000000;
}
.allproducts-header .nav-link.active{
    background-color: var(--primary-color);
}
.catg-list-title h5{
    font-weight: 600;
    margin-bottom: 0;
}
.catg-list-title h5 a{
    color: #000000;
}
.catg-list-title h5:hover a{
    color: var(--primary-color);
}
.catg-menu-inner{
    margin-top: 30px;
}
.categ-menus{
    width: 300px;
    height: 100%;
    min-height: 550px;
    border-right: 1px solid #ddd;
}
#category-tab{
    display: inline-grid;
    grid-template-columns: min-content auto;
    width: 100%;
}
.categ-menus-content{
    width: 100%;
    height: 100%;
    min-height: 550px;
}
.categ-menus ul{
    display: block;
}
.categ-menus ul li{
    display: block;
}
.categ-menus ul li{
    border-bottom: 1px solid #dddddd;
}
.categ-menus ul li a{
    text-decoration: none;
    color: #000000;
    display: flex;
    padding: 10px 15px;
    font-size: 15px;
    align-items: center;
    justify-content: space-between;
}
.categ-menus ul li a.active{
    color: var(--primary-color);
}
.categ-menus ul li a p{
    margin: 0;
    display: flex;
    align-items: center;
    column-gap: 15px;
    font-size: 15px;
}
.categ-menus ul li a p img{
    filter: contrast(100%) grayscale(100%);
}
.categ-menus ul li a.active p img{
    filter: contrast(100%) grayscale(0%);
}
.categ-menus::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.categ-menus::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
.categ-menus::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.categ-menus::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 255, 255, 0.3);
}
.category-pane{
    padding: 15px;
}
.catg-menu-inner a{
    color: #000000;
}
.catg-menu-inner a.no-products{
    color: var(--black-color);
    font-weight: 400;
}
.catg-menu-inner h6{
    display: flex;
    align-items: center;
    font-weight: 600;
    margin: 0;
    column-gap: 7px;
}
.catg-menu-inner a h6{
    font-size: 15px;
}
.catg-menu-inner a:hover h6{
    color: var(--primary-color);
}
.catg-menu-inner a:hover h6 i{
    position: relative;
    -webkit-animation-name: anima2;
    animation-name: anima2;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@-webkit-keyframes anima2 {
    0% {
        left: 0px;
    }
    50% {
        left: 5px;
    }
    100% {
        left: 0px;
    }
}
.catg-menu-inner h6 i{
    font-size: 14px;
}
.catg-menu-inner ul{
    padding: 0;
    margin: 10px 0 0;
}
.catg-menu-inner ul li{
    padding: 0;
    transition: all 0.3s ease;
    list-style: none;
}
.catg-menu-inner ul li a{
    color: #000000;
    font-weight: 400;
    font-size: 14px;
}
.catg-menu-inner ul li:hover a{
    color: var(--primary-color);
    text-decoration: underline;
}
.showmore-catg[aria-expanded="true"] i:before{
    content: "\f077";
}
.showmore-catg[aria-expanded="false"] i:before{
    content: "\f078";
}
.showmore-catg{
    font-size: 14px;
    color: var(--primary-color); 
    margin-top: 5px;
}
.catg-menu-inner ul.expand-catg-menu{
    margin-top: 0;
}
.view-results{
    color:var(--primary-color);
    font-size: 14px;
    font-weight: 500;
}
.modal-backdrop-allproducts{
    top:93px;
}
.modal-back .modal-backdrop-allproducts{
    top:63px;
}
.allProducts-slider{
    padding: 0;
    margin:0;
}

.btn {
    margin-bottom: 15px;
}
.allProducts-slider li{
    display: inline-block;
    margin-right: 10px;
}
.allProducts-slider li a{
    color: #000000;
    font-size: 15px;
    background-color: #ffffff;
    height: 39px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    padding: 0 15px;
}
.allProducts-slider li a.active{
    background-color: var(--primary-color);
    height: 39px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 0 25px;
}
.allProducts-slider li:hover a{
    background-color: var(--primary-color);
    height: 39px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 0 25px;
}
.allProducts-slider li:last-child{
    margin-right: 0;
}
.thrid-collapse.collapse:not(.show){
    display: block;
}
.thrid-collapse p{
    display: none;
}
/* Shop all Products menu */
/* Login After Header */
.dropdown-animate-up {
    animation: dropdownUp 0.6s ease forwards;
    transform-origin: bottom;
} 
@keyframes dropdownUp {
    0% {
      transform: translateY(30px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
}
.dropdown-menu.with-arrow.show {
    top: 120%;
    padding: 20px;
    width: 400px;
    max-height: 80vh; /* Use up to 80% of viewport height */
    overflow-y: auto;
    border-radius: 0;
    border: 0;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
}
.dropdown-menu.with-arrow.show::after {
    position: absolute;
    font-family: "Font Awesome 6 Free";
    content: "\f0d8";
    font-weight: 900;
    top: -16px;
    right: 8px;
    z-index: -1;
    color: #fff;
    font-size: 24px;
}     
@keyframes waveHand {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}
.wave-icon {
    display: inline-block;
    transform-origin: 70% 70%; 
    animation: waveHand 1.5s ease-in-out infinite;
}
.dropdown-myAccount-header{
    border-bottom:1px solid var(--border-color);
    padding-bottom: 10px;
}
.dropdown-myAccount-header h5{
    font-weight: 600;
    display: flex;
    align-items: center;
    column-gap: 5px;
    margin: 0;
    font-size: 14px;
}
.dropdown-myAccount-header h5 p{
    margin: 0;
    display: flex;
    align-items: center;
    column-gap: 5px;
}
.accInfo-header span{
    font-size: 14px;
    font-weight: 400;
    color:var(--content-grey);
}
.dropdown-myAcconunt-content{
    border-bottom: 1px solid var(--border-color);
}
.dropdown-myAcconunt-content .dropdownAccount-list{
    padding: 15px 0;
}
.dropdown-myAcconunt-content .dropdownAccount-list h6{
    color:#999999;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}
.dropdown-myAcconunt-content .dropdownAccount-list ul li {
    margin: 8px 0 0;
}
.dropdown-myAcconunt-content .dropdownAccount-list ul li:hover a span::before{
    display: inline-block;
    color: var(--primary-color);
    animation: jumpSpin 1s ease-in-out;
}
.dropdown-myAcconunt-content .dropdownAccount-list ul li:hover a{
    color: var(--primary-color);
}
.dropdown-myAcconunt-content .dropdownAccount-list ul li a{
    color:var(--black-color);
    display: flex;
    align-items: center;
    column-gap: 8px;
    font-size:14px;
    transition: 0.3s all ease-in-out;
    font-weight: 500;
}
.dropdown-myAcconunt-content .dropdownAccount-list ul li a span::before{
    color: var(--content-grey);
    font-size: 21px;
}
@keyframes jumpSpin {
    0% {
      transform: translateY(0) rotate(0deg);
    }
    30% {
      transform: translateY(-10px) rotate(180deg);
    }
    60% {
      transform: translateY(0) rotate(360deg);
    }
    100% {
      transform: translateY(0) rotate(360deg);
    }
}
.dropdown-myAccount-footer{
    padding: 15px 0 0;
}
.dropdown-myAccount-footer a {
    display: inline-block;
    padding: 10px 50px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: background-color 0.8s ease, color 0.8s ease, transform 0.8s ease;
    color: var(--primary-color);
    font-size: 14px;
}

.dropdown-myAccount-footer a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.02); /* subtle lift on hover */
}
/* Login After Header */
/* Responsive code */
@media only screen and (max-width: 1920px){
    .allproducts-dialog {
        top: 42px;
        max-width: 1300px;
        padding-bottom: 25px;
    }
}
@media only screen and (max-width: 1399px){
    .allproducts-dialog {
        max-width: 1140px;
    }
}
@media only screen and (max-width: 1199px){
    .category-nav .shop-categories i{
        margin:0;
    }
    .header-search .form-control{
        width: 210px;
    }
    .category-nav .shop-categories {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 5px; 
      }
      .category-nav .shop-categories p {
        font-weight: 500;
        margin-left: 10px;
        font-size: 15px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        flex-shrink: 1;
        flex-grow: 1;
        min-width: 0;    
      }
}
@media only screen and (max-width: 991px){
    .allproducts-header a.allproducts-close i.fa-house{
        color: #ffffff;
    }
    .category-nav .shop-categories {
        max-width: 100%;
    }
    .mob-search span::before{
        font-size: 30px;
        color:#ffffff;
    }
    .dropdown-myAcconunt-content .dropdownAccount-list ul li a{
        font-size: 14px;
        font-weight: 400;
    }
    .header-right{
        column-gap: 13px;
        align-items: center;
    }
    .header-right .header-user{
        column-gap:5px;
        padding: 0;
    }
    .header-right .header-user span::before {
        font-size: 30px;
    }
    .navbar-brand img {
        width: 45px;
    }
    .header-area{
        padding:0;
    }
    .mobile-user-info{
        display: flex;
        align-items: center;
        column-gap: 15px;
    }
    .mobile-user-info img{
        width: 35px;
    }
    .mobile-user-info i{
        font-size: 30px;
        color: #fff;
    }
    .shop-categories i{
        margin:0;
    }
    .navbar-collapse{
        flex-basis: inherit;
    }
    .header-search {
        width: 100%;
        margin:5px 0;
    }
    .banner-section{
        padding: 40px 0;
    }
    *::-webkit-input-placeholder{
        font-size: 13px;
    }
    /* search suggestions*/
    .header-search .form-control{
        width: 100%;
    }
    .allproducts-body{
        overflow-y: auto;
    }
    .close-search{
        position: static;
        padding: 15px;
        width: 20%;
    }
    .suggestion-input {
        width: 70%;
        padding-right: 10px;
        position: relative;
        display: flex !important;
        align-items: flex-end;
        justify-content: flex-end;
    }
    .cc-mob-sugg{
        width: 50%;
    }
    .cc-mob-sugg span{
        position: absolute;
        top: 10px;
        right: 10px;
    }
    .suggestion-input input{
        height: 36px;
    }
    .search-suggestions{
        top:0;
        width:100%;
        height: 100%;
        overflow-y: scroll;
        overflow-x: hidden;
        position: fixed;
        background-color: #ffffff;
    }
    #close-search-mob{
        display: flex !important;
        align-items: center;
        column-gap: 10px;
        color: #ffffff;
    }
    #close-search-mob span{
        transform: rotate(90deg);
    }
    #close-search-mob span::before{
        font-size: 18px;
        font-weight: 600;
    }
    .search-tags-lft{
        padding-right: 15px;
    }
    .search-tags-details ul li {
        padding: 7px 8px;
        display: inline-block;
        border: 1px solid #ddd;
        margin: 5px;
    }
    .search-tags-details ul{
        height: auto;
        padding: 0 5px;
    }
    .search-tags-details ul li a {
        font-size: 12px;
    }
    .search-tags{
        border:0;
    }
    .search-tags-details ul li a span::before {
        font-size: 17px;
    }
    .search-suggestion-list {
        padding: 0 15px;
    }
    .search-product-list .product-details h6, .search-product-list .product-details .product-price p {
        font-size: 12px;
    }
    .search-results {
        padding: 0px 5px;
    }
    .search-tags-rht{
        padding-left: 15px;
        padding-right: 15px;
    }
    .search-tags-title{
        margin-bottom: 5px;
    }
    .search-carousel .product-list{
        margin: 0;
        padding: 10px;
    }
    .cc-mb-search{
        background-color:var(--primary-color);
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }
    .product-items.search-product-items {
        height: 70px;
    }
    .product-items.search-product-items img {
        width: 50px !important;
    }
    .product-price p {
        font-weight: 800;
    }
    /* search suggestions*/
    /* Shop all products */
    .allproducts-dialog{
        padding: 0;
        margin: 0;
        top: 60px;
        width:90%;
        height:100%;
    }
    .allproducts-dialog.allProducts{
        top:60px;
    }
    .allproducts-content{
        height: 100%;
    }
    #category-tab{
        display: block;
    }
    .categ-menus{
        width: 100%;
        height:100%;
        max-height: 100%;
        min-height: 100%;
        background-color: #ffffff;
    }
    .categ-menus-content{
        position: fixed;
        top: 0;
        left: -104%;
        width: 100%;
        height: 100%;
        background: #ffffff;
        overflow-y: scroll;
        -webkit-transition: all 0.6s ease;
        -ms-transition: all 0.6s ease;
        transition: all 0.6s ease;
    }
    .categ-menus-content.categ-opened{
        left: 0px;
        position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
        overflow-y: scroll;
        box-shadow: 0 11px 22px rgba(0, 0, 0, 0.15);
    }
    .thrid-collapse{
        position: fixed;
        top: 0;
        left: -104%;
        width: 100%;
        height: 100%;
        background: #ffffff;
        overflow-y: scroll;
        -webkit-transition: left 0.5s ease-in-out;
        -ms-transition: left 0.5s ease-in-out;
        transition: left 0.5s ease-in-out;
    }
    .thrid-collapse.show{
        width: 100%;
        height:100%;
        margin:0;
        top: 0;
        left:0;
        padding:15px;
        overflow-y: auto;
        box-shadow: 0 11px 22px rgba(0, 0, 0, 0.15);
        -webkit-transition: left 0.5s ease-in-out;
        -ms-transition: left 0.5s ease-in-out;
        transition: left 0.5s ease-in-out;
    }
    .catg-list-title h5{
        margin-bottom: 15px;
        font-size: 17px;
    }
    .category-pane{
        height: 100%;
        min-height: 100%;
        max-height: 100%;
        background-color: #ffffff;
    }
    .category-pane.mob-category-pane.active.show{
        position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
        overflow-y: scroll;
        height: 100%;
        min-height: 100%;
        max-height: 100%;
    }
    .category-nav-mob{
        border: 1px solid #ffffff;
        padding: 8px 15px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #ffffff;
        cursor: pointer;
        margin-bottom: 0 !important;
    }
    .category-nav-mob .shop-categories{
        display: flex;
    }
    .allproducts-header{
        padding: 0;
    }
    .allproducts-header a.allproducts-close{
        position: static;
        color: #ffffff;
        background-color: var(--primary-color);
        padding: 15px;
        display: block;
        font-size: 13px;
    }
    .allproducts-header a.allproducts-close p{
        display: inline-flex !important;
        align-items: center;
        column-gap: 10px;
        font-size: 14px;
    }
    .allproducts-header ul{
        padding: 10px 15px;
    }
    .allproducts-header ul.nav-pills li{
        display: inline-flex;
        width: 50%;
    }
    .allproducts-header .nav-link{
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 100%;
        text-align: center;
        font-size: 14px;
    }
    .categ-menus ul {
        display: block;
        padding: 0 15px 15px;
    }
    .categ-menus ul li{
        border-bottom: 1px solid var(--border-color);
        padding: 0;
        margin: 0;
    }
    .catg-menu-inner a h6{
        font-weight: 500;
        font-size: 13px;
    }
 
    .mob-categ-back{
        position: absolute;
        top: 0;
        left: 0;
        background-color: var(--primary-grey);
        padding: 15px;
        width: 100%;
    }
    .thrid-collapse.collapse:not(.show){
        display: none;
    }
    .thrid-collapse p{
        column-gap: 10px;
        display: flex;
        align-items: center;
        font-size: 14px;
    }
    .catg-menu-inner ul li{
        padding:3px 0;
    }
    .inner-third-level{
        margin-top: 45px;
    }
    .mob-categ-back p{
        display: flex;
        color: #000000;
        align-items: center;
        column-gap: 10px;
        font-size: 14px;
    }
    .mob-top-categ{
        padding-top: 50px;
    }
    .catg-menu-inner{
        margin: 0 0 16px;
    }
    .categ-menus ul li a{
        padding:15px 0;
    }
    .owl-carousel.allProducts-slider{
        z-index: 0;
    }
    .category-nav{
        margin-left: 5px;
        margin-bottom: 0 !important;
        padding: 5px 10px;
    }
    /* Shop all products */
    .modal-backdrop-allproducts{
        top:60px;
    }
    .modal-back .modal-backdrop-allproducts {
        top: 60px;
    }
    .wes-my-account:before{
        font-size: 30px;
        color: #ffffff;
    }
    .header-cart a{
        width:30px;
        height:30px;
    }
    .modal-dialog-slideout {
        margin: 0 auto 0 0;
        background: #fff;
    }
    .modal.fade .modal-dialog.modal-dialog-slideout {
        -webkit-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
    }
    .modal.fade.show .modal-dialog.modal-dialog-slideout {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        flex-flow: column;
    }
    .modal-dialog-slideout .modal-content {
        border: 0;
    }
    .allProducts-slider li{
        display: block;
    }
    .allProducts-slider li a.active {;
        align-items: flex-start;
        justify-content: flex-start;
        height: auto;
        padding: 0;
        background-color: transparent;
        color:var(--primary-color);
        border-radius: 0;
        padding: 10px 0;
    }
    .allProducts-slider li a{
        align-items: flex-start;
        justify-content: flex-start;
        padding: 10px 0;
        height: auto;
        border-radius: 0;
        border-bottom: 1px solid var(--border-color);
    }
    .allProducts-slider li:hover a{
        height: auto;
        padding: 10px 0;
        background-color: transparent;
        display: block;
        color: var(--primary-color);
        border-radius: 0;
    }
    .allProducts-slider li a{
        font-size: 14px;
    }
    .allproducts-header{
        border:0;
    }
    .shop-department{
        background-color: #F1F1F3;
        padding: 10px 15px;
        margin: 10px 0 0;
        font-size: 15px;
        font-weight: 600;
    }
    .header-area.fixed{
        z-index: 99;
    }
}
@media only screen and (max-width: 767px){
    .category-nav-mob {
        padding: 8px 12px;
    }
    .how-works-content p{
        font-size: 15px;
    }
    .search-tags-title h5{
        font-size: 15px;
    }
    .cc-mob-sugg{
        width: 100%;
    }
    .view-results{
        font-size: 12px;
    }
    .allProducts-slider li{
        margin-right: 0;
    }
    .categ-menus ul li a p{
        font-size: 13px;
    }
    .navbar-brand img {
        width: 45px;
    }
    .mob-search span::before{
        font-size: 22px;
    }
    .header-right .header-user span::before{
        font-size: 22px;
    }
    .header-area{
        padding:0;
    }
    .category-nav .shop-categories p {
        margin-right: 0;
        font-size: 14px;
        width: auto;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .wes-my-account:before{
        font-size: 22px;
    }
}
@media only screen and (max-width: 575px){
    .header-cart a{
        font-size: 14px;
    }
    .header-area{
        padding:0;
        z-index: 999;
    }
    .cartadded-toast, .cartremoved-toast{
        right: 0;
        padding:0;
        top:57px
    }
}
@media only screen and (max-width: 400px){
    .navbar-brand{
        margin-right: 10px;
    }
    .header-user{
        padding-right: 0;
    }
    .header-area.fixed .navbar-brand img {
        width: 45px;
    }
    
    .header-right{
        column-gap: 12px;
        align-items: center;
    }
    .category-nav .shop-categories p {
        width: 70px;
    }
    .header-cart a {
        width: 25px;
        height: 25px;
    }
    .header-cart a {
        font-size: 13px;
    }
}
/* Responsive code */