:root{
    --body-font:'Rubik','Inter',sans-serif;

    /* Spacing Variable */
    --spacing-80: 50px;
    /* Font Size */
    --font-92:42px;
    --font-24: 18px;
    --font-20: 17px;
    --font-18 : 16px;
    --font-41: 24px;
    --font-36: 24px;
    --font-70:28px;
    /* Radius */
    --border-radius: 0px;
    --spacing-24: 18px;
    --spacing-10: 10px;
    --spacing-150: 70px;
    /* Color Variable */
    --white: #FFFFFF;
    --theme-red: #E05353;
    --theme-blue:#0A2A43;
    --theme-black: #000;
}
@media screen and (min-width:660px){
    :root{
        --font-92: 54px;
        --font-24:17px;
        --font-20: 16px;
        --font-36: 28px;
        --spacing-150: 80px;
        --font-70: 42px;
    }
}
@media screen and (min-width:992px) {
    :root{
        --font-92: 64px;
        --font-24:18px;
        --font-41: 28px;
        --font-20: 17px;
        --font-36: 30px;
        --spacing-24: 18px;
        --spacing-150: 90px;
        --font-70: 48px;
        --font-18: 17px
    };
}
@media screen and (min-width:1280px) {
    :root{
        --font-92: 72px;
        --font-24:20px;
        --font-41: 32px;
        --font-20: 18px;
        --font-36: 36px;
        --spacing-24:20px;
        --spacing-150: 100px;
        --font-70: 58px;
        --font-18: 18px
    }
}
@media screen and (min-width:1440px) {
    :root{
        --font-92: 92px;
        --font-24:24px;
        --font-41: 41px;
        --font-20: 20px;
        --font-36:36px;
        --spacing-24: 24px;
        --spacing-150:150px;
        --font-70: 70px;
    }
}

body{
    overflow-x: hidden;
    font-size: 1rem;
    font-family: var(--body-font);
}

a{
    color: var(--theme-blue);
}
a:hover{
    color: var(--theme-red);
}

/****************
 Container Style
    *******************/
.container-fluid{
    max-width: 1600px;
    padding-inline: 20px;
    width: 100%;
}
.container{
    max-width: 1200px;
    width: 100%;
    padding-inline: 20px;
}

/********************
    Button Style
 **********************/
.btn{
    font-size: var(--font-18);
    background: var(--theme-blue);
    color: var(--white);
    font-family: var(--body-font);
    text-align: center;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing:  0.2px;
    text-transform: uppercase;
    padding: 12px 32px;
    transition: all .3s ease-in-out;
}
.btn:is(:hover,:focus,.active,:focus-within,:focus-visible) {
    color: var(--theme-blue);
    border-color: var(--theme-blue);
    background: transparent;
}
.btn-border {
    border: 3px solid rgba(98, 84, 231, 0.10);
    color: var(--theme-blue);
    font-family: var(--body-font);
    font-weight: 500;
    letter-spacing: 0.2px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: all .3s ease-in-out;
    background: transparent;
}
.btn-border:hover {
    background: var(--theme-blue);
    color: var(--white);
    border-color: var(--theme-blue);
}
img{
    max-width: 100%;
}
section{
    position: relative;
}



/************** Note *************
  It's nav style apply only home page Start
*****************************************/
/* .home .navbar{
    position: absolute;
    left: 0;
    right: 0;
} */

@media screen and (min-width:992px){
    .home .navbar .navbar-nav .nav-link {
        color: var(--white);
    }
        .home .nav-cart-container .cart-link img {
            filter: invert(100%) brightness(200%) contrast(200%);
        }
}
@media screen and (max-width:767px) {
    .offcanvas{
        max-width: 300px;
    }

   .navbar .navbar-nav .nav-link {
       font-size: 24px !important;
       font-weight: 500 !important;
    }
}

/************** Note *************
  It's nav style apply only home page end
*****************************************/

.navbar{
    position: relative;
    z-index: 9;
}
body:before {
    content:'';
    position: absolute;
    /* top: -65%; */
    top: 0;
    left: 0;
    right: 0;
    width:100%;
    height: 325px;
    margin-inline:auto;
    border-radius: 2050px;
    background: rgba(199, 0, 139, 0.10);
    filter: blur(200px);
    z-index: -1;
}
.navigation-container{
    display: flex;
    gap: .5rem;
    align-items: center;
    justify-content: end;
}
@media screen and (max-width:992px){
    .navbar .navbar-brand img {
        max-width: 85px;
    }
}

.navbar .navbar-nav .nav-link{
    font-size: 1rem;
    font-weight: 400;
    color:var(--theme-blue);
    font-family: var(--body-font);
    transition: all .3s ease-in-out;
    padding-inline: 30px;
}

.navbar .navbar-nav .nav-link:is(:hover,:focus,.active) {
    color: var(--theme-red);
}
.nav-cart-container .cart-link{
    background-color: transparent;
    border: none;
    position: relative;
}


.nav-cart-container .cart-link .cart-product-count{
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--theme-red);
    color: var(--white);
    font-size: 13px;
    font-family: var(--body-font);
    padding-inline: 2px;
    border-radius: 50px;
    min-width: 20px;
    min-height: 20px;
    text-align: center;
}
.navbar-toggler{
    border: none;
    padding: 0;
    box-shadow: none!important;
}



/*******************
  Hero Section Style
***************************/
.hero-section{
    overflow-x: hidden;
    min-height: 300px;
    position: inherit;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-block: var(--spacing-80);
}
.hero-section .row{
    align-items: center;
    /* flex-direction: column-reverse; */
}
@media screen and (min-width:768px) {
    .hero-section .row {
        flex-direction: row;
    }
    .hero-section{
        min-height: 430px;
        display: block;
        margin-bottom: 20px;
    }
}
@media screen and (min-width:992px) {
    .hero-section {
        min-height: 600px;
        display: block;
        margin-bottom: 20px;
    }
}
.hero-section .hero-content .title{
    color:var(--theme-blue);
    font-family:'Inter';
    font-size: var(--font-92);
    font-weight: 900;
    line-height:1.3;
    margin-bottom: 1rem;
}
.hero-section .hero-content .description {
    font-size:var(--font-24);
    margin-bottom: 0;
}
.hero-section .btn{
    margin-top:30px
}
.hero-image:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: url(/assets/img/icons/hero-image-bg.svg) no-repeat center left;
}
.hero-image {
    position: relative;

    padding-right: 0;
}

 @media screen and (min-width:992px){
    .hero-image {
        position: absolute;
        right: 0px;
        top: 0;
        padding-right: 0;
        right: -30px;
            top: 0;
    }

}
.hero-image img{
    width: 100%;
}

@media screen and (max-width:768px) {
    .hero-content{
        margin-top: calc(var(--spacing-24) + .65em);
    }
    .hero-image {
        margin-top: 30px;
    }
}

@media screen and (max-width:767px) {
    .hero-section {
        margin-top: 0;
    } 
}
/********************************
 Trending Section Style
 **************************************/
.trending-section .container .row{
    align-items: center;
}
.trending-card-container {
    display: flex;
    background: url(../img/trending-bg.jpg) no-repeat center;
    background-size: contain;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: calc(var(--font-24) + .65em);
}
.trending-card {
    background: var(--white);
    box-shadow: 5px 4px 20px 0px rgba(234, 186, 186, 0.25);
    border-radius: 20px;
    padding: 1rem;
    width: 48%;
    height: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

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

    .trending-card {
        width: 180px;
        height: 200px;
        padding: 15px
    }
        .trending-card img {
            max-width: 75%;
        }
}

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

    .trending-card:nth-child(2n) {
        margin-top: var(--spacing-24)
    }

    .trending-card-container {
        gap: 0 var(--spacing-24)
    }

    .trending-card-container {
        margin-bottom: 0;
    }
}

@media screen and (min-width:992px) {
    .trending-card {
        width: 200px;
        height: 200px;
        padding: 18px
    }

}

@media screen and (min-width:1280px) {
    .trending-card {
        width: 275px;
        height: 275px;
        ;
        padding: 28px
    }

    .trending-card img {
        max-width: 75%;
        margin-inline: auto
    }
}

img {
    max-width: 100%;
}

.trending-card-title{
    color: #06192D;
    text-align: center;
    font-size: var(--font-20);
    font-weight: 700;
    font-family: 'Inter';
    margin-block:.65em 0;
    text-align: center;
}
.trending-content{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}
.trending-content .top-title{
    color: var(--theme-red);
    font-size:14px;
    font-weight:700;
    text-transform: uppercase;
}
.trending-content .title{
    color: var(--theme-blue);
    font-family: 'Inter';
    font-size: 36px;
    font-weight: 700;
    margin-block:12px 10px;
}
.trending-content .sub-title{
    color:var(--theme-blue);
    font-size: var(--font-24);
    font-weight: 400;
    font-family: var(--body-font);
}
.trending-content .description {
    color:  #696687;
    font-size: var(--font-18);
    font-family: var(--body-font);
    margin-block:14px 40px;
}




/**************************
    How It Works Section Style Start
****************************************/
.how-it-work{
    margin-top: var(--spacing-150);
}
@media screen and (max-width:768px) {
    .how-it-work .row {
        flex-direction: column-reverse;
        gap:32px
    }
}

.how-it-work-content .heading {
    font-size: 14px;
    font-family: var(--body-font);
    font-weight: 500;
    color: var(--theme-red);
    margin-bottom: 1em;
    display: inline-block;
    text-transform: uppercase;
}
.how-it-work-content .title {
    font-size: var(--font-36);
    font-weight: 700;
    color: var(--theme-blue);
    font-family: 'Inter';
    margin-bottom: .5em
}
.how-it-work .accordion {
    margin-top:calc(var(--spacing-24) + 12px)
}
.how-it-work .accordion .how-work-item{
    border-radius: 5px;
    background:  rgba(255, 255, 255, 0.43);
    box-shadow: 0px 0px 59px 0px rgba(28, 137, 212, 0.10);
}
.how-it-work .how-work-header button{
    color:  #06192D;
    font-family: 'Inter';
    font-size:var(--font-20);
    font-weight:600;
    margin-bottom: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 20px 30px;
}
.how-it-work .accordion-body{
    color: #696687;
    font-family: var(--body-font);
    font-size: var(--font-20);
    font-weight: 400;
    display: flex;
}

@media screen and (max-width:768px){
    .how-it-work-image{
        margin-top: 30px
    }
}



/********************************
    App Required Content
**************************************/

.app-required-content{
    border-radius: 15px;
    background:  url(../img/app-required-bg.jpg) no-repeat center left;
    background-size: cover;
    padding: 1.5em;
    min-height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    color: var(--white);
    margin-top: var(--spacing-150);
}
@media screen and (min-width:1024px) {
    .app-required-content {
        min-height: 350px;
    }
}
@media screen and (min-width:1280px){
    .app-required-content {
        min-height:420px;
    }
}

.app-required-content .title{
    color: var(--white);
    font-family: 'Inter';
    font-size: var(--font-36);
    font-weight:  700;
    margin-bottom: var(--spacing-24);
}

.app-required-content .description {
    font-size: var(--font-24);
    color:var(--white);
    font-family: 'Inter';
    font-weight: 400;
    margin-bottom: var(--spacing-24);
    max-width: max(75%,300px);
}
.app-required-content .buttons{
    display: flex;
    gap:10px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}


/****************************
    Explore Section Style Start
**************************************/
.explore-section{
    padding-top: var(--spacing-150);
}
.explore-section .heading{
    font-size: 14px;
    font-family: var(--body-font);
    font-weight: 500;
    color:var(--theme-red);
    margin-bottom: 1em;
    display: inline-block;
    text-transform: uppercase;
}
.explore-section .title {
    font-size: var(--font-36);
    font-weight: 700;
    color: var(--theme-blue);
    font-family:'Inter';
    margin-bottom:.25em
}
.explore-section .subtitle {
    color: #0A2A43;
    font-family: var(--body-font);
    font-size:var(--font-24);
    font-weight: 400;
    margin-bottom: var(--spacing-24);
}
.explore-section .description{
    color: #696687;
    font-family:var(--body-font);
    font-size: var(--font-18);
    font-weight:400;
    margin-bottom: calc(var(--spacing-24) * 2);
}

.explore-section .explore-image{
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.explore-section .explore-image > img {
    width: 100%;
}

@media screen and (max-width:992px) {
    .explore-section .row {
        flex-direction: column-reverse
    }

    .explore-section .row .content-box {
        margin-top: 30px
    }
}
.play-btn{
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    transition: all .3s  ease-in-out;
}
.play-btn img {
    max-width: 45px;
}
.play-btn:hover {
    opacity: .85;
    background: rgba(0,0,0,0.25);
}



/**********************
 Testimonials Section Start
 *************************************/

.testimonials-section{
    background: #F9FAFB;
    padding-block: calc(var(--spacing-80) + .75em);
    margin-top: var(--spacing-150);
}
.testimonials-section .testimonials-heading-box{
    background: url(../img/icons/bg-message-icon.svg) no-repeat bottom right;
    height: 100%;
    height: 100%;
    min-height:180px;
    /* background-size: contain; */
}
@media screen and (max-width:768px) {
    .testimonials-section .testimonials-heading-box {
        margin-bottom: 2em;
    }
}
.testimonials-section .testimonials-heading-box .heading{
    font-size: 14px;
    font-family: var(--body-font);
    font-weight: 500;
    color: var(--theme-red);
    margin-bottom: 1em;
    display: inline-block;
    text-transform: uppercase;
}
.testimonials-section .testimonials-heading-box .title {
    font-size: var(--font-36);
    font-weight: 700;
    color: var(--theme-blue);
    font-family: 'Inter';
    margin-bottom: .35em
}
.testimonials-section .testimonials-heading-box .description {
    color: #696687;
    font-family: var(--body-font);
    font-size: var(--font-18);
    font-weight: 400;
}

@media screen and (min-width:1280px){
    .testimonials-slider {
        margin-left: 2em;
    }
}

 /* .testimonials-slider .swiper-wrapper {
    box-shadow: 13px 13px 51px 0px rgba(10, 51, 80, 0.16);
 } */
.testimonials-slider .swiper-pagination {
    position: relative;
    margin-top: var(--spacing-24);
}
@media screen and (min-width:768px) {
    .testimonials-slider .swiper-pagination {
        text-align: left;
    }
}
.testimonials-slider .swiper-pagination .swiper-pagination-bullet{
    background: #E05353;
    opacity: 1;
    transition: all .5s ease-in-out;
}
.testimonials-slider .swiper-pagination .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 10px;
}
.testimonial-card {
    padding:var(--spacing-24);
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 15px;
    background: var(--white);
}
 .testimonial-card-inner {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
 }
@media screen and (min-width:768px) {
    .testimonial-card-inner {
        display: flex;
        flex-direction: row;
        align-items: start;
        text-align: start;
    }
    .testimonial-card {
        padding: calc(var(--spacing-24) + 1.5em) calc(var(--spacing-24) + 1em);
    }
}
/* Quote icon styling */
.quote-icon {
   width: 45px;
   height: 45px;
   flex-shrink: 0;
   margin-right: var(--spacing-24);
}

/* Text content styling */
.testimonial-text {
    font-size: 16px;
    color: #696687;
    font-family: var(--body-font);
    font-size:var(--font-20);
    font-weight: 400;
    margin-bottom: 0;
}

/* Author section */
.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

/* Author image */
.author-image {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    margin-right: 15px;
}

/* Author details */
.author-details {
    display: flex;
    flex-direction: column;
}

/* Author name */
.author-name {
    font-weight: 600;
    font-size:15px;
    color: #1c2237;
    font-family: 'Inter';
}
/* Author role */
.author-role {
    font-size: 12px;
    color: #666;
    font-family: 'Inter';
}









/* Footer Style Start */
footer{
    border-top:1px solid #DBDBDB;
}
.social-media-icons{
    display: flex;
    gap:.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding:var(--spacing-24) 0;
    list-style: none;
    margin: 0;
}
.social-media-icons li a{
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    height: 50px;
    width: 50px;
    transition: all .3s ease-in-out;
}
.social-media-icons li a:hover{
   transform: scale(1.1);
}
.social-media-icons li a img{
    max-width: 36px;
    transition: all .3s ease-in-out;
}
.footer-content{
    background: var(--theme-blue);
    padding-block: 25px;

}
.footer-inner-content{
    color: var(--white);
    text-align: center;
    margin-inline: auto;
    font-family: var(--body-font);
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 300;
}
@media screen and (min-width:992px){
    .footer-inner-content {
        max-width: 75%;
    }
}
.footer-inner-content p {
    margin-bottom: 0em;
}
.footer-inner-content a{
    text-decoration:underline;
    color: var(--white);
}
.footer-inner-content a:hover {
    text-decoration: none;
}




/**********************
  Cart Page Style
***************************/
.cart-section{
    margin-block: var(--spacing-80);
}
.cart-section .cart-title{
    font-size: var(--font-41);
    font-weight: 900;
    font-family: "Inter";
    margin-bottom: var(--spacing-24);
    color: var(--theme-blue);
}

.cart-content .cart-table{
    background: transparent;
    text-align: left;
}
.cart-content .cart-table thead tr,
.cart-content .cart-table tbody tr{
    border-bottom:1px solid #DCDCDC;
}

.cart-content .cart-table > :not(caption) > * > * {
    background: transparent;
    font-family: var(--body-font);
    border: none;
    vertical-align: middle;
    text-align: left;
}
.cart-content .cart-table thead th{
    font-size: 1em;
    font-weight: 600;
    padding-bottom: 1em;
}
.cart-content .cart-table tbody td {
    padding-block:1.2em;
}
.cart-content .cart-table tbody td:not(:nth-child(1)),
.cart-content .cart-table thead th:not(:nth-child(1))  {
    padding-inline: 10px
}
@media screen and (min-width:880px){
    .cart-content .cart-table tbody td:not(:nth-child(1)),
    .cart-content .cart-table thead th:not(:nth-child(1)) {
        padding-inline: 15px
    }
}
.product-widget{
    display: flex;
    gap:.25em;
    min-width: 300px;
}
.cart-content .cart-table .cart-product-image{
    width: 85px;
    border-radius: 10px;
    background-color: #D9D9D9;
    margin-right:12px;
    flex-shrink: 0;
        display: inline-block;
    height: auto;
}
.cart-product-name{
    font-size: var(--font-20);
    color:var(--theme-blue);
    font-family: var(--body-font);
    font-weight: 600;
}
.cart-product-description{
    color:  #696687;
    font-family: var(--body-font);
    font-size: 14px;
    margin-bottom: 0px;
    line-height: 1.4;
}
@media screen and (min-width:768px){
    .cart-product-description {
        font-size: 15px;
    }
}

.qty-box{
    width: 60px;
}
.action-btn{
    border: none;
    outline: none;
    width: 15px;
    background:transparent url(../img/icons/cross-icon.svg) no-repeat center;
    height: 15px;
    background-size: cover;
}

.update-cart{
    margin-top: 1em;
}





.cart-summary {
    border-radius: 20px;
    border:1px solid #696687;
    background: #FFF;
    padding: 25px 20px;
}
@media screen and (max-width:992px) {
    .cart-summary {
        margin-top:var(--spacing-80);
    }
}
.cart-summary .btn-proceed{
    font-size: calc(var(--font-18) - 2px);
}
.cart-summary-title{
    color: var(--theme-blue);
    font-family: "Inter";
    font-size: calc(var(--font-24) + 6px);
    font-weight:  900;
    padding-bottom: 15px;
    border-bottom: 1px solid #DCDCDC;
}
.cart-summary-detail{
    color: var(--theme-blue);
    font-family: var(--body-font);
    font-size: var(--font-18);
    font-weight: 400;
    padding-block: 20px;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.btn-proceed {
    width: 100%;
}



/***********************
    Shop Page Style Start
 ***********************************/
.shop-heading-section{
    padding-block: var(--spacing-80);
}
.heading-box .title{
    color: var(--theme-blue);
    text-align: center;
    font-family: 'Inter';
    font-size: var(--font-70);
    font-weight: 900;
    margin-bottom: calc(var(--spacing-24) - 8px);
}
.heading-box .title-md{
    font-size: var(--font-36);
}
.heading-box .description {
    color: var(--theme-blue);
    text-align: center;
    font-family: var(--body-font);
    font-size:var(--font-24);
    font-weight:400;
    margin-bottom: 0;
}
.heading-box .btn{
    text-align: center;
    width: fit-content;
    margin: calc(var(--spacing-24) + .65em) auto;
    display: block;
}
.product-list{
    margin-block:var(--spacing-80)
}

.product-list > div {
    margin-top: 1em
}

@media screen and (min-width:768px) {
    .product-list > div:nth-child(2n) {
        margin-top: calc(var(--spacing-80) - 5px);
    }
}

.product-card {
    display: flex;
    padding: 16px;
    position: relative;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 10px 10px 20px 0px rgba(234, 186, 186, 0.25);
    flex-direction: column;
}

@media screen and (min-width:600px) {
    .product-card {
        flex-direction: row;
        padding: 20px
    }
}

.product-image{
    width: 90px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

@media screen and (min-width:992px) {
    .product-image {
        width: 150px;
    }
}

.product-image img {
    border-radius: 8px;
    max-width: 200px;
    max-width: 100%;
}

.product-info {
    margin: var(--spacing-24) 0 0 0
}

@media screen and (min-width:600px) {
    .product-info {
        margin:0 0 0 var(--spacing-24)
    }
}

.product-title {
    font-size:calc(var(--font-24) + 6px);
    font-weight: 500;
    margin: 0 0 10px;
    color: var(--theme-blue);
    font-family: var(--body-font);
}
.product-title a{
    color: var(--theme-blue);
    text-decoration: none;
}

.product-description {
    color: #696687;
    font-family: 'Inter';
    font-size: var(--font-18);
    font-weight: 400;
}

.product-price {
    margin-block: var(--spacing-24);
    font-size: var(--font-20);
}

.current-price {
    color: #000;
    font-size: var(--font-20);
    font-weight: 500;
}

.original-price {
    color: #aaa;
    text-decoration: line-through;
    margin-left: 10px;
}

.action-button{
    display: flex;
    align-items: center;
}
.action-button .free_pass{
    margin-left: var(--spacing-10);
}

.action-button .buy-now{
    padding-block: 12px;
}

.action-button .cart-icon {
    margin-left: var(--spacing-24);
    background: transparent;
    border: none;
    outline: none;
    display: inline-block;
}

.cart-icon img {
    width: 24px;
    height: 24px;
}





/******************
 Product Detail Page Start
 **************************************/

.product-detail-section .product-slider {
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.10);
    border-radius: 21px;
    display: flex;
    height: auto;
}

.product-detail-section .product-slider .swiper-slide {
    border-radius: 21px;
    background: var(--white);
    display: flex;

}
.product-detail-section .product-slider .swiper-slide img{
    width: 100%;
}
.product-slider :is(.swiper-button-prev, .swiper-button-next)::after {
    font-size: var(--font-41);
    color: var(--theme-blue);
}

.product-detail-section .product-thumbnails-slider {
    display: flex;
    height: auto;
    padding: 10px 6px;
}

@media screen and (min-width:768px) {
    .product-detail-section .product-slider {
        min-height: 400px;
    }
    .product-detail-section .product-thumbnails-slider {
        height:99px;
    }
}

.product-detail-section .product-thumbnails-slider :is(.swiper-button-prev, .swiper-button-next)::after {
    font-size: 24px;
    color: var(--theme-blue);
}

.product-detail-section .product-thumbnails-slider .swiper-slide {
    border-radius: 10px;
    background: var(--white);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    border: 1px solid #FAFAFA
}
.product-detail-section .product-thumbnails-slider .swiper-slide img {
    width: 100%;
}

.product-detail-section .product-thumbnails-slider .swiper-slide-thumb-active {
    border-color: 1px solid var(--theme-blue)
}

.product-detail-summary {
    margin: 1.5rem 0 0 0;
}
@media screen and (min-width:768px) {
    .product-detail-summary {
        margin:0 0 0 1.5rem;
    }
}
.product-details .description{
    color: #696687;
    font-family: var(--body-font);
    font-size: var(--font-18);
    font-weight: 400;
}
.product-details  ul{
    color: #696687;
    font-family: var(--body-font);
    font-size: var(--font-18);
    font-weight: 400;
    margin-top: var(--spacing-24);
    padding-left: 1em;
    margin-bottom: 0;
}
.buttons .cart-btn{
    font-size: var();
}
.buttons {
    display: flex;
    align-items: center;
}
.buttons .btn {
    padding-block: 12px;
}
.buttons .cart-icon {
    margin-left: var(--spacing-24);
    background: transparent;
    border: none;
    outline: none;
    display: inline-block;
}
.cart-icon img {
    width: 24px;
    height: 24px;
}



/********************
    Faq Common Style Start
 ********************/

.faq-section{
    margin-top:var(--spacing-150);
}
.faq-section-content .title{
    font-size: var(--font-36);
    font-weight: 700;
    color: var(--theme-blue);
    font-family: 'Inter';
    margin-bottom:calc(var(--spacing-24) + .75em);
    text-align: center;
}

.according-item {
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.43);
    box-shadow: 0px 0px 59px 0px rgba(28, 137, 212, 0.10);
    margin-bottom: 1rem;
}

.according-item .accordion-button {
    color: #06192D;
    font-family: 'Inter';
    font-size: var(--font-20);
    font-weight: 600;
    margin-bottom: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: calc(var(--spacing-24) - 5px) var(--spacing-24);
}

.according-item .according-item-body {
    color: #696687;
    font-family: var(--body-font);
    font-size: var(--font-18);
    font-weight: 400;
    padding: 0px var(--spacing-24) var(--spacing-24);
}
.according-item-inner{
    display: grid;
    gap:10px
}
@media screen and (min-width:592px){
    .according-item-inner {
        grid-template-columns: 1fr 70px;
    }
}


/********************
    Explore Section Style Start
 ********************/
.explore-more-section{
    margin-top: var(--spacing-150);
}
.explore-more-section .title{
    font-size: var(--font-36);
    font-weight: 700;
    color: var(--theme-blue);
    font-family: 'Inter';
    text-align: center;
}


/**********************
 Restaurant Page Style Start
 ******************************************/
/*
 .featured-section {
     margin-bottom: var(--spacing-150);
 } */
.featured-section .row {
    align-items: center;
}
.featured-section .row:not(:last-child) {
    margin-bottom: var(--spacing-80);
}
@media screen and (max-width:768px) {

    .featured-section-image{
        margin-bottom: calc(var(--spacing-24) + .65em);
    }
}
@media screen and (max-width:767px) {
    .featured-section .row:nth-child(2n) {
        flex-direction: column-reverse;
    }
}


/****************
 Dashboard Manage Section
 ******************************/
.dashboard-section{
    text-align: center;
}
.dashboard-section .innovative-channel-image{
    margin-top: var(--spacing-80);
}
.dashboard-section .innovative-channel-image img{
    border-radius: 30px;
    box-shadow: 0px 4px 30px 10px rgba(0, 0, 0, 0.10);
}

.campaigns-section,
.dashboard-section{
    margin-top: var(--spacing-150);
}
.campaigns-section .faq-section-box{
    margin-top: 30px;
}

.notifications-section,
.loyalty-points-section{
    margin-top: var(--spacing-80);
}

/***************************
 Common Two Section Part Content Style
 *****************************************/
.content-box .heading {
    font-size: 14px;
    font-family: var(--body-font);
    font-weight: 500;
    color: var(--theme-red);
    margin-bottom: .75em;
    display: inline-block;
    text-transform: uppercase;
}
@media screen and (min-width:768px) {
    .content-box .heading {
        margin-bottom: 1em;
    }
}
.content-box .title {
    font-size: var(--font-36);
    font-weight: 700;
    color: var(--theme-blue);
    font-family: 'Inter';
    margin-bottom: .25em
}
.content-box .subtitle {
    color: #0A2A43;
    font-family: var(--body-font);
    font-size: var(--font-24);
    font-weight: 400;
    margin-bottom: var(--spacing-24);
    line-height: 1.35;
}
.content-box .description {
    color: #696687;
    font-family: var(--body-font);
    font-size: var(--font-18);
    font-weight: 400;
    margin-bottom: calc(var(--spacing-24) * 1.5);
}


/* Service Faq Section */
@media screen and (max-width:768px){
    .faq-section-box {
        margin-top: calc(var(--spacing-24) + .75em);
    }
}



/*******************
  Innovative Marketing Channel Section Start
************************************************/
.innovative-channel-section{
    margin-block: var(--spacing-150) var(--spacing-80);
    position: relative;
}
.innovative-channel-section:after {
    content:'';
    position: absolute;
    top: 0px;
    bottom: 0;
    width:100%;
    height:100%;
    background: url(../img/icons/innovative-channel-bg.svg) no-repeat center ;
    background-size: contain;
    z-index: -1;
}
.innovative-channel-section .innovative-channel-image{
    margin-top: var(--spacing-80);
}



.errors ul{
    margin-bottom: 0;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: var(--theme-red);
}

/************************************
 Cart Box Css
*************************************/
.nav-cart-container{
    position: relative;
}

/* Cart Dropdown */
.cart-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    z-index: 100;
    padding-top: 9px;
}
.cart-dropdown::after{
    content:"";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #CCC;
    position: absolute;
    right: 7px;
    top: 0;
}

.cart-dropdown-inner{
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

@media screen and (max-width:660px){
    .cart-dropdown {
        margin-right: -45px;
        width: 320px;
    }
    .cart-dropdown::after{
        right: 53px;
    }
}
.cart-dropdown h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--theme-blue);
    padding-inline: 15px;
}
/* Cart Item */
.cart-items{
    overflow-y: auto;
    max-height: 400px;
    padding-left: 15px;
    padding-right: 15px;
}
.cart-item {
    display: flex;
    align-items: start;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 10px;
}
.cart-item-details {
    flex-grow: 1;
}
.cart-item-details p {
    margin: 0;
    font-size: 14px;
}
.cart-item-details .p-name {
    font-weight: 500;
    color: var(--theme-blue);
}
.remove-item {
    color: red;
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
}
.cart-footer{
    padding-inline: 15px;
}
/* Subtotal and Buttons */
.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-top: 10px;
    font-size: 16px;
}
.cart-subtotal p{
    margin-bottom: 0;
}
.cart-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.cart-buttons a {
    display: inline-block;
    width: 48%;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    border-radius: 100px;
}
/* Show dropdown on hover */
.nav-cart-container:hover .cart-dropdown {
    display: block;
}

/* Quantity Wrapper */
.quantity-wrapper {
    display: flex;
    align-items: center;
    margin-top: 5px;
}
.quantity-wrapper label {
    margin-right: 5px;
    font-size: 14px;
}
.cart-qty-input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
.my_account{
    text-transform: capitalize;
    font-size: 16px;
    padding: 5px 30px;
}
.home_my_account:is(:hover,:focus,.active,:focus-within,:focus-visible){
    color: #ffffff;
    border-color: #ffffff;
    background: transparent;
}


.hero-section .hero-content .description {
    font-size: 20px;
    margin-bottom: 0;
}
.hero-section .hero-content .title {
    font-size: 30px;
}
.br_tag{
    height: 10px;
    display: block;
}


/*Shop Details Promotions CSS start*/
.promotions-section h2 {
    margin: 0 0 15px 0;
    font-size: var(--font-20);
    color: var(--theme-blue);
    font-family: 'Inter';
    font-weight: 900;
}
.promotions-section .promotions-list{
    margin: 0 0 24px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.promotions-section .promotions-list li {
    list-style: none;
    background-color: #efedfd;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 50px;
    box-shadow: 10px 10px 20px 0px rgba(234, 186, 186, 0.25);
    border: 1px dashed #793152;
    color: #5d2951;
}
.promotions-section .restaurants-list{
    margin: 0 0 30px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    overflow: auto;
    max-height: 400px;
}
.promotions-section .restaurants-list li{
    list-style: none;
    background-color: #ffffff;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 6px;
    color: var(--theme-blue);
    font-family: 'Inter';
    font-weight: 900;
    line-height: 1.5;
    width: 48%;
    box-shadow: 10px 10px 20px 0px rgba(234, 186, 186, 0.25);
    border: 1px solid #e7e7e7;
    display: flex;
}
.promotions-section .restaurants-list li span{
    display: block;
    font-size: 14px;
    color: #5d2951;
    font-weight: 400;
}
.promotions-section .restaurants-list .left{
    width: 60px;
    padding-right: 10px;
}
.promotions-section .restaurants-list .right{
    flex: 1;
}
.promotions-section .restaurants-list .right p{
    margin: 0;
}

@media screen and (max-width:992px){
    .promotions-section .restaurants-list li{
        width: 100%;
    }
    .home .btn,.home .btn-border{
        display: block;
        margin: 0 auto;
        text-align: center;
        width: fit-content;
        margin-top: 30px;
    }
    .btn-border{
        display: block;
        margin: 0 auto;
        text-align: center;
        width: fit-content;
        margin-top: 30px;
    }
    /* .product-card{
        text-align: center;
    } */
    /* .product-image {
        width: 100%;
    } */
    .product-image img{
            width: 90px;
    }
    .shop-heading-section.my_account{
                padding: 75px !important;
    }
}
/*Shop Details Promotions  CSS End*/


/*Free Modal CSS start*/
#modalform .form-control{
    border-radius: 50px;
}
#modalform .common-heading h4{
    margin: 0;
    color: var(--theme-blue);
    font-family: 'Inter';
    font-weight: 900;
}
#modalform .modal-content{
    background: #FFF url(../img/trending-bg.jpg) no-repeat center -38px;
}
/*Free Modal CSS End*/
.product-detail-section .current-price {
    color: #000;
    font-size: 40px;
    font-weight: 500;
}
.terms{
            text-align: right;
        }
            @media only screen and (max-width: 600px) {
  .terms{
            text-align: center;
        }
        .privacy{
            text-align: center;
        }
}