* {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    font-family: Poppins, Arial, sans-serif;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
    color: var(--light-color);
}

p {
    margin-bottom: 10px;
}

.container,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

.bd-gutter {
    --bs-gutter-x: 3rem;
}

.container-fluid {
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 0;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1300px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

/*------------ Layout media query starts ------------*/
@media (min-width: 768px) {

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 992px) {

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    line-height: 1.3;
    color: var(--black);
    font-family: Urbanist;
    font-weight: 700;
}

.h1,
h1 {
    font-size: calc(1.375rem + 1.5vw)
}

@media (min-width: 1200px) {

    .h1,
    h1 {
        font-size: 3rem;
    }
}

.h2,
h2 {
    font-size: calc(1.325rem + .9vw)
}

@media (min-width: 1200px) {

    .h2,
    h2 {
        font-size: 2.5rem;
    }
}

.h3,
h3 {
    font-size: calc(1.3rem + .6vw)
}

@media (min-width: 1200px) {

    .h3,
    h3 {
        font-size: 2.25rem;
    }
}

.h4,
h4 {
    font-size: calc(1.275rem + .3vw)
}

@media (min-width: 1200px) {

    .h4,
    h4 {
        font-size: 1.8rem;
    }
}

.h5,
h5 {
    font-size: 1.5rem;
}

.h6,
h6 {
    font-size: 1.3rem;
}

img,
svg {
    vertical-align: middle;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

[class*="row-gap"] {
    row-gap: 20px;
}

.row-gap-3 {
    row-gap: 30px;
}

[class*="grid"] {
    display: grid;
}

[class*="flex"] {
    display: flex;
}

[class*="-column"] {
    flex-direction: column;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

[class*="-between"] {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

:is(.mt-auto, .section-gap) {
    margin-top: 70px;
}

.mt-5 {
    margin-top: 50px;
}

.mt-3 {
    margin-top: 25px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.sec-inner-gap {
    padding-block: 60px;
}

.pb-5 {
    padding-bottom: 50px !important;
}

.py-5 {
    padding-block: 60px !important;
}

.relative {
    position: relative;
}

.gap-20 {
    gap: 20px;
}

[class*="btn"] {
    gap: 10px;
    width: fit-content;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
    border: ;
}

[class*="btn"]:not(.searchForm-wrap form button[class*="btn"]) {
    padding: 8px 8px 8px 20px;
}

/*///////////////////////---Topbar-Start---////////////////////////////*/

.top-strip {
    padding-block: 10px;
}

.topbar {
    padding-block: 10px;
    z-index: 0;
}

.topbar [class*="flex"][class*="bar"] {
    gap: 20px;
}

.topbar a {
    gap: 5px;
}

/*///////////////////////---Header-Start---////////////////////////////*/

header {
    padding-block: 10px;
}

.site-logo-wrap img {
    height: 60px;
    width: auto;
}

header nav>ul,
.flex-header-ryt-container {
    gap: 30px;
}

header :where(.toggleBtn, .closeToggle, .mob-callBtn, .closeToggleMenu) {
    display: none;
}

header .dropdown>ul {
    position: absolute;
    padding: 15px;
    left: 0;
    top: 50px;
    gap: 15px;
    z-index: 999;
    height: fit-content;
    width: fit-content;
    white-space: nowrap;
    transform: translateY(-15px);
    opacity: 0;
    visibility: hidden;
}

/*------------site-search-form-------------*/

.searchForm-wrap form {
    padding: 30px;
    z-index: 9999;
    gap: 20px;
    position: fixed;
    max-width: 650px;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: scale(0) translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
}

.searchForm-wrap.active form {
    transform: scale(1) translate(-50%, -50%);
    transition: all .3s;
    opacity: 1;
    visibility: visible;
}

form :is(input, select, textarea) {
    padding: 10px 20px;
    width: 100%;
}

.searchForm-wrap form button {
    padding: 10px 30px;
}

.recent-search {
    gap: 15px;
}

.searchForm-wrap form .flex-closeSearchBtn {
    height: 35px;
    width: 35px;
    position: absolute;
    right: -15px;
    top: -15px;
}

/*//// homepage-hero ///*/

.homepage-hero img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.homepage-hero .swiper .swiper-pagination {
    width: fit-content;
    padding: 8px 40px 20px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
}

.homepage-hero .hero-sm-bnrBtn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/*//// section-heading ///*/

.flex-sec-heading {
    gap: 10px;
    margin-bottom: 40px;
}

.flex-sec-heading .heading-sub-title {
    padding: 7px 20px;
    border-radius: 90px;
    width: fit-content;
}

/*//// category-img ///*/

.cat-img {
    height: 160px;
    width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cat-img img {
    height: 130px;
    width: auto;
    object-fit: cover;
}

/*product-card-start*/

.product-card {
    position: relative;
    padding: 20px;
    gap: 20px;
}

.product-card .prod-img img {
    display: grid;
    place-items: center;
    height: 150px;
    width: 100%;
    object-fit: contain;
}

.product-card .prod-detl,
.price {
    gap: 10px;
}

.price span:nth-child(2) {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 16px;
    font-weight: 500;
}

.btn-sold-out {
    cursor: no-drop !important;
    width: 100%;
    padding: 10px 22px 10px 22px !important;
}

.product-card [class*="btn"] {
    justify-content: center;
    margin-top: 10px;
    padding: 10px 22px 10px 22px !important;
}

.product-card .prod-detl ul {
    display: flex;
    gap: 5px;
    align-items: center;
}

[class*="-tag"] {
    width: fit-content;
    position: absolute;
    right: 16px;
    top: 10px;
}

/*--------------site-marq--------------*/

.marquee {
    background: var(--sc);
    overflow: hidden;
    padding-block: 15px !important;
    width: 100%
}

.marquee-content {
    min-width: 100%;
    gap: 10px;
    white-space: nowrap
}

.flex-tags {
    flex-wrap: wrap;
    gap: 15px 10px;
    justify-content: center
}

.flex-mrq-item {
    color: var(--white);
    padding-inline: 25px;
    gap: 10px;
    white-space: nowrap;
    width: fit-content
}

.flex-sm-prod-card img {
    height: 200px;
    width: auto;
    object-fit: contain;
}

.flex-tabBtn-wrap button {
    padding: 10px 30px 10px 15px;
    gap: 15px;
    align-items: center;
}

.flex-tabBtn-wrap button span {
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-counter .flex-col-stats {
    gap: 10px;
    padding: 25px 10px;
}

:is(.flex-review-card, .flex-review-card .flex-review-between .flex-rating) {
    gap: 10px;
}

.flex-review-card {
    padding: 25px;
}

/*------------contact-start------------*/

.flex-contact-wtspBtn {
    gap: 10px;
    margin-bottom: 10px;
    padding: 12px;
}

.form--success-fillup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    max-width: 500px;
    width: 100%;
    height: fit-content;
    border-radius: var(--radius);
    padding: 15px 30px 35px;
    z-index: 999;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.form--success-fillup-overlay {
    content: '';
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 90%);
    inset: 0;
    z-index: 99;
}

/*------------BuyNow-form-start------------*/

.flex-step-process-wrap {
    justify-content: space-around;
}

.flex-col-step {
    position: relative;
    gap: 5px;
}

.flex-step-process-wrap .flex-col-step span {
    background: #F3F3F3;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    justify-content: center;
    display: flex;
    align-items: center;
}

#stepFormOne,
#stepFormTwo,
#stepFormThree,
#stepFormFour {
    display: none;
}

/*------------footer-start------------*/

footer ul {
    gap: 15px 20px;
}

footer .grid-menu-list {
    grid-template-columns: repeat(3, 1fr);
}

footer .flex-foot-info .flex-info-item,
.contact-info-wrap .flex-foot-info .flex-info-item {
    gap: 12px;
}

footer .flex-foot-info .flex-info-item .flex-pair-column {
    gap: 5px;
}

footer .flex-foot-info .flex-info-item span,
.contact-info-wrap .flex-foot-info .flex-info-item span {
    height: 50px;
    width: 50px;
    flex-shrink: 0;
}

.flex-social-media li a {
    height: 35px;
    width: 35px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.flex-social-media,
.pay-badge {
    gap: 10px;
}

.content-page :is(p, h2, h3, h4, h5, ul li:not(.flex-review-card ul li)),
.single-prod-content details ul li {
    margin-bottom: 15px;
}

.content-page ul:not(.flex-review-card ul) {
    padding-left: 20px;
    list-style: disc;
}

.content-page a:not([class*="btn"]) {
    color: var(--pc);
    font-weight: 500;
}

.content-page a:not([class*="btn"]):hover {
    text-decoration: underline;
}

/*-----------site-pagination--------*/

.flex-pagination {
    flex-wrap: wrap;
    gap: 15px;
}

.flex-pagination .flex-pagination-link {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

/*----------------single-prod-style--------------------*/

.single-prod-img-con img {
    width: 100%;
    height: 450px;
    border-radius: var(--radius);
    object-fit: contain;
}

.single-prod-img-coll {
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-prod-img-coll img {
    height: 85%;
    width: 85%;
    object-fit: cover;
}

.single-prod-content .flex-rating {
    gap: 5px;
}

.single-prod-content .flex-prod-price {
    gap: 15px;
}

.single-prod-content .prod-qty {
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    width: fit-content;
    overflow: hidden;
}

.single-prod-content .prod-qty input {
    max-width: 135px;
    text-align: center;
    width: 100%;
    padding-inline: 0;
}

.single-prod-content p {
    margin-bottom: 0;
}

.sticky-card {
    position: sticky;
    top: 50px;
}

details summary {
    display: flex;
    gap: 10px;
    position: relative;
    align-items: center;
}

.grid-prod-ftrs {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}


/*////////////////all-mediaQuery//////////////////////*/

/*--mobile-or-tablet---*/

@media (width <=1024px) {

    .d-md-none {
        display: none !important;
    }

    .site-logo-wrap img {
        height: 50px;
    }

    header :is(.toggleBtn, .closeToggle, .mob-callBtn, .closeToggleMenu) {
        display: flex !important;
    }

    header nav>ul {
        flex-direction: column;
        background: #f7f5ff;
        position: fixed;
        left: 0;
        top: 0;
        transform: translateX(-100%);
        transition: all .3s ease;
        opacity: 0;
        visibility: hidden;
        width: 100%;
        height: 100%;
        z-index: 999;
        padding: 30px;
    }

    header nav>ul#showMenu {
        transform: translateX(0%);
        transition: all .3s ease;
        opacity: 1;
        visibility: visible;
    }

    header .dropdown:hover>ul {
        position: relative;
        top: 15px;
        transform: unset;
        transition: unset;
        opacity: unset;
        visibility: unset;
    }

    header .closeToggleMenu {
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .searchForm-wrap form {
        max-width: 400px !important;
        padding: 20px !important;
    }

    .searchForm-wrap form .flex-closeSearchBtn {
        right: 0 !important;
        top: 0 !important;
    }

    .flex-header-ryt-container {
        gap: 15px !important;
    }

    .flex-sec-heading {
        align-items: center;
        margin-bottom: 25px;
    }

    .flex-sm-prod-card {
        flex-wrap: wrap;
        gap: 15px 0;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .flex-tabBtn-wrap button {
        padding: 7px 30px 7px 15px;
    }

    .md-scroller {
        flex-wrap: nowrap;
        width: 100%;
        overflow-x: auto;
        flex-direction: row;
        white-space: nowrap;
        padding-bottom: 10px;
    }

    .md-scroller {
        scrollbar-width: thin;
        scrollbar-color: var(--pc) var(--pc);
    }

    .flex-col-stats,
    .contact-wrapper,
    .contact-wrapper .contact-info-wrap .flex-foot-info {
        padding: 10px !important;
    }

    .flex-col-stats svg {
        height: 50px;
        width: 50px;
    }

    footer.py-5 {
        padding-block: 30px !important;
    }

    footer .footer-menus ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .flex-copyryt-between p {
        font-size: 14px;
    }

    footer .footer-strip-between,
    footer .flex-foot-info {
        padding: 20px !important;
    }

    footer .footer-strip-between {
        padding: 20px !important;
        gap: 20px;
        flex-direction: column;
    }

    .flex-strip-item {
        flex-wrap: wrap;
        gap: 10px;
    }

    .flex-copyryt-between .flex-container-between {
        flex-wrap: wrap;
        gap: 10px;
        text-align: center;
        justify-content: center;
    }

    .order-md-1 {
        order: 1;
    }

    .order-md-2 {
        order: 2;
    }

    .md-scroller [class*="col-"] {
        width: fit-content;
    }

    .single-prod-img-con img {
        height: auto !important;
    }

    .mt-5 {
        margin-top: 20px;
    }

    .mt-auto {
        margin-top: 35px;
    }
}

/*tablet-media*/

@media (600px <=width <=1023px) {
    .flex-col-step:not(:first-child):after {
        left: -90px !important;
        top: 23px !important;
        width: 100px !important;
    }
}

/*mobile-media*/

@media (width <=600px) {
    .flex-col-stats .h3 {
        font-size: 16px;
    }

    .flex-col-stats p,
    .flex-col-step p {
        font-size: 13px;
    }

    .flex-col-step:not(:first-child):after {
        left: -15px !important;
        top: 23px !important;
        width: 25px !important;
    }

    .flex-contact-wtspBtn {
        font-size: 14px !important;
        font-weight: normal !important;
    }

    .grid-prod-ftrs {
        grid-template-columns: auto !important;
    }
}


/* searching bar */


.search-suggestions {
    position: absolute;
    background: #fff;
    width: 100%;
    max-height: 250px;
    max-width: 590px;
    overflow-y: auto;
    z-index: 999;
    left: 30px;
    top: 170px;
}

.search-suggestions a{
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #eee;
}

.search-suggestions a:hover{
    background: #f5f5f5;
}


.img-zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
}

.img-zoom-overlay img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
}