* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Arial";
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


dl,
ol,
ul {
    padding: 0px;
    margin: 0px;
}

li {
    list-style: none;
}

p,
li {
    font-family: 'Poppins';
    font-size: 15px;
    color: #595959;
    line-height: 1.6;
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Arial";
    color: #000;
    line-height: 1.3;
}

a {
    font-family: "Arial";
    font-size: 16px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s ease 0s;
}

.container {
    max-width: 1230px;
}

:root { --first-clr: #90c661;}

.bg-color {
    background-color: #f9f9f9;
}

img {
    width: auto;
    max-width: 100%;
    transition: all 0.4s ease 0s;
}

.padd {
    padding: 60px 0px;
}

/* header css  */

.sticky {
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99;
    /*animation: slidetop 1s ease-in-out backwards;*/
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
    bottom: inherit;
    background: #fff;
}

@keyframes slidetop {
    from {
        transform: translateY(-100%)
    }

    to {
        transform: translateY(0)
    }
}

.sticky .top-header {
    /*display: none;*/
}

.sticky .logo img {
    width: 200px;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.top-header {
    padding: 10px 0;
}

.menu ul {
    display: flex;
}

.menu ul li a {
    display: inline-block;
    padding: 15px 20px;
    font-size: 18px;
}

.logo img {
    width: 290px;
    height: auto;
}

.bottom-header {
    padding: 20px 0;
    background: #000;
}

.menu-shoplinks {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-btn a {
    padding: 8px 15px;
    background: var(--first-clr);
    display: inline-block;
    color: #fff;
    cursor: pointer;
}

ul.shop-links {
    display: flex;
    align-items: center;
}

ul.shop-links li a {
    display: grid;
    place-content: center;
    background: #fff;
    margin: 0 5px;
    padding: 9px 15px;
}

.menu-search .search-category-section {
    display: flex;
    align-items: center;
    background: #fff;
}

.menu-search .search-category-section select,
.menu-search .search-category-section input {
    border: none;
}

.menu-search .search-category-section button {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-search .search-category-section button i {
    margin-left: 5px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
}

/* header css end  */

/* section deal css  */


.web-title h2 {
    text-transform: uppercase;
    font-size: 23px;
    position: relative;
    padding-bottom: 7px;
}

.web-title h2:before {
    position: absolute;
    content: "";
    width: 150px;
    height: 2px;
    background: #000;
    bottom: 0;
    z-index: 9;
    left: 0;
}

.web-title h2:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #eee;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.deal-img img {
    width: 98%;
    /* height: 300px; */
    /* object-fit: contain; */
    /* background: #f5f5f5; */
    /* padding: 20px 0; */
    height: auto;
    box-shadow: rgb(99 99 99 / 15%) 0px 2px 8px 0px;
    margin: 0 auto 20px;
    border-radius: 10px;
}

.sidebar-area {
    padding-top: 7px;
}

.shop-sidebar-item {
    border: none !important;
}

.shop-sidebar-item:not(:last-child) {
    padding-bottom: 15px;
}

.shop-sidebar-item:first-of-type {
    border-radius: 0;
}

.shop-sidebar-item:first-of-type .shop-sidebar-toggle {
    border-radius: 0;
}

/*.shop-sidebar-toggle {*/
/*    font-size: 17px;*/
    /* line-height: 1; */
/*    padding: 0 0 10px;*/
/*    color: #000;*/
/*    border-bottom: 1px solid #ddd;*/
/*}*/

/*.shop-sidebar-toggle:not(.collapsed) {*/
/*    color: var(--first-clr);*/
/*    background-color: transparent;*/
/*    -webkit-box-shadow: none;*/
/*    box-shadow: none;*/
/*}*/

button.shop-sidebar-toggle.accordion-button {
    padding: 0;
    width: auto;
}

.accrod-flex {
    display: flex;
    border-bottom: 1px solid #cdcdcd;
    padding: 0 0 12px 0;
    /*margin: 0px 0 12px 0;*/
    justify-content: space-between;
}

.shop-sidebar-toggle:not(.collapsed):after {
    background: none;
    -webkit-filter: none;
    filter: none;
    content: "\f106";
    -webkit-transform: none;
    transform: none;
    color: var(--first-clr);
}

.shop-sidebar-toggle:after {
    color: #878787;
    width: auto;
    height: auto;
    background: none;
    position: absolute;
    content: "\f107";
    left: auto;
    right: 0;
    top: 0;
    font-family: "fontawesome";
    /* -webkit-transform: none; */
    /* transform: none; */
}

.Category-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.Category-title i {
    font-size: 21px;
}

.Category-title h3 {
    margin: 0;
    font-size: 20px;
    text-transform: uppercase;
    margin-left: 20px;
}

.category-box {
    width: 80%;
    margin: auto;
    padding: 25px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.shop-sidebar-toggle:focus {
    border-color: #dee2e6;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.shop-sidebar-body {
    padding: 10px;
    border: none;
    background: var(--first-clr);
}

.shop-sidebar-body ul li {
    padding: 6px 10px;
    background: #fff;
    margin-bottom: 6px;
}

/* section deal css end */

/* feature sec css  */

.product-box {
    text-align: center;
    padding: 40px 30px;
    transition: .4s ease;
    border-radius: 2px;
    overflow: hidden;
    width: 95%;
    margin: auto;
    position: relative;
    margin-bottom: 25px;
}

.product-box:hover {
    box-shadow: rgb(99 99 99 / 47%) 0px 2px 8px 0px;
}

.pr-img img {
    width: 185px;
    height: 185px;
    object-fit: contain;
    margin-bottom: 20px;
}

.pr-txt h4 {
    font-size: 20px;
    text-transform: capitalize;
}

p.price {
    font-weight: 500;
}

span.offer-price {
    font-weight: 600;
}


.product-box:hover img {
    transform: scale(1.09);
}

.sale {
    /*width: 50px;*/
    /*height: 50px;*/
    /*background: var(--first-clr);*/
    color: #000;
    display: grid;
    place-content: center;
    border-radius: 100%;
    right: 15px;
    position: absolute;
    top: 15px;
    text-transform: uppercase;
}

.pr-icon ul {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 25%;
    left: 25%;
    transform: translateY(-100%);
    opacity: 0;
    transition: .6s ease;
    background: #ffffff9e;
    padding: 10px 30px;
}

.pr-icon ul li a.pr-ic {
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
    background: #fff;
    border-radius: 100%;
    margin: 0 4px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    font-size: 16px;
}

.product-box:hover .pr-icon ul {
    opacity: 1;
    transform: inherit;
}

.pr-icon ul li a.pr-ic:hover {
    background: var(--first-clr);
}

/* feature sec css end  */

/* latest sec css  */

.product-box.latest-box:hover {
    box-shadow: none;
}

.option-btn a {
    padding: 5px 15px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--first-clr);
    color: var(--first-clr);
    align-items: center;
    gap: 10px;
    width: max-content;
    margin: 10px auto 0;
    transform: translateY(-30px);
    opacity: 0;
}

.option-btn a:hover {
    background: var(--first-clr);
    color: #ffffff;
}

.product-box.latest-box:hover .option-btn a {
    opacity: 1;
    transform: none;
}

.product-box.latest-box {
    margin: 0;
    padding: 25px;
}

/* latest sec css end */

/* testimonial css  */

.test-img img {
    width: 100%;
    height: 175px;
    object-fit: cover;
}

.testimonial-box {
    text-align: center;
    padding: 40px 30px;
    border: 2px solid #ddd;
}

.testimonial-box img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 100%;
    margin: 0 auto 20px;
}

.testimonial-box h5 span {
    color: var(--first-clr);
}

.testimonial-box p {
    font-style: italic;
}

ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

ul.slick-dots li button {
    font-size: 0;
    width: 13px;
    height: 13px;
    border: none;
    border-radius: 100%;
    background: #ddd;
}

ul.slick-dots li.slick-active button {
    background: var(--first-clr);
    transform: scale(1.1);
}

/* testimonial css end */

/* footer css  */

.newsletter {
    padding: 40px 0;
    background: #e6e6e6;
    border-bottom: 1px solid #333;
}

.news-form input {
    width: 70%;
    display: block;
    border: 2px solid #ddd;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.news-form button.submit {
    width: 70%;
    border: none;
    padding: 8px 30px;
    border-radius: 10px;
    background: var(--first-clr);
    font-size: 18px;
}

.newsletter h4 {
    text-transform: uppercase;
    font-size: 28px;
}

.foooter-bottom {
    padding: 50px 0 30px;
}

.footer-box img {
    width: 230px;
    margin-bottom: 20px;
}

footer p,
footer a {
    color: #595959;
}

ul.social-icon {
    display: flex;
    align-items: center;
}

ul.social-icon li a {
    color: var(--first-clr);
    font-size: 25px;
    margin: 0 10px;
}

ul.social-icon li a:hover {
    color: #000;
}

.footer-links h4 {
    text-transform: uppercase;
    font-size: 19px;
    margin-bottom: 20px;
}

.footer-links ul li {
    position: relative;
    margin-bottom: 3px;
    padding-left: 20px;
}

.footer-links ul li:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: var(--first-clr);
    left: 0;
    top: 7px;
    clip-path: polygon(56% 27%, 100% 50%, 55% 71%, 0% 100%, 17% 51%, 0% 0%);
}

.foot-cont {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.foot-cont i {
    width: 30px;
    height: 30px;
    background: var(--first-clr);
    display: grid;
    place-content: center;
    border-radius: 100%;
    color: #fff;
    font-size: 14px;
}

.foot-cont a {
    width: 70%;
    display: inline-block;
    margin-left: 10px;
    /*word-wrap: break-word;*/
}

.copyright {
    background: var(--first-clr);
    padding: 10px 0;
    text-align: center;
}

.copyright a {
    color: #000;
}

.footer-padding {
    padding-left: 50px;
}

/* footer css end */

/* ====== about us page ====== */

.inner-banner {
    padding: 100px 0;
    position: relative;
    z-index: 9;
}

.inner-banner:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #000000ad;
    top: 0;
    z-index: -1;
}

.inner-content {
    text-align: center;
    width: 100%;
}

.inner-content h2 {
    font-size: 44px;
    font-weight: bold;
    color: #fff;
}

.inner-content ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.inner-content ul li {
    color: #fff;
}

.inner-content ul li a {
    color: var(--first-clr);
}

.about-text ul li {
    margin: 10px 0;
    font-weight: 600;
    padding-left: 25px;
    position: relative;
}

.about-text ul li:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 3px;
    background: var(--first-clr);
    left: 0;
    bottom: 10px;
    border-radius: 20px;
}

.img-colarge {
    position: relative;
    height: 100%;
    margin-bottom: 110px;
}

.colarge-2 {
    position: relative;
    margin-right: 180px;
    z-index: 1;
    border: 10px solid #90c661;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}

.colarge-1 {
    position: absolute;
    left: 160px;
    bottom: -75px;
    max-width: 370px;
}

.since {
    position: relative;
}

.since-2 {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
}

.colarge-2 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.slide-right {
    -webkit-animation: slide-right 1.5s ease-in-out infinite alternate both;
    animation: slide-right 1.5s ease-in-out infinite alternate both;
}

@keyframes slide-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

.counter-sec {
    background: url(../img/counter-bg.jpg);
    background-size: cover;
    position: relative;
}

.counter-sec:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #000000d6;
    top: 0;
}

.counter-box {
    padding: 50px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.8s;
    text-align: center;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    z-index: 1;
}

.counter-box span {
    font-size: 60px;
    line-height: 60px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: white;
}

.counter-box p {
    margin: 0;
    color: white;
}

.counter-box:after {
    content: "";
    height: 0;
    width: 100%;
    background-color: var(--first-clr);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -webkit-transform-origin: top;
    -o-transform-origin: top;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}

.counter-box:hover:after {
    height: 100%;
    top: auto;
    bottom: 0;
    transform-origin: bottom;
    -moz-transform-origin: bottom;
    -ms-transform-origin: bottom;
    -webkit-transform-origin: bottom;
    -o-transform-origin: bottom;
}

.why-img img {
    width: 41.66666667%;
    height: 100%;
    position: absolute;
    left: 0;
    z-index: 9;
    object-fit: cover;
}

.icon-box {
    display: flex;
    align-items: center;
    border-radius: 8px;
    border: 1px solid rgb(255 255 255 / 27%);
    padding: 30px 30px;
    background: rgb(255 255 255 / 19%);
    transition: .4s ease;
    margin-bottom: 25px;
}

.why-box {
    padding: 50px 30px 0;
}

.icon-md img {
    width: 70px;
    height: 70px;
    border-radius: 100%;
}

.icon-content {
    width: 75%;
    margin-left: 20px;
}

.icon-content h4,
.icon-content p {
    color: #fff;
}

.icon-box:hover {
    background: #fff;
    transform: translateY(-10px);
}

.icon-box:hover h4,
.icon-box:hover p {
    color: #000;
}

.why-box h3 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 30px;
}

.why-sec {
    background-color: #000;
    position: relative;
}

/* ====== about us page end ====== */

/* ===== contact page css =====  */

.contact-box {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.01);
    padding: 25px;
    position: relative;
    margin-bottom: 25px;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-info i {
    font-size: 25px;
    color: var(--first-clr);
    margin-right: 10px;
}

.contact-info h4 {
    font-size: 20px;
}

.address {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.address h5 {
    margin: 0;
}

.contact-box a {
    color: #595959;
    display: block;
    margin-bottom: 5px;
}

button.submit {
    border: none;
    padding: 8px 30px;
    border-radius: 5px;
    background: var(--first-clr);
    font-size: 18px;
}

.contact-from {
    /* box-shadow: 5px 5px 20px 0 rgb(0 0 0 / 19%); */
    border-radius: 0;
    margin-top: 0;
    background: #fff;
    padding: 50px 40px;
    border-radius: 4px;
    border: 2px solid #ddd;
}

.contact-from h4 {
    font-size: 28px;
}

.contact-from form {
    margin-top: 30px;
}

.form-flex {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.form-flex input,
.form-flex textarea {
    border: none;
    width: 100%;
    font-size: 17px;
    outline: none;
    background: transparent;
}

.form-flex i {
    color: var(--first-clr);
    font-size: 20px;
    margin-right: 16px;
}

textarea {
    height: 100px;
}

/* ===== contact page css end =====  */

/* ===== brand page css ===== */
.br-img {
    width: 90%;
    padding: 30px;
    background: #f5f5f5;
    display: grid;
    place-content: center;
    margin: 0 auto 25px;
    min-height: 165px;
    border: 2px solid #ddd;
    border-radius: 5px;
    /* box-shadow: 0 0 15px 0 rgb(2 48 71 / 28%); */
    transition: .4s ease;
    text-align: center;
}

.br-img:hover {
    background: var(--first-clr);
    transform: translateY(-15px);
    border-color: var(--first-clr);
}

/*.br-img:hover img {*/
/*    filter: brightness(100);*/
/*}*/

/* ===== brand page css end ===== */

/* ==== product detail css =====  */

.category-box.category-box-2 {
    position: sticky;
    top: 50px;
}


.shop-details .product-images>.row {
    margin: 0 -7.5px;
}

.shop-details .product-images>.row>div {
    padding: 0 7.5px;
}

.shop-details .product-images .content-thumbnail-scroll {
    position: relative;
    margin-top: 20px;
}

.shop-details .product-images .content-thumbnail-scroll .slick-list {
    padding: 0 !important;
}

.shop-details .product-images .content-thumbnail-scroll .img-item {
    padding-bottom: 15px;
    vertical-align: top;
    border: 0;
    cursor: pointer;
}

.shop-details .product-images .content-thumbnail-scroll .img-item .img-thumbnail-scroll {
    vertical-align: top;
    display: inline-block;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    border: 2px solid hsla(0, 0%, 67%, .25);
    overflow: hidden;
    margin: 1px;
    width: 120px;
}

.shop-details .product-images .content-thumbnail-scroll .img-item.slick-current .img-thumbnail-scroll {
    border-color: #000;
}

.shop-details .product-images .image-thumbnail .slick-slide.slick-current .img-thumbnail-scroll,
.shop-details .product-images .image-thumbnail .slick-slide:hover .img-thumbnail-scroll,
.shop-details .product-images .image-thumbnail .slick-slide:hover a,
.shop-details .product-images .image-thumbnail .slick-slide a.active {
    border-color: #000;
}

.shop-details .product-images .img-item img {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 300px;
    object-fit: contain;
}

button.slick-prev.slick-arrow {
    border: none;
    background: #000;
    width: 30px;
    height: 30px;
    color: #fff;
    position: absolute;
    top: 40px;
    z-index: 9;
    left: -15px;
}

button.slick-next.slick-arrow {
    border: none;
    background: #000;
    width: 30px;
    height: 30px;
    color: #fff;
    position: absolute;
    bottom: 40px;
    z-index: 9;
    right: 15px;
}

span.img-thumbnail-scroll img {
    width: 100% !important;
    height: 90px !important;
}

.shop-details .product-info {
    padding-left: 30px;
}

.shop-details .product-info .title {
    font-size: 30px;
    line-height: 38px;
    margin-top: 0;
    margin-bottom: 12px;
}

.shop-details .product-info .description {
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid #efefef;
    margin-bottom: 20px;
}

.shop-details .product-info .product-meta {
    display: inline-block;
    width: 100%;
    text-transform: capitalize;
    border-color: #efefef;
    border-width: 1px 0;
    border-style: solid;
    padding: 20px 0;
    margin: 30px 0;
}

.shop-details .product-info .product-meta>span {
    display: inline-flex;
    color: #868686;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-right: 25px;
}

.shop-details .product-info .product-meta>span span,
.shop-details .product-info .product-meta>span a {
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    margin-left: 5px;
}

.btn-wishlist {
    width: 100%;
}

.shop-details .product-tabs {
    margin-top: 60px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e1e1;
    border-top: 1px solid #e1e1e1;
}

.shop-details .product-tabs .product-tabs-wrap {
    /* max-width: 1110px; */
    margin-left: auto;
    margin-right: auto;
}

.shop-details .product-tabs .nav-tabs {
    text-align: left;
    padding: 35px 0 0;
    margin-bottom: 25px;
    border-bottom: none;
    display: block;
}

.shop-details .product-tabs .nav-tabs .nav-item {
    display: inline-block;
    margin: 5px 20px 0 0;
}

.shop-details .product-tabs .nav-tabs .nav-item a {
    border: none;
    font-size: 20px;
    color: #868686;
    padding: 0 0 8px 0;
    position: relative;
}

.shop-details .product-tabs .nav-tabs .nav-item a:before {
    position: absolute;
    bottom: 0;
    content: "";
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 0;
    height: 2px;
    background: #000;
}

.shop-details .product-tabs .nav-tabs .nav-item a:hover,
.shop-details .product-tabs .nav-tabs .nav-item a.active {
    color: #000;
}

.shop-details .product-tabs .nav-tabs .nav-item a:hover:before,
.shop-details .product-tabs .nav-tabs .nav-item a.active:before {
    width: 100%;
}

.shop-details .product-tabs .product-attributes th,
.shop-details .product-tabs .product-attributes td {
    border: 1px solid #e5e5e5;
    padding: 16px 30px;
    vertical-align: top;
}

.shop-details .product-tabs .product-attributes th {
    text-transform: capitalize;
    font-weight: 500;
    color: #000;
}

.pdf-box {
    display: flex;
    align-items: center;
    /* flex-direction: column; */
    gap: 15px;
    /* box-shadow: rgb(144 198 97) 0px 3px 8px; */
    padding: 15px 20px;
    border-radius: 10px;
    width: 100%;
    flex-wrap: wrap;
    border: 2px solid #Ddd;
    justify-content: space-between;
    margin-bottom: 15px;
}

a.pdf-btn {
    padding: 8px 26px;
    background: var(--first-clr);
    color: #000000;
    border-radius: 5px;
}

.pdf-box h4 {
    font-size: 16px;
    margin: 0;
}

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

.related-slider .service-box {
    width: 95%;
    margin: auto;
}

.detail-txt ul li {
    padding-left: 30px;
    margin-bottom: 5px;
    font-weight: 600;
    position: relative;
}

.detail-txt ul li:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 3px;
    background: var(--first-clr);
    left: 0;
    top: 12px;
    border-radius: 10px;
}

span.prev-btn.slick-arrow {
    width: 35px;
    height: 35px;
    display: grid;
    place-content: center;
    background: var(--first-clr);
    position: absolute;
    top: -75px;
    right: 100px;
    cursor: pointer;
}

span.next-btn.slick-arrow {
    width: 35px;
    height: 35px;
    display: grid;
    place-content: center;
    background: var(--first-clr);
    position: absolute;
    top: -75px;
    right: 50px;
    cursor: pointer;
}

.product-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.original-price {
    font-size: 1rem;
    color: #888;
    text-decoration: line-through;
}

.sale-price {
    font-size: 1.5rem;
    color: #e63946;
    font-weight: bold;
}

.savings {
    font-size: 0.9rem;
    color: #38a169;
}

.quantity-selector {
    margin-top: 0;
}

.quantity-selector label {
    font-size: 1rem;
    margin-right: 10px;
}

.quantity-selector select {
    padding: 5px;
    border: 1px solid #cdcdcd;
    border-radius: 5px;
}

.total-amount {
    font-size: 17px;
    font-weight: bold;
    color: #333;
    margin-top: 15px;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.add-to-cart i {
    margin-right: 8px;
    /* Space between icon and text */
    font-size: 14px;
}

.wishlist i {
    font-size: 14px;
}

.add-to-cart {
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14px;
    border-radius: 30px;
}

.wishlist {
    background-color: var(--first-clr);
    color: #fff;
    display: flex;
    align-items: center;
   width: 35px;
    height: 35px;
    display: grid;
    place-content: center;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 30px;
}

.add-to-cart:hover {
    background-color: var(--first-clr);
}

.wishlist:hover {
    background-color: #000;
}

.shop-details .product-info .description .quantity {
    width: max-content;
}

/* ==== product detail css end =====  */

/* ==== career css ==== */

.job-listing-form .form-group {
    position: relative;
    border-right: 1px solid #e3e3e3;
    padding-right: 10px;
    margin-top: 4px;
}

.job-listing-form .form-group .form-control {
    height: 50px;
    color: #000;
    border: none;
    background-color: transparent;
    font-size: 15px;
    padding: 10px 27px;
    width: 100%;
    border-radius: 3px;
    position: relative;
}

.job-listing-form .form-group i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    font-size: 16px;
    color: #000;
}

.job-listing-form .submit-btn {
    width: 100%;
    text-align: center;
    padding: 12px 30px;
    background-color: var(--first-clr);
    color: #fff;
    border: none;
    outline: none;
    transition: .4s ease;
    border-radius: 5px;
}

.job-listing-top {
    background-color: #f8f8f8;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 30px;
}

.job-cont {
    display: flex;
}

.job-box {
    box-shadow: 0 0 15px 0 rgb(2 48 71 / 28%);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
}

.job-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 100%;
    border: 2px solid #Ddd;
}

.job-txt {
    padding-left: 40px;
    width: 85%;
}

.job-txt h4 {
    font-size: 22px;
    font-weight: bold;
}

ul.job-list1 {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

ul.job-list1 li {
    font-size: 16px;
}

ul.job-list1 li i {
    color: var(--first-clr);
    margin-right: 7px;
}

.job-sub-content {
    display: flex;
    align-items: center;
    margin-top: 35px;
    justify-content: space-between;
}

ul.job-tags {
    display: flex;
}

ul.job-tags li {
    padding: 5px 10px;
    border: 1px solid var(--first-clr);
    border-radius: 30px;
    margin: 0 5px;
}

.apply a {
    display: inline-block;
    padding: 8px 20px;
    background: var(--first-clr);
    color: #fff;
    cursor: pointer;
}

/* ==== career css end ==== */

/* login css  */
.create-box {
    /* box-shadow: 5px 5px 20px 0 rgb(0 0 0 / 19%); */
    border-radius: 0;
    margin-top: 0;
    background: #fff;
    padding: 40px 40px;
    border-radius: 4px;
    border: 2px solid #ddd;
}

.create-box h5 {
    font-size: 25px;
    margin-bottom: 20px;
}

.form-flex input:focus {
    border-bottom: 1px solid #000;
}

/* login css end */

/* ======= cart pg css  ======= */

.cart-section .cart-table {
    overflow: hidden;
    margin-bottom: 0;
    border: 1px solid #eee;
}

.cart-section .cart-table thead th {
    font-weight: 500;
    color: #222;
    padding: 12px 0;
    font-size: 19px;
    border-top: 0;
    text-align: center;
    white-space: nowrap;
    text-transform: capitalize;
    padding: calc(12px +(16 - 12)*((100vw - 320px) /(1920 - 320))) 12px;
    background-color: #000000;
    border-bottom: 1px solid #eee !important;
    color: #fff;
}

@media (max-width: 1430px) {
    .cart-section tbody tr td {
        min-width: 170px;
    }
}

.cart-section tbody tr td {
    vertical-align: middle;
    color: #777;
    border-top: 0;
    border-bottom: 1px solid #eee;
    text-align: center;
    padding: 15px 10px;
}

.cart-section tbody tr td a img {
    height: 90px;
}

.cart-section tbody {
    font-size: 20px;
}

.cart-section tbody tr td h2 {
    font-size: 20px;
}

.quantity {
    display: flex;
    border: 2px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    justify-content: space-between;
}

.quantity button {
    background-color: #ddd;
    color: #000000;
    border: none;
    cursor: pointer;
    font-size: 20px;
    width: 30px;
    height: auto;
    text-align: center;
    transition: background-color 0.2s;
}

.quantity button:hover {
    background-color: #000000;
    color: #fff
}

.input-box {
    width: 40px;
    text-align: center;
    border: none;
    padding: 8px 10px;
    font-size: 16px;
    outline: none;
}

/* Hide the number input spin buttons */
.input-box::-webkit-inner-spin-button,
.input-box::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-box[type="number"] {
    -moz-appearance: textfield;
}

.cart-section tbody tr td a {
    font-size: 18px;
    text-transform: capitalize;
}

a.icon.remove-btn {
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
    background: #ad1313;
    border: 1px solid #ddd;
    text-align: left;
    margin: auto;
    color: #fff;
}

td.total {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 20px;
    color: #777;
    text-align: right;
}

tfoot h2 {
    font-size: 23px;
    margin: 0;
}

.qty-box {
    width: 140px;
    margin: auto;
}

/* ======= cart pg css end  ======= */

/* =========== Account css   ============ */

.account-tabs {
    flex-direction: column;
    padding: 25px;
    background-color: #f8f8f8;
    border: 1px solid #eee;
}

.account-tabs li button,
.account-tabs li button:hover {
    width: 80%;
    background: transparent;
    text-align: left;
    color: #000;
    font-size: 16px;
}

.account-tabs li.nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.account-tabs li.nav-item i {
    font-size: 15px;
    color: var(--first-clr);
    background: #fff;
    width: 35px;
    height: 35px;
    display: grid;
    place-content: center;
}

.account-tabs .nav-link.active {
    background: var(--first-clr);
    border: none;
    border-radius: 0;
    color: #fff;
}

li.Logg-out a {
    padding: 8px 20px;
    background: var(--first-clr);
    font-size: 17px;
    width: 100%;
    display: inline-block;
    color: #fff;
}

.account-box {
    padding: 25px;
    background-color: #f8f8f8;
    border: 1px solid #eee;
}

.account-box h4 {
    font-size: 22px;
}

.account-box h5 {
    margin: 15px 0;
    font-size: 19px;
}

.ac-info ul li {
    margin-bottom: 9px;
}

a.edit-btn {
    display: block;
    margin: 10px 0 0;
    font-size: 20px;
    text-transform: capitalize;
    color: var(--first-clr);
}

.badge {
    padding: 10px 20px;
    color: #000;
    border: 1px solid var(--first-clr);
    border-radius: 0;
    font-size: 15px;
    font-weight: normal;
}

.order-table td {
    vertical-align: middle;
    text-align: center;
}

.order-table {
    text-align: center;
}

.addreess-box-2 .contact-from {
    padding: 30px;
    margin-top: 25px;
}

.addreess-box-2 .contact-from form {
    margin: 0;
}

.add-btn a {
    padding: 10px 20px;
    background: var(--first-clr);
    display: inline-block;
    color: #fff !important;
}

.modal-content {
    background: #f8f8f8;
}


.modal-header .btn-close {
    opacity: 1;
}

.add-new-body .contact-from {
    background: transparent;
    border: navajowhite;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: #fff;
    cursor: pointer;
}

.nav-btn a:hover {
    background: #000;
}

/* =========== Account css  end ============ */

/* ======== privacy policy ======== */
.privacy-sec ul li {
    margin-bottom: 10px;
    list-style: inside;
}

/* ======== privacy policy end ======== */

/*canvas cart */
.cart-canvas-body ul li {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.cart-canvas-body ul li img {
    width: 90px;
    height: 80px;
    object-fit: contain;
    background: #f5f5f5;
    padding: 5px;
}

.cart-list .quantity button {
    width: 20px;
    height: auto;
    font-size: 13px;
}

.cart-list p.price {
    margin: 0;
}

.cart-list .quantity .input-box {
    padding: 0px 0px;
    width: 20px;
}

.offcanvas-header {
    background: #f5f5f5;
}

.cart-btns {
    padding: 0 20px 20px;
}

.checkout-box {
    background: #fff;
    padding: 35px 20px;
    border-radius: 4px;
    border: 2px solid #ddd;
}

.form-home input , .form-home textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 7px 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.form-home input[type="submit"] {
    background: var(--first-clr);
    border: none;
    font-size: 18px;
}


/*======================*/

/*new category */


        .cate-item {
            border-bottom: 1px solid #ddd;
            padding: 8px 8px;
            position: relative;
            width: 100%;
        }

        .cate-item:last-child {
            border-bottom: none;
        }

        .cate-submenu {
            list-style: none;
            padding: 10px;
            margin: 10px 0 0 0;
            display: none;
            background: var(--first-clr);
        }

        .cate-item a {
            text-decoration: none;
            color: #000;
            text-transform: capitalize;
        }

        .cate-item a:hover {
            color: #007bff;
        }

        .product {
            color: #000;
            font-size: 14px;
            padding: 8px 10px;
            border-bottom: 1px solid #cdcdcd;
        }


span.cat_btn {
    position: absolute;
    right: 0;
    padding: 0 5px;
    cursor: pointer;
}

.cate-submenu li a {
    /* color: #fff; */
}

ul.cate-submenu .cat_btn {
    /* color: #fff; */
}

ul.cate-submenu li .cate-submenu {
    background: #fff;
    margin: 0;
}

ul.cate-submenu li .cate-submenu li a {
    color: #000;
}

span.cat_btn.navactives {
    transform: rotate(180deg);
}

ul.cate-submenu li {
    background: #fff;
}


/*==================check out page box css =======*/

.new-checout-box {
    padding: 25px;
    border-radius: 4px;
    border: 2px solid #ddd;
}

.new-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    background: var(--first-clr);
    padding: 6px 9px;
}

.new-flex h5 , .new-flex i {
    margin: 0;
    color: #000000;
}

.new-checout-box ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.new-checout-box ul li span {
    color: #000;
    font-weight: 500;
}

.check-btn .nav-btn a {
    font-size: 15px;
}

.check-btn {
    display: flex;
    gap: 10px;
}

.check-btn .nav-btn:first-child a {
    background: #000;
}

.check-btn-2 .nav-btn a {
    padding: 0;
    background: transparent;
    color: #000;
    font-size: 15px;
    text-decoration: underline;
}

.check-btn-2 {
    display: flex;
    gap: 10px;
}

.account-box .new-flex {
    padding: 0 0 7px 0;
    background: transparent;
    border-bottom: 2px solid var(--first-clr);
    margin-bottom: 15px;
    justify-content: space-between;
}

.selected-add input[type="radio"] {
    width: 15px;
    height: 15px;
}
.payment-container {
    /* display: flex; */
    /* gap: 20px; */
    /* font-family: Arial, sans-serif; */
}

.payment-box {
    flex: 2;
    border: 2px solid #ddd;
    padding: 24px;
    border-radius: 4px;
    background: #fff;
}

.balance-section h4,
.payment-methods h4 {
    font-size: 17px;
    margin-bottom: 10px;
    border-top: 2px solid #ddd;);
    padding-top: 10px;
    margin-top: 15px;
}

.balance-input {
    display: flex;
    gap: 10px;
    width: 80%;
    margin-bottom: 10px;
}

.balance-input input {
    flex: 1;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.balance-input button {
    padding: 7px 20px;
    background-color: #000000;
    border: 1px solid #000000;
    border-radius: 4px;
    cursor: pointer;
    color: #Fff;
}

.payment-methods .method {
    margin: 15px 0;
    /* display: flex; */
    /* align-items: center; */
    gap: 10px;
}

.payment-methods .method input {
    margin-right: 10px;
}

.payment-methods .method .icons img {
    width: 30px;
    margin: 10px 0 0 10px;
}

.payment-methods .method select {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    margin-top: 10px;
}

.new-flex h5 {
    font-size: 17px;
}

ul.shop-links li {
    position: relative;
}

ul.shop-links li span.cart-value {
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
    background: #fff;
    border-radius: 100px;
    font-weight: 600;
    position: absolute;
    top: -12px;
    right: -12px;
}

/*=============================*/

/*new css cart wishlist 18-12-2024  */

.cart-section.tab-wishlist tbody tr td a img {
    height: 50px;
}

.cart-section.tab-wishlist tbody tr td a {
    font-size: 16px;
}

.cart-section.tab-wishlist tbody tr td h2 {
    font-size: 16px;
}

.cart-section.tab-wishlist .qty-box {
    width: 95px;
}

.cart-section.tab-wishlist .qty-box .input-box {
    width: 30px;
    padding: 2px;
}

.cart-section.tab-wishlist a.icon.remove-btn {
    width: 20px;
    height: 20px;
    font-size: 13px;
}

.cart-section.tab-wishlist .cart-table thead th {
}

.order-tracking {
    /* max-width: 800px; */
    margin: 0 auto;
    /* padding: 20px; */
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.order-steps {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.step {
    text-align: center;
    position: relative;
    flex: 1;
}

.step-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #ddd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: bold;
}

.step-label {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

.step.completed .step-circle {
    background-color: #28a745; /* Green for completed */
}

.step.active .step-circle {
    background-color: #ffcc00; /* Yellow for active */
}

.step::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #28a745;
    z-index: -1;
}


.step.completed + .step::before {
    background-color: #28a745; /* Green line for completed steps */
}

.step.active + .step::before {
    background-color: #ffcc00; /* Yellow line for active step */
}

/* New styles for order info section */
.order-info {
    /* display: flex; */
    /* margin-top: 20px; */
    padding-top: 10px;
    /* border-top: 2px solid #ddd; */
    width: 25%;
}

.order-info .order-image {
     width: 75px;
    height: 75px;
    object-fit: contain;
    border-radius: 8px;
}

.order-details {
    /* margin-left: 20px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.order-title {
    font-size: 17px;
    font-weight: bold;
    margin: 8px 0;
}

.order-characters {
    font-size: 14px;
    color: #555;
}

.order-price {
    font-size: 16px;
    color: #000;
    font-weight: bold;
    margin-top: 0;
}

.order-left {
    width: 72%;
}

.order-summery {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.order-summery ul li {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 5px;
}

.productDetail__content-desc , .productDetail__content-desc p {
    font-family: 'Poppins';
    font-size: 15px;
    color: #595959;
    line-height: 1.6;
    font-weight: 500;
}

.product-tabs-wrap h3 {
    font-size: 22px;
    margin: 10px 0;
}

.menu li:hover {
}

ul.mega-menu {
    width: 100%;
    align-content: normal;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    /* padding: 10px; */
    margin: 0;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    display: none;
    min-width: 300px;
    min-width: 100%;
    height: auto;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    transition: .3s;
    border-radius: 0;
    background-color: #fff;
    border-left: 0;
    border-bottom: 0;
    border-right: 0;
    display: flex;
    box-shadow: 0 36px 35px rgba(0, 0, 0, .08);
    padding: 0;
    transform-origin: 0 0;
    transform: scaleY(0);
    padding: 15px;
    border-top: 1px solid #eee;
    justify-content: space-between;
}

.menu ul li:hover ul.mega-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: translateY(0);
    transform: scaleY(1);
}

ul.mega-menu li {
    display: inline-block;
    width: 19%;
    vertical-align: top;
    text-align: center;
}

ul.mega-menu li ul li {
    width: 100%;
}

ul.mega-menu li ul {
    display: inherit;
}

.menu-img img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin: 0 0 15px;
}

.menu ul li .menu-img a {
    display: block;
    padding: 0;
    font-size: 16px;
}

.menu-img {
    text-align: center;
    border-bottom: 1px solid #cdcdcd;
    padding: 10px 15px;
    background: #f5f5f5;
}

.menu-img {}

ul.mega-menu li ul li a {
    padding: 15px 8px 0;
    font-size: 17px;
    width: 100%;
}


span.clk_btn {
    position: relative;
    left: -15px;
    cursor: pointer;
    color: #000;
}

ul.mega-menu li ul li a:hover {
    color: var(--first-clr);
}

section {
    overflow-x: clip;
}

a.btn.toggle {
    display: none;
}

.related-slider .product-box {
    width: 95%;
    margin: auto;
}

.related-slider .product-box .pr-img img {
    margin: 0 auto 20px;
}

.menu-shoplinks .nav-btn a:hover {
    background: #fff;
    color: #000;
}

.br-img img {
        width: 90%;
    margin: auto;
    height: 130px;
    object-fit: contain;
}

/*faqs css */

.default-accordion-box {
    position: relative
}

.default-accordion-box .block {
    position: relative;
    margin-bottom: 10px
}

.default-accordion-box .block:last-child {
    margin-bottom: 0
}

.default-accordion-box .block .acc-btn {
    position: relative;
    font-size: 16px;
    line-height: normal;
    color: #000;
    cursor: pointer;
    padding: 16px 40px;
    background-color: #f5f5f5;
    padding-right: 100px;
    letter-spacing: .3px;
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.default-accordion-box .block .acc-btn:before {
    position: absolute;
    right: 40px;
    top: 15px;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    line-height: 22px;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.default-accordion-box .block .acc-btn.active {
    position: relative;
    background-color: #000;
    color: #fff
}

.default-accordion-box .block .acc-btn.active:before {
    content: "\f068";
    color: #fff;
}

.default-accordion-box .block .acc-content {
    position: relative;
    display: none
}

.default-accordion-box .block .content {
    position: relative;
    padding: 30px 40px 25px;
    background: #f5f5f5;
}

.default-accordion-box .block .acc-content.current {
    display: block
}

ul#faqtab {
    flex-direction: column;
    border: none !important;
}

ul#faqtab li button {
    width: 100%;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 10px 10px;
    color: #000;
    background: white;
}

ul#faqtab li button.active {
    background: #000;
    color: white;
}

.faq-left {
    background: var(--first-clr);
    padding: 20px;
    position: sticky;
    top: 85px;
}


div#addressdivshow {
    /* display: flex; */
    /* width: 66%; */
    /* gap: 5px; */
    justify-content: space-between;
}

#addressdivshow .address-box {
    /* width: 49%; */
}

/*faqs css end */


.address-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.address-container {
    /* display: flex; */
    /* flex-wrap: wrap; */
    gap: 10px;
}

#addressdivshow {
    display: contents; /* Makes children participate in parent flex layout */
}

.add-address-box {
    flex: 0 0 calc(33.33% - 10px); /* 32% width accounting for gap */
    height: 270px;
    order: 1; /* Ensure it stays first */
}

#addressdivshow .address-box {
    flex: 0 0 calc(33% - 10px); /* Half width minus gap */
    box-sizing: border-box;
    order: 2; /* All address boxes come after add-address */
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .add-address-box,
    .address-box {
        flex: 0 0 100%;
    }
}

.stocks-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stocks-flex span.in-stock {
    color: green;
}

.stocks-flex span.out-stock {
    color: red;
}

.cart-list {
    width: 55%;
    margin: auto;
}

.cart-list .quantity {
    width: 100px;
    margin: 5px 0 0;
}

.new-quantity label {
    font-family: 'Poppins';
    font-size: 15px;
    color: #595959;
}

.new-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
}

#quantitySelect {
    min-width: 100px;
    border: 1px solid #000;
    outline: none;
    cursor: pointer;
}

.stock-out {
    width: auto;
    height: auto;
    color: red;
    font-weight: 600;
    font-size: 12px;
    background: white;
    z-index: 9;
}

.stock-out img , .sale img {
    width: 65px;
}

div#messageStatussubscription {
    margin: 10px 0 0;
}



/*RESPONSIVE QUERY______*/


@media only screen and (max-width: 1280px) {

}

@media only screen and (max-width: 1199px) {

}

@media only screen and (max-width: 1140px) {

}

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 991px) {
    
    
.container, .container-md, .container-sm {
 max-width: 720px;
}


    
.logo img {
    width: 200px;
}

.header {
    display: flex;
    flex-direction: column-reverse;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.bottom-header {
    padding: 10px 0;
}

.sticky .top-header {
    display: inherit;
}

.sticky .bottom-header {
    display: none;
}

a.btn.toggle {
    display: inline-block;
    background: var(--first-clr);
    color: #fff;
}

.menu.menu-desktop {
    display: none;
}

.offcanvas-header img {
    width: 180px;
}

.menu.menu-mobile ul {flex-direction: column;}

.menu.menu-mobile ul li a {
    width: 100%;
    padding: 7px 10px;
    font-size: 16px;
    border-bottom: 1px solid #cdcdcd;
}

span.clk_btn {
    position: absolute;
    left: inherit;
    top: 9px;
    right: 0;
    padding: 0 10px;
}

.menu.menu-mobile ul li {
    position: relative;
}


button.btn-close.mb-cross {
    display: inline-block;
    background: var(--first-clr);
    color: #fff;
    opacity: 1;
    line-height: 0;
}

ul.mega-menu {
    position: revert;
    display: none;
    visibility: inherit !important;
    transform: none !important;
    transition: none !important;
    opacity: 1;
}

.menu ul li:hover ul.mega-menu {
    display: none;
}

.menu.menu-mobile ul li ul.mega-menu li {
    text-align: left;
    width: 100%;
}

.menu.menu-mobile ul li ul.mega-menu li .menu-img {
    text-align: left;
    padding: 10px;
}

.menu.menu-mobile ul li ul.mega-menu li .menu-img img {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
}


.menu.menu-mobile ul li .menu-img a {
    font-size: 15px;
    border: 0;
}

.latest-sec .col-lg-4.col-md-6:nth-child(2) {
    display: none;
}

.footer-padding {
    padding: 0;
}

.product-box {
    border: 1px solid #ddd;
    width: 100%;
}

.category-box {
    width: 100%;
}

.cate-item a {
    font-size: 15px;
}

.menu-shoplinks .nav-btn a {
    width: max-content;
}

.menu-search .search-category-section {
    width: 80%;
}

.test-img img {
    height: auto;
}

.news-form input {
    width: 100%;
}

.news-form button.submit {
    width: 100%;
}

.product-box.latest-box {
    margin-bottom: 25px;
}

.inner-banner {
    padding: 80px 0;
}

.colarge-1 {
    display: none;
}

.colarge-2 {
    margin: 0;
    box-shadow: none;
    animation: none;
}

.img-colarge {
    margin: 20px 0;
}

section.padd.about-sec {
    background-size: cover;
}

.colarge-2 img {
    height: 400px;
}

.counter-box {
    margin-bottom: 25px;
    padding: 20px;
}

.counter-box span {
    font-size: 34px;
}

.inner-content h2 {
    font-size: 34px;
}

.why-box h3 {
    color: #fff;
    font-size: 26px;
}

.icon-content h4 {
    font-size: 18px;
}

.contact-box {
    margin-bottom: 15px;
}

.contact-from {
    padding: 30px;
}

.contact-from h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-info h4 {
    font-size: 20px;
}

.shop-details .product-images .content-thumbnail-scroll .img-item .img-thumbnail-scroll {
    margin: auto;
}

.shop-details .product-images .content-thumbnail-scroll .img-item {
    text-align: center;
}

.shop-details .product-images .content-thumbnail-scroll {
    margin: 20px 0;
}

.shop-details .product-info .title {
    font-size: 24px;
}

.menu-shoplinks .nav-btn a:hover {
    background: #fff;
    color: #000;
}

.cart-section padd .container {}section.cart-section.padd .container {
    max-width: 100%;
}

.cart-section tbody tr td a img {
    width: 75px;
    height: 70px;
    object-fit: contain;
}

.cart-section .cart-table thead th {
    font-size: 15px;
}

.cart-section tbody tr td a {
    font-size: 15px;
}

.cart-section tbody tr td h2 {
    font-size: 16px;
}

.qty-box {
    width: 120px;
}

.input-box {
    padding: 3px;
}


a.icon.remove-btn {
    width: 25px;
    height: 25px;
    font-size: 13px;
}

tfoot h2 {
    font-size: 18px;
}

td.total {
    font-size: 18px;
}

.mb-5 {
    margin-bottom: 1.5rem !important;
}

.create-box {
    padding: 25px;
}

.br-img {
    width: 100%;
    min-height: 95px;
    padding: 16px;
    text-align: center;
    margin: 0 auto 15px;
}

.partner-sec .col-lg-4 {
    width: 50%;
}

.br-img img {
    width: 90%;
    margin: auto;
}


.w-75 {
    width: 100% !important;
}

    
    

}


@media only screen and (max-width: 980px) {

}

@media only screen and (max-width: 840px) {

}


@media only screen and (max-width: 800px) {

}


@media only screen and (max-width: 768px) {

}

@media only screen and (max-width: 767px) {
    
    .padd {
    padding: 40px 0;
}

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

.mt-5 {
    margin-top: 1.5rem !important;
}

.category-box {
    margin-top: 25px;
}

.product-box {
    width: 100%;
    padding: 30px 20px;
}

.pr-txt h4 {
    font-size: 18px;
}

.sale {
    font-size: 12px;
    /*width: 40px;*/
    /*height: 40px;*/
}

.newsletter h4 {
    font-size: 20px;
}

.test-img img {
    display: none;
}

.footer-links h4 {
    margin: 10px 0;
    font-size: 17px;
}

.footer-box img {
    width: 200px;
}

.deal-img img {
    height: auto;
}

.pr-img img {
    width: 160px;
    height: 160px;
}





    

}

@media only screen and (max-width: 667px) {

}

@media only screen and (max-width: 600px) {

}

@media only screen and (max-width: 575px) {
    
.logo img {
    width: 150px;
}

.web-title h2 {
    font-size: 18px;
}

.counter-sec .col-lg-3.col-md-6.col-sm-6 {
    width: 50%;
}

.why-box {
    padding: 40px 0;
}

.map iframe {
    width: 100%;
    height: 250px;
}

.pr-icon ul {
    left: 28%;
}

.stock-out img , .sale img{
    width: 45px;
}

.shop-details .product-images .content-thumbnail-scroll .img-item .img-thumbnail-scroll {
    width: 90%;
    height: 70px;
    display: grid;
    place-content: center;
}

span.img-thumbnail-scroll img {
    height: 70px !IMPORTANT;
    width: 90% !important;
    margin: auto !important;
}

.content-thumbnail-scroll button.slick-prev.slick-arrow, .content-thumbnail-scroll button.slick-next.slick-arrow {
    display: none !important;
}

.shop-details .product-images .img-item img {
    height: 200px;
}

.shop-details .product-info {
    padding-left: 0;
}

.inner-banner {
    padding: 90px 0 35px;
}

.inner-content h2 {
    font-size: 30px;
}



}

@media only screen and (max-width: 460px) {
    
    ul.shop-links li a {
    padding: 7px;
    font-size: 14px;
}

ul.shop-links li span.cart-value {
    width: 20px;
    height: 20px;
    top: -5px;
    right: -7px;
}

.nav-btn a {
    font-size: 15px;
    padding: 6px 13px;
}

.menu-search .search-category-section button {
    height: auto;
}

.menu-search .search-category-section {
        width: 90%;
    }
    
    





}

@media only screen and (max-width: 414px) {

}

@media only screen and (max-width: 375px) {

}

@media only screen and (max-width: 360px) {

}


@media only screen and (max-width: 320px) {

}







