@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

html {
    font-size: 16px;
    overflow-x: hidden;
}


/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: var(--theme-color) var(--white);
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 16px;
}

*::-webkit-scrollbar-track {
    background: var(--white);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--theme-color);
    border-radius: 1rem;
    border: 4px solid var(--white);
}


body {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Freight Big Pro';
    src: url('../fonts/FreightBigPro-Bold.eot');
    src: url('../fonts/FreightBigPro-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/FreightBigPro-Bold.woff2') format('woff2'), url('../fonts/FreightBigPro-Bold.woff') format('woff'), url('../fonts/FreightBigPro-Bold.ttf') format('truetype'), url('../fonts/FreightBigPro-Bold.svg#FreightBigPro-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Freight Big Pro';
    src: url('../fonts/FreightBigPro-BoldItalic.eot');
    src: url('../fonts/FreightBigPro-BoldItalic.eot?#iefix') format('embedded-opentype'), url('../fonts/FreightBigPro-BoldItalic.woff2') format('woff2'), url('../fonts/FreightBigPro-BoldItalic.woff') format('woff'), url('../fonts/FreightBigPro-BoldItalic.ttf') format('truetype'), url('../fonts/FreightBigPro-BoldItalic.svg#FreightBigPro-BoldItalic') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Freight Big Pro';
    src: url('../fonts/FreightBigPro-Light.eot');
    src: url('../fonts/FreightBigPro-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/FreightBigPro-Light.woff2') format('woff2'), url('../fonts/FreightBigPro-Light.woff') format('woff'), url('../fonts/FreightBigPro-Light.ttf') format('truetype'), url('../fonts/FreightBigPro-Light.svg#FreightBigPro-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Freight Big Pro';
    src: url('../fonts/FreightBigPro-LightItalic.eot');
    src: url('../fonts/FreightBigPro-LightItalic.eot?#iefix') format('embedded-opentype'), url('../fonts/FreightBigPro-LightItalic.woff2') format('woff2'), url('../fonts/FreightBigPro-LightItalic.woff') format('woff'), url('../fonts/FreightBigPro-LightItalic.ttf') format('truetype'), url('../fonts/FreightBigPro-LightItalic.svg#FreightBigPro-LightItalic') format('svg');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

:root {
    --white: #ffffff;
    --black: #000;
    --gary-color: #727272;
    --lightgary-color: #b2b9bd;
    --theme-color: #63EF08;
    --primary-color: #307504;
}

::selection {
    background-color: var(--primary-color);
    color: var(--white);
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3 {
    color: #000;
    font-family: 'Freight Big Pro';
}

h4,
h5 {
    font-family: 'Montserrat', sans-serif;
}

h6 {
    font-family: 'Oswald', sans-serif;
}

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

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

button {
    border: none;
    outline: none !important;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

section {
    padding: 5rem 0;
    position: relative;
}


/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--black);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--theme-color);
}


/* loader */


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary-color);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    opacity: 0.3;
}


/* Cursor End */


/* btn css */

.themeBtn {
    background: var(--primary-color);
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    padding: 0.63em 2.25em;
    border-radius: 7px;
    line-height: normal;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}

.disable {
    background: var(--primary-color);
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    padding: 0.63em 2.25em;
    border-radius: 7px;
    opacity: 0.3;
    line-height: normal;
}


/* btn css */


/* mouse animation css  */

.bounce-element {
    animation: bounce 0.9s infinite alternate;
    -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

.mouse {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
    text-align: center;
}


/* mouse animation css  */


/* card-hover */

.card-hover figure {
    position: relative;
    overflow: hidden;
}

.card-hover figure::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.card-hover:hover figure::before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.card-hover figure img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.card-hover:hover figure img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}


/* navigation css */

.topBar {
    background: var(--black);
    padding: 1rem 5rem;
    position: relative;
    z-index: 11;
}

.deliveryList ul {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: space-between;
}

.deliveryList ul li h6 {
    color: rgb(255 255 255 / 50%);
}

.deliveryList ul li .logo-img {
    width: 200px;
}

.search button.btn.btn-outline-secondary.dropdown-toggle {
    background: #F2F2F2;
    font-size: 1.125rem;
    color: var(--black);
    padding: 0 1.3rem;
    border: 0;
}

.search input.form-control {
    width: 500px;
    height: 60px;
    color: var(--black);
}

.search .searchs {
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    font-size: 1.5rem;
    color: #fff;
    transition: all 400ms ease-in-out;
}

.search .searchs:hover {
    background: var(--theme-color);
    color: var(--black);
}

.heloMain {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.heloContent a.heloSign {
    font-size: 1.125rem;
    color: rgb(255 255 255 / 50%);
}

.heloContent a {
    display: table;
    text-align: center;
    /* margin: auto; */
}

.heloContent a.acountList {
    font-size: 1.125rem;
    color: var(--white);
}

.cart a {
    display: flex;
    align-items: flex-end;
    gap: 0.2rem;
}

.deliveryList ul li span {
    font-size: 1.125rem;
    color: var(--white);
    display: table;
    margin-left: auto;
}

.cart a span {
    display: inline-block;
    line-height: 1;
}

.heart a {
    font-size: 2rem;
    color: var(--theme-color);
}

.an-navbar {
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 0rem 4.2rem;
    /* position: relative; */
    z-index: 1;
}

a.navbar-brand img,
.navbar-nav li:nth-child(8),
.navbar-nav li:nth-child(9) {
    display: none;
}

.navbar-nav {
    align-items: center;
    width: 100%;
    gap: 3.5rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0;
    margin: 0 0;
    display: inline-block;
    /* border-bottom: 5px solid transparent; */
}

header {
    position: relative;
    z-index: 1;
}


.navbar .drop-down ul li a:hover {
    color: var(--theme-color);
}


.navbar .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
    z-index: 1;
}

.navbar .drop-down li {
    min-width: 210px;
    position: relative;
    list-style: none;
}

.navbar .drop-down ul a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #848484;
    line-height: 21px;
}

.navbar .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .drop-down>a:after {
    font-family: 'Font Awesome 5 Pro';
    content: '\f107';
    font-weight: 300;
    padding-left: 5px;
}

.navbar .dropdown-menu {
    border: none;
    max-height: 80vh;
    overflow-x: hidden;
    overflow-y: scroll;
}

@media screen and (min-width: 992px) {

    .navbar {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .navbar .dropdown {
        position: static;
        padding: 2rem 0.5rem;
    }

    .navbar .dropdown-menu {
        display: block;
        position: absolute;
        left: 50%;
        top: 100%;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        padding: 0;
        transition: all 0.2s ease;
        width: calc(100vw - 5rem);
        background: transparent;
        transform: translateX(-50%);
    }


    /* shows the dropdown menu on hover */
    .navbar .dropdown:hover .dropdown-menu,
    .navbar .dropdown .dropdown-menu:hover {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown-menu {}

}

.dropdown-menu span {
    color: #000 !important;
    font-size: 1.125rem;
    font-weight: 600;
}

.dropdown-menu ul {
    margin-bottom: 1rem;
}

.dropdown-menu .container {
    display: block;
    padding: 0;
}

.navbar-nav .dropdown .nav-item .nav-link {
    font-weight: 400;
    font-size: 1rem;
}

/*header .navbar {*/
/*    position: unset !important;*/
/*}*/

.mainCat {
    height: 100%;
    overflow-y: auto;
    background: var(--primary-color);
    box-shadow: 0 1px 10px rgb(0 0 0 / 12%);
    border-radius: 0.7rem 0 0 0.75rem;
}

.mainCat .nav-item .nav-link {
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    display: block;
    transition: all 0.4s ease;
}

.mainCat>h4 {
    padding: 1rem;
    text-transform: uppercase;
    margin: 2px 0 0;
    color: #fff;
    background-color: var(--black);
}

.mainCat .nav-item .nav-link:hover,
.mainCat .nav-item .nav-link.active {
    color: var(--black);
    font-weight: 600;
    box-shadow: 0 1px 10px rgb(0 0 0 / 50%);
    background-color: var(--theme-color);
}

.dropdown-menu .subCat {
    padding: 2rem 1rem;
    overflow: hidden;
    display: none;
    box-shadow: 0 1px 10px rgb(0 0 0 / 50%);
    background: #fff;
    height: 100%;
    position: relative;
    border-radius: 0;
    border-radius: 0 0.75rem 0.75rem 0;
}

.mainCat .nav.flex-column {
    margin: 0;
    /* padding: 1rem 0; */
}

.dropdown-menu .subCat.active,
.dropdown-menu .subCat:hover {
    display: block;
}

.navbar-nav .dropdown .subCat .nav-item .nav-link:hover::before {
    width: 100%;
}

.navbar-nav .dropdown .subCat .nav-item .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0%;
    background: #333;
    transition: all 0.2s ease;
    z-index: 1;
}

.navbar-nav .dropdown .subCat .nav-item .nav-link {
    display: inline-block;
    position: relative;
}

/* .alldrop button:hover,
.alldrop button:focus,
.alldrop button:active {
    background: transparent !important;
    border: transparent !important;
    color: var(--black) !important;
} */


/* navigation css */


/* slider css */

.bannerSec {
    background: url(../images/banerbg.jpg) no-repeat top center/ cover;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.bannerSec figure {
    position: absolute;
    bottom: 0;
}

.bannerSec figure.manImg {
    left: 6%;
    bottom: -2rem;
}

.bannerSec .womenImg {
    right: 8%;
}

.bannerContent {
    text-align: center;
}

.bannerContent h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--black);
    font-weight: bold;
    padding-right: 1rem;
    line-height: 1.37;
}

.bannerContent h2 .collection {
    position: relative;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.bannerContent h2 .collection:before {
    content: "";
    position: absolute;
    right: 0;
    background: url(../images/shape1.png) no-repeat;
    width: 175px;
    height: 90px;
    top: -16px;
    background-size: 100% 100%;
    background-position: center center;
    z-index: -1;
    display: none;
}

.bannerContent h2 span {
    font-weight: bold;
}

.bannerContent p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 1rem;
    padding: 0 9rem;
}

.shopBtn {
    font-size: 1.125rem;
    color: var(--black);
    font-weight: 500;
    background: url(../images/shape2.png) no-repeat center center;
    padding: 1rem 2rem;
    display: inline-block;
    background-size: 100%;
    filter: brightness(0) saturate(100%);
}

.shopBtn:hover {
    filter: unset;
    color: var(--white);
}

.blink {
    animation: 1s linear infinite blink;
}

.bannerContent h2 .collection div {
    position: relative;
}

.bannerContent h2 .collection div:before {
    content: '';
    position: absolute;
    background: url(../images/shape1.png) no-repeat;
    width: 175px;
    height: 90px;
    top: -24px;
    background-size: 100% 100%;
    background-position: center center;
    z-index: -1;
    left: -24px;
    filter: brightness(0) saturate(100%);
}

.bannerContent h2 .getOf {
    font-size: 3.75rem;
    display: inline-block;
}

@keyframes blink {

    0%,
    100%,
    49% {
        filter: grayscale(1) contrast(0) brightness(100);
    }

    60%,
    99% {
        filter: unset;
    }
}

/* .bannerSec .womenImg:before {
    content: '';
    position: absolute;
    width: 342px;
    height: 342px;
    background: rgb(255 255 255 / 31%);
    border-radius: 50%;
    z-index: -1;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
} */


/* slider css */

.betterBox {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 1.25rem;
}

.betterBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.betterBox .overlay {
    position: absolute;
    top: 40px;
    left: 35px;
}

.betterBox .overlay span {
    background: var(--primary-color);
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
    width: 176px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-bottom: 1.3rem;
    transition: .3s ease-in-out;
}

.betterBox:hover .overlay span {
    background: var(--theme-color);
    color: var(--black);
}

.betterBox .overlay h2 {
    font-size: 1.875rem;
    color: var(--white);
    font-weight: bold;
    width: 60%;
}

.betterBox .overlay a {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    text-decoration: underline !important;
}

.categryContert {
    text-align: center;
}

.categryContert figure {
    border-radius: 50%;
    margin: 0 0 1rem;
}

.categryContert figure img,
.reviewImg figure img {
    width: 300px;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.categryContert h2 {
    font-size: 2rem;
    font-weight: bold;
}

.categorieMain .swiper-button-prev {
    left: -3rem;
}

.categorieMain .swiper-button-prev:after {
    color: var(--black);
}

.categorieMain .swiper-button-next {
    right: -3rem;
}

.categorieMain .swiper-button-next:after {
    color: var(--black);
}

.sectionHeading {
    text-align: center;
    margin: 0 0 3rem;
    font-size: 4.375rem;
    font-weight: bold;
}

.categorieMain {
    background: #F8F8F8;
    padding: 5rem 7rem;
}

.featureMain {
    padding: 5rem 8rem;
}

.proCard {
    /* position: relative; */
}

.proCard>a {
    border-radius: 1.25rem;
    display: block;
    position: relative;
    overflow: hidden;
}

.badge {
    color: var(--white);
    background-color: var(--primary-color);
    font-size: 0.825rem;
    position: absolute;
    top: 10px;
    left: 0;
    padding: 0.5rem;
    z-index: 1;
}

.proCard figure {
    /* border-radius: 1.25rem; */
    height: 350px;
    background: #ddd;
}

.proCard figure img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.proContent {
    padding-top: 1.25rem;
}

.proContent h4 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--primary-color);
    margin: 0;
}

.proContent h2 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.proContent p {
    color: var(--black);
    margin-bottom: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.proContent .d-flex {
    flex-direction: column;
    gap: 0.5rem;
}

.proContent .d-flex h6 {
    margin: 0;
    font-size: 1.375rem;
    color: var(--black);
    font-weight: 600;
}

.proContent .themeBtn {
    padding: 0.75rem;
    text-align: center;
}

.featureMain .swiper-button-prev1 {
    left: -4.5rem;
    top: 35%;
}

.featureMain .swiper-button-next1 {
    right: -4.5rem;
    top: 35%;
}

.featureMain .swiper-button-prev1:after,
.featureMain .swiper-button-next1:after {
    color: var(--black);
}

.time-countdown {
    width: 300px;
    height: 25px;
    position: absolute;
    top: 10px;
    padding: 5px 25px;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.time-countdown>i {
    font-size: 12px;
    width: 15%;
}

.time-countdown span {
    width: 30%;
}

.time-countdown span strong {
    font-size: 16px;
    font-weight: bold;
    margin-right: 5px;
    margin-left: 5px;
}

.weeklyMain {
    background: #F8F8F8;
    z-index: 1;
}

.weeklyMain .weklyImg {
    width: 48%;
}

.weeklyContent span {
    background: var(--theme-color);
    font-size: 0.875rem;
    color: var(--black);
    font-weight: 600;
    width: 176px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.heading {
    font-size: 3.125rem;
    font-weight: bold;
}

.counter {
    display: flex;
    gap: 1.8rem;
}

.counter .item {
    text-align: center;
}

#day,
#hour,
#minute,
#second {
    font-size: 4.5rem;
    color: var(--black);
    font-weight: 600;
    line-height: 1;
    font-family: 'Oswald', sans-serif;
}

.counter .item div+div {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
}

.weeklyContent .heading {
    margin: 0 0 1.2rem;
}

.weklyImg {
    position: absolute;
    left: 0;
}

.offerBox {
    background: var(--white);
    border-radius: 53px 0 0 53px;
    padding: 2.5rem;
    margin-top: 2.5rem;
}

.weeklyMain:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 80px;
    background: #fff;
    width: 43%;
    height: 58.3%;
    z-index: -1;
}

.offerBox .swiper-button-next2 {
    right: -2rem;
    top: 38%;
}

.offerBox .swiper-button-next2:after {
    color: var(--black);
}

.summerMain .weklyImg {
    left: auto;
    right: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
    width: 38%;
}

.summerMain .offerBox {
    padding: 0;
    margin-left: -9rem;
    background: transparent;
}

.summerMain .offerBox .sectionHeading {
    text-align: left;
    font-size: 5rem;
    margin: 0 0 1.5rem;
}

.summerMain {
    padding: 1rem 0 5rem;
}

.summerMain .offerBox .swiper-button-prev3 {
    left: -13rem;
}

.summerMain .offerBox .swiper-button-prev3:after {
    color: var(--black);
}

.shippingSec {
    background: rgb(196 196 196 / 10%);
}

.shipingBox {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.shipingBox figure {
    flex-shrink: 0;
}

.shipingBox h2 {
    font-size: 1.875rem;
    font-weight: bold;
    margin: 0 0 7px;
}

.shipingBox p {
    color: var(--black);
    line-height: 1.6;
    margin: 0;
}

.shipingBox figure {
    flex-shrink: 0;
}

.title .sectionHeading {
    margin: 0 0 0rem;
}

.title p {
    color: var(--black);
    margin: 0 0 2rem;
}

.discoverBox {
    text-align: center;
}

.discoverBox h2 {
    font-size: 2.77rem;
    font-weight: bold;
    margin: 1rem 0 1rem;
}

.discoverBox a {
    font-size: 1.125rem;
    color: var(--black);
    font-weight: 500;
    text-decoration: underline !important;
}

.instaContent .heading {
    line-height: 1.05;
    margin: 0 0 2rem;
}

.instaFolower {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.instaFolower figure {
    flex-shrink: 0;
    width: 131px;
    height: 131px;
    border: 1px solid #707070;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instaFolower h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin: 0;
}

.instaFolower h5 {
    font-size: 1.125rem;
    color: var(--black);
    margin: 0.5rem 0 1rem;
}

.instaFolower .themeBtn {
    padding: 0.63em 1.25em;
}

.instaImg {
    text-align: center;
    position: relative;
    height: 100%;
    width: 100%;
}

.instaImg figure {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    justify-content: center;
}

.instaImg figure img {
    position: absolute;
}

.img1 {
    left: -53px;
}

.img2 {
    left: 10%;
    bottom: -15%;
    z-index: 11;
}

.img4 {
    right: -50px;
    bottom: 0;
}

.img3 {
    z-index: 1;
}

.instaMain {
    background: rgb(196 196 196 / 10%);
    padding: 10.5rem 0 11rem;
}

footer {
    background: var(--black);
    padding-top: 4rem;
}

.quickList h2 {
    font-size: 2.0625rem;
    color: var(--white);
    font-weight: bold;
    margin: 0 0 1.3rem;
}

.quickList .d-flex {
    justify-content: space-between;
}

.quickList ul li a {
    font-size: 1.125rem;
    color: #A5A5A5;
    font-weight: 400;
}

.quickList ul li+li {
    margin-top: 10px;
}

.calFoter ul li {
    font-size: 1.125rem;
    color: #A5A5A5;
}

.calFoter ul li a {
    font-size: 1.125rem;
    color: #A5A5A5;
}

.calFoter ul li+li {
    margin-top: 15px;
}

.newslter {
    border-top: 1px solid rgb(255 255 255 / 50%);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.subCribe h2 {
    font-size: 1.8125rem;
    color: var(--white);
    font-weight: bold;
    margin: 0 0 1.5rem;
}

.subCribe form {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.subCribe form input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: 1px solid #707070;
    font-weight: 400;
    padding: 0 16px;
    color: var(--white);
    accent-color: var(--white);
}

.subCribe form input::placeholder {
    color: #A5A5A5;
}

.subCribe form .themeBtn {
    height: 50px;
    border-radius: 0;
    background: var(--theme-color);
    color: var(--black);
    border: none;
    outline: none !important;
}

.copyRight {
    padding: 2rem 0;
}

.copyRight p {
    margin: 0;
    font-size: 1.125rem;
    color: #A5A5A5;
}

.copyRight a {
    display: table;
    margin-left: auto;
}

.quickList ul li a:hover,
.calFoter ul li a:hover,
.slideContent a:hover,
.discoverBox a:hover {
    color: var(--theme-color);
}

.themeBtn:hover {
    background: var(--theme-color);
    color: var(--black);
}

.subCribe form .themeBtn:hover {
    background: var(--primary-color);
    color: var(--white);
}


/* inner pages css start */
.cat-description {color: var(--white);font-weight: 500;}

.aboutPage {
    padding: 6rem 0;
}

.innerBaner {
    width: 100%;
    height: 400px;
}


.innerBaner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.innerBaner > img {
    height: 100%;
    object-fit: cover;
}

.innerBaner h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.75rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
}

.aboutpgContent .sectionHeading {
    text-align: left;
    margin: 0 0 0rem;
}

.aboutpgContent p {
    font-size: 1.125rem;
    color: var(--black);
    margin: 0;
}

.aboutpgContent p+p {
    margin: 10px 0 0;
}

.radiusImg img {
    border-radius: 1.25rem;
}

.categoriesList {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 0;
    flex-wrap: wrap;
}

.categoriesList li {
    flex: 0 1 20%;
    width: 20%;
    padding: 0 1rem;
    text-align: center;
}

.categoriesList li a {
    width: 100%;
    height: 100%;
    background-color: #f1f1f1;
    border-radius: 50%;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.categoriesList li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.categoriesList+.categoriesList {
    margin-top: 2.5rem;
}

.productPage {}

.productPage .proCard {
    margin-bottom: 3rem;
}

.pagination {
    justify-content: center;
}

.pagination ul {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.pagination ul a {
    font-size: 1.375rem;
    color: var(--black);
    font-weight: 600;
    width: 28px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: transparent;
}

.pagination ul a.active {
    background: var(--theme-color);
    color: var(--white);
}


/* Begin: Contact CSS */

.cntctInfo .oneTop {
    background: linear-gradient(to left, #F8F8F8 55%, var(--primary-color) 55%);
    border-radius: 0.3125rem;
    padding: 2.5rem 1.5rem;
    border: 2px solid #f3f3f3;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.cntctSet h1 {
    margin: 0 0 0.5rem;
    color: white;
    font-size: 3.65rem;
    font-weight: bold;
}

.cntctSet p {
    font-size: 1.125rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    margin: 0 0 3rem;
    color: white;
    font-weight: 400;
    padding-right: 1rem;
    text-transform: uppercase;
}

.cntctSet .contInfo {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-flow: column;
    gap: 2rem 0;
}

.cntctSet .contInfo li a {
    display: flex;
    align-items: center;
    gap: 0 1rem;
    line-height: 1.5;
}

.cntctSet .contInfo li a img {
    filter: brightness(0) invert(1);
}

.cntctSet .contInfo li a strong {
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white);
    font-size: 1.125rem;
}

.cntctSet .social {
    position: unset;
    transform: translateY(0%);
    flex-direction: row;
    gap: 1rem;
    margin-top: 10rem;
}

.estimateForm {
    padding: 0 0 0 3.5rem;
}

.estimateForm label {
    display: block;
    font-size: 15px;
    color: var(--black);
    font-weight: 500;
    margin: 0 0 0.4rem;
}

.estimateForm input {
    all: unset;
    border-bottom: 2px solid #c7c7c7;
    width: 100%;
    height: 65px;
    font-weight: 600;
    margin: 0 0 2rem;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.estimateForm input:focus,
.estimateForm textarea:focus {
    border-color: #000;
}

.estimateForm input:focus::placeholder,
.estimateForm textarea:focus::placeholder {
    color: #000;
}

.estimateForm input::placeholder,
.estimateForm textarea::placeholder {
    color: rgb(0 0 0 / 20%);
}

.estimateForm textarea {
    all: unset;
    border-bottom: 2px solid #c7c7c7;
    width: 100%;
    height: 115px;
    font-weight: 600;
    margin: 1rem 0 3rem;
}

.estimateForm .btnStyle {
    display: table;
    margin-left: auto;
}

button.btnStyle .submitBtn {
    padding: 1rem 2rem;
}

.social {
    margin: 0;
    display: flex;
    gap: 1rem 0;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 5rem;
    transform: translateY(-50%);
    z-index: 9;
}

.social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
    background: transparent;
    color: #fff;
    border-radius: 100px;
    font-size: 1.2rem;
    text-transform: capitalize;
    width: 57px;
    height: 57px;
}

.social li a:hover,
.social li a:focus {
    background: var(--white);
    color: var(--primary-color);
}

.cntctInfo {
    padding: 5rem 2rem;
}

.cntctSet .contInfo li a strong span {
    display: block;
    font-weight: bold;
    font-size: 1.125rem;
    text-transform: lowercase;
    margin: 2px 0 0;
}

.formHeading .sectionHeading {
    text-align: left;
    padding-left: 3rem;
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
}

.formHeading .sectionHeading:before {
    content: '';
    position: absolute;
    left: 7.5%;
    bottom: 0;
    background: var(--primary-color);
    width: 136px;
    height: 6px;
    border-radius: 50px;
}

.estimateForm .themeBtn {
    display: table;
    /*margin-left: auto;*/
    border: 0;
    font-size: 1.0625rem;
    border-radius: 5px;
    padding: 1.2em 2em;
}


/* END: contact CSS */


/*PRoduct Details*/

.Proreview h2 {
    text-align: left;
    margin: 1rem 0 0;
    font-size: 3rem;
    font-weight: bold;
}

.Proreview ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2rem;
    color: #F7C00C;
    margin-bottom: 1rem;
}

.Proreview ul li span {
    color: #000;
    font-weight: 600;
    padding-right: 1rem;
}

.Proreview p {
    font-size: 1.75rem;
    color: #000;
}

.Proreview h5 {
    font-size: 2.1875rem;
}

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

.star li span::before {
    content: "";
    position: absolute;
    background: #F2F2F2;
    width: 80%;
    height: 25px;
    top: 7px;
    left: 8rem;
    border-radius: 10px;
}

ul.star li {
    margin: 0;
    color: #000;
    font-size: 1.875rem;
}

.star li span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-color);
    top: 7px;
    left: 8rem;
    height: 25px;
    width: 70%;
    border-radius: 10px 0 0 10px;
}

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

.star2 li span::before {
    content: "";
    position: absolute;
    background: #F2F2F2;
    width: 80%;
    height: 25px;
    top: 7px;
    left: 8rem;
    border-radius: 10px;
}

.star2 li {
    margin: 0;
    color: #000;
    font-size: 1.875rem;
}

.star2 li span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-color);
    top: 7px;
    left: 8rem;
    height: 25px;
    width: 10%;
    border-radius: 10px 0 0 10px;
}

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

.star3 li span::before {
    content: "";
    position: absolute;
    background: #F2F2F2;
    width: 80%;
    height: 25px;
    top: 7px;
    left: 8rem;
    border-radius: 10px;
}

ul.star3 li {
    margin: 0;
    color: #000;
    font-size: 1.875rem;
}

.startProduct ul {
    margin: 1.4rem 0;
}

.reviewSec {
    /* background: #fff; */
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid #D2D2D2;
}

.Proreview {
    padding-bottom: 1rem;
}

.reviewImg {
    display: flex;
    align-items: center;
    margin: 3rem 0;
}

.reviewImg figure img {
    height: 300px;
    border-radius: 50%;
}

.content-wraper h3 {
    margin-bottom: 0;
    font-size: 2rem;
    font-weight: 600;
    text-transform: capitalize;
}

.content-wraper {
    margin-left: 2rem;
}

.content-wraper h4 {
    margin: 0.9rem 0;
    font-size: 1rem;
    color: #726f6f;
    font-weight: 600;
}

.content-wraper span {
    margin-left: 10px;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
}

.content-wraper p {
    font-size: 1rem;
}

.Proreview .row+.row {
    margin: 5rem 0;
}

.reviewSec textarea {
    width: 100%;
    height: 160px;
    padding: 1rem;
    background: #F8F8F8;
    border-color: #EBEBEB;
}

.wishlistPro {
    background: #f8f6f6;
    padding-top: 0;
}

.productSlider-for,
.productSlider-nav {
    overflow: hidden;
}

.productNav {
    background: #F3F3F3;
    padding: 1.5rem;
    /* border-radius: 15px; */
    border: 1px solid #D2D2D2;
}

.productNav figure {
    /* background: #FBFBFB; */
    /* border-radius: 10px; */
    /* padding: 1rem; */
    margin: 0.7rem 0;
    /* border: 1px solid #F3F3F3; */
}

ul.stckst li {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
}

.productNav figure:hover {
    /* border: 1px solid var(--theme-color); */
}

.rating-box {
    display: flex;
    align-items: center;
}

.rating-box .rating-container {
    direction: rtl !important;
}

.rating-box .rating-container label {
    display: inline-block;
    margin: 0;
    color: #d4d4d4;
    cursor: pointer;
    font-size: 2.2rem;
    transition: color 0.2s linear;
}

.rating-box .rating-container input {
    display: none;
}

.rating-box .rating-container label:hover,
.rating-box .rating-container label:hover~label,
.rating-box .rating-container label.rated {
    color: gold;
}

.rating-box span {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 500;
    padding-left: 0.5rem;
}

.prodtl-txt p {
    font-size: 1.125rem;
    color: #7e7e7e;
}

.quantitySec h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.quantitySec .number {
    padding: 0.3rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.quantitySec .number .minus {
    padding: 0.5rem;
    cursor: pointer;
}

.quantitySec .number .plus {
    padding: 0.5rem;
    cursor: pointer;
}

.quantitySec .number input {
    width: 70px;
}

.number {
    background: #F7F6FB;
    padding: 1rem 0;
    border: 1px solid #CCCCCC;
    border-radius: 7px;
    width: 100%;
    color: #282828;
}

.number input {
    background: #F7F6FB;
    border: none;
    height: 2rem;
    width: 50px;
    text-align: center;
}

.number .minus {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.number .plus {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.productNav figure img {
    width: 100%;
}

.btnn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.colorBox option {
    background: var(--color);
}

.mySwiper2 img {
    width: 100%;
    aspect-ratio: 4/4;
    margin-bottom: 1rem;
    object-fit: cover;
}


/*===========================================CheckOut 1 css start=====================================*/

.check-out-section {
    padding: 100px 0px;
    border-top: 1px solid #ebebeb;
}

.chkot-pag {
    padding: 4rem 0px;
}

.card-row {
    border-radius: 5px;
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: center;
    margin-bottom: 35px;
    box-shadow: -6px 4px 19px -3px #9e9c9c;
    padding-left: 40px;
    padding-right: 40px;
}

.card-row img {
    width: 100%;
    object-fit: cover;
}

.fields-row .form-control {
    height: 54px;
    padding-left: 14px;
}

.check-out-form {
    text-align: center;
}

.check-out-form .primary-heading {
    margin-bottom: 40px;
    font-size: 55px;
    font-weight: bold;
    color: #323232;
}

.check-out-form .primary-heading span {
    color: #fd4242;
}

.check-out-form p {
    line-height: 16px;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #2d2e37;
}

.check-out-form .checkout-subheading a {
    color: var(--primary-color);
    font-weight: 600;
}

.check-out-form .form-control {
    min-height: 60px;
    margin-bottom: 20px;
    box-shadow: 7px 6px 15px 0px #d2d2d2;
    border: 1px solid #ebebeb;
}

.check-out-form form,
.check-out-form .order-summery {
    padding: 20px 0px;
}

.check-out-form form {
    margin-top: 0;
    text-align: left;
}

.check-out-section input[type="checkbox"] {
    display: none;
}

.check-out-section input[type="checkbox"]+label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    /* font: 14px/20px 'Open Sans', Arial, sans-serif; */
    color: #ddd;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.check-out-section input[type="checkbox"]+label:last-child {
    margin-bottom: 0;
}

.check-out-section input[type="checkbox"]+label:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    opacity: .6;
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
}

.check-out-section input[type="checkbox"]:checked+label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.check-out-form form .checkbox label {
    color: #323232;
    font-weight: 500;
    text-transform: capitalize;
}

.check-out-form form .checkbox {
    margin-bottom: 20px;
}

.check-out-form form label {
    font-size: 14px;
    text-transform: uppercase;
}

.order-summery {
    text-align: left;
}

.bb-1 {
    border-bottom: 1px solid #f8f8f8;
    padding: 10px 0px;
    margin-bottom: 10px;
}

.order-summery input.form-control {
    margin-bottom: 10px;
    box-shadow: none;
}

.order-summery .d-btn {
    padding: 14px 88px;
}

.order-summery .row span {
    font-size: 18px;
    font-weight: 500;
    color: #2d2e37;
}

.check-out-form form label {
    color: #2d2e37;
    font-weight: 500;
}


/*===========================================CheckOut 1 css End=====================================*/


/*===========================================CheckOut 2 css start=====================================*/

.shipping-billing-col ul li:nth-child(2) {
    flex: 0 0 85%;
}

.card-row .red {
    color: #e22a29;
}

.card-row h4,
.card-row h6 {
    text-align: left;
    /* font-family: 'Poppins', sans-serif; */
    font-size: 18px;
}

.card-row .red {
    font-size: 24px;
    color: #000000;
    margin: 0;
}

.shop-details .btn.btn-number {
    padding: 0pc;
    border: 1px solid #ced4da;
    border-radius: 0px;
    width: 33px;
    height: 25px;
    display: inline-block;
    line-height: 15px;
}

.shop-details .btn.btn-number svg {
    color: #989898;
}

.svg-inline--fa.fa-w-10 {
    width: .625em;
}

span.input-group-btn {
    display: inline-flex;
    flex-direction: column;
    position: relative;
    top: -15px;
    left: -4px;
    color: #989898;
}

.check-out-form .shop-details .form-control {
    min-height: 50px;
    box-shadow: none;
    margin-bottom: 0px;
    color: black;
    position: relative;
    top: -2px;
}

.shop-details input {
    background-color: transparent;
    width: 50px;
    height: 38px !important;
    border-radius: 0px;
    padding: 0px;
    text-align: center;
    color: #ffffff;
    display: inline-block;
}

svg.svg-inline--fa.fa-trash-alt {
    height: 30px;
    fill: black;
}

svg.svg-inline--fa.fa-trash-alt path {
    fill: black;
}

.shipping-billing-col ul {
    list-style: none;
    padding-left: 0px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #565656;
    padding-bottom: 22px;
    padding-top: 22px;
    margin-bottom: 0px;
}

.mt-60 {
    margin-top: 60px !important;
}

.shipping-billing-col {
    text-align: left;
}

.mt-50 {
    margin-top: 50px !important;
}

.shipping-billing-col ul li svg {
    color: var(--primary-color);
    font-size: 18px;
    height: 1em;
}

.shipping-billing-col ul li p {
    margin-bottom: 0px;
    color: #5e5e5e;
    font-size: 16px;
    line-height: 26px;
}

.shipping-billing-col ul li a {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
}


/*===========================================CheckOut 2 css End=====================================*/


/*===========================================CheckOut 3 css statr=====================================*/

.check-out-form.check-out-3 .tabs-row {
    box-shadow: 7px 6px 15px 0px #d2d2d2;
    text-align: left;
}

.tabs-row {
    padding: 40px 30px;
    margin-top: 50px;
}

.check-out-form.check-out-3 .tabs-row .form-control {
    box-shadow: none;
}

.fields-row .form-control {
    height: 54px;
    padding-left: 14px;
}

.check-out-form.check-out-3 input[type="checkbox"]+label:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
}

.check-out-form.check-out-3 input[type="checkbox"]:checked+label:before {
    width: 20px;
}

.check-out-form.check-out-3 input[type="checkbox"]+label {
    padding-left: 55px;
}

.check-out-form.check-out-3 .checkbox {
    margin-top: 15px;
}

.mt-25 {
    margin-top: 25px !important;
}

.check-out-form.check-out-3 .checkbox h5 {
    font-size: 18px;
    margin-bottom: 0px;
    text-transform: uppercase;
    color: black
}

.check-out-form.check-out-3 .checkbox label {
    color: black;
    text-transform: lowercase;
}

.check-out-form label {
    text-transform: uppercase;
}

.shipping-billing-col ul li p a {
    color: #8f8f8f;
    text-transform: capitalize;
}

.numberone {
    margin: 0;
    display: flex;
}

.numberone .minus {
    /* float: left; */
}

.check-out-section .numberone .minus,
.plus {
    width: 40px;
    height: 40px;
    background: #ebebeb;
    border-radius: 0;
    padding: 0px 0px;
    /* border: 1px solid #e1e1e1; */
    display: flex;
    vertical-align: middle;
    text-align: center;
    color: #7a7a7a;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.numberone span {
    cursor: pointer;
}

.numberone input {
    height: 45px;
    border-radius: 0;
    border: 0;
    width: 45px;
    text-align: center;
    color: #808080;
    outline: none;
}

.card-row .price {
    font-size: 18px;
    color: var(--primary-color);
}

.d-btn {
    border-radius: 5px;
    background-color: var(--primary-color);
    font-size: 20px;
    color: #ffffff;
    display: inline-block;
    padding: 16px 88px;
    text-transform: uppercase;
    transition: all 0.5s ease;
}

.d-btn:hover {
    background-color: var(--theme-color);
    color: var(--black);
}


.cart-btn {
    border-radius: 5px;
    background-color: var(--primary-color);
    font-size: 16px;
    width: 100%;
    color: #ffffff;
    display: inline-block;
    padding: 16px 8px;
    text-transform: uppercase;
    transition: all 0.5s ease;
}

.cart-btn:hover {
    background-color: var(--theme-color);
    color: var(--black);
}

.chkot-pag .primary-heading {
    margin-bottom: 20px;
}

.chkot-pag .check-out-form form {
    padding: 30px 0px;
}

.shoptab .nav-tabs {
    justify-content: center;
    border: 0;
    margin-bottom: 2rem;
    gap: 4rem;
}

.shoptab .nav-tabs .nav-link {
    all: unset;
    cursor: pointer;
    font-size: 2rem;
    color: var(--black);
    font-weight: bold;
    font-family: 'Freight Big Pro';
    border-bottom: 3px solid transparent;
}

.shoptab .nav-tabs .nav-link.active {
    border-bottom: 3px solid #000;
}


/*===========================================CheckOut 3 css End=====================================*/


/* login css start */

.loginSec {
    padding: 8rem 0;
}

.loginSec .formBox {
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}

.loginSec h1 {
    font-size: 2.5rem;
    margin-bottom: 1em;
    text-transform: uppercase;
    font-weight: bold;
}

.loginSec .form-control {
    border-width: 1px;
    border-color: rgb(237, 237, 237);
    border-style: solid;
    border-radius: 0px;
    background-color: #ebebeb;
    height: 51px;
    width: 100%;
    padding: 0 2em;
    font-size: 0.875rem;
}

.loginSec .forgetPassword {
    color: #000;
    display: inline-block;
    margin: 10px 10px;
}

.loginSec .themeBtn {
    border: 0;
    padding: 1em 2.25em;
}

.loginSec .forgetPassword.themeBtn {
    color: #fff;
}

.loginSec .forgetPassword {
    color: #000;
    display: inline-block;
    margin: 10px 10px;
}


/* login css end */


/* inner pages css end */


/* Custom Pagination Styles */
/* styles.css */
/* styles.css */

/* styles.css */
/* styles.css */
/* Add these styles to your CSS file */

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination ul {
    list-style: none;
    padding: 0;
    display: flex;
}

.pagination li {
    margin: 0 5px;
    font-size: 16px;
}

.pagination a,
.pagination span {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #63EF08;
    background-color: white;
    border: 1px solid #63EF08;
    border-radius: 5px;
}

.pagination .active span {
    background-color: #63EF08;
    color: white;
    padding: 10px;

}

#product-price {
    color: #307504 !important;
}


.numForm {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.updateBtn {
    display: flex;
    align-items: center;
}


.headerCart a {
    flex-direction: column;
    position: relative;
    color: var(--white);
    font-size: 2.5rem;
}

.wishlistBtn a>span {
    bottom: unset !important;
}

.deliveryList ul li h6 {
    color: rgb(255 255 255 / 50%);
}

.headerCart a>span,
.headerCart a>h6 {
    font-size: 1.125rem;
    color: var(--white) !important;
    display: block;
    margin: 0 !important;
    font-family: 'Montserrat';
}


.headerCart a>span {
    position: absolute;
    top: -10px;
    right: -20px;
    font-weight: 600;
    width: 24px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--theme-color);
    font-size: 1rem !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.proImg-slide img {
    width: 100%;
    aspect-ratio: 2/2;
    object-fit: cover;
    object-position: top;
    padding: 0.5rem;
    border: 1px solid #ccc;
    background-color: #e7e7e7;
}

.proImg-slide.swiper-slide-thumb-active img {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.customTable th,
.customTable td {
    white-space: nowrap;
}

/*Loader*/

#loader-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

#loader-text {
    font-size: 24px;
    font-weight: bold;
    color: #F2F2F2;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.letter {
    display: inline-block;
    animation: bounce 1.5s infinite ease-in-out;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.productImgContainer {
    height: 400px;
    width: 100%;
    overflow: hidden;
}

.productImgContainer img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.categoriesList li h2 {
    font-size: 1.25rem;
    font-weight: 900;
}

.interest-container {
    border: 2px solid #fff;
    /* Border color */
    background-color: #fff;
    width: 150px;
    border-radius: 2px;
    display: flex;
    justify-content: center;
}

.interest-container p {
    color: var(--primary-color) !important;
    font-size: 16px;
    align-items: center;
    margin-bottom: 0px !important;
    font-weight: bold;
    /* Optionally make the count bold */

}

#interestedproductCount {
    font-weight: bold;
    /* Optionally make the count bold */
    color: var(--primary-color) !important;

}

#imagePreview {
    max-width: 100%;
    max-height: 200px;
    margin-top: 10px;
}

.col-md-4 {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    /* Center the social links horizontally */
}

.social-link {
    width: 40px;
    height: 40px;
    margin: 0 10px;
    /* Adjust the spacing between social links */
    /*padding: 10px;*/
    background-color: #4267B2;
    /* Facebook color */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    transition: background-color 0.3s ease-in-out;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
}

.social-link:hover {
    background-color: #334d80;
    /* Darker Facebook color on hover */
}

.fire-icon {
    position: absolute;
    top: 10px;
    right: 30px;
    color: #307504;
    font-size: 24px;
}

#categorySelect {
    width: 200px;
}

/*.blogContent > p + p{*/
/*    display: none;*/
/*}*/

/* privacy & terms page*/
.privacyContent :is(p,li),
.termsContent :is(p,
    li) {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0 0 1rem;
    color: #828282;
}

.privacyContent h3,
.termsContent h3 {
    font-size: 2.125rem;
    font-weight: 600;
    margin: 1.125rem 0;
}

.privacyContent .list li,
.termsContent .list li {
    position: relative;
    padding-left: 1.75rem;
}

.privacyContent .list li::before,
.termsContent .list li::before {
    content: "";
    width: 16px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--primary-color);
    position: absolute;
    top: 0.25rem;
    left: 0;
}
