/** Shopify CDN: Minification failed

Line 4213:5 Expected identifier but found "."
Line 4707:70 Unexpected bad string token
Line 4707:118 Unterminated string token

**/

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
/* font-family: "Jost", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
/* font-family: "Manrope", sans-serif; */

/* font weight = 700 */
@font-face {
    font-family: "Neue Montreal";
    src: url(NeueMontreal-Bold.otf);
    font-weight: 700;
}

/* font weight = 500 */
@font-face {
    font-family: "Neue Montreal";
    src: url(NeueMontreal-Medium.otf);
    font-weight: 500;
}

/* font weight = 400 */
@font-face {
    font-family: "Neue Montreal";
    src: url(NeueMontreal-Regular.otf);
    font-weight: 400;
}

/* font weight = 300 */
@font-face {
    font-family: "Neue Montreal";
    src: url(NeueMontreal-Light.otf);
    font-weight: 300;
}


@font-face {
    font-family: "Thesignature";
    src: url("Thesignature.ttf") format("truetype"),
        url("Thesignature.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}



* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

*:focus,
*:focus-visible {
    outline: none;
}

:root {

    --transition-05s: all ease-in-out 0.5s;

    --font-thesignature: "Thesignature", cursive;

    --main-color: linear-gradient(90deg, rgba(231, 70, 128, 1) 0%, rgba(234, 93, 167, 1) 60%);
    /* rgb(0, 174, 239, 1); */
    --second-gradient: linear-gradient(180deg, rgba(230, 216, 242, 1) 0%, rgba(255, 208, 214, 1) 50%, rgba(236, 253, 239, 1) 100%);
    --pink-color: #E95498;
    --black-color: #000000;
    /* rgb(0, 0, 0); */
    --white-color: #ffffff;
    /* rgb(255, 255, 255); */

}

/* html {
    scroll-padding-top: 220px;
} */

body {
    /* font-family: "Neue Montreal", sans-serif; */
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: "Manrope", sans-serif;
}

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

a {
    text-decoration: none;
    color: #000;
}

li {
    list-style: none;
}

.row {
    gap: 24px 0px;
}

/*<======================= Common Css ===============>*/
.common-section {
    padding: 60px 0px;
}

.common-head {
    margin-bottom: 30px;
}

.common-head h3 {
    color: #111111;
    font-size: 32px;
    font-weight: 500;
    /* text-transform: capitalize; */
    font-family: "Jost", sans-serif;
}

#contact_form .common-btn {
    width:fit-content !important;
    border:0px !important
}

.common-btn{
    width:100%;
    position:relative;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;

    padding:10px 30px;
    border-radius:50px;
    background:var(--main-color);
    color:#fff;
    text-decoration:none;
    text-transform:uppercase;
    font-size:16px;
    font-weight:500;

    z-index:0;
    transition:color .4s ease;
}

/* Black background */
.common-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#000;
    border-radius:50px;

    transform:scaleX(0);
    transform-origin:left;
    transition:transform .4s ease;

    z-index:-1;
}

.common-btn:hover::before{
    transform:scaleX(1);
}

.common-btn:hover{
    color:#fff;
}



/************************************ Header Section **************************************/
.header-section {
    position: relative;
    width: 100%;
    padding:15px 0px;
    height: max-content;
    z-index: 10;
    background: var(--white-color);
}

.modal {
    z-index: 9999 !important;
}

.modal-backdrop {
    z-index: 9998 !important;
}

.header-top-box {
    background: #111111;
    text-align: center;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header-top-box img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.header-top-box p {
    margin-bottom: 0px;
    color: #fff;
    position: relative;
    font-weight: 500;
    font-size: 16px;
}

.header-top-box p>span {
    color: #E95498;
}

.navbar {
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    top: 0;
    z-index: 9999;
    width: 100%;
    padding: 10px 0px;
    /* box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.75); */
}

.header-section.header-fixed {
    position: fixed;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.95);
    /* background: rgba(14, 13, 14, 0.8); */
    transition: all ease-in-out 0.2s;
    backdrop-filter: blur(5px);
    animation: slideDown 0.35s ease-out;
    left: 0px;
}

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

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    display:block;
    height: 90px; 
    text-align:left
}

.navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.navbar-nav .nav-item a {
    font-weight: 400;
    font-size: 18px;
    color: #111111;
    text-transform: capitalize;
    transition: var(--transition-05s);
    white-space:nowrap
}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item .nav-link.active {
    color: var(--pink-color);
}


.navbar-toggler i{
    display:none;
}

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

.head-contact img {
    height: 27px;
    width: 27px;
    object-fit: contain;
}


.drawer__inner {
    width:26rem
}


/******************************************* Banner Section ***********************************/
.banner-section {
    position: relative;

}

.banner-slider.owl-carousel {
    position: relative;
}

.banner-slider.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.banner-slider.owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(241, 69, 136, 0.5);
}

.banner-slider.owl-carousel .owl-dots .owl-dot.active {
    width: 40px;
    border-radius: 10px;
    background: var(--pink-color);
}

/* .banner-slider.owl-carousel .item {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    position: relative;
} */
.banner-container {
    position: relative;
    height: 100%;
}

.banner-img {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
}

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

.abt-bnr-bg-box {
    min-height: 290px;
    height: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* background: linear-gradient(90deg,rgba(255, 121, 188, 1) 0%, rgba(255, 205, 230, 1) 30%, rgba(245, 242, 210, 1) 70%, rgba(201, 210, 255, 1) 100%); */
}

.inr-banner-box {
    min-height: 290px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 140px;
}

.inr-banner-box ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.inr-banner-box ul li a {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
}

.inr-banner-box h3 {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 500;
    line-height: 48px;
    font-family: "Jost", sans-serif;
}

.banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    width: 50%;
    margin: auto;
    min-height: 460px;
    position: relative;
    z-index: 1;
}




.banner-box h1 {
    font-family: var(--font-thesignature);
    color: #111111;
    font-weight: 400;
    font-size: 140px;
    line-height: 66px;
    position: relative;
    z-index: 1;
    text-shadow:
        0px 1px 0 #EA5DA7,
        1px 1px 0 #111111,
        4px 2px 8px rgba(17, 17, 17, 0.4);
}

.banner-box h3 {
    color: #111111;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    text-transform: uppercase;
    padding: 20px;
    width: 60%;
    background: linear-gradient(180deg, rgba(238, 170, 209, 1) 0%, rgba(252, 204, 207, 0.1) 60%);
    margin-top: -30px;
}

/*################################ Featured Products Section ################################*/
.common-section.feat-product-section {
    padding: 40px 0 60px;
}

.feat-product-slider.owl-carousel {
    position: relative;
}

.feat-product-slider.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.feat-product-slider.owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(241, 69, 136, 0.5);
}

.feat-product-slider.owl-carousel .owl-dots .owl-dot.active {
    width: 40px;
    border-radius: 10px;
    background: var(--pink-color);
}
/*  */
.feat-product-section .owl-stage {
    display: flex;
    flex-wrap: wrap;
}
.feat-product-section .owl-stage .item {
    height: 100%;
}
.feat-product-section .owl-stage .item .feat-product-box{
    height: 100%;
}

.featnewarrr-box{
     display: block;
    background: linear-gradient(180deg, rgba(230, 216, 242, 1) 0%, rgba(255, 208, 214, 1) 50%, rgba(236, 253, 239, 1) 100%);
    padding: 6px;
    border-radius: 20px;
    width: 100%;
    height: 100%;
}
.featnewarrr-box-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

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

.featnewarrr-box-btm {
    padding: 10px;
    width: 100%;
}

.featnewarrr-box-btm h5 {
    font-size: 22px;
    font-weight: 500;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: Jost, sans-serif;
}

.upcoming-list-scroll.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.upcoming-list-scroll.owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(241, 69, 136, 0.5);
}

.upcoming-list-scroll.owl-carousel .owl-dots .owl-dot.active {
    width: 40px;
    border-radius: 10px;
    background: var(--pink-color);
}



/*  */
/* .feat-product-box {
    display: block;
    background: linear-gradient(180deg, rgba(230, 216, 242, 1) 0%, rgba(255, 208, 214, 1) 50%, rgba(236, 253, 239, 1) 100%);
    padding: 6px;
    border-radius: 20px;
    width: 100%;
    height: 100%;
}

.feat-product-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

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

.feat-product-box:hover .feat-product-img {
    display: none;
}

.feat-product-img-hover {
    display: none;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.feat-product-img-hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feat-product-box:hover .feat-product-img-hover {
    display: block;
} */


.feat-product-box {
    display: block;
    position: relative;
    background: linear-gradient(180deg, rgba(230, 216, 242, 1) 0%, rgba(255, 208, 214, 1) 50%, rgba(236, 253, 239, 1) 100%);
    padding: 6px;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.feat-product-img,
.feat-product-img-hover {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.feat-product-img img,
.feat-product-img-hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.feat-product-img {
    transition: opacity .4s ease;
}

.feat-product-img-hover {
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    width: calc(100% - 12px);
    height: 400px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease;
    pointer-events: none;
}


.feat-product-box:hover .feat-product-img {
    opacity: 0;
}

.feat-product-box:hover .feat-product-img-hover {
    opacity: 1;
    visibility: visible;
}


.feat-product-btm {
    padding: 10px;
    width: 100%;
}

.feat-product-review {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.feat-product-review .feat-product-stars i {
    color: #e2960b;
    font-size: 12px;
}

.feat-product-review>span {
    font-size: 14px;
    line-height: 18px;
    color: #514646;
}

.feat-product-btm h5 {
    font-size: 18px;
    font-weight: 500;
    color: #111111;

    white-space: nowrap;
    /* keep in one line */
    overflow: hidden;
    /* hide overflow */
    text-overflow: ellipsis;
    /* show ... */
    font-family: "Jost", sans-serif;
}

.feat-product-btm p {
    font-size: 16px;
    font-weight: 500;
    color: #111111;
}

.feat-product-btm p>del {
    color: #514646;
    font-size: 14px;
}

.feat-products-colors {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.feat-products-colors span {
    color: #514646;
    font-size: 14px;
    line-height: 18px;
}

.feat-product-optns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(17, 17, 17, 0.5);
    border-radius: 30px;
    padding: 5px;
}

.feat-product-optns li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .feat-product-optns li:nth-child(1) {
    background-color: #A73E3B;
}

.feat-product-optns li:nth-child(2) {
    background-color: #8E1512;
}

.feat-product-optns li:nth-child(3) {
    background-color: #B31410;
}

.feat-product-optns li:nth-child(4) {
    background-color: #944C4A;
} */

.feat-product-optns li i {
    color: #fff;
}

.feat-product-btm .common-btn {
    margin-top: 10px;
    border: none;
}

/*############################## Text Section ############################*/
.common-section.text-section {
    padding: 0 0 40px;
}

.common-section.text2-section {
    padding: 40px 0;
}

.text-box {
    text-align: center;
}

.text-box h3 {
        /* font-family: Jost, sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 36px; */
    font: 500 48px/36px "Jost", sans-serif;
    
}

.text-box h3 img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 10px;
}

/*############################### Ads Video Banner Section #########################*/
.common-section.ads-video-section {
    padding: 0px 0px 30px;
    margin-bottom: 30px;
}

.ads-video-section {
    position: relative;
    /* min-height: 350px; */
    height: 100%;
}

.video-box {   
    width: 100%;
    height: 100%;
}

.video-box img{
    max-width:100%;
    height:auto;

}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ab2-slider.owl-carousel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ab2-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.ab2-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.ab2-box p {
    color: #fff;
    margin-bottom: 0px;
    padding: 10px 0px;
    text-transform: uppercase;
    font-size: 48px;
    white-space: nowrap;
}

/*############################## Ads Banner Section ###########################*/
.common-section.ads-bnr-section {
    padding: 0px 0px 60px;
}

.ads-bnr-left,
.ads-bnr-right {
    width: 100%;
    height:100%;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.ads-bnr-left img,
.ads-bnr-right img {
    width: 100%;
    height: 100%;
  
}

/*#################################### Our Story Section #################################*/
.common-section.our-story-section {
    padding: 0 0 80px;
}

.our-story-text {
    padding-right: 50px;
}

.our-story-text h3 {
    font-family:"Jost",sans-serif;
    color: #111111;
    font-size: 34px;
    font-weight: 500;
    line-height: 38px;
    margin-bottom: 20px;
}

.our-story-text p {
    color: #514646;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.our-story-img-main {
    height: 500px;
    position: relative;
    /* overflow: hidden; */
    z-index:9;
}

.our-story-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.our-story-img-round {
    position: absolute;
    bottom: -60px;
    right: -80px;
    width: 200px;
    height: 200px;
    animation: spin 12s linear infinite;
}

.our-story-img-round img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.our-story-img-small {
    width: 100%;
    height: 340px;
    border-radius: 20px;
    overflow: hidden;
}

.our-story-img-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left;
}

/*#################################### Vision & Mission Section ###########################*/
.vision-mission-section {
    background: linear-gradient(90deg, rgba(215, 199, 228, 1) 0%, rgba(242, 212, 255, 1) 30%, rgba(242, 234, 245, 1) 70%, rgba(226, 210, 235, 1) 100%);
}

.vision-mission-img {
    height: 500px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

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

.vision-mission-text {
    padding-left: 40px;
}

.vision-mission-text span {
    color: #111111;
    font-size: 16px;
    font-weight: 400;
}

.vision-mission-text h3 {
    font-family: Jost, sans-serif;
    color: #111111;
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 20px;
    width: 80%;
}

.vision-mission-box h6 {
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
}

.vision-mission-box p {
    color: #514646;
    font-size: 16px;
    line-height: 26px;
}

/*###################################### Why Choose Us Section ##########################*/
.common-section.wcu-section {
    margin-bottom: 40px;
}

.wcu-section {
    background: linear-gradient(90deg, rgba(192, 216, 248, 1) 0%, rgba(228, 226, 250, 1) 60%, rgba(232, 222, 241, 1) 100%);
    position: relative;
}

.wcu-section .common-head {
    text-align: center;
}

.wcu-main-box {
    background: linear-gradient(180deg, rgba(249, 188, 218, 1) 0%, rgba(253, 221, 238, 1) 60%, rgba(255, 204, 232, 1) 100%);
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
    height: 100%;
}

.wcu-main-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wcu-box {
    background: #fff;
    border-radius: 30px;
    text-align: center;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.wcu-box:first-child {
    margin-bottom: 20px;
}

.wcu-icon {
    height: 70px;
    margin-bottom: 20px;
}

.wcu-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wcu-box h5 {
    font-size: 22px;
    font-weight: 500;
    color: #111111;
    line-height: 20px;
    margin-bottom: 20px;
    font-family: "Jost", sans-serif;
}

.wcu-box p {
    font-size: 15px;
    font-weight: 400;
    color: #514646;
    line-height: 18px;
    width: 70%;
}

/***************************************** Contact Us Page *******************************/
.contact-head {
    text-align: center;
    margin-bottom: 40px;
}

.contact-head h3 {
    font-family: var(--font-montagu-slab);
    color: #133252;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 0px;
}

.contact-head p {
    color: #5D5D5D;
    font-size: 18px;
    font-weight: 400;
}

.contact-card {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: 1px solid #D1D1D1;
    border-radius: 10px;
    gap: 20px;
   
    padding: 20px;
    transition: var(--transition-05s);
    /* padding: 60px 20px; */
}

.contact-card:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.contact-card:hover i {
    color: var(--white-color);
}

.contact-card i {
    --ehw-bg: 50px;
    width: var(--ehw-bg);
    height: var(--ehw-bg);
    font-size: 25px;
    background: var(--main-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.contact-name {
    width: 70%;
}

.contact-card .contact-name h4 {
    font-family: var(--font-sanchez);
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0px;
}

.contact-card .contact-name p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
}

.iframe-box {
    width: 100%;
    height: 480px;
    border: 1px solid rgba(var(--second-color), 1);
    padding: 5px;
    border-radius: 20px;
}

.iframe-box iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.contact-form-head {
    text-align: center;
    padding: 20px 0px;
}

.contact-form-head h3 {
    font-size: 54px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-form-head p {
    font-size: 24px;
    font-weight: 400;
}

.contact-form {
    /* box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.75); */
    border: 1px solid #D1D1D1;
    padding: 20px;
    border-radius: 20px;
}

.form-contact-box input::placeholder,
.form-contact-box textarea::placeholder {
    font-weight: 400;
}

.form-contact-box button {
    width: 100%;
}

.form-contact-box select {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #d9d9d9;
    color: #4F4F4F;
}

.form-contact-box option:hover {
    background: var(--main-color) !important;
}



/*############################### About Hue & Bae Section ################################*/
.abt-section {
    background: linear-gradient(90deg, rgba(251, 231, 228, 1) 0%,
            rgba(253, 206, 200, 1) 30%, rgba(255, 229, 228, 1) 60%,
            rgba(251, 216, 212, 1) 100%);
}

.abt-left {
    height: 490px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

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

.abt-right {
    padding-left: 40px;
}

.abt-right p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}

.abt-right .common-btn {
    margin-top: 40px;
    width: fit-content;
}

/*################################# Testimonial Section ################################*/
.testi-slider.owl-carousel {
    position: relative;
}

.testi-slider.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.testi-slider.owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(241, 69, 136, 0.5);
}

.testi-slider.owl-carousel .owl-dots .owl-dot.active {
    width: 40px;
    border-radius: 10px;
    background: var(--pink-color);
}

.testi-section .common-head {
    text-align: center;
}

.testi-slider.owl-carousel {
    position: relative;
    /* width: calc(100% + 100px); */
}
/*  */
.testi-section .owl-stage {
    display: flex;
    flex-wrap: wrap;
}
.testi-section .owl-stage .item {
    height: 100%;
}
.testi-section .owl-stage .item .testi-box {
    height: 100%;
}
/*  */
.testi-box {
    background: #f6f6ff;
    overflow: hidden;
    border-radius: 20px;
    padding: 40px 20px;
    transition: var(--transition-05s);
}

.testi-quote {
    width: 60px;
    height: 50px;
    margin-bottom: 20px;
    background: #FFF;
    padding: 10px;
    border-radius: 8px;
}

.testi-quote img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.testi-prof-img {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 10px;
}

.testi-prof-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testi-profile-name h6 {
    font-size: 18px;
    font-weight: 700;
    color: #0F0E0E;
    margin-bottom: 0;
    font-family: "Jost", sans-serif;
}

.testi-profile-name p {
    font-size: 14px;
    font-weight: 400;
    color: #514646;
    margin-bottom: 0;
}

.testi-review i {
    color: #E2960B;
    font-size: 16px;
}

.testi-box:hover {
    background: linear-gradient(180deg, rgba(230, 216, 242, 1) 0%, rgba(255, 208, 214, 1) 50%, rgba(236, 253, 239, 1) 100%);
}

.testi-msg p {
    font-size: 18px;
    line-height: 24px;
    color: #514646;
}

/*################################ Company Features Section #############################*/
.common-section.compfeat-section {
    padding: 20px 0px 0px;
}

.compfeat-box {
    background: linear-gradient(90deg, rgba(192, 216, 248, 1) 0%, rgba(228, 226, 250, 1) 50%, rgba(232, 222, 241, 1) 100%);
    border-radius: 20px;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    text-align: center;
}

.compfeat-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

/* Add vertical line after each item except the last one */
.compfeat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background-color: #B7B7B7;
}

/* Remove the line from the last item */
.compfeat-item:last-child::after {
    display: none;
}

.compfeat-item h5 {
    color: #292D32;
    font-weight: 500;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0px;
    font-family: "Jost", sans-serif;
}

.compfeat-item p {
    color: #514646;
    font-size: 15px;
    font-weight: 400;
    width: 70%;
    margin: auto;
}

.compfeat-item .compfeat-img {
    width: 100%;
    height: 55px;
    margin-bottom: 10px;
}

.compfeat-item .compfeat-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*################################# Instagram Post Section ###############################*/
.instaPost-slider.owl-carousel {
    position: relative;
}

.instaPost-slider.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.instaPost-slider.owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(241, 69, 136, 0.5);
}

.instaPost-slider.owl-carousel .owl-dots .owl-dot.active {
    width: 40px;
    border-radius: 10px;
    background: var(--pink-color);
}

.common-section.instaPost-section {
    padding: 60px 0 0;
}

.instaPost-section .common-head {
    text-align: center;
}

.instaPost-box {
    position: relative;
    display: block;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.instaPost-box::after {
    content: '';
    position: absolute;
    inset: 0%;
    width: 100%;
    height: 100%;
    background: rgba(231, 70, 128, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-05s);
}

.instaPost-box:hover::after {
    opacity: 1;
    visibility: visible;
}

.instaPost-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Center overlay */
.instaPost-overview {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;
    color: #fff;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-05s);

}

.instaPost-box:hover .instaPost-overview {
    opacity: 1;
    visibility: visible;
}

/* Optional styling */
.instaPost-overview i {
    font-size: 32px;
    margin-bottom: 6px;
}

.instaPost-overview p {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    text-transform: lowercase;
}

/*################################# Subscribe Section #####################################*/
/* .common-section.subscribe-section {
    padding: 0px 0px 60px;
} */

.subscribe-box .common-head {
    text-align: center;
}

.subscribe-box .subscribe-form {
    width: 100%;
    background: #F2F2F2;
    border-radius: 50px;
    padding: 6px;
}

.subscribe-box .subscribe-form input {
    width: 79%;
    border: none;
    background: transparent;
    padding: 10px;
}

.subscribe-box .subscribe-form .common-btn {
    border: none;
    width: 20%;
}
.subscribe-box .form__message {
    position: absolute;
    font-size: 15px;
    left: 10px;
    bottom: -30px;
}
.subscribe-box {
    position: relative;
}

/*########################################## Product Listing Page ##################################*/
.productlist-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.productlist-head h6 {
    color: #514646;
    font-size: 18px;
    margin-bottom: 0;
}

.productlist-head .sort-by-box label {
    font-size: 18px;
    color: #111111;
    font-weight: 500;
    margin-right: 10px;
}

.productlist-head .sort-by-box select {
    border: 1px solid #E3E3E3;
    border-radius: 6px;
    min-width: 180px;
    padding: 6px;
}

.productlist-left-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 20px;
}

.productlist-left-head h6 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #111111;
}

.productlist-left-head button {
    border: none !important;
    background: transparent;
}

.accordion-button {
    background: transparent !important;
    border-bottom: none !important;
    color: #111111;
}

.accordion-button:not(.collapsed) {
    color: #111111 !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    background: transparent;
    box-shadow: none;
    border: none !important;
    outline: noen !important;
}

/* .accordion-body {
    padding: 0 20px;
} */

.price-filter-box {
    width: 100%;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 8px;
    cursor: pointer;
}

.filter-check input {
    accent-color: #133252;
}

.price-filter input[type="number"] {
    /* max-width: 90px; */
    border-radius: 20px;
    font-size: 13px;
    background: #F8F8F8;
}

.form-range::-webkit-slider-thumb {
    background-color: #111;
    color: #E74680 !important;
}

.form-range::-webkit-slider-runnable-track {
    background-color: #111;
}

.color-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid #eee;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    background: #F8F8F8;
    transition: all 0.2s ease;
}

.color-option:hover {
    border-color: #133252;
}

.color-option input {
    display: none;
}

/* Color dot */
.color-option .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Active state */
.color-option input:checked+.dot+.text {
    font-weight: 600;
}

.color-option input:checked~.dot {
    box-shadow: 0 0 0 2px #fff;
}

.color-option input:checked~.text {
    color: #E74680;
}

.pagination-box {
    margin-top: 20px;
}

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

.pagination-box ul li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #B5B5B5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #5D5D5D;
}

.pagination-box ul li a.active {
    border: 1px solid transparent;
    background: #E74680;
    color: #fff;
}

/*############################## Product Details Section ##################################*/
.product-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    background-color: #fff;
    /* padding: 20px; */
    border-radius: 10px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

/* Left side - Vertical Thumbnail Slider */
.thumbnail-slider {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 150px;
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;
}

/* Custom scrollbar */
.thumbnail-slider::-webkit-scrollbar {
    width: 6px;
}

.thumbnail-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.thumbnail-slider::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 10px;
}

.thumbnail-slider::-webkit-scrollbar-thumb:hover {
    background: #b8941f;
}

.thumbnail-item {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail-item:hover {
    border-color: #d4af37;
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

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

/* Main Image Display */
.main-image-container {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8dfd0 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 40px;
}

.main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.nav-arrow:hover {
    background-color: #d4af37;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.prev {
    left: 20px;
}

.nav-arrow.next {
    right: 20px;
}

.nav-arrow::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.nav-arrow.prev::before {
    transform: rotate(-135deg);
    margin-left: 3px;
}

.nav-arrow.next::before {
    transform: rotate(45deg);
    margin-right: 3px;
}

/* Image counter */
.image-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/******************************** Footer Section *********************************************/
.footer-section {
    background-color: #111111;
}

.footer-top {
    padding: 40px 0px;
}

.footer-logo {
    display: inline-block;
    width: 160px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-top-left h3 {
    font-family: var(--font-montagu-slab);
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
    color: var(--white-color);
}

.footer-top-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-top-social {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}


.footer-top-social li a i {
    color: var(--pink-color);
    font-size: 20px;
}

.footer-top-right {
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-top-right-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-top-right-left h5 {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 700;
}

.footer-top-right-left p {
    color: #D8EFFF;
    font-size: 16px;
    font-weight: 400;
    width: 80%;
}

.footer-top-right-form {
    width: 60%;
}

.footer-top-right-form form {
    width: 100%;
    background: var(--white-color);
    padding: 6px;
}

.footer-top-right-form form input {
    width: 79%;
    padding: 10px;
    border: none;
    color: #5F5F5F;
    font-size: 15px;
}

.footer-top-right-form form button.send-btn {
    width: 20%;
    padding: 12px;
    border: none;
    background: var(--main-color);
    color: var(--white-color);
}

.footer-para p {
    font-size: 16px;
    color: #D8EFFF;
    font-weight: 400;
    width: 90%;
}

.footer-para h5 {
    font-family: var(--font-montagu-slab);
    font-size: 28px;
    color: var(--white-color);
    background: var(--main-color);
    width: 70%;
    text-align: center;
    padding: 15px;
    margin-bottom: 20px;
}

.footer-para img {
    width: 100%;
    height: auto;
}

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

.footer-box h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "Jost", sans-serif;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li, .footer-links li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 34px;
    color: #D3DACF;
    transition: var(--transition-05s);
    text-transform: capitalize;
    position:relative;
    display:inline-block;
}
.footer-links li label{
    max-width:72px
}
.footer-links li span{
   font-size: 11px;
    padding: 0px 8px;
    margin-right: auto;
    border-radius: 15px;
    color: #e95498;
    border: 1px solid #e95498;
    position: absolute;
    height: 20px;
    line-height: 1.55;
    display: block;
    left: 74px;
    top: 7px;

}

.footer-links li a:hover {
    color: var(--pink-color);
}

.footer-contact-links {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-links li a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #D3DACF;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    /* white-space: nowrap; */
}

.footer-contact-links li a>i {
    color: var(--pink-color);
    font-size: 20px;
}


.footer-mid {
    /* border-bottom: 1px solid #2F5168; */
    padding: 40px 0px;
}

.footer-copyright {
    border-top: 1px solid #262626;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
}

.footer-copyright p {
    margin-bottom: 0;
    color: #BEBEBE;
    font-size: 14px;
    font-weight: 500;
}


.wcu-small-containerBox {
    display: flex;
    flex-direction: column;
}


.custom-container.for_mobile {
    display: none;
}

.ads-bnr-left.for_desktop {
    display: block;
}
.ads-bnr-left.for_mobile {
    display: none;
}

.product-barcode-image {
    border-top: 1px solid #d9d9d9;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.product-barcode-image img {
    margin-bottom: 30px;
    object-fit: contain;
    padding: 20px 40px;
    height: 150px;
    box-shadow: 0 0 6px rgba(0,0,0,0.25);
    margin-top: 30px;
}
.productlist-left {
     display:flex;
     flex-direction:column;
}
.productlist-left .productlist-left-head {
    order:2;
}
.productlist-left .accordion.accordion-flush {
    order:3
}

.productlist-lef .custom-filter {
    order:1
}

.upcoming-list-scroll {
    position:relative;
}

.upcoming-list-scroll .owl-nav button, .feat-product-slider .owl-nav button{
    width:45px;
    height:45px;
    background:#fff !important;
    border-radius:50%;
}
.upcoming-list-scroll .owl-nav .owl-prev, .feat-product-slider .owl-nav .owl-prev {
  position: absolute;
    left: 0px;
    top: 40%;
    transform: translateY(-40%);
}
.upcoming-list-scroll .owl-nav .owl-next, .feat-product-slider .owl-nav .owl-next {
  position: absolute;
    right: 0px;
    top: 40%;
    transform: translateY(-40%);
}

/* .product-barcode-image {
    width: 220px;
    height: 220px;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-barcode-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.product-barcode-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-barcode-image:hover img {
    transform: scale(1.05);
} */



/********************************************** Media query ***********************************/

/********************* Min width Section *****************************/

/* @media (min-width: 992px) {
    .dropdown-menu {
      display: grid;
      opacity: 0;
      visibility: hidden;
    }
    .nav-item.dropdown:hover .dropdown-menu,
    .nav-item.dropdown .dropdown-menu.show {
      opacity: 1;
      visibility: visible;
    }
}
@media (min-width: 1200px){
	.nav-item.dropdown .dropdown-menu[data-bs-popper] {
		top: 100%;
	}
} */
@media(min-width:1300px) and (max-width:1500px){
    .featnewarrr-box-img {
        height:300px;
    }
}
@media (min-width: 1401px) and (max-width: 1539px) {
    .banner-box h1 {
        font-size: 100px;
    }

    .banner-box {
        min-height: 360px;
    }

    .banner-box h3 {
        font-size: 30px;
        width: 80%;
    }

    .feat-product-img,
    .feat-product-img-hover {
        height: 270px;
    }
    .feat-product-btm p.price{
        font-size:16px !important;
    }

    .common-btn {
        font-size: 14px;
    }

    .text-box h3 {
        font-size: 32px;
    }

    .ads-bnr-left,
    .ads-bnr-right {
        height: 360px;
    }

    .footer-contact-links li a {
        font-size: 14px;
    }

    /* .footer-links li a {
        font-size: 14px;
    } */

    .footer-box h5 {
        font-size: 18px;
    }

    .ab2-box p {
        font-size: 34px;
    }

    .compfeat-item p {
        width: 80%;
    }
}

/* @media (min-width: 1500px) {
    
} */
@media (min-width: 1540px) and (max-width: 1639px) {
    .text-box h3 {
        font-size: 40px;
    }

    .ab2-box p {
        font-size: 40px;
    }

    .ads-bnr-left,
    .ads-bnr-right {
        height: 400px;
    }


}

@media (min-width: 1540px) {
    .container {
        max-width: 1500px;
    }
}

@media (min-width: 1640px) and (max-width: 1739px) {
    .ab2-box p {
        font-size: 40px;
    }
}

@media (min-width: 1640px) {
    .container {
        max-width: 1600px;
    }
}

@media (min-width: 1740px) and (max-width: 1899px) {}

@media (min-width: 1740px) {
    .container {
        max-width: 1690px;
    }
}

/************************************* Max Width Section ******************************/

@media (max-width: 1399px) {
    .banner-box {
        min-height: 400px;
    }

    .banner-box h1 {
        font-size: 100px;
        line-height: 50px;
    }

    .banner-box h3 {
        font-size: 28px;
        width: 70%;
    }

    .feat-product-img,
    .feat-product-img-hover {
        height: 250px;
    }

    .feat-product-optns li {
        width: 12px;
        height: 12px;
    }
    .feat-product-btm p.price{
        font-size:16px !important;
    }

    .text-box h3 {
        font-size: 28px;
    }

    .ads-bnr-left,
    .ads-bnr-right {
        height: 300px;
    }

    .abt-right {
        padding-left: 20px;
    }

    .abt-right p {
        font-size: 16px;
    }

    .abt-left {
        height: 450px;
    }

    .testi-box {
        padding: 20px 20px;
    }

    .testi-msg p {
        font-size: 15px;
        line-height: 22px;
    }

    .testi-quote {
        width: 50px;
        height: 40px;
        padding: 8px;
    }

    .testi-profile-name h6 {
        font-size: 16px;
    }

    .testi-profile-name p {
        font-size: 13px;
    }

    .compfeat-box {
        padding: 40px 40px;
    }

    .compfeat-item h5 {
        font-size: 18px;
    }

    .compfeat-item p {
        font-size: 14px;
        width: 85%;
    }

    .instaPost-box {
        height: auto;
    }

    .subscribe-box .subscribe-form .common-btn {
        width: 28%;
        font-size: 13px;
    }

    .subscribe-box .subscribe-form input {
        width: 71%;
    }

    .common-head h3 {
        font-size: 28px;
    }

    .wcu-icon {
        height: 50px;
    }

    .wcu-box h5 {
        font-size: 20px;
    }

    .wcu-box p {
        font-size: 15px;
        width: 80%;
    }

    .ab2-box p {
        font-size: 28px;
    }

    .inr-banner-box {
        padding-left: 60px;
    }

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

    .inr-banner-box ul li a {
        font-size: 15px;
    }

    .common-section.productlist-section {
        padding: 30px 0px;
    }

    .footer-contact-links li a {
        font-size: 13px;
        align-items: center;
    }
    .footer-contact-links li a>i{
        font-size: 16px;
    }

    /* .footer-links li a {
        font-size: 14px;
        line-height: 24px;
    } */

    .feat-product-btm {
        padding: 4px;
    }

    .footer-box h5 {
        font-size: 18px;
    }

    .common-section.subscribe-section {
        padding: 30px 0px;
    }
}

@media (max-width: 1199px) {
    .banner-box {
        min-height: 340px;
    }

    .banner-box h1 {
        font-size: 90px;
        line-height: 50px;
    }

    .banner-box h3 {
        font-size: 24px;
        width: 60%;
    }

    .header-top-box p {
        font-size: 14px;
    }

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

    .ab2-box p {
        font-size: 24px;
    }

    .ab2-box img {
        height: 26px;
    }

    .wcu-small-containerBox {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .wcu-box {
        width: 50%;
    }

    .wcu-box:first-child {
        margin-bottom: 0px;
    }

    .wcu-main-box {
        height: auto;
    }

    .ads-bnr-left,
    .ads-bnr-right {
        height: auto;
    }

    .compfeat-item p {
        font-size: 13px;
        width: 94%;
    }

    /* .footer-links li a {
        font-size: 13px;
        line-height: 24px;
    } */

    .footer-box h5 {
        font-size: 16px;
    }

    .inr-banner-box {
        min-height: 220px;
    }

    .abt-bnr-bg-box {
        min-height: 220px;
    }

    .feat-product-img,
    .feat-product-img-hover {
        height: 320px;
    }

    .feat-product-optns li {
        width: 12px;
        height: 12px;
    }

    .our-story-img-small {
        padding-left: 0px;
    }

    .vision-mission-text {
        padding-left: 0px;
    }

    .vision-mission-text h3 {
        width: 100%;
        font-size: 28px;
    }


}
@media(min-width:992px) and (max-width:1199px){
    .footer-logo{
        width: 140px;
    }
    .footer-links li span{
        font-size: 9px;
        padding: 2px 2px;
    }
}
@media (max-width: 991px) {
    .header-section .navbar {
        position:absolute;
        width:100%;
        left:0px;
        top:80px;
    }
    .navbar-collapse {
        position: absolute;
        background: rgba(255, 255, 255, 1);
        width: 100%;
        left: 0;
        top: 100%;
        padding: 5px;
        border-top: 1px solid #f4f4f4;
        border-bottom: 1px solid #f4f4f4;
        /* box-shadow: 0 0px 0px rgba(0, 0, 0, .75); */
    }
.compfeat-box {
    margin-top:25px
}
    .common-section {
        padding: 30px 0px;
    }

    .navbar-brand {
        height: 100px;
    }

    .navbar-brand img {
        object-fit: contain;
    }

    .navbar-toggler-icon {
        width: 24px !important;
        height: 24px !important;
    }

    .head-contact>.navbar-toggler,
    .head-contact>.navbar-toggler.collapsed {
        padding: 2px;
        border: 1px solid #74747470;
        background: rgba(var(--white-color), 1);
        border-radius: 0px;
        box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.23) !important;
    }
    .head-contact>.navbar-toggler {
        width:24px;
        height:24px
    }
.head-contact>.navbar-toggler i{
    display:block;
}
    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    .navbar-toggler {
        padding: 6px;
        border: none;
        background: rgba(var(--main2-color), 1);
        border-radius: 4px;
    }

    .banner-box {
        min-height: 200px;
    }

    .compfeat-item::after {
        display: none;
    }

    .common-section.feat-product-section {
        padding: 20px 0 30px;
    }

    .feat-product-btm {
        padding: 6px;
    }

    .common-btn {
        font-size: 13px;
    }

    .feat-product-img, 
    .feat-product-img-hover {
        height: 380px;
    }

    .ab2-box p {
        font-size: 18px;
    }

    .ab2-box img {
        height: 20px;
    }

    .abt-left {
        height: auto;
    }

    .abt-right {
        padding-left: 0px;
    }

    .common-head {
        margin-bottom: 20px;
    }

    .compfeat-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .common-section.compfeat-section {
        padding: 0px 0px 0px;
    }

    .common-section.instaPost-section {
        padding: 30px 0 0;
    }

    .common-head h3 {
        font-size: 30px;
    }

    .banner-box h3 {
        font-size: 20px;
        width: 80%;
        padding: 10px;
    }

    .common-section.ads-video-section {
        padding: 0px 0px 0px;
        margin-bottom: 30px;
    }

    .common-section.ads-bnr-section {
        padding: 0px 0px 30px;
    }

    .testi-box {
        padding: 20px 20px;
    }

    .banner-img {
        height: auto;
        position: relative;
    }

    .banner-container {
        min-height: auto;
        height: 100%;
    }

    .banner-box {
        width: 100%;
        min-height: auto;
        margin-top: 20px;
    }

    .banner-box h1 {
        font-size: 100px;
    }

    .our-story-img-round {
        position: absolute;
        bottom: -80px;
        right: 0px;
    }

    .our-story-img-main {
        height: auto;
    }

    .our-story-img-small {
        display: none;
    }

    .contact-card {
        justify-content: flex-start;
    }

    .our-story-text {
        padding-right: 0px;
    }
    .navbar-nav {
        gap: 0px;
    }



}

@media (max-width: 767px) {
    .header-section {
        padding:0px;
    }
    .drawer__inner {
        width:100%;
        max-width:100%
    }
.sort-by-box {  
    justify-content: space-between;
    width: 100%;
    padding-top: 15px;
}
.productlist-head .sort-by-box select {
    min-width: 250px;
}
   .productlist-left {
    position: fixed !important;
    left: 0;
    top:inherit !important;
    bottom:0;
    width: 100%;
    /* height: 100%; */
    z-index: 2;
    transform: translateY(calc(100% - 60px));
    transition: transform 0.4s ease-in-out;
    padding-top: 10px !important;
}

.productlist-left.active {
    transform: translateY(0);
    height:auto !important
}
   .productlist-left-head h6{
      display:none !important;
   }
    .slider.slider--mobile {
        scroll-padding-left: 0px !important
    }
    .page-width {
        padding: 0px 1rem;
    }
    
    .accordion-button {
        padding: 10px !important;
    }
    .footer-logo {
        display: inline-block;
        height: 140px;
    }
    .custom-container.for_desktop {
        display: none;
    }
    .custom-container.for_mobile {
        display: block;
    }
    .ads-bnr-left.for_desktop {
        display: none;
    }
    .ads-bnr-left.for_mobile {
        display: block;
    }
    .contact-card {
        border-radius: 6px;
        gap: 10px;
        min-height: 90px;
        padding: 10px;
    }
    .contact-card .contact-name h4 {
        font-size: 16px;
    }
    .contact-card .contact-name p {
        font-size: 13px;
    }
    .contact-card i {
        --ehw-bg: 40px;
        width: var(--ehw-bg);
        height: var(--ehw-bg);
        font-size: 18px;
    }
    .banner-img {
        height: auto;
        position: relative;
    }

    .banner-box {
        min-height: 140px;
    }

    .banner-box h1 {
        font-size: 80px;
        width: 100%;
    }

    .feat-product-btm {
        padding: 2px;
    }

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

    /* .video-box {
        height: 150px;
    } */

    .common-section.text2-section {
        padding: 20px 0;
    }

    /* .ads-video-section {
        min-height:150px;
    } */

    .text-box h3 img {
        width: 80px;
        height: 80px;
    }

    .common-section.text-section {
        padding: 0 0 30px;
    }

    .abt-right p {
        font-size: 15px;
    }

    .common-head h3 {
        font-size: 22px;
    }

    .testi-box {
        border-radius: 8px;
        padding: 10px 10px;
    }

    .footer-copyright {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .common-head h3 {
        font-size:22px;
    }

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

    .inr-banner-box {
        padding-left: 20px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .ab2-box p {
        font-size: 15px;
    }

    .common-section.ads-video-section {
        margin-bottom: 30px;
    }

    .abt-bnr-bg-box {
        background-position: center right;
    }
.collection-footer .footer-copyright {
    padding-bottom:85px;
}


}


@media (max-width: 575px) {
    .vision-mission-text h3 {
        font-size: 20px;
        line-height: 28px;
        width: 100%;
    }

    .vision-mission-text span {
        font-size: 13px;
    }

    .vision-mission-box h6 {
        font-size: 20px;
        line-height: 28px;
    }

    .vision-mission-box p {
        font-size: 14px;
        line-height: 22px;
    }

    .our-story-text h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .our-story-text p {
        font-size: 14px;
        line-height: 22px;
    }

    .ab2-box p {
        font-size: 18px;
    }

    /* .ads-bnr-left {
        margin-top: 100px;
    } */

    .header-top-box {
        gap: 2px;
    }

    .header-top-box p {
        font-size: 11px;
    }

    .banner-box h3 {
        font-size: 14px;
        width: 100%;
        padding: 10px;
        background: none !important;
        line-height: normal;
    }

    .banner-box {
        min-height: auto;
    }

    .banner-box h1 {
        line-height: normal;
        font-size: 35px;
        width: 100%;
    }
    /* inner banner */
    .inr-banner-box, .abt-bnr-bg-box {
        min-height: 140px;
    }
    .inr-banner-box{
        padding-left:0px;
    }
    .inr-banner-box ul{
        margin-bottom: 5px;
    }
    .inr-banner-box ul li a {
        font-size: 14px;
        text-shadow: 1px 2px 4px #000;
    }
    .inr-banner-box h3 {
        font-size: 25px;
        line-height: normal;
        text-shadow: 1px 2px 4px #000;
    }
    /* inner banner end */

    .text-box h3 {
        font-size: 18px;
    }

    .text-box h3 img {
        width: 30px;
        height: 34px;
    }

    /* .ads-video-section {
        min-height: 140px;
    } */

    .wcu-box {
        width: 100%;
    }

    .wcu-small-containerBox {
        flex-direction: column;
    }

    .wcu-box {
        height: auto;
        padding: 20px;
    }

    .wcu-box h5 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .wcu-box p {
        width: 100%;
    }

    .common-section.wcu-section {
        margin-bottom: 10px;
    }

    /* .ads-bnr-left {
        display: none;
    } */

    .common-section.ads-video-section {
        margin-bottom: 20px;
    }

    .ads-bnr-right {
        margin-bottom: 0px;
    }

    /* .common-section.ads-bnr-section {
        padding: 30px 0px;
    } */

    .compfeat-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .compfeat-box {
        padding: 20px 20px;
    }

    .subscribe-box .subscribe-form .common-btn {
        width: 98%;
        font-size: 13px;
    }

    .subscribe-box .subscribe-form {
        border-radius: 10px;
    }

    .abt-bnr-bg-box {
        background-position: center right;
        background-size: cover;
        /* background: linear-gradient(90deg,rgba(255, 121, 188, 1) 0%, rgba(255, 205, 230, 1) 30%, rgba(245, 242, 210, 1) 70%, rgba(201, 210, 255, 1) 100%); */
    }

    .pagination-box ul li a {
        width: 25px;
        height: 25px;
        font-size: 13px;
    }

    .ab2-slider.owl-carousel {
        top: 80%;
    }
    .subscribe-box .subscribe-form input{
        width:100%;
    }

    /* product page css */
    .productlist-section .feat-product-img, .productlist-section .feat-product-img-hover {
        height: 180px;
    }

}

/* @media (max-width: 410px) {
    .contact-form {
        padding: 10px;
        border-radius: 10px;
    }

    .cart-icon img {
        width: 40px;
    }

    .btn-cart {
        gap: 5px;
    }

    .nav-btns {
        gap: 5px;
    }

    .head-brand-menu .common-btn {
        font-size: 10px;
    }
} */
@media (max-width: 410px){
    .navbar .navbar-brand{
        width: 85px;
    }
}
.head-icons {
    position: relative;
}
.head-icons span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--main-color);
    position: absolute;
    top: -5px;
    right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.quantity {
    width: calc(11rem / var(--font-body-scale) + var(--inputs-border-width) * 2) !important;
    min-height: calc((var(--inputs-border-width) * 2) + 3.5rem) !important;
}
.tax-note {
    margin: 1.2rem 0 0.6rem auto !important;
}
.cart__checkout-button {
    /* border-radius: 50px !important; */
    background: var(--main-color) !important;
    text-align: center !important;
    padding: 10px 30px !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    transition: var(--transition-05s) !important;
    display: inline-block !important;
    width: 100% !important;
    border-color: transparent !important;
}
.button, .shopify-challenge__button, .customer button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
    padding: 0 3rem;
    cursor: pointer;
    font: inherit;
    font-size: 1rem;
    text-decoration: none;
    color: #fff !important;
    transition: box-shadow var(--duration-short) ease;
    -webkit-appearance: none;
    appearance: none;
    background: var(--main-color) !important;
}

.card--standard>.card__content .card__information {
    padding-left: 20px !important;
}
.card--standard>.card__content .card__information {
    border-top: 1px solid #d9d9d9
}
card-wrapper product-card-wrapper underline-links-hover:hover > .card--standard>.card__content .card__information a {
    color: #000 !important;
}
.media>*:not(.zoom):not(.deferred-media__poster-button), .media model-viewer {
    padding: 60px !important;
}
.button.button--tertiary {
    background: transparent !important;
    color: #111111 !important;
    padding: 10px !important;
    min-width: 0.5rem !important;
    min-height: 0.5rem !important;
}
.product-form__submit {
    margin-bottom: 1rem;
    width: 30%;
}
.product-form__buttons {
    max-width: 44rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}
.sort-by-box {
    display: flex;
    align-items: center;
}
#sort #SortBy:focus {
    box-shadow: none !important;
    /* outline: none !important;
    border: none !important; */
}
@media screen and (min-width: 750px) {
    .cart-item>td+td {
        padding-left: 2rem !important;
    }
    .cart-items td {
        padding-top: 2rem !important;
    }
    .cart__items {
        padding-bottom: 1.5rem !important;
    }
    .section-template--20915611926683__cart-footer-padding {
        padding-top: 0px !important;
        padding-bottom: 20px !important;
    }
    .tax-note {
        margin-bottom: 1.2rem !important;
    }
    cart-remove-button .button {
        min-width: 0.5rem !important;
        min-height: 0.5rem !important;
        padding: 10px;
    }

}

#ProductSubmitButton-template--20915612385435__main {
    min-width: calc(8rem + var(--buttons-border-width) * 1) !important;
    min-height: calc(3rem + var(--buttons-border-width) * 1) !important;
}
.shopify-payment-button__button--unbranded {
    padding: 0 2em!important;
    height: auto;
    min-height: 49px!important;
    font-size: 16px !important;
}
.product__info-wrapper .product__info-container>*+*{
    margin:0px;
}
.product__info-wrapper .product__title{
    margin-bottom:10px;
}
.product__title h1 {
    font-size: 25px;
    color: #e44e82;
    padding-bottom:10px;
    text-transform:uppercase;
    font-family: "Jost", sans-serif;
    border-bottom:1px solid #ddd;
}
.product__info-wrapper .product-form__input .form__label{
    font-size:15px;
    margin-bottom:5px;
}
.product__info-wrapper .product-form__input--swatch .swatch-input__input+.swatch-input__label{
    --swatch-input--size: 1.5rem;
}

/* quantity css start */
.product__info-wrapper .product-form__quantity {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 20px;
}
.product__info-wrapper .product-form__quantity label.quantity__label {
  position: relative;
  width: 100%;
  font-size: 16px;
  color: #3c3c3c;
  margin-bottom: 5px;
}
.product__info-wrapper .product-form__quantity .quantity {
  position: relative;
  height: 46px;
  min-height: 46px !important;
  width: 160px;
}
.product__info-wrapper .product-form__quantity .quantity .quantity__input {
  position: relative;
  font-size: 20px;
}
.product__info-wrapper .product-form__quantity .quantity .quantity__button {
  position: relative;
  width: 40px;
  background-color: #121212;
  opacity: 1;
  color: #fff;
}
.quantity__button:focus-visible, .quantity__input:focus-visible {
  box-shadow: none;
  background-color: transparent;
  scale: none;
}
/* quantity css end */

/* product__accordion css */
.product__accordion.accordion summary {
    padding: 12px 0px;
}
.product__accordion.accordion summary .accordion__title {
    font-size: 18px;
    font-weight: 500;
    color: #000;
}
.product__accordion.accordion .accordion__content {
    padding: 0;
    margin-bottom: 10px;
}
.product__accordion.accordion .accordion__content p {
    position: relative;
    width: 100%;
    font-size: 15px;
    color: #6c6c6c;
    margin-bottom: 10px;
}
/* product__accordion css end */
/* product__media css */
.product__media-wrapper .thumbnail-slider {
    position: relative;
    width: 100%;
}
.product__media-wrapper .thumbnail-slider .thumbnail-list {
    position: relative;
    width: 100%;
}
/* product__media css end*/
/* related-products */
product-recommendations.related-products h2.related-products__heading {
    position: relative;
    width: 100%;
    font-size: 26px;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: "Jost", sans-serif;
}
.related-products .product-card-wrapper .card__heading {
    color: #000;
    font-family: "Jost", sans-serif;
}
@media(max-width:767px){
    #insta-feed {
        padding-top:25px !important
    }
    body #insta-feed h2 {
        font-size:22px !important;
        margin-bottom:15px;
    }
    .navbar-brand {
        height: 80px !important;
    }
    .related-products .product-card-wrapper .card__heading {
        font-size:14px;
    }
    .related-products .product-card-wrapper .price {
        font-size: 14px !important;
        margin-top: 5px !important;
    }
    .related-products .product-card-wrapper .card--standard>.card__content .card__information{
        padding-left:5px !important;
        padding-top:8px;
        padding-bottom:8px;
    }

    .productlist-section .feat-product-img, productlist-section .feat-product-img-hover {
        height:180px
    }
    .productlist-section .feat-product-btm .common-btn {
        padding:10px !important
    }
    .cart-footer-wrapper {
        padding-bottom:0px !important
    }


}
@media(max-width:575px){
    .product__title h1{
        font-size:20px;
    }
    .product__info-wrapper .product-form__buttons {
        flex-wrap: wrap;
    }
    .product__info-wrapper .product-form__buttons .product-form__submit {
        width: 100%;
        margin-bottom: 0;
    }
    .product__info-wrapper .product-form__buttons .shopify-payment-button {
        position: relative;
        width: 100%;
    }

    .common-section.wcu-section .row {
        gap:10px 0px
    }
    .contact-section {
        padding:15px 0px;
    }
      .contact-section textarea.form-control {
        height:100px !important;
      }
}
/* related-products */

.underline-links-hover:hover a {
    text-decoration: none !important;
    color: #e762a7;
}
.media>*:not(.zoom):not(.deferred-media__poster-button), .media model-viewer {
    padding: 0px!important;
}
label.color-option.active{
    border-color: #133252;
}
.price {
    font-size: 1.3rem !important;
}
.button, .shopify-challenge__button, .customer button {
    min-height: auto;
    padding: 10px 10px;
}
.cart__checkout-button {
    min-height: 50px !important;
}
.woocommerce-Tabs-panel p img {
	max-width: 100px;
	display: inline-flex;
	float: left;
	gap: 15px;
}
/*  */
.collection__view-all .button {
    min-height: auto;
    min-width: auto;
    border: 0;
    padding: 10px 20px !important;
    font-size: 16px;
}

/*  */
.pagination-box {
    position: relative;
    width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 20px 0px 0px;
}
nav.pagination-box .product-card {
    position: relative;
    background-color: #ea5da7;
    padding: 10px 16px;
    font-size: 16px;
    color: #fff;
    display: inline-flex;
    border-radius:5px;
}
/*###### Cart page css start #####*/
.is-empty .cart__empty-text {
    font-size: 25px;
    margin-bottom: 15px;
}

.cart-wrapper {
  position: relative;
  width: 100%;
}
.cart-wrapper .page-width {
  position: relative;
  width: 100%;
}
.cart-wrapper .title-wrapper-with-link {
  position: relative;
  width: 100%;
}
.cart-wrapper .title-wrapper-with-link h1.title {
  position: relative;
  font-size: 22px;
  color: #000000;
  text-transform: uppercase;
  font-weight: 600;
}
.cart-wrapper .title-wrapper-with-link .underlined-link {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 0;
  border: 1px solid #3C3C3C;
  color: #3c3c3c;
  font-size: 16px;
}
.cart-wrapper .title-wrapper-with-link .underlined-link:hover {
  background-color: #3c3c3c;
  color: #fff;
}

.cart-wrapper .cart__items {
    position: relative;
    width: 100%;
    padding-bottom: 0;
}
/*  */
.cart-wrapper .cart-items thead tr {
  font-weight: 600;
  letter-spacing: 1px;
  background: #f6f6ff;
  text-transform: uppercase;
}
.cart-wrapper .cart-items td, .cart-wrapper .cart-items th {
  border: 0;
  padding: 10px 20px;
}
.cart-wrapper .cart-items thead tr th {
  position: relative;
  color: #000;
  font-size: 15px;
  letter-spacing: 1px;
}
.cart-wrapper .cart-items{
  border-collapse: collapse;
}
.cart-wrapper .cart-items tr + tr {
  border-top: 1px solid #f5f5f5;
}

.cart-wrapper .cart-items .cart-item .cart-item__media{
  padding: 10px 0;
}
.cart-wrapper .cart-items .cart-item .cart-item__media .cart-item__image-container img {
  height: 150px;
  object-fit: cover;
  object-position: top;
}
.cart-wrapper .cart-items .cart-item .cart-item__details {
  position: relative;
}
.cart-wrapper .cart-items .cart-item .cart-item__details .cart-item__name {
  position: relative;
  width: 100%;
  color: #3c3c3c;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  text-decoration-thickness: 1px;
}

.cart-wrapper .cart-items .cart-item .cart-item__details .product-option {
  position: relative;
  width: 100%;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}
.cart-wrapper .cart-items .cart-item .cart-item__details dl .product-option {
  font-weight: 500;
  font-style: italic;
  font-size: 14px;
  color: #6c6c6c;
}
.cart-wrapper .cart-items .cart-item .cart-item__details dl {
  position: relative;
  width: 100%;
  margin-top: 5px;
}
.cart-wrapper .cart-items .cart-item .cart-item__quantity {
  position: relative;
}
.cart-wrapper .cart-items .cart-item .cart-item__quantity .quantity-popover-container .quantity {
  position: relative;
  height: 40px;
  min-height: 40px;
  width: 140px;
}
.cart-wrapper .cart-items .cart-item .cart-item__quantity .quantity-popover-container .quantity .quantity__input {
  position: relative;
  font-size: 20px;
}
.cart-wrapper .cart-items .cart-item .cart-item__quantity .quantity-popover-container .quantity .quantity__button {
  position: relative;
  width: 40px;
  background-color: #121212;
  opacity: 1;
  color: #fff;
}
.cart-wrapper .cart-items .cart-item .cart-item__quantity .cart-item__error .cart-item__error-text {
  font-size: 12px;
}
.cart-wrapper .cart-items .cart-item .cart-item__quantity .cart-item__error .svg-wrapper {
  width: 1rem;
  margin-top: 0;
}

.cart-wrapper .cart-items .cart-item .cart-item__quantity cart-remove-button .button {width: auto;min-width: auto;min-height: auto;height: auto;color: #db0000;}
.cart-wrapper .cart-items .cart-item .cart-item__quantity cart-remove-button {
  margin-left: 5px;
}
.cart-wrapper .cart-items .cart-item td.cart-item__totals {
  position: relative;
}
.cart-wrapper .cart-items .cart-item td.cart-item__totals .price {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: normal;
}
/*  */
/* cart Footer css */
.cart-footer-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 40px;
}
.cart-footer-wrapper .cart__footer {
  position: relative;
  width: 100%;
  padding: 0;
  padding-bottom: 0px !important;
}
.cart-footer-wrapper .cart__footer .cart__blocks {
  position: relative;
  background-color: #f6f6ff;
  padding: 25px;
}
.cart-footer-wrapper .cart__footer .cart__blocks .totals {
  position: relative;
  width: 100%;
  justify-content: space-between;
}
.cart-footer-wrapper .cart__footer .cart__blocks .totals .totals__total {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000;
}
.cart-footer-wrapper .cart__footer .cart__blocks .totals .totals__total-value {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000;
}
.cart-footer-wrapper .cart__footer .cart__blocks .tax-note {
  position: relative;
  width: 100%;
  text-align: left;
  margin: 0;
  margin-top: 10px;
  font-size: 16px;
}
.cart-footer-wrapper .cart__footer .cart__blocks .cart__ctas {
  position: relative;
  width: 100%;
}
.cart-footer-wrapper .cart__footer .cart__blocks .cart__ctas .cart__checkout-button {
  min-height: 50px;
  font-size: 16px;
  text-transform: uppercase;
}

[aria-label="Pay now"] {
    background: var(--main-color) !important;

}

.product__accordion details .accordion__content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}
.product__accordion .summary__title .accordion__title {
    font-family:Manrope,sans-serif !important;
}
.product__accordion details[open] .accordion__content {
  opacity: 1;
}

.product__accordion summary {
  cursor: pointer;
}

.custom-filter {
    padding:10px 0px
}
.custom-filter .inner-col {
    display: flex;
    justify-content: space-between;
}

.custom-filter .inner-col h2{
    font-size:1rem
}
.discounts__discount {
   font-size: .7rem;
    background: rgb(232, 78, 142);
    width: fit-content;
    padding: 5px 10px;
    border-radius: 15px;
    color: #fff;
}
.discounts__discount > .icon {
   
    width: .85rem !important;
    height: .85rem !important;
    margin-right: 0.3rem !important;
    color: #fff !important;
}
/* cart footer end */

/* Responsive css start */
@media(min-width:768px) and (max-width:991px){
  .cart-wrapper .page-width{
    padding: 0;
    padding-left:10px;
    padding-right:10px;
  }
  .page-width {
        padding: 0 2rem;
    }
      slider-component.page-width {
        padding: 0 2rem !important;
    }

        .cart__items {
     
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .section-template--20915611926683__cart-items-padding .title-wrapper-with-link {
        padding-left:2rem;
        padding-right:2rem;
    }
}
@media(max-width:767px){
  .cart-wrapper .page-width{
    padding:0px;
    padding-left:10px;
    padding-right:10px;
  }
  .cart-footer-wrapper .page-width {
    padding: 0;
  }
  .cart-wrapper .cart-items thead tr {
    display: none;
  }
  .cart-wrapper .cart-items .cart-item {
    padding: 15px 0;
    display: grid;
    grid-template: repeat(2, auto) / repeat(4, 1fr);
    position: relative;
    gap: 3px;
    margin-bottom:0px;
  }
  .cart-wrapper .cart-items .cart-item .cart-item__media {
    width: 160px;
    grid-row: 1 / 5;
    margin-right: 5px;
    padding: 0 !important;
  }
  .cart-wrapper .cart-items .cart-item .cart-item__details {
    grid-column: 2 / 5;
    width: auto;
    padding:0px;
  }
  .cart-wrapper .cart-items .cart-item .cart-item__quantity {
    grid-column: 2 / 5;
    grid-row: 3;
    padding:0px;
  }
  .cart-wrapper .cart-items .cart-item td.cart-item__totals {
    grid-column: 2 / 5;
    text-align: left;
    justify-content: start;
    padding:0px;
    display: none;
  }

  .product-form__buttons {
    gap:15px !important;
  }
}
@media(max-width:575px){
  .cart-wrapper .cart-items .cart-item .cart-item__media{
    width: 100px;
  }
  .cart-wrapper .cart-items .cart-item .cart-item__media .global-media-settings img {
    width: 100%;
  }
  .cart-wrapper .is-empty .button {
    font-size: 16px;
    min-height: auto;
    padding: 15px 10px;
  }
  .cart-wrapper .title-wrapper-with-link .underlined-link{
    padding: 8px 10px;
    font-size: 14px;
  }
  .cart-wrapper .cart-items .cart-item .cart-item__quantity .quantity-popover-container .quantity{
    max-width: 130px;
    height: 40px !important;
    min-height: 40px !important;
  }
}

/* order */
.ContainerQueryStyle17 ._1h3po421._1h3po423._1h3po422._1fragemn2 img {
    object-position: top;
}
/* Featured collection css start */
@media(max-width:575px){
    product-recommendations.related-products h2.related-products__heading{
        font-size: 20px !important;
        margin-bottom: 15px;
    }
    .collection__title.title-wrapper{
        margin-bottom: 20px !important;
    }
    .collection__title.title-wrapper h2.title{
        font-size: 20px !important;
    }
    .card--standard>.card__content .card__information {
        padding-left: 10px !important;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-right: 10px !important;
    }
    .card--standard>.card__content .card__information .card__heading{
        font-size: 16px !important;
    }
    .card--standard>.card__content .card__information .card-information>.price{
        font-size: 14px !important;
        margin-top: 5px !important;
    }
}
@media(max-width:479px){
   .rv-order-level-actions .rv-btn-link {
        color:#fff !important
    }
}
/* Featured collection css end */

/*###### Cart page css end #####*/

/*###### Search page css start ####*/
@media(min-width:750px){
  .template-search .page-width{
    max-width:100%;
    padding-left:20px;
    padding-right:20px;
  }
}

.product-card-wrapper button.swym-advanced-wishlist-collections {
  position:relative;
  width: 40px;
  height: 40px;
  background-color: #cbe6ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0px 1px 8px rgb(0 0 0 / 15%);
}
.product-card-wrapper button.swym-advanced-wishlist-collections .swym-advanced-wishlist-collections-social-count {
  position: absolute;
  top: 5px;
  right: 3px;
  font-size: 10px;
}

.template-search .product-card-wrapper .card--media .card__inner {
  position: relative;
  width: 100%;
  height: 400px;
}
.template-search .product-card-wrapper .card--media .card__content {
  padding-left: 0px;
  padding-right: 0px;
}
.template-search .product-card-wrapper .card--media .card__content .card__heading {
  font-size: 16px;
  color: #272727;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.template-search .product-card-wrapper .card--media .card__content .card__heading a {
  color: inherit;
  text-decoration: none;
}

@media(max-width:575px){
  .template-search .product-card-wrapper .card--media .card__inner{
    height: 200px;
  }
  .template-search .product-card-wrapper .card--media .card__content {
    padding-left: 10px;
    padding-right: 10px;
  }
  .template-search .product-card-wrapper .card--standard>.card__content .card__information{
    padding-left: 5px !important;
  }
  .template-search .product-card-wrapper .card--media .card__content .card__heading{
    font-size: 13px;
  }
  .template-search .product-card-wrapper .card--media .card__content .price {
    font-size: 13px !important;
  }
}


/*  */
.pagination-wrapper ul.pagination__list li a {
  text-decoration: none;
  position: relative;
  width: 44px;
  height: 44px;
  background-color: #ededed;
  font-size: 16px;
}
.pagination-wrapper ul.pagination__list li a:after {
  display: none;
}
.pagination-wrapper ul.pagination__list li a.pagination__item--current {
  background-color: #183551;
  opacity: 1;
  color: #fff;
}
.pagination-wrapper ul.pagination__list li a .svg-wrapper{
  padding: 0;
  margin: 0;
}
.pagination-wrapper ul.pagination__list li a .svg-wrapper .icon-caret{
  height: .8rem;
}

/*  */
.facets__display {
  background-color: #fff !important;
  width: 40rem;
  z-index:9 !important;
}

/* search page Filter hide end */

.facets__wrapper .facets__heading,.facets__wrapper .facets__summary,.facets__wrapper .facets__display .facets__header{
  font-size:16px
}
.facets__wrapper .facets__display .facets__price .field__input{
  padding:10px;
  height:auto;
  font-size:16px;
  border: 1px solid #c3c3c3;
}
.facets__wrapper .facets__display .facets__price .field__label{
  font-size:16px;
  top:10px
}
.facets__wrapper .facets__display .facets__price .field__input::placeholder{
  font-size:16px
}
.facets__wrapper .facets__list .facets__item .facet-checkbox,.facets__wrapper .facets__display .facets__header .facets__reset,.facet-filters .facet-filters__label,.facet-filters .facet-filters__sort,.product-count .product-count__text{
  font-size:16px
}

/* search input css */
/*  */
.template-search {
    padding-left: 40px;
    padding-right: 40px;
}
.template-search predictive-search .field:before {
    box-shadow: none;
    border: 0;
}
.template-search predictive-search .field:after {
    box-shadow: none;
}
/*  */
.template-search .template-search__search .field {
  border: 1px solid #b1b1b1;
}
.template-search .template-search__search .search__input + .field__label {
  font-size: 16px;
  top: 0;
}
.template-search .template-search__search {
  margin-bottom: 30px;
  margin-top: 0px;
}
.template-search .template-search__header {
  margin-bottom: 0;
}
.template-search .template-search__search .search__input {
  font-size: 16px;
  box-shadow: none;
  outline: none;
}
.template-search .template-search__search .predictive-search {
  background-color: #fff;
}
/* checkbox */
.facets__wrapper .facets__display .facets__header {
  padding: 10px 20px;
}
.facets__wrapper .facets__list {
  padding: 10px 20px;
}
.facets__wrapper .facets__list .facets__item {
  position: relative;
  padding: 5px 0px;
}
.facets__wrapper .facets__list .facets__item .facet-checkbox {
  padding: 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.facets__wrapper .facets__list .facets__item .facet-checkbox .svg-wrapper {
    left: 0px;
    top: 6px;
}
.facets__wrapper .facets__list .facets__item .facet-checkbox span {
  text-decoration: none;
}
/* color */
.facets__wrapper .facets__list .facets__item .swatch-input-wrapper label.swatch-input__label span.swatch {
    width: 18px;
}

/* price */
.facets__wrapper .facets__display .facets__price {
  padding: 10px 20px;
}
.facets__wrapper .facets__display .facets__price .field .field__input:not(:placeholder-shown)~.field__label, .facets__wrapper .facets__display .facets__price .field .field__input:focus~.field__label {
  font-size: 12px;
  left: 10px;
  top: -2px;
}
.facet-filters .facet-filters__sort {
  outline: none;
  outline-offset: 0;
  box-shadow: none;
}
/* filter active */
.active-facets.active-facets-desktop {
  padding: 10px 0px;
  margin: 0;
}
.active-facets.active-facets-desktop facet-remove {
  position: relative;
  padding-right: 5px;
  padding-bottom: 5px;
}
.active-facets.active-facets-desktop facet-remove .active-facets__button {
  margin: 0;
  padding:0px;
}
.active-facets.active-facets-desktop facet-remove .active-facets__button .active-facets__button-inner {
  color:#000;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  box-shadow: 0px 0px 8px 2px rgb(133 133 133 / 22%);
}
.active-facets.active-facets-desktop facet-remove.active-facets__button-wrapper {
  padding-top: 0;
}
.active-facets.active-facets-desktop facet-remove.active-facets__button-wrapper .active-facets__button-remove {
  font-size: 14px;
  padding: 3px 10px;
  border: 1px solid #ff4f4f;
  background-color: #ff4f4f;
  color: #ffffff;
  border-radius: 30px;
  text-transform: uppercase;
}
.active-facets.active-facets-desktop facet-remove.active-facets__button-wrapper .active-facets__button-remove * {
  font-size: 12px;
}
@media(max-width:991px){
    .facets-wrapper .facets__disclosure {
        margin-right: 10px;
    }
    .facets-wrapper .facets__disclosure summary.facets__summary {
        margin-bottom: 10px;
        font-size: 14px;
    }
    ..product__info-container .product-form {
        margin: 1rem 0 !important;
    }
    .product-form__submit {
        width: 100% !important;
    }
    .shopify-payment-button {
        width: 100%;
    }
    .feat-product-btm {
        padding: 10px !important;
    }
    .product-form__buttons {
        gap: 0px;
    }
}

@media(max-width:749px){
    .template-search {
        padding-left: 0px;
        padding-right: 0px;
    }
  .mobile-facets__inner{
    background-color: #fff !important;
  }
  .facets-container{
    padding-bottom:15px;
  }
  .mobile-facets__wrapper .mobile-facets__open {
    position: relative;
  }
  .mobile-facets__wrapper .mobile-facets__open span {
    font-size: 14px;
    font-weight: 500;
  }
  .mobile-facets__wrapper .mobile-facets__close {
    width: 30px;
    height: 30px;
  }
  /*  */
  .mobile-facets__wrapper .mobile-facets__header {
    padding: 10px 15px;
  }
  .mobile-facets__wrapper .mobile-facets__header * {
    font-size: 15px;
  }
  .mobile-facets__wrapper .mobile-facets__main {
    padding-top: 15px;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__summary {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__summary .icon-arrow {
    width: 20px;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__sort .select__select {
    font-size: 15px;
    height: auto;
    box-shadow: none;
    outline: none;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__footer {
    padding: 10px 15px;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__footer button.button {
    height: auto;
    font-size: 16px;
    min-height: auto;
    padding: 12px 10px !important;
    background-color: #a9d2f9;
    color: #272727;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__footer .mobile-facets__clear-wrapper {
    border: 1px solid #000;
    color: #000;
    font-size:16px;
  }
  /* color */
    .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .mobile-facets__item .facets__label.mobile-facets__label {
        padding: 3px 10px;
    }
    .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .mobile-facets__item .facets__label.mobile-facets__label label.swatch-input__label span.swatch {
        width: 20px;
    }
  /*  */
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu button.mobile-facets__close-button {
    padding: 12px 10px;
    border-bottom: 1px solid #ddd;
    font-size:15px;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .mobile-facets__item {
    position: relative;
    padding: 5px 0px;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .mobile-facets__item label.facets__label {
    padding: 8px 10px;
    position: relative;
    display: flex;
    align-items: center;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .mobile-facets__item label.facets__label .facet-checkbox__text {
    font-size: 14px;
    word-break: break-word;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .mobile-facets__item label.facets__label .icon-checkmark{
    left: 13px;
    top: 10px;
  }

  /* price */
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .mobile-facets__info {
    padding: 10px 10px;
    font-size: 14px;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .facets__price {
    padding: 10px 10px;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .facets__price .field .field__label {
    font-size: 16px;
    top: 10px;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .facets__price .field .field__input {
    padding: 10px;
    height: auto;
    font-size: 16px;
    box-shadow: none;
    outline: none;
    border: 1px solid #c3c3c3;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .facets__price .field .field__input:not(:placeholder-shown)~.field__label, .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .facets__price .field .field__input:focus~.field__label {
    font-size: 12px;
    left: 10px;
    top: -2px;
  }
  /* remove filter */
  .active-facets.active-facets-mobile{
    padding: 10px 0;
    margin: 0;
  }
  .active-facets.active-facets-mobile facet-remove {
    position: relative;
    padding-right: 5px;
    padding-bottom: 5px;
  }
  .active-facets.active-facets-mobile facet-remove .active-facets__button {
    margin: 0;
    padding: 0;
  }
  .active-facets.active-facets-mobile facet-remove .active-facets__button .active-facets__button-inner {
    font-size: 15px;
    letter-spacing: .5px;
    padding: 4px 12px;
    color:#000;
    box-shadow: 0 0 8px 2px #85858538;
  }
  .active-facets.active-facets-mobile facet-remove.active-facets__button-wrapper {
    margin-left: 0;
  }
  .active-facets.active-facets-mobile facet-remove.active-facets__button-wrapper .active-facets__button-remove {
    font-size: 14px;
    padding: 3px 10px;
    border: 1px solid #ff4f4f;
    background-color: #ff4f4f;
    color: #fff;
    border-radius: 30px;
    text-transform: uppercase;
  }
  .active-facets.active-facets-mobile facet-remove.active-facets__button-wrapper .active-facets__button-remove * {
    font-size: 12px;
  }
  .product__media-wrapper slider-component:not(.thumbnail-slider--no-slide) {
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .product__media-list .product__media-item {
        width: 100% !important;
    }
}
@media(max-width:575px){
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .facets__price .field .field__input{
    min-width: 70px;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .facets__price .field+.field-currency{
    margin-left: 1rem;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__footer .mobile-facets__clear-wrapper{
    min-width: 50%;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__footer button.button{
    min-width: 46%;
  }
}

/*###### Search page css end ####*/

/* new css add start */
.productlist-left {
    position: sticky;
    width: 100%;
    background-color: #f6f6ff;
    border: 1px solid #e9e9e9;
    padding: 20px 10px;
    top: 130px;
}
.productlist-left .accordion-item .accordion-body {
    padding-left: 8px;
    padding-right: 8px;
}
.productlist-left .accordion-item .accordion-header .accordion-button {
    padding-left: 8px;
    padding-right: 8px;
}

.no-product-wrap {
    position: relative;
    width: 100%;
    text-align: center;
}
.no-product-wrap p {
    position: relative;
    font-size: 25px;
    color: #000;
}
.collection__title.title-wrapper h2.title {
    position: relative;
    width: 100%;
    font-size: 26px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-family: "Jost", sans-serif;
}

/* cms content css start */
.cms-content{
    position: relative;
    width: 100%;
}
.cms-content h1 {
      font-family: "Jost", sans-serif;
}
.cms-content h2{
   font-family: "Jost", sans-serif;
    position: relative;
    width: 100%;
    font-size:1.35rem;
    color: #111111;
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 500;
    margin-top:25px;
}
.cms-content p a{
    font-weight:600;
}
.cms-content p {
    position: relative;
    width: 100%;
    color: #514646;
    font-size: 16px;
    margin-bottom: 14px;
}
.cms-content h3 {
    font-family: "Jost", sans-serif;
    position: relative;
    width: 100%;
    color: #111111;
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 500;
}
.cms-content h4{
     font-family: "Jost", sans-serif;
    position: relative;
    width: 100%;
    color: #111111;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}
.cms-content h5{
     font-family: "Jost", sans-serif;
    position: relative;
    width: 100%;
    color: #e74a87;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}
.cms-content ul {
    position: relative;
    width: 100%;
    display: block;
    margin-bottom: 15px;
    padding-left: 15px;
}
.cms-content ul li {
    position: relative;
    width: 100%;
    list-style: disc;
    color: #514646;
    font-size: 16px;
    padding: 3px 0px;
}

.footer-links li a.active {
    color: var(--pink-color);
}

/* new css add end */

#insta-feed {
    padding: 60px 0px 0px;
}

#insta-feed h2 {
    color: #111;
    font-size: 32px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: Jost, sans-serif;
}

.successForm.feedback.note-success {
    text-align: center;
    margin-top: 20px;
}
.drawer__close .svg-wrapper {
    height: 1.35rem !important;
    width: 1.35rem !important;
}
.drawer__footer .tax-note.caption-large.rte {
    font-size:1rem
}

.cart-item__details .cart-item__name {
    font-size:1.15rem
}
.cart-item__details .product-option {
    font-size:1.1rem
}
.cart-item__totals .cart-item__price-wrapper .price {
    font-size:1.2rem !important
}
.cart-drawer__footer .totals__total {
    font-size:1.25rem
}
.cart-drawer__footer .totals__total-value {
    font-size:1.25rem
}
.cart-item__details>*+* {
    margin-top: .2rem;
}
.drawer__heading {
    font-size:1.55rem;
}

.quantity {
    width: calc(11rem / var(--font-body-scale) + var(--inputs-border-width) * 2) !important;
    min-height: calc((var(--inputs-border-width) * 2) + 2.5rem) !important;
}
@media (min-width:768px){
    .custom-filter {
        display:none;
    }
}



@media screen and (min-width: 750px) {
  .banner--medium:not(.banner--adapt) {
    min-height: 45rem;
  }
  .product__info-wrapper {
    padding: 0 0 0 2rem !important;
   }
       .cart-item__media {
        width: 4rem !important;
    }
        .cart-items td {
        padding-top: 1rem !important;
    }

    .cart-item>td+td {
        padding-left: .5rem !important;
    }
}

@media (min-width:1025px) and (max-width:1360px){
        .product--small .thumbnail-list.slider--tablet-up .thumbnail-list__item.slider__slide {
        width: calc(20% - .8rem) !important;
    }
}
    
@media (min-width:1361px) {
        .product--small .thumbnail-list.slider--tablet-up .thumbnail-list__item.slider__slide {
        width: calc(20% - .8rem) !important;
    }
}

@media (min-width:1360px){
    .cart-drawer .cart-item {   
    grid-template: repeat(1, auto) / repeat(3, 1fr);
    gap: .1rem;
    margin-bottom: 0;
}

.quantity {
    width: calc(8rem / var(--font-body-scale) + var(--inputs-border-width) * 2) !important;
   min-height: calc((var(--inputs-border-width) * 2) + 2rem) !important;
}

.drawer__inner {
    width: 22rem;
}
.drawer__heading {
    font-size: 1.15rem;
}
.cart-item__details .product-option {
    font-size: .9rem;
}
.cart-item__totals .cart-item__price-wrapper .price {
    font-size: .9rem !important;
    letter-spacing: .5px;
}
.quantity__button {
    width: calc(2.5rem / var(--font-body-scale)) !important;
}
.quantity__input {
    font-size:1.2rem
}
.quantity-popover-container {
        width: auto;
        max-width: 18rem;
    }
.cart-drawer__footer .totals__total {
    font-size: 1.1rem;
}
.cart-drawer__footer .totals__total-value {
    font-size: 1.1rem;
}
.cart-item__name:hover{
    color:#111
}

.drawer__footer .tax-note.caption-large.rte {
    font-size:.8rem
}

}


.cart-drawer .cart-item {
   
    grid-template: repeat(1, auto) / repeat(3, 1fr);
    gap: .1rem;
    margin-bottom: 0;
}
.cart-notification  {
    position:fixed !important;
    box-shadow: 0px 0px 14px #4848481c !important;
    -webkit-box-shadow: 0px 0px 14px #4848481c !important;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header-section .navbar {
    flex-wrap: nowrap;
  }

  .header-section .nav-menu {
    flex: 1 1 auto;      /* let it take remaining space instead of auto-centering */
    margin: 0 auto;
  }

  .header-section .navbar-nav-scroll {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
  }

  .header-section .nav-item .nav-link {
    white-space: nowrap;
    font-size: 13px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .head-brand-menu {
    flex-shrink: 0;      /* stop icons from squeezing the nav */
  }
}

If you paste the CSS file, I can replace this with the exact rule that's causing the push instead of a broad override.

Claude works directly with your codebase

.cart-notification-wrapper{
    z-index: 99 !important;
}
cart-notification .cart-notification-wrapper{
    position:relative;
    z-index: 99 !important;
}
.cart-notification-wrapper:is(.page-width)>.cart-notification {
    background-color: #fff;
    top: 100px;
}

@media(max-width:749px){
      .cart-notification-wrapper:is(.page-width)>.cart-notification {
        top:100px !important
    }
        .cart-notification .cart-notification-product {
            padding-top:0px !important
        }
    .cart-notification {
        border-width: 0 var(--popup-border-width) var(--popup-border-width);
        max-width:100% !important;
        right: 2.2rem;
        padding: 1.5rem !important;
    }

      .cart-notification .button-label {
        font-size:.9rem !important
      }
      .cart-notification .cart-notification__heading {
        font-size:1rem !important
      }
       .cart-notification .cart-notification-product__name {
              font-size:1.15rem !important
       }
          .cart-notification .product-option {
            font-size:.9rem
          }

          .cart-notification .cart-notification-product {
            padding-bottom:1rem
          }

          .cart-notification .cart-notification__close {
    margin-top: -1.5rem !important;
    margin-right: -2rem !important;
    
}
.cart-notification .button{
    padding:6px 10px !important;
    font-size:.9rem !important;
}
.subscribe-box .form__message {
    position:relative !important;
    padding: 5px 10px 10px;
    left:0px !important;
    top:0px !important
}
}

@media screen and (min-width: 750px) {
    .cart-notification-wrapper:is(.page-width)>.cart-notification {
        top:120px !important
    }
        .cart-notification .cart-notification-product {
            padding-top:0px !important
        }
    .cart-notification {
        border-width: 0 var(--popup-border-width) var(--popup-border-width);
        max-width: 20rem !important;
        right: 2.2rem;
        padding: 1.5rem !important;
    }

      .cart-notification .button-label {
        font-size:.9rem !important
      }
      .cart-notification .cart-notification__heading {
        font-size:1rem !important
      }
       .cart-notification .cart-notification-product__name {
              font-size:1.15rem !important
       }
          .cart-notification .product-option {
            font-size:.9rem
          }

          .cart-notification .cart-notification-product {
            padding-bottom:1rem
          }

          .cart-notification .cart-notification__close {
    margin-top: -1.5rem !important;
    margin-right: -2rem !important;
    
}
.cart-notification .button{
    padding:6px 10px !important;
    font-size:.9rem !important;
}
}

