/* Home Page Custom Css Start */
.product__items--thumbnail {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;

}


.product__items--thumbnail::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    filter: blur(18px);
    transform: scale(1.2);
    opacity: 0.4;
}


.product__items--img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product__items {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product__items--content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.product-code {
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* .product__items--content__title a {
                    display: block;
                    max-width: 100%;
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                } */


.before-after-box {
    max-width: 520px;
    margin: auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Mobile */
@media (max-width: 768px) {
    .before-after-box {
        margin-top: 30px;
    }
}

.inspire-section {
    padding-bottom: 30px;
    background: #ffffff;
}

.inspire-container {
    max-width: 1320px;
    margin: auto;
    padding: 0 24px;
}

.inspire-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT */
.inspire-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #84ac79;
    margin-bottom: 20px;
}

.inspire-dot {
    width: 8px;
    height: 8px;
    background: #84ac79;
    border-radius: 50%;
}

.inspire-title {
    font-size: 42px;
    font-weight: 700;
    color: #84ac79;
    margin-bottom: 22px;
    line-height: 1.2;
}

.inspire-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    max-width: 520px;
    margin-bottom: 40px;
}

.inspire-stats {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
}




.stat-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 6px solid #84ac79;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #84ac79;
    font-size: 18px;
}

@media (max-width: 768px) {
    .inspire-stats {
        /* flex-direction: ; */
        /* gap: 30px; */
    }

    .stat-circle {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 6px solid #84ac79;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: #84ac79;
        font-size: 18px;
    }
}

.stat-box span {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

/* RIGHT */
.inspire-visual {
    height: 420px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

/* MOBILE */
@media (max-width: 992px) {
    .inspire-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .inspire-title {
        font-size: 32px;
    }

    .inspire-visual {
        height: 280px;
    }
}

.video-play-wrapper {
    position: absolute;
    right: clamp(20px, 8vw, 140px);
    top: clamp(40px, 12vh, 140px);
    width: clamp(140px, 22vw, 220px);
    height: clamp(140px, 22vw, 220px);
    z-index: 10;
}

/* rotating text */
.rotating-text {
    position: absolute;
    inset: 0;
    animation: rotateText 18s linear infinite;
    pointer-events: none;
}

.rotating-text svg {
    width: 100%;
    height: 100%;
}

.rotating-text text {
    fill: #fff;
    text-shadow:
        0 0 5px #84ac79,
        0 0 10px #84ac79,
        0 0 20px #84ac79;
}

/* play button center */
.play-button-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin-right: 25px;
}

/* animation */
@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

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

.deals__banner--inner {
    position: relative;
}

@media (max-width: 767px) {

    .video-play-wrapper {
        position: relative;
        right: auto;
        top: auto;
        width: 160px;
        height: 160px;
        margin: 30px auto 0;
        display: flex;
        justify-content: center;
    }

    .play-button-center {
        top: 18px;
        margin-right: 55px;
    }
}

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

    .video-play-wrapper {
        position: absolute;
        right: 40px;
        top: 60px;
        width: 180px;
        height: 180px;
    }

    .play-button-center {
        top: 5px;
        margin-right: 50px !important;
    }

    .rotating-text text {
        /* font-size: 12px;       */
        letter-spacing: 1px;
    }
}



.before-after-container {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 6px;
    --position: 50%;
}

/* image wrapper */
.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* images */
.slider-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: clip-path;
}

/* after image */
.image-after {
    z-index: 1;
}

/* before image */
.image-before {
    z-index: 2;
    clip-path: inset(0 calc(100% - var(--position)) 0 0);
    filter: grayscale(100%);
}

/* slider input */
.slider {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
}

/* vertical line */
.slider-line {
    position: absolute;
    left: var(--position);
    top: 0;
    width: 3px;
    height: 100%;
    background: #fff;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 5;
    will-change: left;
}

/* button */
.slider-button {
    position: absolute;
    top: 50%;
    left: var(--position);
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    color: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    pointer-events: none;
    z-index: 6;
    will-change: left;
    transition: left 0.08s linear;
}

/* mobile */
@media (max-width: 992px) {
    .before-after-container {
        height: 280px;
    }
}

.image-before {
    transition: none !important;
}

.category__section {
    padding: 90px 0;
    background: #f7f7f7;
}

.four__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category__card {
    position: relative;
    height: 360px;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
}

.category__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.2));
    color: #fff;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.category__overlay h3 {
    position: absolute;
    top: 20px;
    left: 22px;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    z-index: 2;
}

.category__overlay ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.4s ease;
}

.category__overlay li {
    font-size: 14px;
    margin-bottom: 6px;
}

/* Hover effect */
.category__card:hover img {
    transform: scale(1.12);
}

.category__card:hover ul {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 576px) {
    .four__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .category__card {
        height: 220px;
    }

    .category__overlay h3 {
        font-size: 16px;
        top: 12px;
        left: 12px;
    }

    .category__overlay li {
        font-size: 12px;
    }
}




@media (max-width: 767px) {


    .mobile-banner .container-fluid>.row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 2px !important;
    }


    .mobile-banner .col-lg-5,
    .mobile-banner .col-lg-7,
    .mobile-banner .col,
    .mobile-banner .row {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: contents !important;
    }


    .mobile-banner .banner__items {
        width: 100%;
    }

    .mobile-banner .banner__items--content {
        inset: 2px 0 auto 0 !important;
        bottom: auto !important;
        top: 25px !important;
        text-align: center;
        padding: 10px;
    }

    .mobile-banner .banner__items--content__subtitle {
        font-size: 13px;
        font-weight: 500;
    }

    .mobile-banner .banner__items--content__title {
        font-size: 16px;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 4px;
    }


    .mobile-banner .banner__items--content__link {
        display: none;
    }
}

@media (max-width: 767px) {

    .mobile-banner {
        padding: 3px !important;
        margin: 0 !important;
        /* margin-bottom: 20px !important; */
    }

    .mobile-banner .container-fluid {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }

    .mobile-banner .row {
        margin: 0 !important;
        gap: 0 !important;
    }

    .mobile-banner .banner__items {
        border-radius: 0;
    }
}

/* MOBILE TOP STATIC BANNER */
.mobile-top-banner {
    display: none;
}

@media (max-width: 767px) {
    .mobile-top-banner {
        display: block;
        width: 100vw;
        margin: 0;
        padding: 0;
        margin-left: calc(-50vw + 50%);
    }

    .mobile-top-banner img {
        width: 100vw;
        height: 200px;
        border-radius: 8px;
        padding: 2px;
        object-fit: cover;
        display: block;
    }
}

/* Hide on Desktop & Tablet */
.mobile-only {
    display: none;
}

/* Show ONLY on Mobile */
@media (max-width: 767px) {
    .mobile-only {
        display: block;
    }

    .banner__category-name {
        margin-top: 2px;
        text-align: center;
        font-size: 14px;
        font-weight: 600;
        color: #84ac79;
        /* background: #84ac79; */
        border-radius: 4px;
        width: 190px;
        margin-left: 5px;

    }
}

.mobile-banner-wrapper {
    position: relative;
}

.mobile-banner-text {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.45);
    padding: 10px 14px;
    border-radius: 12px;
    width: 90%;
}

.mobile-banner-text h2 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.mobile-banner-text p {
    font-size: 13px;
    color: #f1f1f1;
    margin: 0;
}



@media (max-width: 768px) {

    .mobile-banner-text {
        display: none;
    }

    .banner__items--content__title {
        display: none;
    }
}

.banner__items--content {
    display: none;
}

@media (max-width: 767px) {


    .mobile-banner .banner__items {
        height: auto;
        display: flex;
        flex-direction: column;
        background: #fff;
    }


    .mobile-banner .banner__items--thumbnail {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;

    }


    .mobile-banner img {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
        width: auto !important;
        height: auto !important;
    }


    .mobile-banner .banner__items--content {
        position: static;
        color: #000;
        padding: 10px 8px;
        background: #fff;
        text-align: center;
    }


    .mobile-banner .banner__items--content__link {
        display: none;
    }


    .mobile-banner .banner__items--content__subtitle {
        color: #777;
        font-size: 12px;
    }

    .mobile-banner .banner__items--content__title {
        color: #222;
        font-size: 14px;
        line-height: 1.3;
        margin: 4px 0 0;
    }
}

@media (max-width: 768px) {
    .banner__img--max__height {
        height: 150px !important;
        width: 150 !important;
        object-fit: contain !important;

    }

    .bottom-banner img {
        height: 300px !important;
        width: 100% !important;
        object-fit: cover !important;

    }
}

@media (max-width: 767px) {


    .mobile-banner .banner__items--thumbnail {
        aspect-ratio: 1 / 1;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        /* background-color: #f2f2f2;  */
        overflow: hidden;
    }


    .mobile-banner .banner__items--thumbnail__img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }


    .mobile-banner .banner__img--max__height {
        height: auto;
    }
}



@media (max-width: 767px) {

    .d-img img {
        margin-top: 10px !important;
    }

    .a-img img {
        margin-top: 10px !important;
    }
}

.swiper-btn-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.mobile-img {
    display: none;
}

@media (max-width: 767px) {
    .desktop-img {
        display: none;
    }

    .mobile-img {
        display: block;
    }

    .category-img {
        margin-top: -5px !important;
    }

}


.product__items--new-product {
    display: flex;
    flex-direction: column;
    height: auto !important;
}



.product__items--thumbnail--new-product {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}


.product__items--thumbnail--new-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.product__items--content--new-product {
    text-align: center;
    padding: 0px 6px 4px !important;
}


.product__items--content__title--new-product {
    margin: 5px 0 0 !important;
    padding: 0 !important;
    line-height: 1.3;
    min-height: 10px !important;
    margin-bottom: -20px !important;
}


.product__items--content__title--new-product a {
    margin: 0;
    padding: 0;
    display: inline-block;
}


.product-code {
    font-size: 14px;
    color: #777;
    margin: 0;
    display: block;
}



.swiper-slide {
    height: auto !important;
}

.product__items {
    padding-bottom: 0 !important;
}



@media (max-width: 768px) {

    .product__items--content__title--new-product {
        font-size: 16px;
    }

    .product-code {
        font-size: 13px;
    }

}

.swiper-button-disabled {
    opacity: 0 !important;
    pointer-events: none !important;
}

.swiper-button-lock {
    display: none !important;
}

.care-maintenance-form {
    background: #ffffff;
    /* padding: 0px; */
    margin: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

/* Home Page Custom Css End */


/* Blog-detail Page Custom Css Start */

.breadcrumb__section {
    height: 300px !important;
}

.shop-now {
    position: fixed;
    top: 25%;
    right: 0px;
    width: 35px;
    height: 120px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s;
    background: #82ab78;
    /* z-index: 1000; */
}

.shop-now:hover {
    background: #000000;

}

.shop-now a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    text-align: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.blog__thumbnail {
    position: relative;
    max-width: 800px;

}

.blog__thumbnail--img {
    width: 100%;
    height: 800px;
    /* control height */
    object-fit: cover;
    /* prevents stretching */
    border-radius: 10px;
}

.blog__details--content__desc a {
    color: #82ab78 !important;
}


.custom-tags-social {
    border-top: 1px solid #eee;
    padding-top: 25px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}


.blog__tags--media {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.blog__tags--media ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.blog__tags--media__list {
    list-style: none;
}

.blog__tags--media__link {
    background: #f5f5f5;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    transition: 0.3s ease;
    display: inline-block;
}

.blog__tags--media__link:hover {
    background: #82ab78;
    color: #fff !important;
}


.blog__social--media {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog__social--media ul {
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.blog__social--media__link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #82ab78;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s ease;
}

.blog__social--media__link:hover {
    background: #000;
}


@media (max-width: 991px) {
    .custom-tags-social {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog__social--media {
        margin-top: 10px;
    }
}


@media (max-width: 576px) {

    .blog__tags--media__title,
    .blog__social--media__title {
        width: 100%;
        margin-bottom: 5px;
    }

    .blog__tags--media {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog__social--media {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog__social--media ul {
        gap: 10px;
    }
}

/* Blog-detail Page Custom Css End */


/* Category Page Custom Css Start */

#product_grid .product__items {
    display: flex;
    flex-direction: column !important;
    height: 100%;
}

#product_list .product__items {
    display: flex;
    flex-direction: row !important;
    height: 100%;
}

.product__items--thumbnail {
    position: relative;
    height: auto;
    aspect-ratio: auto;
    overflow: hidden;
}

.product__items--img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* .product__items--content__title a {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                display: block;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                max-width: 100%;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                white-space: nowrap;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                overflow: hidden;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                text-overflow: ellipsis;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            } */

.product__items--content {
    /* line-height: 3.5; */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

@media (max-width: 767px) {
    .product__items--content {
        line-height: 2.8;
    }

    .product__items--content__title {
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: unset !important;
        display: block !important;
    }

}

.product-code {
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* .product__items--content__title {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    display: -webkit-box;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -webkit-line-clamp: 2;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -webkit-box-orient: vertical;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    overflow: hidden;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    min-height: 48px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                } */

@media (max-width: 767px) {
    #product_grid .product__items--thumbnail {
        aspect-ratio: 4 / 5;
        width: 100%;
    }

    #product_grid .product__items--img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    #product_list .product__items--thumbnail {
        aspect-ratio: auto;
        width: 110px;
        height: auto;
        flex-shrink: 0;
    }

    #product_list .product__items--img {
        width: 100%;
        height: 183px;
        object-fit: cover;
        border-radius: 8px;
    }
}


.widget__categories--menu__list.no-submenu .widget__categories--menu__label {
    cursor: default;
}


.widget__categories--menu__list.no-submenu .widget__categories--menu__arrowdown--icon {
    display: none;
}


.widget__categories--menu__list.no-submenu {
    pointer-events: none;
}



@media (max-width: 767px) {


    .row-cols-2>.col {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .product__grid--inner .col.mb-30 {
        margin-bottom: 12px !important;

    }


    .product__grid--inner .row.mb--n30 {
        margin-bottom: -12px !important;
    }


    .product__items {
        height: 100%;
        border-radius: 14px;
        overflow: hidden;
    }


    .product__items--thumbnail {
        height: 120px;
        width: 100%;
        overflow: hidden;
        border-radius: 14px 14px 0 0;
        background: #f3f3f3;
    }

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


    .product__items--content {
        padding: 8px;
    }


    .product__items--content__title {
        font-size: 8px;
        line-height: 1.3;
        margin-bottom: 4px;
    }


    .product-code {
        font-size: 8px;
        color: #7da36b;
    }

    .current__price {
        font-size: 8px;
    }

    .old__price {
        font-size: 6px;
    }
}


@media (max-width: 767px) {


    .product__items--thumbnail {
        /* height: 150px !important; */

    }


    .product__items--content__title {
        margin-bottom: 2px !important;
    }

    .product__items--price {
        margin-top: -20px !important;
        margin-bottom: 2px !important;
    }


    .product__rating {
        margin-top: -16px !important;
        gap: 2px;
    }

    .product__rating svg {
        width: 9px !important;
        height: 9px !important;
    }


    .product__items--content {
        padding: 6px;
    }

    /* .product__items--action {
                margin-top: -16px !important;

            }

            .product__items--action svg {
                width: 9px !important;
                height: 9px !important;
            } */
}


.shop__pagination {
    margin-top: 40px;
    margin-bottom: 30px;
}


.shop__pagination nav {
    display: flex;
    justify-content: center;
}


.shop__pagination .pagination,
.shop__pagination nav>div {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}


.shop__pagination a,
.shop__pagination span,
.shop__pagination .pagination a,
.shop__pagination .pagination span,
.shop__pagination nav a,
.shop__pagination nav span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    background-color: #fff !important;
}


.shop__pagination a:hover {
    background-color: #f5f5f5 !important;
    border-color: #000 !important;
    color: #000 !important;
}


.shop__pagination [aria-current="page"],
.shop__pagination span[aria-current="page"] {
    background-color: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
    font-weight: bold !important;
}


.shop__pagination [aria-disabled="true"],
.shop__pagination span[aria-disabled="true"] {
    color: #ccc !important;
    border-color: #e0e0e0 !important;
    cursor: not-allowed !important;
    background-color: #f9f9f9 !important;
}


.shop__pagination svg {
    width: 16px;
    height: 16px;
    stroke-width: 3;
}

@media (max-width: 768px) {
    .shop__pagination {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .shop__pagination nav {
        display: flex;
        justify-content: center;
        overflow-x: auto;
    }

    .shop__pagination .pagination,
    .shop__pagination nav>div {
        gap: 4px;
    }

    .shop__pagination a,
    .shop__pagination span,
    .shop__pagination nav a,
    .shop__pagination nav span {
        min-width: 32px !important;
        height: 32px !important;
        font-size: 12px;
        padding: 0 6px !important;
    }


    .shop__pagination a[rel="prev"]::before,
    .shop__pagination a[rel="next"]::before {
        content: "";
    }

    .shop__pagination svg {
        width: 14px;
        height: 14px;
        stroke-width: 3;
    }


    .shop__pagination .pagination {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }
}


@media (max-width: 576px) {

    .shop__pagination a[rel="prev"],
    .shop__pagination a[rel="next"] {
        font-size: 0;
    }

    .shop__pagination a[rel="prev"]::after,
    .shop__pagination a[rel="next"]::after {
        font-size: 14px;
    }

    .shop__pagination svg {
        display: inline !important;
    }
}

/* Category Page Custom Css End */

/* Checkout Page Custom Css Start */

.field-error {
    border: 1px solid #dc3545 !important;
}

.error-text {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.badge-default {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #84ac79;
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 5px;
    width: fit-content;
}

.badge-make-default {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #ffc107;
    color: #000;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 5px;
    cursor: pointer;
}

/* Checkout Page Custom Css End */

/* hpl-info page css start  */

.hpl-page {
    font-family: inherit;
}

.hpl-hero {
    background: linear-gradient(135deg, #1e1e1e, #2b2b2b);
    color: #fff;
    padding: 80px 20px;
}

.hpl-hero h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hpl-hero p {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    opacity: 0.9;
}

.hpl-section {
    padding: 70px 0;
}

.hpl-section.bg-light {
    background: #f7f7f7;
}

.hpl-section.bg-dark {
    background: #1f1f1f;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 600;
}

.hpl-intro {
    max-width: 900px;
    margin: auto;
    text-align: center;
    font-size: 15px;
    line-height: 1.7;
}

.hpl-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 20px;
    text-align: center;
    font-weight: 500;
    border-radius: 6px;
}

.hpl-applications {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.hpl-applications ul {
    list-style: none;
    padding: 0;
}

.hpl-applications li {
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
}

.hpl-why {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    color: #fff;
}

.hpl-why div {
    background: rgba(255, 255, 255, 0.05);
    padding: 18px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .hpl-hero h1 {
        font-size: 32px;
    }

    .hpl-applications {
        grid-template-columns: 1fr;
    }
}

/* hpl-info page css end   */

/* invoice page css start */

.phone-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
}

.call-icon {
    width: 18px;
    height: 18px;
}

.total-amount-box {
    width: auto;
    margin-left: auto;
    /* right side push */
    background: #84ac79;
    color: #fff;
    padding: 12px 16px;
    border-radius: 4px;
    text-align: right;
}

/* invoice page css end */

/* my-account Page css start  */

.order__card {
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.order__card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.order__card a:hover {
    color: #2874f0;

}

.btn-invoice {
    background-color: #84ac79;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
}

.btn-invoice:hover {
    background-color: #061738;
    color: #fff !important;
    text-decoration: none;
}


/* my-account Page css end  */

/* Profile page css start */

.password__wrapper {
    position: relative;
}

.password__wrapper .password-input {
    padding-right: 42px;
}

.toggle-password {
    position: absolute;
    top: 40%;
    right: 14px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
    font-size: 18px;
}

.toggle-password:hover {
    color: #000;
}


input[type="password"]::-webkit-credentials-auto-fill-button,
input[type="password"]::-webkit-clear-button {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}


input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none !important;
}


input[type="password"] {
    -moz-appearance: textfield;
}

/* Profile page css end */

/* Shop Detail Page Custom Css Start  */

.zoom-preview {
    width: 600px;
    height: 510px;
    border: 1px solid #ddd;
    margin-left: -20px;
    display: none;
    background-repeat: no-repeat;
    background-size: 200%;
}

.thumbImage {
    height: 100px !important;
}

@media (max-width: 768px) {
    .quickview__social {
        flex-direction: column;

        align-items: flex-start;

        margin-top: -10px;
    }

    .quickview__social--title {
        margin: 0;
        font-size: 14px;
        line-height: 1.2;
    }

    .quickview__social--wrapper {
        display: flex;
        align-items: center;

        margin: 0;
        padding: 0;
    }
}

.product-price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.product-price-table th {
    width: 120px !important;
}

.product-price-table th,
.product-price-table td {
    line-height: 2;
    font-size: 16px;
    vertical-align: top;
}

.product-price-table th {
    text-align: left;
    font-weight: 500;
    color: #555;
    width: 40%;
}

.product-price-table .old__price {
    margin-left: 8px;
    color: #999;
    text-decoration: line-through;
}

.product__details--media {
    position: relative;
}

.product__media--preview__items {
    position: relative;
}

#zoomPreview {


    top: 0;
    width: 600px;
    border: 1px solid #eee;
    background: #fff;
    overflow: hidden;
    display: none;
    z-index: 10;
    height: 510px;
}


.left-col,
.product__details--media {
    max-height: none !important;
    height: auto !important;

}

.product__details--media {
    max-height: 450px;
}

@media (min-width: 1025px) {
    .left-col {
        max-width: 50%;
    }

    .product__media--preview__items--img {
        max-height: 580px;
    }
}

@media (max-width: 1024px) {

    .left-col {
        max-width: 100%;
    }

    .product__media--preview__items--img {
        max-height: 55vh;
    }

    .product__media--nav {
        margin-top: 16px;
    }
}

@media (max-width: 767px) {

    .left-col {
        width: 100%;
        padding: 0 10px;
    }

    .product__media--nav {
        margin-top: 12px;
    }

    .product__media--nav__items--img {
        height: 70px;
        object-fit: cover;
    }
}

.product-image-wrapper {
    height: 520px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.product__details--tab__section {
    position: relative;
    z-index: 5;
}

.product-main-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    cursor: zoom-in;
}




.product-image-wrapper img {
    max-width: 100%;
}

.product-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 8px;
    cursor: pointer;
    border: 2px solid transparent;
}

.product-thumbs img.active {
    border-color: #000;
}

#pd-zoom-preview {
    position: absolute;
    top: 0;
    right: -110%;
    width: 600px;
    height: 100%;
    border: 1px solid #ddd;
    background: #fff;
    display: none;

}


.price-box .current-price {
    font-size: 24px;
    font-weight: 600;
}

.price-box .old-price {
    margin-left: 10px;
    text-decoration: line-through;
    color: #999;
}

.pd-search-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 42px;
    height: 42px;
    background: #84ac79;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
}

.pd-thumb-swiper .swiper-slide {
    width: auto;
}

.pd-thumb {
    width: 90px;
    height: 90px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
}

.pd-thumb.active {
    border: none;
    border-color: #000;
}


/* .pd-thumb-swiper .pd-nav-btn {
    position: absolute;
    top: 10%;
    width: 38px;
    height: 38px;
    background: #84ac79;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.25s ease;
} */



.pd-thumb-swiper .pd-nav-btn::after {
    font-size: 14px;
    font-weight: bold;
}


.pd-thumb-swiper .pd-nav-btn:hover {
    background: #061738;
    color: #fff;
    transform: scale(1.1);
}

@media (max-width: 767px) {

    .product-image-wrapper {
        width: 100% !important;
        height: 65vh !important;
        max-height: none;
    }

    .product-main-img {
        width: 100%;
        height: auto !important;
        max-height: 65vh;
        object-fit: contain;
    }

    #pd-zoom-preview {
        display: none !important;
    }

    .pd-search-icon {
        top: 10px;
        left: 10px;
        width: 36px;
        height: 36px;
    }
}

.key-features i {
    font-size: 18px;
    color: #84ac79;
    margin-right: 8px;
}

.scene,
.a3d {
    display: grid;
}

.scene {
    overflow: hidden;
    perspective: 35em;
    height: 350px;
    place-items: center;
    background: #fff;
}

.a3d {
    place-self: center;
    transform-style: preserve-3d;
    animation: rotateRing 30s linear infinite;
}

/* Continuous rotation */
@keyframes rotateRing {
    from {
        transform: rotateY(0deg);
    }

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

/* Product cards */
.card {
    --w: 180px;
    --ba: calc(1turn / var(--n));
    grid-area: 1/1;
    width: var(--w);
    aspect-ratio: 7/10;
    object-fit: cover;
    background: #84ac79 center/cover;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    backface-visibility: hidden;
    transform: rotateY(calc(var(--i) * var(--ba))) translateZ(calc(-1 * (0.5 * var(--w) + 20px) / tan(0.5 * var(--ba))));
}

.card .title {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

@media (max-width: 768px) {
    .scene {
        height: 300px;
    }

    .card {
        --w: 140px;
    }
}

/* Shop Detail Page Custom Css End */

/* Shop Page Custom Css Start */

.stack-wrapper {
    overflow-x: hidden !important;
}

.product__section {
    overflow-x: hidden !important;
}

.product__section {
    scroll-margin-top: 200px !important;
}

.subcat-inner .image-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 10%;
    padding: 2px;
    border: 2px solid transparent;
    transition: .3s ease;
}

.subcat-inner .image-wrapper img {
    width: 100%;
    height: 142px !important;
    border-radius: 10% !important;
    object-fit: contain !important;
    /* padding-bottom: 30px !important; */
    /* padding-left: 2px; */
}

.subcat-filter.active-subcat .image-wrapper {
    position: relative;
    border-color: transparent !important;
}

.subcat-filter.active-subcat .image-wrapper::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -40px;
    border-radius: 10%;
    background: conic-gradient(#84ac79,
            #a3c99d,
            #d1e6c4,
            #84ac79,
            #a3c99d,
            #d1e6c4,
            #84ac79);
    animation: rotateRing 2s linear infinite;
    z-index: -1;
}

.subcat-filter.active-subcat .image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10%;
    box-shadow: 0 0 20px rgba(132, 172, 121, 0.6);
}

@keyframes rotateRing {
    0% {
        transform: rotate(0deg);
    }

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


@media (max-width: 576px) {
    .filter-slider .blog__items {
        text-align: center !important;
    }

    .subcat-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .subcat-inner .image-wrapper {
        margin: 0 auto !important;
    }

    .blog__content {
        text-align: center !important;
        margin-top: 10px;
    }
}

.filter-section {
    position: relative;
}

.shop__section {
    margin-top: -100px !important;
}


.product-swiper {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.section-heading-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.show-more-btn {}

@media (max-width: 576px) {
    .section-heading-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .show-more-btn {
        margin-top: 12px;
    }
}

.slider-arrow.disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Base arrow */
.slider-arrow {
    position: absolute;
    z-index: 20;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #84ac79;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    animation: glowBlink 1.8s infinite ease-in-out;
}

/* Icon color */
.slider-arrow i {
    color: #fff;
    font-size: 16px;
}

/* Disabled → no glow */
.slider-arrow.disabled {
    opacity: 0.35;
    pointer-events: none;
    animation: none;
}

/* 🔥 Glow Blink Animation */
@keyframes glowBlink {
    0% {
        box-shadow:
            0 0 0 rgba(255, 152, 0, 0),
            0 4px 12px rgba(0, 0, 0, 0.15);
    }

    50% {
        box-shadow:
            0 0 14px rgba(100, 213, 87, 0.707),
            0 0 28px rgba(129, 211, 108, 0.517),
            0 6px 16px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow:
            0 0 0 rgba(255, 152, 0, 0),
            0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

.section-heading-flex {
    position: relative;
    justify-content: center !important;
}

.section__heading--maintitle {
    text-align: center;
    margin: 0 auto;
}

/* Button ko right side fix kar do */
.section-heading-flex .btn {
    position: absolute;
    right: 0;
}


.empty-subcategory-message {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center !important;
    min-height: 300px;
    /* thoda height for vertical center */
}


.section-heading-flex {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
}


.shop-more-btn {
    background-color: #84ac79;
    color: #fff;
    border-radius: 6px;
    padding: 8px 14px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
    height: auto;
    /* FIXED HEIGHT REMOVE */
    font-size: 15px;
    white-space: nowrap;
}

.shop-more-btn {
    height: auto !important;
    line-height: normal !important;
}

@media (max-width: 767px) {

    .section-heading-flex {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 12px;
    }

    .section-heading-flex h2 {
        width: 100%;
        font-size: 22px;
        line-height: 1.25;
        margin: 0;
    }

    .section-heading-flex .shop-more-btn {
        position: static !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        margin: 0 !important;
        padding: 8px 16px;
        font-size: 14px;
        height: auto !important;
        white-space: nowrap;
    }
}


.product__items--thumbnail {
    position: relative;
    /* aspect-ratio: 4 / 5; */
    overflow: hidden;

}


.product__items--thumbnail::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    /* filter: blur(18px);
                                            transform: scale(1.2); */
    opacity: 0.4;
}


.product__items--img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.product__items {
    max-height: 480px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product__items--content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.product-code {
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product__section--inner {
    overflow: hidden !important;
}

.product__section--inner .swiper-wrapper {
    overflow: visible;
}


.stack-wrapper {
    position: relative;
    /* background: red; */
}

.product__section-shop {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #fff;
    transform: translateY(120%);
    transition: transform 0.7s ease;
    overflow-y: auto;
}

.product__section.active {
    transform: translateY(0);
}

.shipping__section2 {
    position: relative;
    z-index: 5;
}

footer,
.footer__section {
    position: relative;
    z-index: 10 !important;
}

.product-swiper-wrapper {
    position: relative !important;
}

.product__section .swiper-button-prev,
.product__section .swiper-button-next {
    position: fixed !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 9999 !important;
}

.product__section .swiper-button-prev {
    left: 15px;
}

.product__section .swiper-button-next {
    right: 15px;
}

.visible-overflow {
    overflow: visible !important;
}

/* Shop Page Custom Css End */
.minicart__conditions--label {
    font-weight: 500 !important;
}