@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");






/* HEADER :: DESKTOP & MOBILE VIEW :: START  */





:root {
    --vg-primary-green: #035C56;
    --vg-dark-green: #035C56;
    --vg-light-green: #7FE6B3;
    --vg-red: #FC425B;
    --vg-accent-green: #4BC586;
    --vg-white: #ffffff;
    --vg-light-gray: #f8f9fa;
    --vg-medium-gray: #6c757d;
    --vg-dark-gray: #495057;
    --vg-border-radius: 8px;
    --vg-transition: all 0.3s ease;
    --heading-color: #035C56;
}

.text-green {
    color: var(--vg-primary-green);
}

.heading-green {
    color: var(--heading-color);
}

.header-style-1 .header-middle-ptb-1 {
    overflow: visible;
    background-color: rgb(3, 92, 86);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 35px 65px 20px;
}


.header-container {
    width: 100%;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    column-gap: 2rem;
}

.logo-wrapper {
    position: relative;
    flex-shrink: 0;
    display: block;
    width: 270px;
    height: 56px;
}

.logo-wrapper .logo-img {
    inset: 0px;
    /* pointer-events: none; */
    position: absolute;
    object-fit: cover;
    object-position: 50% 50%;
    max-width: none;
    width: 100%;
    height: 100%;
}

.search-wrapper {
    /* grid-template-rows: max-content; */
    line-height: 0;
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-grow: 1;
    justify-content: center;
}

.search-container {
    width: 100%;
    position: relative;
}

.header-actions {
    overflow: visible;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    padding: 0px;
}


@media (max-width: 768px) {
    .header-action-2 .header-action-icon-2>a img {
        width: 20px;
        height: 21px;
    }
}

@media (min-width: 769px) {
    .header-action-2 .header-action-icon-2>a img {
        width: 25px;
        height: 25px;
    }
}





.header-action-2 .header-action-icon-2>a span {
    font-size: 14px;
    color: #7aff8c;
}

.logo.logo-width-1 {
    margin-right: 2rem;
    line-height: 0;
}


/* Promotional Banner */
.small-screen-view-promo-banner {
    background-color: var(--vg-primary-green);
    color: var(--vg-dark-green);
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--vg-transition);
}

.small-screen-view-promo-banner:hover {
    background: linear-gradient(135deg, var(--vg-primary-green), var(--vg-dark-green));
    color: var(--vg-white);
}


/* Logo */


.small-screen-view-checkout-btn {
    background: var(--vg-red);
    color: var(--vg-white);
    padding: 12px 24px;
    border: none;
    border-radius: var(--vg-border-radius);
    cursor: pointer;
    transition: var(--vg-transition);
    font-size: 16px;
}

.desktop-screen-view-checkout-btn {
    background: var(--vg-red);
    color: var(--vg-white) !important;
    padding: 12px 12px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--vg-transition);
    font-size: 16px !important;
}

.small-screen-view-checkout-btn:hover,
.desktop-screen-view-checkout-btn:hover {
    background: var(--vg-white);
    color: var(--vg-red) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.small-screen-view-cart-container {
    position: relative;
    background: var(--vg-white);
    padding: 11px 4px;
    border-radius: var(--vg-border-radius);
    color: var(--vg-dark-green);
    cursor: pointer;
    transition: var(--vg-transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.small-screen-view-cart-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.small-screen-view-cart-badge {
    background: var(--vg-primary-green);
    color: var(--vg-white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: -8px;
    right: -8px;
}




.header-action-2 .header-action-icon-2.main-cart-div {
    background-color: #fff;
    border-radius: 13px;
    height: 48px;
    align-items: center;
    padding: 0 8px;
}

.header-action-2 .header-action-icon-2>a {
    line-height: 0;
}

.header-action-2 .header-action-icon-2:last-child a {
    line-height: 0;
}

.header-action-2 .header-action-icon-2>a span.pro-count {
    background-color: #FC425B !important;
    color: #fff !important;
}

@media only screen and (max-width: 992px) {
    .header-action-2 .header-action-icon-2>a {
        margin-right: 0;
    }

    .header-action-2 .header-action-icon-2>a span.pro-count {
        right: -14px;
    }

    .header-action-2 .header-action-icon-2.main-cart-div {

        height: 0px;

    }
}




.small-screen-view-features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.small-screen-view-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--vg-dark-gray);
    font-size: 14px;
}

.small-screen-view-feature-icon {
    width: 24px;
    height: 24px;
    background: var(--vg-primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vg-white);
    font-size: 12px;
}

.small-screen-view-trustpilot-stars {
    color: #00b67a;
    font-size: 16px;
}



@media (max-width: 992px) {



    .small-screen-view-promo-banner {
        font-size: 12px;
        padding: 8px 15px;
    }




    .small-screen-view-checkout-btn {
        padding: 7px 28px;
        font-size: 16px;
        border-radius: 25px;
    }

    .small-screen-view-cart-container {
        /* min-width: 50px; */
        height: 36px;
        width: 45px;
        border-radius: 13px;
        justify-content: start;
        align-items: center;
        font-size: 0;
        padding: 0px;
    }



    .small-screen-view-mobile-search-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }



}


.header-action-2 .header-action-icon-2.main-cart-div>a span.cartlabel {
    color: #035C56 !important;
}




/* HEADER :: DESKTOP & MOBILE VIEW :: END  */










.my-account-nav-container {
    margin-top: 25px;
}

.my-account-nav-item {
    padding: 6px;
    border: 1px solid #b1b1b1;
    border-radius: 5px;
    width: 48%;
    color: #4a4848;
}

.my-account-nav-item.active {
    background-color: var(--fv-main-website-theme);
    color: white;
}

.my-account-nav-item.active .my-account-nav-item-icon {

    color: white;
}

.my-account-nav-item-text {
    font-weight: bold;
    margin-left: 5px;

}

.my-account-nav-item-icon {
    color: var(--fv-main-website-theme);
}


.points-container {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid;
    padding: 10px;

    color: white;
}

.cp-points {
    color: gold;
}

.bg-pattern-1 {
    background-color: #06004f;
    opacity: 0.8;
    background-size: 32px 32px;
    background-image: repeating-linear-gradient(45deg, #1e1165 0, #1e1165 3.2px, #06004f 0, #06004f 50%);
}

.bg-pattern {
    background-color: #06004f;
    opacity: 0.8;
    background-image: repeating-radial-gradient(circle at 0 0, transparent 0, #06004f 8px), repeating-linear-gradient(#1e116555, #1e1165);
}

@media screen and (min-width: 768px) {
    .my-account-nav-item {
        width: 100%;
        border: none;
        max-width: 285px;
    }
}

.cust-nav-pane {
    display: none;
}

.cust-nav-pane.shown {
    display: block;
}

.order-list-summary-table {
    width: 100%;
}

.order-list-summary-table td {
    padding-left: 0px;
    padding-right: 5px;
    padding-top: 0px;
    padding-bottom: 0px;
    border: none;
    color: #4a4848;
}

.order-list-items-table {
    width: 100%;
}

.order-list-items-table td {
    padding-left: 0px;
    padding-right: 5px;
    padding-top: 0px;
    padding-bottom: 0px;
    border: none;
    color: #4a4848;
}

.order-list-items-table .qty-td {
    text-align: center;
}

.order-list-items-img {

    height: 60px;
    width: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

b {
    font-weight: bold;
}


.wishlist-items-wrapper .wishlist-item:not(:first-child) {

    border-top: 1px solid #E4E6EF;

}

.wi-image {}

.wi-image-container {
    padding: 10px;
}

.wi-image-container img {
    height: 150px;
    width: 150px;
    object-fit: contain;
    object-position: center;
    aspect-ratio: 3/2;
}

.wi-name {
    font-size: 1rem;
}

@media only screen and (min-width: 600px) {
    .wi-image {
        max-height: 150px;
    }

    .wi-name {
        font-size: 1.25rem;
    }
}

.points-container {
    display: none;
}

#acc-points-load-more-btn {
    display: none;
}

.cart-points-container {
    display: none;
}

.main-cart-summary-container {
    background-color: white;
    border-top: 1px solid #dcdcdc;
    padding-top: 18px;
}

/*                 .payment-options .nav-item{
                   padding: 10px 10px 0px 10px ;
                border-top-left-radius: 5px;
                border-top-right-radius: 5px;
                border-top: 1px solid #cccccc;
                border-left: 1px solid #cccccc;
                border-right: 1px solid #cccccc;
                width: 125px;
                text-align: center;
            }
           .payment-options .nav-item:has(.nav-link-pay.active){
                      border-top: 1px solid #009933;
                border-left: 1px solid #009933;
                border-right: 1px solid #009933;
                     box-shadow: 4px -1px 2px 0px #aaaaaa;
            }
*/

.nav-link-pay {
    padding: 10px 10px 0px 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-top: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
}

.nav-link-pay.active {
    border-top: 1px solid #009933;
    border-left: 1px solid #009933;
    border-right: 1px solid #009933;
    box-shadow: 4px -1px 2px 0px #aaaaaa;
}

.shipping-options {
    border-top: 1px solid #dcdcdc;
    padding-top: 20px;
}

.shipping-option-item {
    border-radius: 5px;
    /*border: 1px dashed black;*/
    width: 100%;
    padding: 10px 10px 10px 18px;
    margin-top: 10px;

    /*box-shadow: 0px 0px 8px 0px #aaaaaa;*/
}

.shipping-option-item:not(:last-child) {
    border-bottom: 1px dashed #e4e3e3;
}

.shipping-description {
    display: none;
}

.shipping-description.active {
    display: block;
}

.payment-options {
    border-top: 1px solid #dcdcdc;
    padding-top: 20px;
}

.payment-option-item {
    border-radius: 5px;
    /*border: 1px dashed black;*/
    width: 100%;
    padding: 10px 10px 10px 18px;
    margin-top: 10px;

    /*box-shadow: 0px 0px 8px 0px #aaaaaa;*/
}

.payment-option-item:not(:last-child) {
    border-bottom: 1px dashed #e4e3e3;
}

.payment-description {
    display: none;
}

.payment-description.active {
    display: block;
}


.payment-methods-tab-content {
    padding: 10px;
    /*box-shadow: 0px 0px 8px 0px #aaaaaa;*/
}


.cust-address-option-item {
    border-radius: 5px;
    /*border: 1px dashed black;*/
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    box-shadow: 0px 0px 8px 0px #aaaaaa;
}

@media (min-width: 992px) {
    .shipping-description {
        width: 380px;
    }
}

.checkout-shopping-cart-img {
    height: 75px;
    width: 75px;
    padding: 5px;

}

.checkout-shopping-cart-img img {
    object-fit: contain;
    object-position: center;
}

@media (min-width: 992px) {
    .order-details-column {
        border-left: 1px solid #dcdcdc;
        padding-left: 45px;
        margin-left: 18px;
    }
}

@media (max-width: 991px) {
    .order-details-column {
        border-top: 1px solid #dcdcdc;

    }
}

span.cart-item-name {
    line-height: 1;
}

.checkout-order-items td {
    border: none;
    padding: 0px 0px;
}

:root {
    scroll-behavior: auto !important;
}

.checkout-redeem-points-input {
    width: 100px;
    padding: 0px;
    height: 24px;
    border: none;
    border-bottom: 1px solid #e1e1e1;
    border-radius: 0px;
    text-align: center;
}

.checkout-redeem-points-container {
    background-color: #cceede63;
    padding: 8px 13px;
    border-radius: 6px;
    border: 1px solid #3bb77e;
    text-align: left;
}

.points-lottie-container {


    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    padding: 0px;
    margin: 0px;

}


.breadcrumb-container-style {
    color: #000;
    font-weight: 12;
    font-size: 10px;
}

.breadcrumb-container-style span {
    padding-left: 5px;
    padding-right: 5px;
}

.breadcrumb-container-style span::before {
    font-family: uicons-regular-straight !important;
    font-style: normal;
    font-weight: bold !important;
    font-variant: normal;
    text-transform: none;
    line-height: 2 !important;
    -webkit-font-smoothing: antialiased;
    content: "\002F";
    vertical-align: central;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
}

.breadcrumb a {
    color: #000;
}

.page-header.breadcrumb-wrap {
    background-color: transparent;
    border: none;
}


.fv-breadcrumb-link {
    color: #000000 !important;
    white-space: nowrap;
}

.fv-breadcrumb-stlye {
    color: var(--fv-main-website-theme) !important;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
}

.fv-breadcrumb-container {
    font-size: 10px;
    overflow-x: auto;
    width: 100vw;
    display: flex;
    flex-flow: row;
    padding: 2px;
    margin-top: 5px;
    align-items: center;
    padding-bottom: 5px;
}

.fv-breadcrumb-container .fv-breadcrumb-item {
    display: flex;
}

@media (min-width: 600px) {
    .fv-breadcrumb-container {
        padding-top: 5px;
    }
}

@media (max-width: 768px) {
    .blog-fv-breadcrumb {
        padding-left: 0vw;
        padding-right: 0vw;
    }
}

@media (min-width: 769px) {
    .blog-fv-breadcrumb {
        padding-left: 10vw;
        padding-right: 10vw;
    }
}

/* .fv-breadcrumb-container .fv-breadcrumb-item:first-child .fv-breadcrumb-link {
    color: #3BB77E !important;
    font-weight: 600 !important;
    font-size: 14px;
} */


@media (min-width: 769px) {
    .pv-bought-together .product-cart-wrap {

        height: 318px !important;

    }

}

@media (max-width: 768px) {
    .pv-bought-together .product-cart-wrap {

        height: 360px !important;

    }

}


.pv-bought-together .product-cart-wrap .product-img-action-wrap {

    height: 120px;

}

.pv-bought-together .product-img img {
    height: 100px;
}

button,
a {
    cursor: pointer;
}

.variants-container {
    position: relative;
}

.variants-stack {
    border: 1px solid #ececec;
    height: 100%;
    position: absolute;
    width: 100%;
    top: -13px;
    z-index: -1;
    margin-left: 4px;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .product_listing-container {

        padding-right: .25rem !important;
        padding-left: .25rem !important;

    }
}



.product_listing-container:hover .variants-stack {

    /*transform: scale(1.2);*/
    border: 1px solid #DEF9EC;
    top: -20px;

}


.variants-count {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 8px;
    font-weight: bold;
}

.variant-expanded {
    overflow-x: scroll;
}

.product-img-div {
    height: 200px;
    width: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.product-cart-wrap .product-img-action-wrap .product-img img {
    width: 100%;
}

.product-img img {
    height: 200px;
    width: 200px;
    object-fit: contain;
    object-position: center;
    aspect-ratio: 3/2;
}

@media (max-width: 768px) {
    .product-img-div {
        height: 130px;
        width: 130px;
    }

    .product-img img {
        height: 130px;
        width: 130px;
        object-fit: contain;
        object-position: center;
        aspect-ratio: 3/2;
    }

}

.fv-card-heading {
    background-color: #f0f0f0;
    color: #4a4848;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-weight: bold;
}

.fv-card-container {
    padding: 10px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    border: 1px solid #dbdbdb;

    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    margin-left: auto;
}


/*             .slick-track{
                    width: 100vw !important;
             }*/


.slick-track {
    display: flex !important;
    /*justify-content: space-evenly;*/

}

.slick-slide {
    height: inherit !important;
    margin-left: 2px;
}





.cat-slider-img {
    height: 120px;
    width: 120px;
}

.cat-slider-img img {
    object-fit: contain;
    object-position: center;
}

.brand-slider-img {
    height: 150px;
    width: 150px;
    /*background-color: white;*/
}

.brand-slider-img img {
    object-fit: contain;
    object-position: center;
    aspect-ratio: 3/2;

}

/* .4-in-1-sect-img{
    width: 18%;
}
.4-in-1-sect-img img{
    object-fit: contain;
    object-position: center;
} */

/*.wbs_mobile-hide{
    display: none
}
.wbs_desktop-hide{
    display: none
}

@media screen and (min-width: 700px) {
      .wbs_desktop-show{
         display: block;
     }   
}

@media screen and (max-width: 640px) {
     .wbs_mobile-show{
         display: block;
     }    */

/*.hero-slider-1 .single-hero-slider {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
}*/



input[type=checkbox]:checked {
    accent-color: var(--fv-main-website-theme);
    background-color: var(--fv-main-website-theme);
    border-color: var(--fv-main-website-theme);
}




section.subscribe-to-mailing-list {
    background-color: var(--fv-main-website-theme);
    padding: 8px;
    color: white;
}

.stml-input {
    border: 0;
    border-radius: 50px 0 0 50px;
    padding-left: 58px;
    background: url(../imgs/theme/icons/icon-plane.png) no-repeat 25px center;
}

.sml-submit {
    border: 0;
    border-radius: 50px;
    font-weight: 700;
}

.sml-butn-container {
    background-color: #fff;

    position: relative;
    z-index: 4;
}

.newsletter .newsletter-inner {
    border-radius: 0;
    padding: 55px 26px;
}

.sticky-bar.stick {
    border-bottom: none;
}

.product-stock_status {

    font-size: 10px;
}

.In-Stock {
    color: green;
}

.Out-Of-Stock {
    color: red;
    font-weight: bold;
}

.product-stock_message {
    color: red;
    font-size: 8px;
}

.pv-stock-details .product-stock_status {
    font-size: 14px !important;
}

.pv-stock-details .product-stock_message {
    font-size: 10px !important;
}

.form-check-label {
    cursor: pointer;
}

.top-badge-slider {
    height: 24px;
}

@media only screen and (max-width: 991px) {
    .top-badge-slider-before {
        overflow: hidden;
        white-space: nowrap;
    }
}

@media only screen and (min-width: 992px) {
    .top-badge-slider-before {
        display: flex !important;
        justify-content: space-around;
    }
}

.global-search-mobile {
    border-radius: none;
    padding: 5px 15px 5px !important;
    height: 45px;
}

.global-search-container {
    padding: 0px 5px 0px 5px;
}

.header-bar-quick-search {
    /*max-width: 1000px !important;*/
    height: 38px !important;
}

.header-bar-quick-search:focus {
    background: #ffffff;
}

.header-bar-quick-search::placeholder {
    color: #035C56;
}

.header-bar-quick-search-img {
    height: 35px;
}

.header-bar-quick-search-no-img {
    height: 35px;
    width: 35px;
}

.plist-img-h {
    height: 150px !important;
}

.filter-section-view-less {
    max-height: 150px;
    overflow-y: auto;
    padding: 5px;
}

.filter-section-view-less::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #FFF;
    /* background-image: -webkit-gradient(linear, 40% 0%, 75% 84%,
        from(var(--fv-main-website-theme)),
        to(var(--fv-main-website-theme)),
        color-stop(.6,var(--fv-main-website-theme))) */
    background-image: -webkit-gradient(linear, 40% 0%, 75% 84%,
            from(var(--fv-main-website-dark-theme)),
            to(var(--fv-main-website-dark-theme)),
            color-stop(.6, var(--fv-main-website-dark-theme)))
}

.filter-section-view-less::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
    border-radius: 10px;
}

.filter-section-view-less::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

.selected-filter-badge-item-wrap {
    padding: 5px;
    border-radius: 5px;
    background-color: gainsboro;
    margin-right: 2px;
    margin-bottom: 2px;
}

.selected-filter-badge-item-wrap>.badge-filter-name,
.badge-filter-remove {
    font-weight: bold;
}

.selected-filter-badge-item-wrap[data-type='category'] {
    background-color: var(--fv-main-website-theme) !important;
    color: white;
}

.selected-filter-badge-item-wrap[data-type='brand'] {
    background-color: #db8cd7 !important;
    color: white;
}

.pname-listing {
    /* white-space: nowrap; 
      width: 100%; 
      overflow: hidden;
      text-overflow: ellipsis; */
}

.pname-listing-div {
    text-align: center !important;
}

.pbrand-listing {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-align: center;
}

.product-cart-wrap .product-content-wrap .latest-from_blog-short-desc {
    text-align: left;
}

.pname-listing {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

.blog-name-listing {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 4 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    line-height: 1.5em;
    max-height: calc(1.5em * 4);
    /* 4 lines */
}




.pname-listing a {
    color: #253D4E;
    line-height: 1 !important;
    font-size: 12px;
    font-weight: 400;
}

.pname-listing .name {
    color: #253D4E;
    line-height: 1 !important;
    font-size: 12px;
    font-weight: 400;
}

.old-price-listing {
    text-decoration: line-through !important;
    color: #B6B6B6 !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    display: block !important;
}

.prodt-brand {
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 20px;
}

.prodt-quantity {
    font-size: 0.75rem;

}



/*------------ Product cart wrapper :: Start ------------------ */


.prodt-regular_price {
    text-decoration: line-through !important;
    color: #B6B6B6 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    display: block !important;
}

@media only screen and (max-width: 768px) {
    .prodt-regular_price {
        font-size: 10px !important;
    }
}


@media (min-width: 769px) and (max-width: 991px) {
    .prodt_card-add_to_cart {
        padding: 6px 14px;
    }
}

@media only screen and (max-width: 768px) {
    .prodt_card-add_to_cart {
        padding: 6px 25px;
    }
}

@media only screen and (min-width: 992px) {
    .prodt_card-add_to_cart {
        padding: 6px 15px;
    }
}

.prodt_card-add_to_cart {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 100px;
    white-space: nowrap;
    flex-shrink: 0;
}

.prodt_list-add_to_cart {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 78px;
    white-space: nowrap;
    flex-shrink: 0;
}

@media only screen and (max-width: 768px) {
    .prodt_list-add_to_cart {
        padding: 6px 10px;
    }
}


@media (min-width: 769px) and (max-width: 991px) {
    .prodt_list-add_to_cart {
        padding: 6px 14px;
    }
}


@media only screen and (min-width: 992px) {
    .prodt_list-add_to_cart {
        padding: 6px 15px;
    }
}


/* .product-cart-wrap .product-content-wrap .prodt_name_list {
    text-align: left !important;
} */

/* .prodt_name_list a{
    color: #253D4E ;
    line-height: 1 !important;
    font-size: 14px;
    font-weight: 700;
} */


.floverfy-product-listing-card-brand-name {
    text-decoration: none;
    font-size: 10px;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-align: left;

}

.floverfy-product-listing-card-brand-name a {
    color: #c3c3c3 !important;
}


/*-------------- Product cart wrapper :: Start ---------------- */


.primary-sidebar .sidebar-widget {

    padding: 0px;
    box-shadow: none;
    border-radius: 0px;
    border: 0px;

}



.toast-top-right {
    top: 12px;
}

.cart-items-wrapper-fv {
    max-height: 72vh;
    padding: 20px !important;
    overflow-y: auto;
}

.cart-dropdown-wrap {

    padding: 0px;

}

.account-dropdown {
    padding: 30px 20px 27px;
}

.shopping-cart-footer {
    padding: 20px !important;
}

.cart-items-wrapper-fv::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #FFF;
    background-image: -webkit-gradient(linear,
            40% 0%,
            75% 84%,
            from(var(--fv-main-website-theme)),
            to(var(--fv-main-website-theme)),
            color-stop(.6, var(--fv-main-website-theme)))
}

.cart-items-wrapper-fv::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
    border-radius: 10px;
}

.cart-items-wrapper-fv::-webkit-scrollbar {
    width: 7px;
    background-color: #F5F5F5;
}

/* .fv-checkbox{
    height: 18px;
    display: inline-block;
} */
.fv-checkbox-label {
    display: inline-block;
}

.fv-custom-scroll-bar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #FFF;
    background-image: -webkit-gradient(linear,
            40% 0%,
            75% 84%,
            from(var(--fv-main-website-theme)),
            to(var(--fv-main-website-theme)),
            color-stop(.6, var(--fv-main-website-theme)))
}

.fv-custom-scroll-bar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
    border-radius: 10px;
}

.fv-custom-scroll-bar::-webkit-scrollbar {
    width: 7px;
    background-color: #F5F5F5;
}

.header-action-2 .header-action-icon-2:hover .cart-dropdown-wrap {
    z-index: 101;
}

/* Customer Account START*/
.edit-icon {
    color: #3e5379;
}

/* Customer Account END*/
.hotline {
    display: flex;
}

.hotline-container {
    display: block;
}

@media only screen and (max-width: 1460px) {
    .hotline-container {
        visibility: hidden;
        display: none !important;
        /*background-color: red;*/
    }




}

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

    .header-wrap {
        justify-content: center !important;
    }
}


.fv-add-to-cart-btn {
    position: relative;
    display: inline-block;
    padding: 6px 20px 6px 20px;
    border-radius: 4px;
    background-color: #DEF9EC;
    font-size: 14px;
    font-weight: 700;
}

.fv-product-card-bottom {
    margin-bottom: 15px;
}


/*FV DESC START*/
/* .fv-trumbo-desc li{
     list-style-type: initial;
} */
.fv-trumbo-desc ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.fv-trumbo-desc ol {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    list-style-type: decimal;
}



.fv-trumbo-desc h1,
.fv-trumbo-desc h2,
.fv-trumbo-desc h3,
.fv-trumbo-desc h4,
.fv-trumbo-desc h5,
.fv-trumbo-desc h6 {
    font-size: 1.643em;
    line-height: 1.043em;
    /*    color: #333e48;*/
    margin-bottom: 1em;
}

.fv-trumbo-desc h3 {
    font-size: 18px;
    font-weight: 600;
}

.fv-trumbo-desc h2 {
    font-size: 1.643em;
    line-height: 1.043em;
}

.fv-trumbo-desc h4 {
    font-size: 14px;
    font-weight: 600;
}

.fv-trumbo-desc .clearfix::after {
    content: "";
    display: table;
    clear: both
}

.fv-trumbo-desc .alignleft {
    display: inline;
    float: left;
    margin-right: 1.618em
}

.fv-trumbo-desc .alignleft.flip {
    float: right !important;
    margin-left: 1.618em !important
}

.fv-trumbo-desc .alignright {
    display: inline;
    float: right;
    margin-left: 1.618em
}

.fv-trumbo-desc .alignright.flip {
    float: left !important;
    margin-right: 1.618em !important
}

.fv-trumbo-desc .aligncenter {
    clear: both;
    display: block;
    margin: 0 auto
}

.fv-trumbo-desc p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

/*FV DESC END*/


#pv-shareBtn {
    background-color: transparent;
    border: none;
    display: inline-block;
    font-weight: bold;
}

/*expander*/

.expander-hidden-content {
    transition: 0.5s ease-in-out;

}

.expander-content.hidden {
    display: none;
}

.expander-read-more {
    display: inline-block;
    cursor: pointer;
}

/*expander end*/


/* cart and checkout */
.upsell-img img {
    height: 38px;
    width: 38px;
    object-fit: contain;
    object-position: center;
    aspect-ratio: 3/2;
}

.upsell-item {
    border-bottom: 1px solid #e5e5e5;
    /*border-radius: 5px;*/
    padding: 5px;
}

.upsell-container {
    gap: 5px;
}

/*cart and checkout end*/




/* ---------------- BLOG HOME PAGE :: START -------------- */



.page-link.active {
    background-color: #035C56;
    border: 1px solid #035C56;
    color: #7EFC8F;
    z-index: 3;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.375rem 0.75rem;
}


.non_tab-page-link.active {

    background-color: #666666 !important;
    border-color: #666666 !important;
    color: white !important;
    z-index: 3;
    position: relative;
    display: flex;
    padding: 0.375rem 0.75rem;
}

.non_tab-page-link {
    padding: 0.375rem 0.75rem !important;
    border: 1px solid #dddddd !important;
    color: #333333 !important;
}

.page-link {
    padding: 0.375rem 0.75rem;
}

.page-link {
    color: #035C56;
    background-color: #7EFC8F;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.page-link:hover {
    border: 1px solid #7EFC8F;
    color: #035C56;
}

.page-link.active:hover {
    color: #50cd89;
}

.page-item.active .page-link {
    color: #035C56 !important;
    background-color: #7EFC8F !Important;
    border: solid 1px #7EFC8F !Important;
}




.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    justify-items: start;
}

.blog-card {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: #035C56;
    margin-bottom: 10px;
}

.blog-excerpt {
    color: #035C56;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-excerpt p {
    color: #035C56;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.blog-date-author {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #707882;
}

.blog-read-time {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #707882;
}

@media (max-width: 768px) {
    .blog-date-author {
        font-size: 10px;
    }

    .blog-read-time {
        font-size: 10px;
    }
}

.clock-icon {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .blog-categories {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


}

@media (max-width: 1024px) and (min-width: 769px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ---------------- BLOG HOME PAGE :: END -------------- */







/*PRODUCT LISTING VIEW START*/
.filter_mobile_toggle {
    background: #F2F7FF;
    border: none;
    color: #035C56;
    padding: 0px;
    border-radius: 0px;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    cursor: pointer;
}

.website-data-page-heading {
    font-size: 26px;
    color: #035C56;
    font-weight: 700;
    line-height: 1.2;
    min-height: 1.5rem;
    font-family: "Poppins" !important;
}

.brand-series-links-container {
    /*border: 1px solid;*/
    font-size: 0.6rem;
    padding-right: 2px;
    /*border-radius: 5px;*/
    height: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2px 4px 2px 4px;
    border-right: 1px solid;
}

.brand-series-links-container:first-child {
    border-left: 1px solid;
}

.brand-series-link {}

.brand-series-row {
    /*gap: 2px;*/
}

.simple-title {
    font-size: 1rem;
    font-weight: bold;

}

/*PRODUCT LISTING VIEW END*/






.star-cb-group {
    /* remove inline-block whitespace */
    font-size: 0;
    /* flip the order so we can use the + and ~ combinators */
    unicode-bidi: bidi-override;
    direction: rtl;
    /* the hidden clearer */
}

.star-cb-group * {
    font-size: 2rem;
}

.star-cb-group>input {
    display: none;
}

.star-cb-group>input+label {
    /* only enough room for the star */
    display: inline-block;
    overflow: hidden;
    text-indent: 9999px;
    width: 1em;
    white-space: nowrap;
    cursor: pointer;
}

.star-cb-group>input+label:before {
    display: inline-block;
    text-indent: -9999px;
    content: "☆";
    color: #888;
}

.star-cb-group>input:checked~label:before,
.star-cb-group>input+label:hover~label:before,
.star-cb-group>input+label:hover:before {
    content: "★";
    color: #e52;
    text-shadow: 0 0 1px #333;
}

.star-cb-group>.star-cb-clear+label {
    text-indent: -9999px;
    width: .5em;
    margin-left: -.5em;
}

.star-cb-group>.star-cb-clear+label:before {
    width: .5em;
}

.star-cb-group:hover>input+label:before {
    content: "☆";
    color: #888;
    text-shadow: none;
}

.star-cb-group:hover>input+label:hover~label:before,
.star-cb-group:hover>input+label:hover:before {
    content: "★";
    color: #e52;
    text-shadow: 0 0 1px #333;
}

.blog-list-title {
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 66px;
}

.blog-img-container {
    width: 100%;
    height: 200px;
    text-align: center;


}

.blog-img {
    /* height: 200px;
    width: 200px;
    object-fit: contain; */

    height: 100%;
    object-fit: fill;
    object-position: center;
}

.blog-home-img {
    height: 200px;
    object-position: center;
    aspect-ratio: 3 / 3;
}

.blog-list-short-desc {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    height: 141px;
}

.latest-from_blog-short-desc {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    height: 98px;
}

.blog-list-card {
    width: 100%;
    height: 545px;
}

@media screen and (min-width: 768px) {
    .blog-list-card {
        width: 300px;
    }
}

.feedback-button {
    position: fixed;
    right: 0;
    bottom: 30%;
    height: 85px;
    width: 25px;
    writing-mode: vertical-lr;
    transform: scale(-1, -1);
    background-color: var(--fv-main-website-theme);
    color: #FFF;
    text-align: center;
    padding: 1px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
    z-index: 10;
}

.feedback-button:hover {
    padding-left: 5px;
    width: 35px;
    color: white;
}





.header-style-1.header-style-5 .main-menu>nav>ul>li>a {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
}

.header-style-1.header-style-5 .main-menu>nav>ul>li>a i {
    color: #86e278;
}

.header-style-1.header-style-5 .hotline p {
    color: #333e48 !important;
}

.header-style-1.header-style-5 .hotline p span {
    color: #333e48 !important;
}

.mobile-category-section {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 100px;
}

@media screen and (min-width: 992px) {
    .mobile-category-section {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .desktop-category-section {
        display: none;
    }
}

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

    .header-style-1.header-style-5 .header-bottom-bg-color {
        background-color: #035C56 !important;
    }

}

#category-slider-featured {
    /*    overflow-x: scroll;
    height: 120px;*/
}

.cat-slider-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding-right: 5px;
    padding-top: 5px;
}

.cat-img-container {
    background: #f2f2f2;
    border-radius: 80px;
    width: 80px;
    height: 80px;
    margin: auto;
    position: relative;
}

.cat-img-container-desktop {
    background: #f2f2f2;
    border-radius: 80px;
    width: 150px;
    height: 150px;
    margin: auto;
    position: relative;
}




element.style {
    position: fixed;
    z-index: 2147483647;
}

#scrollUp {
    bottom: 63px !important;
}


.fv-top-notice {
    color: #FFFFFF;
    text-decoration: underline;
    font-size: 20px;
    letter-spacing: 0.46px;
}

@media (max-width: 768px) {
    .fv-top-notice {
        font-size: 12px;
    }
}

.product_listing_view {
    min-height: 500px;
}


/*SEO*/

img.banner-img-bottom {
    object-position: center;
    object-fit: contain;
    height: 100px;
    width: 350px;
}

img.banner-img-top {
    object-position: center;
    object-fit: contain;
    height: 135px;
    width: 600px;
}

@media screen and (min-width: 375px) {
    img.banner-img-top {
        height: 145px;
    }
}

@media screen and (min-width: 540px) {
    img.banner-img-top {
        height: 200px;
    }
}


@media screen and (max-width: 480px) {
    #home-page-flavours .home_page_banner_below-div {
        justify-content: center !important;
    }

    .home_banner_below {
        display: flex !important;
        justify-content: center !important;
    }

}

@media screen and (max-width: 768px) {
    .flavours_heading {
        font-size: 34px;
        text-align: left;
    }
}

@media screen and (min-width: 769px) {
    .flavours_heading {
        font-size: 50px;
        text-align: center;
    }
}


#product-slider-newly_added {
    min-height: 345px;
}

#brand-slider-featured {
    min-height: 150px;
}

.fp-card {
    min-height: 432px;
}

#home-page-flavours {
    /* min-height: 450px; */
}

.footer-link-widget .widget-title {
    font-size: 24px;
    color: #253D4E;
    font-weight: 700;
    line-height: 1.2;
}

.pv-tab-titles {
    font-size: 17px;
    color: #7E7E7E;
}

.pv-variant-selection-h3 {
    color: #29a56c;
    font-size: 14px;
    font-weight: normal;
}

.text-strikethrough {
    text-decoration: line-through !important;
    text-decoration-color: gray !important;
}


.comment-form textarea {
    min-height: 100px;
    padding-top: 15px;
}



@media screen and (min-width: 992px) {
    .prodt-section-title {
        font-size: 50px;
        color: #035C56;
        align-items: center;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .prodt-section-title {
        font-size: 30px;
        color: #035C56;
        align-items: center;
    }
}

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

    .prodt-section-title {
        font-size: 21px;
        color: #035C56;
        align-items: start;
    }

    .faq-section-title {
        font-size: 34px;
        color: #035C56;
        align-items: start;
    }

}

.fv-section-title-1 {
    position: relative;
    border-bottom: 1px solid #ececec;
    font-size: 22px;
    padding-bottom: 20px;
}

.fv-section-title-1::after {
    content: "";
    width: 80px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #BCE3C9;
}

@media only screen and (max-width: 992px) {
    .fv-section-title-1 {
        padding-bottom: 15px;
        font-size: 20px;
    }
}

.fv-section-title-1 .seo-extention-1 {
    font-size: 10px;
}





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

    .below-image-phone-view {
        display: none;
    }

}

.fv-badges-below-image-container {
    display: none;
}



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

    .fv-product-badge-bottom-right {
        margin-bottom: 0px;

    }

    .below-image-phone-view {
        width: 100%;

    }

    .product-image-slider {
        border-radius: 0 !important;
        border: none !important;
    }


    .pname-listing {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 71px;
        margin: 0;
        padding: 0;
        border: 0;
        font-size: 100%;
        font: inherit;
        vertical-align: baseline;
    }


}



/* ---------- PRODUCT VIEW :: COMING SOON AND NOTIFY BUTTON :: START */

.coming_soon-btn {
    background-color: white;
    color: green;
    border: 1px solid green !important;
    transition: background-color 0.3s, color 0.3s;
}

.coming_soon-btn:hover {
    background-color: green !important;
    color: white !important;
}

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

    .coming_soon-btn,
    #pv-notify {
        font-size: 3vw !important;
    }
}

/* For iPads and tablets */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    .coming_soon-btn,
    #pv-notify {
        font-size: 14px !important;
    }
}


/* ---------- PRODUCT VIEW :: COMING SOON AND NOTIFY BUTTON :: END */





/*-------------------- Offcanvas sidebar container :: Start ---------------- */




.view_cart_footer-btn {
    background-color: #ffffff;
    color: #3BB77E;
    border: 2px solid #3BB77E;
}


.cart-upsell-container {
    border: 1px solid #ffffff !important;
    background-color: #ffffff !important;
    box-shadow: 0 1px 6px #0003 !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    position: relative !important;
}


.offcanvas-sidebar-wrap-title {
    color: #535151 !important;
    font-family: Poppins !important;
    font-size: 20px !important;
    font-style: normal !important;
    font-weight: bold !important;
    line-height: 100% !important;
}

.offcanvas .addon-wrapper .addon-inner {
    border: 1px solid #ffffff !important;
    background-color: #ffffff !important;
    box-shadow: 0 1px 3px #0003 !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    position: relative !important;
}

.offcanvas .addon-wrapper .addon-inner .upper {
    position: relative !important;
    display: flex !important;
    padding: 6px 5px 5px !important;
    border-radius: 4px !important;
}

.offcanvas .addon-wrapper .addon-inner .upper .addon-img {
    max-width: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

}

.offcanvas .addon-wrapper .addon-inner .upper .content-wrapper {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    max-width: calc(100% - 95px) !important;
    padding-right: 10px !important;
    margin-top: -6px !important;
}

.offcanvas .addon-wrapper .addon-inner .upper .content-wrapper .title {
    display: flex !important;
    justify-content: flex-start !important;
    margin-bottom: 7px !important;
}

.offcanvas .addon-wrapper .addon-inner .upper .content-wrapper p {
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 13px !important;
    font-weight: 400 !important;
    color: #000000 !important;
}

.offcanvas .plugin-divider {
    margin: 0 10px 10px !important;
    padding: 10px 10px 0 !important;
    border-bottom: 1px solid #e5e5e5 !important;
}




.offcanvas .main-view-cart-item {
    border-bottom: 1px solid #dcdcdc;
}

.offcanvas .main-view-cart-item .shopping-cart-img {
    height: 150px !important;
    width: 120px !important;
    padding: 5px !important;
    overflow: hidden !important;
}

.offcanvas .main-view-cart-item .shopping-cart-img .cart-image {
    max-width: 80px;
    min-width: 80px;
    min-height: 80px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}



.offcanvas .main-view-cart-item .cart-item-name a {
    color: #3BB77E !important;
}

.offcanvas .main-view-cart-item .qty-btn-container {
    width: 30px;
    height: 30px;
    text-align: center;
    border: 1px solid #29a56c;
}

.offcanvas .main-view-cart-item .pv-qty_input {
    width: 60px;
    text-align: center;
}





.offcanvas .addons-display-wrapper .addon-wrapper {
    width: 100% !important;

}


.offcanvas .addon-wrapper .addon-inner {
    border: 1px solid #ffffff !important;
    background-color: #ffffff !important;
    box-shadow: 0 1px 3px #0003 !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    position: relative !important;
}

.offcanvas .addon-wrapper .addon-inner .upper {
    position: relative !important;
    display: flex !important;
    padding: 6px 5px 5px !important;
    border-radius: 4px !important;
}


.offcanvas .addon-wrapper .addon-inner .upper .content-wrapper {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    max-width: calc(100% - 95px) !important;
    padding: 5px !important;
    margin-top: -6px !important;
}

.offcanvas .addon-wrapper .addon-inner .upper .content-wrapper .title {
    display: flex !important;
    justify-content: flex-start !important;
    margin-bottom: 7px !important;
}

.offcanvas .addon-wrapper .addon-inner .upper .content-wrapper p {
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 13px !important;
    font-weight: 400 !important;
    color: #000000 !important;
}







.offcanvas .addon-wrapper .addon-inner .lower {
    clip-path: inset(0 0 -10px 0) !important;
}

.offcanvas .addon-wrapper .addon-inner .lower .lower-content {
    padding: 10px 13px 15px !important;
    border-bottom-left-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}

.offcanvas .addon-wrapper .addon-inner .lower .lower-content .select-title {
    margin-bottom: 8px !important;
}

.offcanvas .addon-wrapper .addon-inner .lower .lower-content p {
    margin: 0 !important;
    color: #3b3e40 !important;
    font-size: 13px !important;
    line-height: 22px !important;
}

.offcanvas .addon-wrapper .options-select {
    position: relative !important;
    max-width: 350px !important;
}

.offcanvas .addon-wrapper .options-select select {
    font-family: sofia-pro, sans-serif !important;
    font-size: 16px !important;
    line-height: 24px !important;
    margin: 0 !important;
    width: 100% !important;
    background-color: #fff !important;
    color: #4d4d4d !important;
    padding: 8px 31px 8px 6px !important;
    border: 1px solid #ddd !important;
    border-radius: 3px !important;
    -o-appearance: none !important;
    -ms-appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.offcanvas .addon-wrapper .options-select svg {
    position: absolute !important;
    top: 50% !important;
    right: 14px !important;
    margin-top: -3px !important;
    pointer-events: none !important;
    color: #4d4d4d !important;
}



.offcanvas .addon-wrapper .addon-inner .lower .lower-content .addon-submit-btn {
    position: relative !important;
    display: flex !important;
    justify-content: left !important;
    margin-top: 20px !important;
}

.offcanvas .addon-wrapper .addon-inner .lower .lower-content .addon-submit-btn .addon-submit {
    border: 0 !important;
    font-weight: 900 !important;

    color: #0F161A !important;
    border-radius: 4px !important;
    margin: 0 0 4px !important;

    min-height: 41px !important;
    min-width: 160px !important;
    cursor: pointer !important;
    font-size: 15px !important;
    line-height: 26px !important;
    font-weight: 600 !important;
    text-align: left !important;
}




.offcanvas .addon-wrapper .addon-inner .upper svg {
    position: absolute !important;
    top: calc(50% - 8.5px) !important;
    right: 16px !important;
    width: 17px !important;
    height: 17px !important;

    transition: all .2s ease-in !important;
}


.rotate180 {
    transition: transform 0.3s ease-in-out !important;
}

.rotate {
    transform: rotate(180deg) !important;
}





/* -------------------- Offcanvas sidebar container :: End ---------------- */



/* RECOMMENDED PRODUCTS ADD :: QUANTITY TYPE BUTTON :: START */

.recomment-prodt-qty-btn-container {
    width: 26px;
    height: 25px;
    text-align: center;
    border: 1px solid #29a56c;
    padding-right: 0px;
    margin-right: 5px;
}

.recomment-prodt-cart-qty-input {
    width: 36px;
    text-align: center;
    border: 0;
    border-radius: 0;
    height: unset;
    padding: 0 !important;
}



/* RECOMMENDED PRODUCTS ADD :: QUANTITY TYPE BUTTON :: END */




/* --------------- Age verification Modal :: Start -------------------- */

@media screen and (max-width: 460px) {
    #age_verify-no-btn {
        margin-bottom: 4px;
    }
}

/* --------------- Age verification Modal :: End ------------------ */




/* --------------- CONTACT PAGE :: ACCORDATION BUTTON STYLE :: STYLE ------------------ */



.nested-accordion__topic-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f1f1f1;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
}

.nested-accordion__question-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    padding: 10px 0px 10px 0px;
    width: 100%;
    text-align: left;
}

.nested-accordion__question-wrapper p {
    color: #181C32;
}

.nested-accordion__question-wrapper-li {
    color: #7E7E7E;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 24px;
}




.icon {
    transition: transform 0.3s ease;
}

.icon.rotate {
    transform: rotate(60deg);
}


.nested-accordion__answer-wrapper {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-out;
}

.nested-accordion__answer-wrapper.open {
    max-height: 200px;
    /* Adjust this value based on your content's maximum height */
}




/* --------------- CONTACT PAGE :: ACCORDATION BUTTON STYLE :: END ------------------ */




/* ------------- CONTACT PAGE :: ATTACHING MULTIPLE FILES ::START --------------------- */



.file-upload-container {
    text-align: center;
}


@media screen and (min-width: 768px) {
    .file-upload-label {
        display: inline-flex;
        align-items: center;
        padding: 10px 294px;
        border: 2px dashed #ccc;
        border-radius: 5px;
        cursor: pointer;
        margin-bottom: 5px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1538px) {
    .file-upload-label {
        display: inline-flex;
        align-items: center;
        padding: 10px 217px;
        border: 2px dashed #ccc;
        border-radius: 5px;
        cursor: pointer;
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 768px) {
    .file-upload-label {
        display: inline-flex;
        align-items: center;
        padding: 10px 110px;
        border: 2px dashed #ccc;
        border-radius: 5px;
        cursor: pointer;
        margin-bottom: 5px;
    }
}


.file-upload-label .icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    fill: #ccc;
}

#file-list {
    width: 100%;
    margin: 0 auto;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #fff;
}

.file-item .file-name {
    flex: 1;

}


.file-name {
    text-align: left;
}

.file-item .attch_file_remove-btn {
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    color: #ccc !important;
    font-weight: bold !important;
    padding: 12px !important;
    background-color: #253D4E !important;
}


.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #000;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    margin-bottom: 5px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.success-message {
    display: flex;
    align-items: center;
    color: green;
    margin-top: 5px;
}

.success-message svg {
    margin-right: 5px;
}

.hidden {
    display: none;
}



/* ------------- ATTACHING MULTIPLE FILES ::END --------------------- */













/* ---------------- PRODUCT LIST FILTERS :: START ------------------- */



/* Hide refine triggers beyond the first 10 on small screens :: Start */
@media screen and (max-width: 1050px) {
    .refine-trigger.visible {
        display: flex !important;
    }

    .refine-trigger.remove {
        display: none !important;
    }
}

@media screen and (max-width: 1190px) {
    .refine-trigger.visible {
        display: flex !important;
    }

    .refine-trigger.remove {
        display: none !important;
    }
}

/* Hide refine triggers beyond the first 10 on small screens :: End */




@media screen and (max-width: 990px) {
    #product_listing_filter {
        display: none !important;
    }
}

@media screen and (min-width: 990px) {
    #fv_filters-div {
        display: none !important;
    }
}

@media (max-width: 990px) {
    .primary-sidebar .sidebar-widget {
        display: block !important;
    }
}


.refinement-options {
    display: flex;
    position: relative;
    /* border-top: 1px solid #707070;
    border-bottom: 1px solid #707070; */
    max-width: 1586px;
    padding: 0;
    background: #fff;
    margin-bottom: 28px;
}

.refine-tools {
    display: flex;
    height: 50px;
    white-space: nowrap;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
}

.fv-attributes_filter_2 {
    display: flex;
    height: 50px;
}


.tool-group {
    cursor: pointer;
    position: relative;
    /* border-top: 1px solid #707070;
    border-bottom: 1px solid #707070; */
}


.refine-trigger.active,
.refine-trigger-inner-search.active {
    color: #6db9c7;
    border: 1px solid #000;
    border-top: 0;
    border-bottom: 1px solid #fff;
    top: 1px;
    z-index: 2;
}

.refine-trigger {
    cursor: pointer;
    position: relative;
    display: inline-flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 1em 0.5em;
    font-size: 14px;
}

.refine-trigger.blocked,
.tool-group.blocked {
    pointer-events: none;
    opacity: .2;
    display: none;
}

.refine-trigger.active i {
    transform: rotate(180deg);
    transition: all .3s ease;
}

.refine.show {
    display: flex;
    top: 48px;
    transition: all .4s ease;
    margin-bottom: 50px;
    z-index: 10;
}

.refine {
    display: none;
    position: absolute;
    width: 100%;
    padding: 10px 1em 1em;
    min-width: 400px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #000;
    z-index: 10;

}








.attributes-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    /* gap: 10px;  */
}

.refine.opened .attributes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.opened {
    min-width: 650px !important;
}

.attribute-items {
    display: flex;
    flex-direction: column;
}

.fv-checkbox {
    display: flex;
    align-items: center;
}

.fv-checkbox .form-check-label {
    display: flex;
    align-items: center;
    word-wrap: break-word;
    white-space: normal;/
}

.fv-checkbox .form-check-input {
    margin-right: 8px;
    border: var(--bs-border-width) solid #8b9eb0;
}

.fv-checkbox .fv_filter_value {
    color: #035c56;
}

.ais-RefinementList-showMore {
    cursor: pointer;
    background: none;
    border: none;
    color: #007bff;
    text-decoration: underline;
    padding: 0;
}

.ais-RefinementList-showMore:hover {
    text-decoration: none;
}

.ais-RefinementList-showMore:disabled {
    cursor: not-allowed;
    color: grey;
}


.filter_show_more-btn,
.filter_show_less-btn,
.series_filter_show_more-btn,
.series_filter_show_less-btn,
.flavour_filter_show_more-btn,
.flavour_filter_show_less-btn,
.attributes_filter_show_less-btn,
.attributes_filter_show_more-btn,
.brands_filter_show_more-btn,
.brands_filter_show_less-btn {
    margin-top: 10px;
    color: #1B94A0;
    background: none;
    border: none;
}





/* ---------------- PRODUCT LIST FILTERS :: END ------------------- */



/* ---------------- FAQ CNTENT :: START ------------------- */


#Faq_content-div {
    padding: 1rem 1.25rem;
}



/* ---------------- FAQ CNTENT :: END ------------------- */




/* ---------------- Shipping Page :: start ---------------- */


/* Existing CSS */
.text-shadow {
    text-shadow: 0px 0px 4px #000000;
}

.super {
    vertical-align: super;
    font-size: 1.5rem;
}

.g-row {
    display: flex;
    /* Use flexbox for desktop */
    gap: 1rem;
    /* Adjust spacing between the columns */
    flex-wrap: wrap;
    /* Ensure items wrap on smaller screens */
}

.g-md-6-col {
    flex: 1;
    /* Make columns take equal space */
    display: flex;
    flex-direction: column;
    /* Ensure inner content stretches vertically */
}

.bg-white {
    background-color: #fff;
    flex: 1;
    /* Ensure these divs take up the full height of their parent */
}

.br-2q {
    border-radius: 0.5rem;
}

.bg-red {
    background-color: #3BB77E;
}

.border-1 {
    border: 1px solid var(--gray-light);
}

.shadow-1 {
    box-shadow: 0 0 5px -2px #8a8a8a;
}

@media (min-width: 768px) {
    .g-md-6-col {
        grid-column: span 6;
        flex: 1;
        /* Ensure equal height in columns */
    }
}

.vc-pattern {
    background: #be0000 url(assets/imgs/vpg/red-tile.jpg);
    background-size: 200px;
}

@media (max-width: 768px) {
    .g-row {
        display: block;
        /* Stack the divs vertically */
    }

    .g-md-6-col {
        width: 100%;
        /* Full width on small screens */
        margin-bottom: 1rem;
        /* Space between stacked columns */
    }

    .heading_content-header {
        font-size: 30px;
    }

    .g-12-col {
        grid-column: span 12;
    }
}

@media (min-width: 768px) {
    .heading_content-header {
        font-size: 50px;
    }
}




/* ---------------- Shipping Page :: End ---------------- */



/* ---------------- What You Need To Know Page :: Start ------------------ */

@media (min-width: 768px) {
    .desktop-line-height {
        line-height: 2.0;
    }
}

@media (max-width: 767px) {
    .need-to-know-content-h1 {
        font-size: 20px !important;
    }

    .need-to-know-content-h2 {
        font-size: 22px !important;
    }


}


/* ---------------- What You Need To Know Page :: End ------------------ */




/* ------------------ PRODUCT VIEW :: PRODUCT INFO :: START ---------------------- */






/* Specifications :: Start */


.non_tab-pv-all_attributes {
    display: none;
}

.toggle-specification-checkbox:checked+.toggle-specification-label+.non_tab-pv-all_attributes {
    display: block;
}

.toggle-specification-checkbox:checked+.toggle-specification-label .specifications_plus_icon {
    transform: rotate(180deg);
    transition: transform 0.4s ease;
}

.toggle-specification-checkbox:not(:checked)+.toggle-specification-label .specifications_plus_icon {
    transform: rotate(0deg);
    transition: transform 0.4s ease;
}

/* Specifications :: End */


/* Shipping :: Start */

.non_tab-pv-shipping-methods {
    display: none;
}


.toggle-shipping-method-checkbox:checked~.toggle-shipping-method-label+.non_tab-pv-shipping-methods {
    display: block;
}


.toggle-shipping-method-checkbox:checked+.toggle-shipping-method-label .shipping_plus_icon {
    transform: rotate(180deg);
    transition: transform 0.4s ease;
}

.toggle-shipping-method-checkbox:not(:checked)+.toggle-shipping-method-label .shipping_plus_icon {
    transform: rotate(0deg);
    transition: transform 0.4s ease;
}

/* Shipping :: End */


/* Review :: Start */

.non_tab-pv-review-content {
    display: none;
}

.toggle-reviews-checkbox:checked~.non_tab-pv-customer_review_summary-heading+.non_tab-pv-review-content {
    display: block;
}

.toggle-reviews-checkbox:checked+.non_tab-pv-customer_review_summary-heading .reviews_plus_icon {
    transform: rotate(180deg);
    transition: transform 0.4s ease;
}

.toggle-reviews-checkbox:not(:checked)+.non_tab-pv-customer_review_summary-heading .reviews_plus_icon {
    transform: rotate(0deg);
    transition: transform 0.4s ease;
}

/* Review :: End */


/* FAQ :: Start */


.faq-content {
    display: none;
}

.toggle-faq-checkbox:checked~.non_tab-pv-faq-heading+.faq-content {
    display: block;
}

.toggle-faq-checkbox:checked+.non_tab-pv-faq-heading .faq_plus_icon {
    transform: rotate(180deg);
    transition: transform 0.4s ease;
}

.toggle-faq-checkbox:not(:checked)+.non_tab-pv-faq-heading .faq_plus_icon {
    transform: rotate(0deg);
    transition: transform 0.4s ease;
}

/* FAQ :: End */






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

    .non_tab-detailed_description h2,
    #non_tab-pv-all_attributes-heading h2,
    #non_tab-shipping-methods-heading h2,
    .non_tab-pv-customer_review_summary-heading h2,
    .non_tab-pv-faq-heading h2 {
        font-size: 1.1rem;
    }

    #non_tab_description_heading {
        font-size: 1.1rem;
    }
}

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

    .non_tab-detailed_description h2,
    #non_tab-pv-all_attributes-heading h2,
    #non_tab-shipping-methods-heading h2,
    .non_tab-pv-customer_review_summary-heading h2,
    .non_tab-pv-faq-heading h2 {
        font-size: 1.2rem;
    }

    #non_tab_description_heading {
        font-size: 1.2rem;
    }
}



.comments-area .review-item-other_non_tab .single-comment {
    border: 1px solid #fff4d2;
    padding: 20px;
}






.customer-review-summary-distribution {
    padding-right: 40px;
    width: auto;
}

@media screen and (min-width: 680px) {
    .customer-review-summary-review {
        padding-left: 40px;
        display: table-cell;
        position: relative;
        text-align: left;
        vertical-align: top;
        width: auto;
    }
}

@media screen and (max-width: 680px) {
    .customer-review-summary-review {
        /* padding-left: 40px; */
        display: table-cell;
        position: relative;
        text-align: left;
        vertical-align: top;
        width: 36%;
    }
}


.customer-review-summary-distribution-content {
    flex-wrap: nowrap;
    justify-content: center;
    position: relative;
}

.customer-review-summary-rating-distribution-content {
    display: table;
    margin-left: 10px;
    margin-right: auto;
}

.customer-review-summary-distribution-row {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    color: black;
    cursor: pointer !important;
    font: inherit;
    text-transform: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: table;
    height: 30px;
    line-height: normal;
    text-align: left;
    white-space: nowrap;
    width: 100%;
}


.customer-review-summary-rating-distribution-stars {
    display: inline-block;
}

.customer-review-summary-rating-distribution-count {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    padding-left: 10px;
}

@media screen and (min-width: 680px) {
    .customer-review-summary-rating-distribution-count-content {
        float: left;
        margin-left: 0;
        margin-right: 0;
        display: block;

        width: 200px;
    }
}

@media screen and (max-width: 680px) {
    .customer-review-summary-rating-distribution-count-content {
        width: 115px;
        display: block;
        margin-left: auto;
        margin-right: auto;

    }
}

.customer-review-summary-rating-distribution-badge-rating {
    color: black;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 80px;
    font-weight: normal;
    line-height: 0.85;
    padding-bottom: 6px;
}

.customer-review-info-wrapper {

    padding-top: 8px;
    padding-bottom: 8px;
    display: inline-block;
    padding-left: 5px;
    vertical-align: middle;
}

.customer-review-creation-info {
    font-size: 14px;
    line-height: 18px;
    text-align: left;
    color: rgb(48, 56, 65);
}

/* #non_tab-last-page {
    padding: 0.375rem 0.75rem !important;
    border: 1px solid #dddddd !important;
} */

#non_tab-prev-btn {
    background-color: #eeeeee;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    margin-right: 0;
    padding: 0.375rem 0.75rem;
    border: 1px solid #dddddd;
}

#non_tab-next-btn {
    background-color: #eeeeee;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    margin-left: 0;
    padding: 0.375rem 0.75rem;
    border: 1px solid #dddddd;
}

.align-items-center {
    align-items: center;
}



/* ------------------ PRODUCT VIEW :: PRODUCT INFO :: END ---------------------- */




/* ------------------ PRODUCT VIEW :: SERVICE PROMOTION DETAILS :: START ---------------------- */


.product-services-promo {
    margin: 0 auto;
}

.product-services-promo__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-services-promo__service {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 20px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

@media (max-width: 900px) {}

@media (max-width: 900px) {
    .product-services-promo__service {
        background: #ffffff;
        border-radius: 12px;
        text-align: left;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.2s ease;
        border: 1px solid #e9ecef;
        min-height: 160px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.product-services-promo__service:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.product-services-promo__headline {
    /* display: flex; */
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.icon-container {
    /* width: 64px;
            height: 64px; */
    width: auto;
    flex-shrink: 0;
}

.product-services-promo p {
    font-size: 24px;
    font-weight: 500;
    color: #035C56;
    margin: 0;
    line-height: 1.3;
}

.product-services-promo__text {
    color: #707882;
    font-size: 18px;
    font-weight: 300;
}


.headphones-3d {
    /* width: 64px;
            height: 64px; */
    width: auto;
    position: relative;
}


@media (max-width: 900px) {
    .product-services-promo__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 500px) {
    .product-services-promo__list {
        grid-template-columns: 1fr;
    }

    .product-services-promo__service {
        padding: 16px 16px;
    }
}


/* ------------------ PRODUCT VIEW :: SERVICE PROMOTION DETAILS :: END ---------------------- */



@media (max-width: 768px) {
    .nicotine-strength-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nicotine-strength-block {
        width: 100% !important;
        margin-bottom: 20px;
    }
}



/* ---------------- Home page :: Product Category Slider :: Start ------------------- */


@media (min-width: 769px) {
    .gradient-section {
        min-height: 358px;
    }
}

@media only screen and (max-width: 768px) {
    .vape-product-category-wrapper {
        background-color: #7AFF8C;
    }

    .vape-section-title {
        display: none;
    }
}

.vape-section-title {
    font-size: 22px;
    margin-bottom: 2rem;
    height: 36px;
    color: #035C56;
}

.gradient-section {
    background: #7AFF8C;
    padding: 40px;
    flex: 2;
    color: #2d5016;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .gradient-section {
        padding: 10px 0px;
    }
}

.shop-now-btn {
    background-color: #ff4757;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

@media only screen and (max-width: 768px) {
    .shop-now-btn {
        padding: 8px 25px;
    }
}

.shop-now-btn:hover {
    background-color: #ff3742;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}

.shop-now-btn:mouseout {
    background-color: #ff4757;
    transform: translateY(0);
    box-shadow: none;
}

.vape-product-category-slider-div .content-first {
    color: #035C56;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .vape-product-category-slider-div .content-first {
        color: #035C56;
        font-size: 35px;
        font-style: normal;
        font-weight: 700;
        line-height: 60px;
        letter-spacing: -1px;
    }
}


.vape-product-category-slider-div .content-second {
    color: #035C56;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
}

@media (max-width: 768px) {
    .vape-product-category-slider-div .content-second {
        color: #035C56;
        font-size: 16px;
        font-weight: 400;
        line-height: 150%;
    }
}

.vape-product-category-slider-div .content-second a {
    text-decoration: underline;
    color: #035C56;
}



@media (min-width: 1025px) {
    .vape-product-category-slider-div {
        display: grid;
        gap: 8px;
        padding: 0;
        grid-template-columns: repeat(2, 1fr);
    }

    .vape-product-category-slider-div .owl-carousel {
        width: 790px;
    }
}

@media (max-width: 767px) {
    .vape-product-category-slider-div {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0;
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 768px) {

    #product-slider-vape_kits_products .owl-dot span,
    #product-slider-disposable_vape_products .owl-dot span,
    #product-slider-e_liquids_products .owl-dot span {
        background-color: #71E381;
    }

    #product-slider-vape_kits_products .owl-dot.active span,
    #product-slider-disposable_vape_products .owl-dot.active span,
    #product-slider-e_liquids_products .owl-dot.active span {
        background-color: #035C56;
    }
}




@media (min-width: 768px) {
    .vape-product-category-slider-div .content-div {
        position: relative;
        background: #7AFF8C;
    }
}

@media (max-width: 767px) {
    .vape-product-category-slider-div .content-div {
        background: #7AFF8C;
    }
}


@media (min-width: 1025px) {
    .vape-product-category-slider-div .content-div .bottom-left {
        position: absolute;
        padding: 0.5rem;
        top: 7rem;
        left: 2rem;
    }
}


@media (max-width: 767px) {
    .vape-product-category-slider-div .content-div .bottom-left {
        padding: 0.5rem;
        top: 7rem;
        left: 2rem;
    }
}

@media (min-width: 769px) {
    .vape-product-category-slider-div .content-div .bottom-left .content-first {
        color: #035C56;
        font-size: 60px;
        font-style: normal;
        font-weight: 700;
        line-height: 60px;
        letter-spacing: -1px;
    }
}

@media (max-width: 768px) {
    .vape-product-category-slider-div .content-div .bottom-left .content-first {
        color: #035C56;
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 60px;
        letter-spacing: -1px;
    }
}



@media (min-width: 768px) {
    .vape-product-category-slider-div .content-div .bottom-left .content-second {
        color: #035C56;
        font-size: 20px;
        font-weight: 400;
        line-height: 150%;
    }
}

@media (max-width: 767px) {
    .vape-product-category-slider-div .content-div .bottom-left .content-second {
        color: #035C56;
        font-size: 18px;
        font-weight: 400;
        line-height: 150%;
    }
}

.vape-product-category-slider-div .content-div a {
    text-decoration: underline;
    color: #035C56;
}


@media (min-width: 768px) and (max-width: 1024px) {
    .vape-product-category-slider-div {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0;
        grid-template-columns: repeat(2, 1fr);
    }

    .vape-product-category-slider-div .owl-carousel {
        width: 100%;
    }

    .vape-product-category-slider-div .content-div .bottom-left {
        padding: 0.5rem;
    }


}








/* ---------------- Home page :: Product Category Slider :: End ------------------- */



/* ---------------- Home page :: About the hayati pro :: Start ------------------- */


/* Hide the checkbox by default */
.toggle-about-hayati-checkbox {
    display: none;
}

/* The style for the label when the checkbox is not checked */
.about-toggle-specification-label {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding: 15px 0;
    border-top: 1px solid #D6E6FF;
}

/* Accordion content hidden by default */
.home-section-about-hayati {
    display: none;
    transition: all 0.3s ease;

}

/* Show the content when the checkbox is checked */
.toggle-about-hayati-checkbox:checked+.about-toggle-specification-label+.home-section-about-hayati {
    display: block;
}


/* Icon rotation animations */
.toggle-about-hayati-checkbox:checked+.about-toggle-specification-label .about-hayati-pro-max-icon,
.toggle-about-hayati-checkbox:checked+.about-toggle-specification-label .about-hayati-pro-ultra-icon,
.toggle-about-hayati-checkbox:checked+.about-toggle-specification-label .about-lost-marry-bm600-icon {
    transform: rotate(45deg);
    transition: transform 0.4s ease;
}

.toggle-about-hayati-checkbox:not(:checked)+.about-toggle-specification-label .about-hayati-pro-max-icon,
.toggle-about-hayati-checkbox:not(:checked)+.about-toggle-specification-label .about-hayati-pro-ultra-icon,
.toggle-about-hayati-checkbox:not(:checked)+.about-toggle-specification-label .about-lost-marry-bm600-icon {
    transform: rotate(90deg);
    transition: transform 0.4s ease;
}

@media (min-width: 768px) {
    .faq-accordions__hayati_pro .faq-accordions__hayati_pro-h2 {
        font-size: 1.5rem;
        color: #035C56;
    }
}

@media (max-width: 767px) {
    .faq-accordions__hayati_pro .faq-accordions__hayati_pro-h2 {
        font-size: 1rem;
        color: #035C56;
    }
}


@media (min-width: 768px) {
    .faq-accordions__hayati_pro {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
    }
}

@media (max-width: 767px) {
    .faq-accordions__hayati_pro {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        column-gap: 1rem;
    }
}




/* ---------------- Home page :: About the hayati pro :: End ------------------- */


/* ---------------- Header Mobile Promotion Div :: Start ----------------- */

.mobile-promotion-div {
    min-height: 38px;
    height: auto;
    padding: 6px 0;
    align-items: center;
    background: var(--bs-red);
}

/* ---------------- Header Mobile Promotion Div :: End ----------------- */






/* --------------- HOME :: FAQ :: START ---------------------  */

.home-faq-faq-container {
    width: 100%;
}

.home-faq-faq-item {
    border-top: 1px solid #E6EFEE;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* .home-faq-faq-item:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        } */

.home-faq-faq-question {
    position: relative;
    padding: 20px 60px 20px 25px;
    background: #F2F7FF;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    display: flex;
}

@media (min-width: 769px) {
    .home-faq-faq-question .title {
        color: #035C56;
        font-size: 26px;
        font-weight: 600;
    }
}

@media (max-width: 768px) {
    .home-faq-faq-question .title {
        color: #035C56;
        font-size: 20px;
        font-weight: 600;
    }
}

.home-faq-faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: #035C56;
    transition: transform 0.3s ease;
}

.home-faq-faq-answer {
    max-height: 0;
    overflow: hidden;
    /* background: #f8f9fa; */
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #555;
    line-height: 1.6;
}

.home-faq-faq-answer p {
    padding: 0 25px 20px;
}

@media (max-width: 600px) {
    .home-faq-faq-answer p {
        padding: 0 0px 20px;
    }
}

/* Checkbox hack for toggle functionality */
.home-faq-faq-checkbox {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

/* .home-faq-faq-checkbox:checked + .home-faq-faq-question {
            background: #eef5ff;
            border-bottom: 1px solid #d0ddf7;
        } */

.home-faq-faq-checkbox:checked+.home-faq-faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.home-faq-faq-checkbox:checked~.home-faq-faq-answer {
    max-height: 300px;
    /* padding: 20px 0 10px; */
}

.home-faq-faq-item:first-child {
    margin-top: 10px;
}

.home-faq-faq-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .home-faq-container {
        padding: 20px 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .home-faq-faq-question {
        padding: 15px 25px 15px 0px;
        font-size: 1.1rem;
    }

    .home-faq-faq-question::after {
        right: 0px;
        font-size: 1.5rem;
    }
}


/* --------------- HOME :: FAQ :: END ----------------------- */


.tp-link-underlined {
    text-decoration: none !important;
}





/* ---------- Owl Carousel Dots Styling :: START --------- */


.owl-dots {
    text-align: center;
    margin-top: 30px;
    padding: 0;
}

.owl-dot {
    display: inline-block;
    margin: 0 2px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 5px 2px !important;
    background: #DBE9FF !important;
    transition: all 0.3s ease;
    position: relative;
}

.owl-dot:hover span {
    background: #9ca3af;
    transform: scale(1.1);
}

.owl-dot.active span {
    background: #BACBE8 !important;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.owl-dot:focus {
    outline: 2px solid #3b82f6;
}






/* Owl Carousel Navigation Styling */



@media (min-width: 769px) {
    .slider-controls-top {
        display: flex;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .slider-controls-top {
        display: block;
    }
}

.slider-controls-top {

    align-items: center;
    margin-bottom: 2rem;
}


@media (max-width: 768px) {
    #custom-nav-product-slider-related {
        display: none;
    }
}

@media (min-width: 769px) {
    #custom-nav-product-slider-related {
        display: flex;
        gap: 1rem;
        position: absolute;
        right: 34px;
        margin-bottom: 30px;
    }
}

@media (min-width: 1200px) {
    #custom-nav-product-slider-related {
        margin-right: 106px;
    }
}




#custom-nav-product-slider-latest_from_blog,
#custom-nav-product-slider-newly_added,
#custom-nav-product-slider-vape_kits_products,
#custom-nav-product-slider-e_liquids_products,
#custom-nav-product-slider-disposable_vape_products,
#custom-nav-product-slider-featured,
#custom-nav-product-slider-related_blog_post,
#custom-nav-product-slider-guides_blog_post {
    display: flex;
    gap: 0.7rem;
}

#product-other-variations-slider .owl-nav {
    display: none;
}

#product-other-variations-slider .owl-dots {
    margin-top: 0px !important;
}

.owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

#custom-nav-product-slider-latest_from_blog::before,
#custom-nav-product-slider-newly_added::before,
#custom-nav-product-slider-vape_kits_products::before,
#custom-nav-product-slider-e_liquids_products::before,
#custom-nav-product-slider-disposable_vape_products::before,
#custom-nav-product-slider-featured::before,
#custom-nav-product-slider-related_blog_post::before,
#custom-nav-product-slider-guides_blog_post::before {
    content: "View all";
    color: #035C56;
    font-size: 18px;
    font-weight: 400;
    margin-right: 5px;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

#product-other-variations-slider .owl-nav:before {
    content: "View all";
    color: #035C56;
    font-size: 18px;
    font-weight: 400;
    margin-right: 5px;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
}


.owl-prev,
.owl-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 50%;
    transition: all 0.2s ease;
    outline: none;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
}

.owl-prev:active,
.owl-next:active {
    background: #f3f4f6;
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.owl-prev:focus,
.owl-next:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.owl-prev span,
.owl-next span {
    font-size: 42px;
    color: #035C56;
    font-weight: 100;
    line-height: 1;
    user-select: none;
}

.owl-prev:hover span,
.owl-next:hover span {
    color: #374151;
}

/* Disabled state */
.owl-prev:disabled,
.owl-next:disabled {
    background: #f9fafb;
    border-color: #e5e7eb;
    cursor: not-allowed;
    box-shadow: none;
}

.owl-prev:disabled span,
.owl-next:disabled span {
    color: #d1d5db;
}


.header-action-2 .header-action-icon-2.main-cart-div>a span.cartlabel {
    color: #035C56 !important;
}


.horrizondal-section-line {
    border: 1px solid #D6E6FF;
}



.pv-pbt_slider .owl-prev {
    position: absolute;
    background-color: var(--bs-body-bg) !important;
    left: 15px;
    top: 17%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pv-pbt_slider .owl-next {
    position: absolute;
    background-color: var(--bs-body-bg) !important;
    right: 15px;
    top: 17%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}




/* ---------- Owl Carousel Dots Styling :: END --------- */






/* ---------- FOOTER :: START -------------- */

.footer {
    background: rgb(3, 92, 86);
    color: white;
    padding: 40px 0 20px;
}

.footer-container {
    margin: 0 auto;
    padding: 0 65px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer-section {
    flex: 1 1 160px;
    min-width: 160px;
    max-width: 220px;
    margin-right: 20px;
}

.footer-section.logo-section {
    flex: 0 0 200px;
    min-width: 200px;
}

.footer-section .footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgb(126, 252, 143);
}

.footer-section ul {
    list-style: outside;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #e8f5e8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section.logo-section h1 {
    font-size: 36px;
    font-weight: bold;
    color: #90EE90;
    margin: 0;
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.contact-item img {
    height: 16px;
    width: 17px;
    margin-right: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border: none;
}

.footer-bottom .copyright {
    font-size: 12px;
    color: #e8f5e8;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-methods img {
    padding: 4px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links span {
    font-size: 14px;
    margin-right: 10px;
}

.social-links img {
    height: auto;
}





/* Media Queries - Cannot be inline */
@media (max-width: 1024px) {
    .footer-content {
        gap: 20px !important;
    }

    .logo-section {
        flex: 0 0 180px !important;
        min-width: 180px !important;
        margin-right: 15px !important;
    }

    .footer-section {
        flex: 1 1 140px !important;
        min-width: 140px !important;
        max-width: 180px !important;
    }

    .logo-section h1 {
        font-size: 28px !important;
    }
}

@media (max-width: 768px) {
    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        /* Two equal columns */
        gap: 20px !important;
        grid-template-areas:
            "logo logo"
            "useful legal"
            "account customer"
            "contact contact";
    }

    /* Assign grid areas */
    .logo-section {
        grid-area: logo;
    }

    .footer-section:nth-child(2) {
        /* Useful links */
        grid-area: useful;
    }

    .footer-section:nth-child(3) {
        /* Customer service */
        grid-area: customer;
    }

    .footer-section:nth-child(4) {
        /* Legal */
        grid-area: legal;
    }

    .footer-section:nth-child(5) {
        /* Account */
        grid-area: account;
    }

    .footer-section:nth-child(6) {
        /* Contact */
        grid-area: contact;
    }

    .footer-section {
        min-width: auto !important;
        max-width: none !important;
        width: 100% !important;
        margin-right: 0 !important;
    }






    .footer-bottom {
        flex-direction: column !important;
        align-items: flex-start !important;
        /* Change from start to flex-start */
    }

    .payment-methods {
        flex-wrap: wrap !important;
    }

    /* Change the order of elements */
    .copyright {
        order: 3;
        /* Move copyright to bottom */
    }

    .payment-methods {
        order: 2;
        /* Move payment methods to middle */
    }

    .social-links {
        order: 1;
        /* Move social links to top */
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px !important;
    }

    .footer-container {
        padding: 0 15px !important;
    }

    .footer-section h3 {
        font-size: 16px !important;
        margin-bottom: 15px !important;
    }

    .payment-methods img {
        height: 29px !important;
    }
}



.social-links a:hover {
    opacity: 0.7 !important;
}

/* ---------- FOOTER :: END -------------- */



/* ------------- ADD TO CART :: SPINNER CONTAINER :: START -------------  */


/* Spinner container */
.add-to-cart-loader {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

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

    /* Spinner wrapper */
    .loadingio-spinner-rolling-1lyybx681or {
        display: inline-block;
        width: 12px;
        height: 9px;
        position: relative;
    }

    /* Animation core */
    .ldio-ebzecr1wk6 div {
        position: absolute;
        width: 12px;
        height: 12px;
        border: 2px solid #fff;
        border-top-color: transparent;
        border-radius: 50%;
        animation: ldio-ebzecr1wk6 0.8s linear infinite;
    }
}

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

    /* Spinner wrapper */
    .loadingio-spinner-rolling-1lyybx681or {
        display: inline-block;
        width: 10px;
        height: 8px;
        position: relative;
    }

    /* Animation core */
    .ldio-ebzecr1wk6 div {
        position: absolute;
        width: 100%;
        height: 100%;
        border: 2px solid #fff;
        /* white spinner (change if background is light) */
        border-top-color: transparent;
        border-radius: 50%;
        animation: ldio-ebzecr1wk6 0.8s linear infinite;
    }
}





/* Keyframes for rotation */
@keyframes ldio-ebzecr1wk6 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Optional: dark spinner for light background buttons */
.prodt_card-add_to_cart.loading .ldio-ebzecr1wk6 div {
    border-color: #000;
    border-top-color: transparent;
}


/* ------------- ADD TO CART :: SPINNER CONTAINER :: END -------------  */





.summary-box {

    background-color: #F2F7FF;
    padding: 25px;
    border-radius: 8px;
    height: fit-content;

}

.summary-box h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #035c56;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.summary-row span:first-child {
    color: #035c56;
}

.summary-row span:last-child {
    font-weight: 600;
    color: #035c56;
}

.free-shipping-bar {
    padding: 15px 0;
    border-radius: 6px;
    text-align: center;
}



.payment-methods {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
}





















.cart-header {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 20px;
    font-weight: 600;
    font-size: 20px;
}

.cart-header .product-col {
    text-align: left;
}

.cart-header .quantity-col,
.cart-header .price-col {
    text-align: center;
    min-width: 100px;
}

.cart-header .quantity-col,
.cart-header .action-col {
    text-align: center;
    min-width: 27px;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
}

.cart-item-name {
    max-width: 515px;
}

.cart-prodt-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.product-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.product-details h3 {
    font-size: 14px;
    font-weight: 500;
    color: #006494;
    margin-bottom: 5px;
    line-height: 1.4;
}

.product-details p {
    font-size: 12px;
    color: #666;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 100px;
    justify-content: center;
}

.quantity-btn {
    width: 24px;
    height: 24px;
    border: 1px solid #006494;
    background-color: white;
    color: #006494;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.quantity-btn:hover {
    background-color: #f0f0f0;
}

.quantity-value {
    font-size: 14px;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.price-section {
    text-align: center;
    min-width: 100px;
}

.price {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.remove-btn {
    width: 24px;
    height: 24px;
    border: none;
    background-color: transparent;
    color: #999;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.remove-btn:hover {
    color: #333;
}

/* Mobile View */
@media (max-width: 768px) {
    .cart-header {
        display: none;
    }

    .cart-item {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 15px 0;
    }

    .cart-prodt-info {
        display: flex;
        flex-direction: row;
        gap: 12px;
        width: 100%;
    }

    .product-image {
        width: 50px;
        height: 50px;
    }

    .product-details {
        flex: 1;
    }

    .product-details h3 {
        font-size: 13px;
        margin-bottom: 3px;
    }

    .product-details p {
        font-size: 11px;
    }

    .mobile-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .quantity-control {
        min-width: auto;
    }

    .price-section {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .desktop-only {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-controls {
        display: contents;
    }

    .mobile-controls .price-section {
        grid-column: 3;
    }

    .mobile-controls .quantity-control {
        grid-column: 2;
    }

    .mobile-controls .remove-btn {
        grid-column: 4;
    }
}


.cart-qty_input {
    width: 40px;
    height: 42px !important;
    border-radius: 0 !important;
    text-align: center;
    color: #035C56;
    background: #F2F7FF;
    border: 1px solid #F2F7FF !important;
}













.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 10px;
}

.rating {
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 4px;
    line-height: 1;
}

.review-count {
    color: #999;
    font-size: 9px;
}

.price {
    color: #035C56;
    font-size: 18px;
    font-weight: 400;
}