@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Archivo';
}

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

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

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

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

.sec-padding {
    padding: 60px 0;
}

:root {
    --first-clr: #ca0e0e;
    --second-clr: #0038a8;
}

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

a {
    color: #474747;
    text-decoration: none;
    font-size: 15px;
    transition: .4s ease;
    letter-spacing: .2px;
}

li {
    list-style: none;
}

p , li {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: 'Archivo';
    font-weight: 500;
    line-height: 1.3;
}

img {
    width: auto;
    transition: .4s ease;
}

.container {
    max-width: 1280px;
}

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

main {
    overflow-x: clip;
}

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

.offer-banner p {
    margin: 0;
    color: #fff;
    font-size: 15px;
}

.topbar {
    background: var(--first-clr);
    padding: 7px 0;
}

.offer-banner img {
    width: 25px;
}

.offer-banner p span {
    color: #ffa700;
}

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

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

.bottom-bar {
    padding: 10px 0;
    background: #f7f7f7;
    border-bottom: 1px solid #cdcdcd;
}

form.search-container {
    display: flex;
    align-items: center;
    width: 450px;
    position: relative
}

form.search-container input[type=text] {
    padding: 8px 10px;
    border-radius: 30px;
    border: 1px solid #ddd;
    width: 100%;
    background: #f8f8f8;
    padding-left: 50px;
}

form.search-container button {
    border: none;
    background: var(--first-clr);
    width: 35px;
    height: 35px;
    border-radius: 100%;
    position: absolute;
    left: 6px;
    color: #fff
}


.top-social ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-social ul li a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--first-clr);
    border-radius: 100%;
    color: var(--first-clr);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.top-social ul li.cart {
    display: flex;
    align-items: center;
    border: 1px solid #020202;
    border-radius: 30px;
    padding: 4px 7px;
}

.top-social ul li.cart .points {
    margin-left: 7px;
    color: var(--first-clr);
}

.top-social ul li.cart a {
    /* background: #000; */
    color: #000;
    border-color: #000
}

.deliver-txt {
    display: flex;
    gap: 10px;
    color: var(--second-clr);
    align-items: baseline;
    font-size: 14px;
}

.top-social ul li:nth-child(2) a {
    background: var(--first-clr);
    color: #fff;
}

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

.menu ul {
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    position: relative;
}

.menu-sec {
    padding: 10px 0;
}

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

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

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

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

    to {
        transform: translateY(0)
    }
}


.sticky .topbar {
    display: none;
}

.menu ul li {
     position: relative; 
}

.clk_btn {
    position: relative;
    right: 10px;
    top: 0;
    opacity: .6;
    cursor: pointer;
}
.menu-bar-2 ul li a {
    padding-right: 0;
    color: var(--first-clr);
    text-decoration: underline;
    display: flex;
    align-items: center;
    gap: 5px;
}

ul.dropdown-menu {
    position: absolute;
    background: #fff;
    z-index: 99;
    min-width: 370px;
    left: 0;
    margin-top: 0;
    padding: 10px 5px;
    border: 1px solid #cdcdcd;
    border-radius: 20px;
    display: none;
    opacity: 0;
    /* Hide initially */
    transform: translateY(-10px);
    /* Slide effect */
    transition: opacity 0.4s ease, transform 0.3s ease;
    /* Smooth transition */
/*      height: 450px;  */
     overflow: auto; 
}

/* When hovering over the parent li, make the dropdown visible with animations */
.menu ul li:hover ul.dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    /* Reset slide effect */
}

ul.dropdown-menu li {
    /*display: inline-block;*/
    /*width: 32%;*/
    margin: 0 5px 10px 5px;
}

ul.dropdown-menu li a {
    width: 100%;
    background: #ffffff;
    /* border-radius: 10px; */
    padding: 8px 10px;
    border-bottom: 1px solid #cdcdcd;
}

ul.dropdown-menu li:hover {
    /* background: #f2f3f0; */
    /* border-radius: 10px; */
}

ul.dropdown-menu li a:hover {
    background: var(--first-clr);
    color: #fff;
    border-radius: 10px;
}

/* Custom scrollbar styles */
::-webkit-scrollbar {
    width: 10px; /* Width of the scrollbar */
    height: 10px; /* Height for horizontal scrollbar */
}

/* Track (background of the scrollbar) */
::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* Light grey background */
    border-radius: 10px;
}

/* Handle (the draggable part of the scrollbar) */
::-webkit-scrollbar-thumb {
    background-color: var(--first-clr); /* Grey thumb */
    border-radius: 10px;
    border: 2px solid #f1f1f1; /* Adds space around thumb */
}

/* Hover effect for the handle */
::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Darker grey on hover */
}

/* For horizontal scrollbars (if needed) */
::-webkit-scrollbar-horizontal {
    height: 8px;
}



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

.banner-2-img img {
    width: 340px;
    height: 160px;
    position: absolute;
    top: 0;
    left: 35%;
}

.banner-2-img img {
    /* width: 100%; */
    /* height: 100%; */
    object-fit: cover;
    border-radius: 50% / 0 0 100% 100%;
}

.banner-1-img {
    width: 100%;
    position: relative;
}

.banner-1-img img {
    width: 100%;
    height: 350px;
    border-radius: 50% / 100% 100% 0 0;
    object-fit: cover;
    border: 2px solid var(--first-clr);
    padding: 10px;
    border-bottom: 0;
    padding-bottom: 0;
}

.banner-slider .slick-dots {
    position: absolute;
    z-index: 99;
    right: 25%;
    bottom: 20px;
}

.banner-slider ul.slick-dots li.slick-active button {
    background: #fff;
}

.banner-sec {
    padding: 150px 0 0;
    background: #fef9ef;
    overflow: hidden;
}

.banner-text .span-banner {
    font-size: 18px;
    color: var(--first-clr);
    font-weight: 500;
    position: relative;
    margin-bottom: 10px;
    display: inline-block;
    padding-left: 45px;
}

.banner-text .span-banner:before {
    position: absolute;
    content: "";
    width: 35px;
    height: 2px;
    background: var(--first-clr);
    top: 12px;
    left: 0;
}

.banner-text h3 {
    font-size: 52px;
    text-transform: capitalize;
    font-family: "DM Serif Display", serif;
    font-weight: 500;
}

.banner-text p {
    font-size: 20px;
    opacity: .8;
}

.nav-btn a {
    display: inline-block;
    padding: 8px 20px;
    background: var(--first-clr);
    color: #fff;
    border-radius: 30px;
}

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

/* /////////// IMAGE ZOOM /////////// */
@keyframes zoomInImage {
    from {
        transform: scale3d(1, 1, 1);
    }

    to {
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

.zoomInImage {
    animation-name: zoomInImage;
}

@keyframes zoomOutImage {
    from {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.zoomOutImage {
    animation-name: zoomOutImage;
}

/* Additional styling for text animations */
.animated-text {
    opacity: 0;
    animation-duration: 1.5s;
    animation-fill-mode: both;
}

.banner-text h2.animated-text {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider [data-animation-in] {
    opacity: 0;
    animation-duration: 1.5s;
    transition: opacity 0.5s ease 0.3s;
}

/* ==========category css==========  */

h4.cat-title {
    font-size: 20px;
    color: var(--second-clr);
}

h5.cat-title-2 {
    color: var(--first-clr);
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-slider {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
}

.cat-icon {
    width: 100px;
    height: 100px;
    background: #fff0f0;
    padding: 20px;
    border-radius: 100%;
    display: grid;
    place-content: center;
    margin: 0 auto 10px;
}

.cat-box {
    text-align: center;
    width: 95%;
    margin: auto;
}

.cat-box:hover .cat-icon {
    background: var(--first-clr);
}

.cat-box:hover .cat-icon img {
    filter: invert(1);
}

span.prev-btn,
span.next-btn {
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
    background: #f7f7f7;
    border-radius: 100%;
    color: var(--first-clr);
    position: absolute;
    top: 26%;
    z-index: 9;
    cursor: pointer;
    opacity: .6;
}

span.prev-btn {
    left: -10px;
}

span.next-btn {
    right: -10px;
}

span.prev-btn:hover,
span.next-btn:hover {
    background: var(--first-clr);
    color: #fff;
    opacity: 1;
}

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

.time-box {
    padding: 10px;
    background-color: #000;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    width: 45px;
    height: 45px;
    display: flex;
    place-content: center;
    font-size: 17px;
    gap: 2px;
}

h3.title {
    color: var(--second-clr);
    font-size: 30px;
    position: relative;
    padding-bottom: 5px;
}

h3.title:before {
    position: absolute;
    content: "";
    width: 160px;
    height: 2px;
    background: var(--second-clr);
    opacity: .6;
    bottom: 0;
    left: auto;
}

.time-box#seconds {
    background: var(--first-clr);
}


/* ============product sec ============ */

.product-box {
    width: 100%;
    position: relative;
    border: 1px solid #cdcdcd;
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 20px;
}

.pr-txt {
    padding: 20px;
}

.pr-img {
    text-align: center;
    padding: 45px 20px 20px;
    background: #f9f9f9;
    border-bottom: 1px solid #cdcdcd;
}

.pr-txt h5 {
   color: var(--second-clr);
    font-size: 18px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.stock {
    color: green;
    opacity: .5;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}

.pr-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.price {
    color: #474747;
    font-size: 19px;
    font-weight: 600;
}

/*.price span {*/
/*    display: block;*/
/*    font-size: 14px;*/
/*    opacity: .5;*/
/*    text-decoration: line-through;*/
/*}*/

.cart-btn a {
    padding: 7px 15px;
    border: 1px solid var(--first-clr);
    border-radius: 30px;
    color: var(--first-clr);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.off {
    display: inline-block;
    padding: 6px 17px;
    background: #ffecc7;
    border-radius: 30px;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 13px;
}

.wish a {
    width: 35px;
    height: 35px;
    display: grid;
    place-content: center;
    border: 1px solid var(--first-clr);
    color: var(--first-clr);
    border-radius: 100%;
    position: absolute;
    top: 20px;
    right: 20px;
}

.pr-img img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 10px;
}

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

.product-box:hover .pr-img {
    background: #fff;
}

.product-box:hover .wish a {
    /*background: var(--first-clr);*/
    /*color: #fff;*/
    transform: scaleX(-1);
}

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

/* =============bg sec =========== */

.bg-sec {
    background-image: url(../imgs/background-1.jpg);
    background-size: cover;
}

.bg-sec img {
    width: 90%;
}

.bg-sec h6 {
    color: #fff;
    font-size: 42px;
    font-family: "DM Serif Display", serif;
}

/* ===========offer=============  */

.offer-1 {
    padding: 50px 40px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    z-index: 9;
}

.offer-1:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    background: linear-gradient(to right, black, transparent);
    top: 0;
    z-index: -1;
}

.offer-1-txt h6 {
    color: #ffa700;
    font-size: 27px;
    margin: 15px 0;
    font-family: "DM Serif Display", serif;
}

.offer-1-txt {
    width: 60%;
}

.offer-1-txt .time-box {
    background: #333333;
}

.offer-1-txt .nav-btn a {
    background: #ffa700;
    color: #000;
}

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

ul.slick-dots li.slick-active button {
    width: 75px;
    height: 5px;
    border: none;
    background: #ffa700;
    border-radius: 30px;
    font-size: 0;
    transition: .4s;
}

ul.slick-dots li button {
    height: 5px;
    width: 21px;
    font-size: 0;
    border: none;
    background: #bab8b8;
    border-radius: 30px;
}

.offer-slider ul.slick-dots {
    position: relative;
    top: -40px;
}

.offer-2 {
    padding: 40px 40px;
    text-align: center;
    background-size: cover;
}

.offer-2-txt h6,
.offer-4-txt h6,
.offer-4-txt h6 span {
    font-family: "DM Serif Display", serif;
    color: var(--first-clr);
    font-size: 24px;
}

.offer-2-txt {
    top: -25px;
    position: relative;
}

.offer-4 {
    padding: 40px 30px;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    text-align: center;
}

/* ==========product tab ============ */

.fix-img img {
    width: 100%;
    height: 100%;
}

section {
    position: relative;
}

.fix-img {
    position: absolute;
    left: 0;
    width: 25%;
}

.pr-img {
    padding: 40px 15px 15px;
}

.pr-img-2 img {
    width: 85%;
    height: 150px;
}

.pr-txt-2 {
    padding: 10px;
    text-align: left;
}

.pr-txt-2 h5 {
    font-size: 16px;
}

.pr-txt-2 .stock {
    font-size: 13px;
}

.pr-txt-2 .price {
    font-size: 14px;
}

.pr-txt-2 .cart-btn a {
    font-size: 13px;
    padding: 6px 15px;
}

div#myTabContent .col-lg-3 {
    padding: 0 3px;
}

.product-box.product-box-2 {
    margin-bottom: 5px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border: none;
    color: var(--first-clr);
    border-bottom: 1px solid var(--first-clr);
}

ul#myTab {
    border: none;
}

.nav-tabs .nav-link {
    font-size: 20px;
    color: #000;
    border: none;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border: none;
    box-shadow: none;
}

/* ==============bg sec css ========== */

.bg-sec-2 {
    background-image: url(../imgs/background-2.jpg);
    background-size: cover;
    padding: 50px 0;
}

.bg-txt-2 h6 {
    color: #fff;
    font-size: 42px;
    font-family: "DM Serif Display", serif;
}

/* ========barnd sec css ============== */

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

.brand-box {
    width: 15%;
    background: #f8f8f8;
    padding: 15px;
    border-radius: 20px;
    margin: 0 auto 20px;
    text-align: center;
    box-shadow: rgb(99 99 99 / 18%) 0px 2px 8px 0px;
    transition: .4s ease;
}

.brand-box img {
    width: 85%;
    height: 90px;
    object-fit: contain;
    background: #f8f8f8;
    padding: 5px;
}

.brand-box:hover {
    background: var(--first-clr);
}

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


/* ========== about cs  ========= */

.about-sec {
    position: relative;
}

.about-sec:before {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    background: #ca0e0e;
    right: 0;
}

.about-border {
    border-radius: 25px;
    overflow: hidden;
    background: var(--first-clr);
    position: relative;
}

.ab-img {
    position: relative;
}

.ab-img img {
    width: 100%;
    min-height: 600px;
    object-fit: cover;
}

.ab-box {
    padding: 50px 50px;
    border-radius: 25px;
    background: #fff;
    position: absolute;
    right: 5%;
    top: 12%;
    width: 60%;
}


/* =========features css ============ */

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

.feature-flex img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.feature-flex p {
    margin: 0;
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.feature-flex span {
    opacity: .6;
    font-size: 14px;
}


/* ===============blog sec =============== */

.blog-box {
    position: relative;
    width: 100%;
}

.blog-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 25px;
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 25px;
}

/* 
.date {
    display: inline-block;
    padding: 7px 30px;
    background: var(--first-clr);
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    position: absolute;
    bottom: 20px;
    left: 20px;
}
 */

.blog-txt h4 {
    font-size: 21px;
    font-weight: normal;
    color: var(--second-clr);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-box:hover .date {
    background: #000;
}

a.blog-ar {
    padding-bottom: 3px;
    color: var(--second-clr);
}

.blog-box:hover h4,
.blog-box:hover a.blog-ar {
    color: var(--first-clr);
}

.blog-box:hover img {
    transform: scale(1.1);
}


.blog-txt p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* footer css  */

.footer {
    padding: 50px 0;
    background: #f7f7f7;
}

.footer-img img {
    width: 220px;
    height: auto;
    margin-bottom: 20px;
}

.pay-img img {
    width: auto;
}

.f-title h5 {
    color: var(--second-clr);
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    margin-bottom: 15px;
    gap: 15px;
}

.footer-contact i {
    width: 35px;
    height: 35px;
    display: grid;
    place-content: center;
    background: var(--first-clr);
    color: #fff;
    border-radius: 100%;
	flex-shrink: 0;
}

.footer-contact>div {
    width: 80%;
}

.footer-contact span {
    display: block;
    color: #000;
    font-weight: 500;
    font-size: 17px;
}

.footer_links ul li a {
    position: relative;
    width: 100%;
    padding-left: 20px;
    margin-bottom: 7px;
    display: inline-block;
}

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

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

.copyright p,
.copyright a {
    color: #fff;
    font-size: 15px;
    margin: 0;
}

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

.social-icon ul li a {
    font-size: 22px;
    margin-right: 15px;
    opacity: .7;
}

.social-icon ul li a:hover {
    opacity: 1;
}

footer a {
    font-size: 16px;
}

/* +++++++++++INNER BANNER +++++++++++++ */
.inner-banner {
    padding: 40px 0;
    background: #f7f7f7;
}

.inner-banner .breadcrumb {
    justify-content: center;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.breadcrumb {
    margin-bottom: 0 !important;
}


.about-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about-2 {
    width: 88%;
    height: 500px;
    position: relative;
}

.about-2 {}

.ab-num {
    width: max-content;
    height: auto;
    padding: 15px 60px;
    display: grid;
    place-content: center;
    background: var(--first-clr);
    border-radius: 20px;
    position: absolute;
    bottom: 0;
    right: -40px;
    text-align: right;
}

.ab-num h5 {
    color: #fff;
    font-size: 81px;
    text-align: right;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #fff;
    letter-spacing: -2px;
    font-weight: bold;
    margin: 0;
}

.ab-num span {
    font-size: 17px;
    opacity: .9;
    color: #fff;
}

.ab-flex {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-right: 30px;
}

.ab-flex img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.ab-flex p {
    margin: 0;
    font-size: 26px;
    color: #000;
    font-weight: bold;
}

.item-box {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
    /* background: #f7f7f7; */
    padding: 25px;
    border-radius: 10px;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    transition: .4s ease;
    border: 1px solid #cdcd;
}

.item-icon {
    width: 70px;
    height: 70px;
    background: var(--first-clr);
    padding: 15px;
    border-radius: 100%;
    margin-bottom: 20px;
    display: grid;
    place-content: center;
    transition: .4s ease;
}

.item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1);
}

.item-box:hover .item-icon {
    background: var(--second-clr);
    transform: scaleX(-1);
}

.item-box:hover {
    border: 1px solid #000000dd;
}


.item-box:hover h5 {
    color: var(--first-clr);
}

.cat-box.cat-2 {
    margin-bottom: 30px;
}

.cat-box.cat-2 .cat-icon {
    width: 130px;
    height: 130px;
}

.cat-box.cat-2 p {
    font-size: 18px;
    color: #000;
}

.category-pg .row .col-lg-3 {
    width: 20%;
}


/* product page  */

.side-category {
    width: 100%;
    /* margin: auto; */
    padding: 25px;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    border: 1px solid #cdcdcd;
    border-radius: 20px;
}

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

.Category-title i {
    font-size: 18px;
    color: var(--first-clr);
}

.Category-title h3 {
    margin: 0;
    font-size: 17px;
    text-transform: uppercase;
    margin-left: 20px;
    color: var(--first-clr);
}

.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: 16px;
    padding: 0 0 15px;
    color: #000;
    border-bottom: 1px solid #ddd;
    text-transform: capitalize;
	width: 100%;
    padding-right: 15px;
}

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

.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; */
}


.shop-sidebar-body {
    padding: 10px;
    border: none;
    background: #000000;
}

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

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

.accordion-button:focus {
    box-shadow: none !important;
}

.stock.stock-out {
    color: red;
}

#productImageSlider img {
    height: 300px;
    object-fit: contain;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    filter: brightness(0);
}

.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;
}

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


.product-tabs {
    margin-top: 60px;
    /* padding-bottom: 50px; */
    /* border-bottom: 1px solid #e1e1e1; */
    border-top: 1px solid #e1e1e1;
}

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

.product-tabs .nav-tabs {
    /* text-align: center; */
    padding: 35px 0 0;
    margin-bottom: 25px;
    border-bottom: none;
    display: block;
}

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

.product-tabs .nav-tabs .nav-item a {
    /* font-family: 'ITC Caslon 224 Std'; */
    border: none;
    font-size: 17px;
    color: #868686;
    padding: 0 0 8px 0;
    position: relative;
    background: var(--first-clr);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    border: none !important;
}

.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; */
}

.product-tabs .nav-tabs .nav-item a:hover,
.product-tabs .nav-tabs .nav-item a.active {
    background: var(--second-clr);
}

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

.product-tabs .tab-content .tab-pane p {
    line-height: 2em;
}

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

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

.product-tabs .product-reviews .reviews-title {
    font-size: 25px;
    margin-bottom: 30px;
}

.product-tabs #review-form .required {
    color: red;
}

.product-tabs #review-form .comment-form {
    /* display: flex; */
    /* flex-wrap: wrap; */
    margin: 20px 0 0;
    width: 100%;
}

.product-tabs #review-form .comment-form .comment-notes {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 6px;
}

.product-tabs #review-form .comment-form-rating {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 10px;
}

.product-tabs #review-form .comment-form-rating label {
    font-weight: 500;
    margin-right: 0;
    margin-bottom: 10px;
    color: #000;
}


.product-tabs #review-form .content-info-reviews .comment-form-author,
.product-tabs #review-form .content-info-reviews .comment-form-email {
    margin-bottom: 25px;
}

.product-tabs #review-form .content-info-reviews input,
.product-tabs #review-form .comment-form-comment textarea {
    background: #fff;
    padding: 10px 20px;
    border: 1px solid #d6d6d6;
    height: auto;
    /* font-weight: 300; */
    width: 100%;
}

.product-tabs #review-form .comment-form-comment textarea {
    height: 213px;
}

.product-tabs #review-form .content-info-reviews .form-submit {
    margin: 0;
}

.product-tabs #review-form .content-info-reviews .form-submit input[type=submit] {
    background: #000;
    font-weight: 500;
    padding: 0 50px;
    height: 60px;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    width: 100%;
    letter-spacing: .1em;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.product-tabs #review-form .content-info-reviews .form-submit input[type=submit]:hover {
    background: #000;
}


.related-slider .product-box {
    width: 96%;
    
}


.blog-title h1 {
    font-size: 30px;
}

.blog-de-img.blog-img {
    margin: 20px 0;
}

.blog-de-img.blog-img img {
    height: auto;
}

.detail-box h2 {
    font-size: 26px;
}


.blog-sidebar,
.service-formbox {
    padding: 20px;
    border: 1px solid #cdcdcd;
    border-radius: 20px;
}

.blog-sidebar ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: space-between;
}

.blog-sidebar ul li img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-sidebar ul li h6 a {
    font-size: 17px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 600;
}

.blog-sidebar ul li h6 {
    width: 77%;
}

.service-formbox input[type="email"] {}

.service-formbox input[type="email"] {
    width: 100%;
    border: 1px solid #cdcd;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 15px;
}

.service-formbox input[type="submit"] {
    background: #000000;
    color: #fff;
    /* border-color: var(--first-clr); */
    width: 100%;
    border: none;
    padding: 12px;
    border-radius: 5px;
}


.date {
    display: inline-block;
    padding: 7px 30px;
    background: var(--first-clr);
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    position: absolute;
    bottom: 20px;
    left: 20px;
}


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

.contact-box {
    border-bottom: 1px solid #cdcdcd;
    /* border-radius: 10px; */
    background-color: transparent;
    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; */
}

input[type="Submit"] , input[type="submit"] {
    border: none;
    padding: 8px 80px;
    border-radius: 5px;
    background: var(--first-clr);
    font-size: 18px;
    color: #fff;
}

.contact-from {
    /* box-shadow: 5px 5px 20px 0 rgb(0 0 0 / 19%); */
    border-radius: 0;
    margin-top: 0;
    background: #fff;
    padding: 45px 40px;
    /* border-radius: 20px; */
    border-left: 1px solid #cdcdcd;
}

.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; */
    /* align-items: center; */
}

.form-flex input, .form-flex textarea , .form-flex select {
    border: 1px solid #cdcdcd;
    width: 100%;
    font-size: 15px;
    outline: none;
    background: #ffffff;
    border-radius: 5px;
    padding: 9px 10px;
    margin-bottom: 20px;
    color: #595c5f;
}



textarea {
    height: 110px;
}

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


.newsletter {
 
}

.news-form input[type="email"] {
    width: 100%;
    position: relative;
    border: none;
    padding: 11px 15px;
    /* border-radius: 30px; */
    font-size: 15px;
    background: #f7f7f7;
    overflow: hidden;
}

.news-form input[type="submit"] {
    background: var(--first-clr);
    border: none;
    position: absolute;
    right: 0;
    width: max-content;
    padding: 10px 40px;
    /* background: #000000; */
    color: #fff;
    /* margin: 0; */
    /* border-radius: 30px; */
    /* border: none; */
}

.news-form {
    position: relative;
    width: 70%;
    margin: auto;
    
}
.wish-btn {
    margin-right: 20px;
}

.pr-flex .price .woocommerce-Price-amount.amount bdi {
    display: flex;
    gap: 7px;
}

.yith-wcwl-add-to-wishlist-button:not(.yith-wcwl-add-to-wishlist-button--themed-button).yith-wcwl-add-to-wishlist-button--added svg.yith-wcwl-add-to-wishlist-button-icon {
    color: #ca0e0e !important;
}

span.yith-wcwl-add-to-wishlist-button__label {
    display: none !important;
}

.yith-wcwl-add-to-wishlist-button:not(.yith-wcwl-add-to-wishlist-button--themed-button) svg.yith-wcwl-add-to-wishlist-button-icon {
    margin: 0 auto !important;
    width: 90%;
}

.stock.stock-available {
    color: green;
}

h1.product-name {
    font-size: 26px;
}

.yith-add-to-wishlist-button-block.yith-add-to-wishlist-button-block--single {
    background: #fff;
    border: 1px solid #ca0e0e;
    width: 35px !important;
    height: 35px !important;
    display: grid !important;
    place-content: center !important;
    padding:  0 !important;
}


form.cart button.single_add_to_cart_button.button.alt {
    display: inline-block;
    padding: 8px 20px;
    background: var(--first-clr);
    color: #fff;
    border-radius: 30px;
    border: none;
    margin-top: 10px;
}

.form-cart form {
    display: flex;
    align-items: center;
    gap: 14px;
}

.default-section li {
    margin: 0 0 8px;
    list-style: inside auto;
}

.default-section a {
    color: #0038a8;
    font-weight: 500;
}

.supplier-hero {
    padding: 100px 0;
    background-size: cover;
    background-position: top;
    position: relative;
    z-index: 9;
}

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

.supplier-hero p {
    width: 75%;
    margin: auto;
}

a.supply-btn {
    display: inline-block;
    background: var(--first-clr);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
}

.supply-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 0 20px;
}

.supply-box {
    border: 1px solid #cdcdcd;
    padding: 25px;
    border-radius: 10px;
    min-height: 250px;
    display: grid;
    place-content: center;
    place-items: center;
    transition: .4s ease;
}

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

.supply-box:hover img {
    filter: invert(1);
}

.supply-box:hover h5 {
    color: white;
}

.supply-box:hover p {
    color: white;
}

.supplier-form {
    background: var(--first-clr);
    padding: 50px  40px;
    border-radius: 20px;
    width: 75%;
    margin: auto;
}

.supplier-form input[type="Submit"] {
    background: var(--second-clr);
}

.sp-about img {
    width: 95%;
    height: auto;
    border-radius: 20px;
}

.cat-icon img {
    width: 100%;
    height: 100%;
}

.default-page .woocommerce-MyAccount-navigation ul {
    /* display: flex; */
    justify-content: space-between;
    /* margin: 2rem 0; */
    /* list-style: none; */
}

.default-page .woocommerce-MyAccount-navigation ul li {
    list-style: none;
    margin: 0 0 12px;
}

.default-page .woocommerce-MyAccount-navigation ul li a {
    background: #f7f7f7;
    padding: 10px 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    display: inline-block;
    width: 100%;
    border-radius: 10px;
}

.default-page .woocommerce {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

nav.woocommerce-MyAccount-navigation {
    width: 25%;
    background: #ca0e0e;
    padding: 25px;
    border-radius: 20px;
}

.woocommerce-MyAccount-content {
    width: 72%;
    background: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

header.woocommerce-Address-title.title h2 {
    font-size: 25px;
}

.woocommerce form input, .woocommerce form select, .woocommerce form textarea , .select2-container .select2-selection--single .select2-selection__rendered , textarea  {
    border: 1px solid #eee !important;
    padding: 15px  10px!important;
    height: auto ;
	width: 100%;
}

.cart input {
	border: 1px solid #eee !important;
	padding: 5px !important; 
}

.select2-container .select2-dropdown, .select2-container .select2-selection {
    border-color: #eee !important;
}

.cat-box p {
    width: 100%;
    word-break: break-word;
    margin: 0;
}

footer , header , section {
    overflow-x: clip;
}

li.mobile-search {
    display: none;
}

.blog-sidebar {
    position: sticky;
    top: 150px;
}

.wc-block-components-form .wc-block-components-text-input input[type=text]::placeholder {
    font-size: 0;
}



/* RESPONSIVE QUERY______ */


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

}

@media only screen and (max-width: 1199px) {
	
footer a {
    font-size: 14px;
}
	
}

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

}

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

}

@media only screen and (max-width: 991px) {
	
.banner-2-img img {
    display: none !IMPORTANT;
}

.banner-text h3 {
    font-size: 34px;
}

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

.banner-1-img {
    margin-left: auto;
    width: 100%;
    max-width: 500px;
}

.banner-1-img img {
    height: 250px;
    object-fit: cover;
}

.banner-1 {
    position: relative;
    bottom: 0;
}

.container {
    max-width: 720px;
}

.bg-txt-2 h6 {
    font-size: 24px;
}

.brand-box img {
    height: 45px;
    padding: 0;
}

.brand-box img {}

.ab-box {
    width: 100%;
    top: 20px;
    left: 40px;
    padding: 25px;
    position: revert !important;
    margin: 2rem 0;
}

.feature-flex {
    flex-direction: column;
    text-align: center;
    gap: 0;
}

.blog-box {
    margin: 0 0 1.5rem;
}

.footer-img img {
    width: 130px;
}
	
.deliver-txt {
    display: none;
}

.offer-banner p {
    font-size: 13px;
}	
	
.top-social ul li.cart .points {
    display: none;
}

.top-social ul li.cart {
    padding: 0;
    border: 0;
}

.top-social ul li a {
    font-size: 13px;
    width: 35px;
    height: 35px;
}

.logo img {
    width: 120px;
}
	
.desk-top-menu ul , .desk-top-menu {
    display: none;
}

.btn-toggle {
    color: white;
    background: #ca0e0e;
}

button.btn-close {
    color: white;
    background: #ca0e0e;
    opacity: 1;
}

.mobile-top-menu ul {
    flex-direction: column;
    align-items: start;
}

.mobile-top-menu ul li a {
    font-size: 14px;
    padding: 8px 14px;
    width: 100%;
    /* border-bottom: 1px solid #eee; */
}

.mobile-top-menu ul li {
    width: 100%;
/*     display: flex; */
    border-bottom: 1px solid #eee;
}

span.clk_btn {
    padding: 5px 10px;
    right: 0;
    position: absolute;
}
	
.mobile-top-menu ul.dropdown-menu {
    position: revert;
    min-width: 100%;
    height: 100%;
    border: 0;
    overflow: hidden;
}
	
.menu-bar-2 ul li a {
    padding: 0;
}
	
h3.title {
    color: var(--second-clr);
    font-size: 22px; 
}
	
section.bg-sec {
    padding: 20px 0;
    text-align: center;
}

.bg-sec h6 {
    font-size: 34px;
}

.fix-img {
    display: none;
}

.coupen-img img {
    width: 180px;
}

.about-sec:before {
    width: 100%;
}

.ab-img img {display: none;}

.feature-flex p {
    font-size: 14px;
    margin: 6px 0 0;
}

.f-title h5 {
    font-size: 20px;
    margin: 10px 0;
}
	
div#myTabContent .col-lg-3 {
    padding: inherit;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}	
	
.social-icon ul li a {
    font-size: 16px; 
}
	
.about-2 {
    height: auto;
    margin: 0 0 1.5rem;
}

.ab-num {
    padding: 15px 30px;
    font-size: 20px;
}

.ab-num h5 {
    font-size: 50px;
    font-weight: 600;
}

.item-box {
    padding: 20px;
    margin: 0 0 20px;
}
	
.category-pg .row .col-lg-3 {
    width: 33.3%;
}
	
.contact-from {
    padding: 0;
    border: 0;
}

form p {
    margin: 0;
}

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

}


@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) {

	.container {
      max-width: 540px;
    }
	
	.offer-banner , .offer-banner p {
    gap: 0;
    font-size: 8px;
}

.offer-banner img {
    width: 15px;
}

.banner-1 {
    display: none;
}

.banner-sec {
    padding: 40px 0;
}

.btn-toggle {
    font-size: 12px;
    padding: 4px 8px;
}

.banner-text .span-banner {
    font-size: 16px;
}

.banner-text h3 {
    font-size: 24px;
}

.banner-text p {
    font-size: 17px;
    margin: 0;
}

.timer-container {
    display: none;
}

.bg-sec h6 {
    font-size: 25px;
}

.sec-padding {
    padding: 40px 0;
}

.bg-sec-2 .d-flex {
    flex-wrap: wrap;
}

.bg-txt-2 {
    padding: 0 !IMPORTANT;
}

.brand-box {
    width: 22%;
    margin: auto;
    padding: 10px;
    /* background: white; */
    box-shadow: none;
}

.brand-flex {
    gap: 10px;
}
	
.search-box {
    display: none;
}
	
li.cart {
    display: none !important;
}

li.mobile-search {
    display: inline;
}

li.mobile-search a {
    color: var(--first-clr) !important;
}	
	
.banner-slider .slick-dots {
    bottom: 0;
    right: 0;
    display: none !IMPORTANT;
}	
	
.mt-5 {
    margin-top: 1.5rem !important;
}
	
.menu ul li a {
    font-size: 14px; 
}

.news-form {
    width: 100%;
}

.news-form input[type="submit"] {
    position: revert;
    margin: 1rem 0 0;
}	
	
.w-75 {
    width: 100% !important;
}	
	
.offer-1-txt h6 {
    color: #ffa700;
    font-size: 20px; 
}
	
.offer-2 , .offer-4 {
    background-size: cover !IMPORTANT;
    margin: 0 0 1rem;
}	
	
h1.product-name {
    font-size: 20px;
}
	
p, li , a {
    font-size: 15px; 
}
	
p.availability {
    margin: 0;
}

p.sale-price {
    font-size: 18px;
}

form.cart button.single_add_to_cart_button.button.alt, .nav-btn a , .product-tabs .nav-tabs .nav-item a {
    padding: 6px 16px;
    font-size: 14px;
}

.news-form input[type="submit"] {
    font-size: 14px;
    padding: 8px 18px;
}
	
.breadcrumb ul {
    flex-wrap: wrap;
    gap: 3px;
}

.product-tabs .nav-tabs .nav-item a {
    margin: 0 0 10px;
}	
	
.side-category {
    margin-bottom: 20px;
}
	
.top-social ul {
    gap: 4px;
}

.top-social ul li a {
    font-size: 11px;
    width: 30px;
    height: 30px;
}

.logo img {
    width: 110px;
}
	
.item-icon {
    width: 55px;
    height: 55px;
    padding: 10px;
}	
	
.category-pg .row .col-lg-3 {
    width: 50%;
}
	
.blog-title h1 {
    font-size: 20px;
}
	
.sec-padding {
    padding: 40px 0;
}
	
.contact-box {
    padding: 0 20px 20px;
}	
	
.contact-info h4 {
    font-size: 18px;
}
	
.contact-info i {
    font-size: 18px; 
}

.address h5 {
    font-size: 16px;
}	

.contact-from h4 {
    font-size: 22px;
}
	
.footer {
    padding: 20px 0; 
}
	
	
	
}

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

}

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

}

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

}

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

}

@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) {

}





