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

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
}

/* ================================  TOP BAR ================================= */

.top-header {
    background: #050505;
    height: 48px;
}

.top-header .container {
    height: 100%;
}

.top-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    gap: 30px;
}

.top-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: .3s;
}

.top-links a:hover {
    color: #12a3a3;
}


/* ================================ MAIN HEADER ================================= */

.main-header {
    background: #118d8d;
    padding: 31px 0;
}

.header-main {
    display: flex;
    align-items: center;
    gap: 25px;
}


/* LOGO */

.site-logo {
    width: 235px;
    flex-shrink: 0;
}

.site-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    margin-right: 8px;
}

.logo-text {
    line-height: 1;
}

.logo-title {
    color: #fff;
    font-size: 25px;
    font-weight: 800;
    white-space: nowrap;
}

.logo-subtitle {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-top: 5px;
}


/* ================================  SEARCH AREA ================================= */

.search-area {
    flex: 1;
    display: flex;
    gap: 28px;
}

.search-select,
.search-input {
    height: 47px;
    background: #fff;
    border: none;
    outline: none;
}

.search-select {
    width: 34%;
    padding: 0 15px;
    font-size: 16px;
    color: #333;
}

.search-input-box {
    flex: 1;
    display: flex;
    background: #fff;
}

.search-input {
    width: 100%;
    padding: 0 18px;
    font-size: 16px;
}

.search-btn {
    width: 50px;
    height: 47px;
    border: none;
    background: #fff;
    color: #333;
    font-size: 21px;
}

.search-btn:hover {
    color: #118d8d;
}


/* ================================ CART ================================= */

.cart-box {
    width: 105px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.cart-icon {
    position: relative;
    font-size: 38px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: #ff3d3d;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cart-text {
    line-height: 1.1;
}

.cart-title {
    font-size: 16px;
    font-weight: 700;
}

.cart-price {
    font-size: 14px;
    font-weight: 700;
    margin-top: 3px;
}

/* ==================================== ALLDAY GENERIC DESKTOP HEADER ==================================== */

.adg-desktop-header {
    display: block !important;
    width: 100%;
}


/* ================================== MOBILE - HIDE DESKTOP HEADER ====================================== */

@media (max-width: 991px) {

    .adg-desktop-header {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }

}



/* ======================================= main-navigation ======================================= */

/* .main-navigation {
            width: 100%;
            background: #f5f5f5;
            position: relative;
            z-index: 999;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
        } */

.main-navigation {
    width: 100%;
    background: #f5f5f5;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

/* Mobile */
@media (max-width: 991px) {

    .main-navigation {
        display: none !important;
    }

    .adg-mobile-header {
        display: block !important;
    }

}

.main-menu {
    list-style: none;
    margin: 0;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item {
    position: static;
}

.menu-item>a {
    display: flex;
    align-items: center;
    gap: 8px;

    height: 60px;
    padding: 0 28px;

    color: #666;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;

    transition: all .25s ease;
}

.menu-item>a i {
    font-size: 9px;
    transition: transform .25s ease;
}

.menu-item:hover>a {
    color: #008b8b;
    background: #fff;
}

.menu-item:hover>a i {
    transform: rotate(180deg);
}

.menu-item>a.active {
    color: #008b8b;
}

.mega-menu {
    position: absolute;
    top: 60px;
    left: 1%;
    width: 98%;
    background: #fff;
    padding: 28px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    border-top: 2px solid #008b8b;
    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.mega-column {
    min-width: 0;
}

.mega-column a {
    display: block;
    padding: 17px 12px;
    border-bottom: 1px solid #e5e5e5;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all .25s ease;
}

.mega-column a:hover {
    color: #008b8b;
    background: #f7fbfb;
    padding-left: 18px;
}


.ed-menu {
    padding: 22px 20px;
}

.ed-menu .mega-column a {
    padding: 15px 12px;
}


@media (max-width: 1200px) {

    .menu-item>a {
        padding: 0 17px;
        font-size: 12px;
    }

    .mega-menu {
        left: 1%;
        width: 98%;
    }

}

/* ===================================== DESKTOP NAVIGATION / MOBILE CONTROL =============================== */

/* Desktop */
.main-navigation {
    display: block !important;
}

/* Mobile */
@media (max-width: 991px) {

    .main-navigation {
        display: none !important;
    }

    .adg-mobile-header {
        display: block !important;
    }

}


/* Desktop par mobile header hide */
.adg-mobile-header {
    display: none !important;
}



/* ========================================= MOBILE TOP BAR ========================================= */

.mobile-topbar {
    display: none;
}

/* ========================================= OVERLAY ========================================= */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.65);

    opacity: 0;
    visibility: hidden;

    z-index: 9998;

    transition: all .3s ease;
}

.mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
}


/* ========================================= LEFT CATEGORY PANEL ========================================= */

.categories-panel {
    position: fixed;

    top: 0;
    left: 0;

    width: 330px;
    max-width: 85%;

    height: 100vh;

    background: #fff;

    z-index: 9999;

    transform: translateX(-105%);

    transition: transform .35s ease;

    overflow-y: auto;
}

.categories-panel.show {
    transform: translateX(0);
}


/* ========================================= RIGHT MENU PANEL ========================================= */

.mobile-side-panel {
    position: fixed;

    top: 0;
    right: 0;

    width: 330px;
    max-width: 85%;

    height: 100vh;

    background: #252629;

    z-index: 10000;

    transform: translateX(105%);

    transition: transform .35s ease;

    overflow-y: auto;
}

.mobile-side-panel.show {
    transform: translateX(0);
}


/* ========================================= PANEL HEADER ========================================= */

.mobile-panel-header {
    height: 65px;

    padding: 0 20px;

    background: #118b8b;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 18px;
    font-weight: 700;
}

.mobile-panel-header div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-panel-header button {
    width: 38px;
    height: 38px;

    border: 0;
    border-radius: 5px;

    background: rgba(255, 255, 255, .15);

    color: #fff;

    font-size: 18px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ========================================= CATEGORY LINKS ========================================= */

.categories-list a {
    display: block;

    padding: 16px 20px;

    border-bottom: 1px solid #e7e7e7;

    color: #333;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: .2s;
}

.categories-list a:hover {
    background: #f5f5f5;
    color: #118b8b;
}


/* ========================================= RIGHT MENU LINKS ========================================= */

.mobile-side-links a {
    display: block;
    padding: 14px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 16px;
    transition: .2s;
}

.mobile-side-links a:hover,
.mobile-side-links a.active {
    background: #343539;
}


/* ========================================= MOBILE ========================================= */

@media (max-width: 991px) {
    @media (max-width: 991px) {
        body {
            padding-top: 64px;
        }
    }

    .mobile-topbar {
        display: flex;
        width: 100%;
        height: 64px;

        background: #000;

        align-items: center;
        justify-content: space-between;

        padding: 0 12px;

        position: fixed;
        top: 0;
        left: 0;

        z-index: 9999;
    }

    /* CATEGORY BUTTON */

    .mobile-category-btn {

        display: flex;
        align-items: center;

        gap: 10px;

        background: transparent;

        border: 0;

        padding: 0;

        color: #fff;

        text-align: left;

        cursor: pointer;
    }

    .mobile-category-btn>i {
        font-size: 26px;
    }

    .mobile-category-btn span {
        display: flex;
        flex-direction: column;
    }

    .mobile-category-btn small {
        font-size: 11px;
        font-weight: 600;
        line-height: 14px;
    }

    .mobile-category-btn strong {
        font-size: 15px;
        line-height: 17px;
    }

    .mobile-category-btn strong i {
        font-size: 9px;
        color: #f2b84b;
    }


    /* RIGHT */

    .mobile-right {
        display: flex;
        align-items: center;

        gap: 12px;
    }


    /* CART */

    .mobile-cart {

        position: relative;

        display: flex;
        align-items: center;

        gap: 7px;

        color: #fff;

        text-decoration: none;
    }

    .mobile-cart>i {
        font-size: 40px;
    }

    .mobile-cart>span:last-child {
        display: flex;
        flex-direction: column;

        line-height: 15px;
    }

    .mobile-cart strong {
        font-size: 13px;
    }

    .mobile-cart small {
        font-size: 11px;
        font-weight: 700;
    }

    .cart-count {

        position: absolute;

        top: -7px;
        left: 16px;

        width: 17px;
        height: 17px;

        background: #f34b57;

        color: #fff;

        border-radius: 50%;

        font-size: 9px;

        display: flex;
        align-items: center;
        justify-content: center;
    }


    /* HAMBURGER */

    .mobile-menu-btn {

        width: 45px;
        height: 45px;

        border: 0;
        border-radius: 6px;

        background: #087878;

        color: #fff;

        font-size: 21px;

        display: flex;
        align-items: center;
        justify-content: center;

        cursor: pointer;
    }

}


/* ========================================= SMALL MOBILE ========================================= */

@media (max-width: 575px) {

    .mobile-topbar {
        padding: 0 8px;
    }

    .mobile-category-btn>i {
        font-size: 23px;
    }

    .mobile-category-btn small {
        font-size: 10px;
    }

    .mobile-category-btn strong {
        font-size: 13px;
    }

    .mobile-cart>i {
        font-size: 38px;
    }

    .mobile-cart strong {
        font-size: 12px;
    }

    .mobile-cart small {
        font-size: 10px;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
    }

    .categories-panel,
    .mobile-side-panel {
        width: 310px;
    }

}

/* =========================================== DESKTOP HIDE ==================================== */

@media(min-width:992px) {

    .mobile-header,
    .mobile-overlay,
    .mobile-side-menu {
        display: none !important;
    }

}



/* ===================================== LOGO AREA ================================ */

.mobile-logo-area {
    height: 105px;

    background: #108887;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 15px;
}

.mobile-logo-area img {
    max-width: 255px;
    width: 80%;
    height: auto;
    display: block;
}





/* ==================================== MOBILE SEARCH UNIQUE SCOPE ====================================== */

.adg-mobile-search-area {
    position: relative !important;
    width: 100% !important;
    background: #fff !important;
    padding: 32px 20px 30px !important;
    box-sizing: border-box !important;
    z-index: 100 !important;
}


/* SEARCH WRAPPER */

.adg-mobile-search-area .adg-search-wrap {
    width: 100% !important;
    display: block !important;
}


/* =========================================== DROPDOWN ======================================= */

.adg-mobile-search-area .adg-dropdown {
    position: relative !important;
    width: 100% !important;
    display: block !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
}


/* BUTTON */

.adg-mobile-search-area .adg-dropdown-btn {

    width: 100% !important;
    height: 52px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    padding: 0 13px !important;
    margin: 0 !important;

    border: 2px solid #078b8b !important;
    border-radius: 0 !important;

    background: #fff !important;
    color: #333 !important;

    font-family: inherit !important;
    font-size: 16px !important;
    font-weight: 400 !important;

    text-align: left !important;

    cursor: pointer !important;

    outline: none !important;
    box-shadow: none !important;
}


/* ARROW */

.adg-mobile-search-area .adg-dropdown-btn i {
    flex-shrink: 0 !important;

    font-size: 11px !important;

    color: #777 !important;

    transition: transform .25s ease !important;
}


/* ACTIVE ARROW */

.adg-mobile-search-area .adg-dropdown.adg-active .adg-dropdown-btn i {

    transform: rotate(180deg) !important;

    color: #078b8b !important;
}


/* ========================================== DROPDOWN CONTENT ======================================= */

.adg-mobile-search-area .adg-dropdown-content {

    position: absolute !important;

    top: calc(100% + 2px) !important;
    left: 0 !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #fff !important;

    border: 1px solid #ddd !important;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .15) !important;

    display: none !important;

    visibility: hidden !important;
    opacity: 0 !important;

    max-height: 240px !important;

    overflow-y: auto !important;

    z-index: 999999 !important;
}


/* OPEN */

.adg-mobile-search-area .adg-dropdown.adg-active .adg-dropdown-content {

    display: block !important;

    visibility: visible !important;

    opacity: 1 !important;
}


/* LINKS */

.adg-mobile-search-area .adg-dropdown-content a {

    display: block !important;

    width: 100% !important;

    padding: 13px 15px !important;

    margin: 0 !important;

    border: 0 !important;

    border-bottom: 1px solid #eee !important;

    background: #fff !important;

    color: #333 !important;

    text-decoration: none !important;

    font-size: 14px !important;

    font-weight: 500 !important;

    box-sizing: border-box !important;
}


.adg-mobile-search-area .adg-dropdown-content a:hover {

    background: #f2fafa !important;

    color: #078b8b !important;
}


/* ============================================ MEDICINE SEARCH =============================== */

.adg-mobile-search-area .adg-medicine-box {

    width: 100% !important;
    height: 52px !important;

    display: flex !important;

    align-items: center !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 2px solid #078b8b !important;

    background: #fff !important;

    overflow: hidden !important;

    box-sizing: border-box !important;
}


.adg-mobile-search-area .adg-medicine-box input {

    flex: 1 1 auto !important;

    width: 100% !important;
    height: 100% !important;

    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 12px !important;

    border: 0 !important;
    outline: 0 !important;

    background: #fff !important;

    color: #333 !important;

    font-family: inherit !important;
    font-size: 16px !important;
}


.adg-mobile-search-area .adg-medicine-box button {

    flex: 0 0 48px !important;

    width: 48px !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;

    background: #078b8b !important;

    color: #fff !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    cursor: pointer !important;
}


/* ==================================== FILTER ======================================= */

.adg-mobile-search-area .adg-filter-btn {

    position: absolute !important;

    left: 0 !important;
    top: -8px !important;

    width: 50px !important;
    height: 48px !important;

    padding: 0 !important;
    margin: 0 !important;

    border: 1px solid #eee !important;

    background: #fff !important;

    color: #78818a !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    z-index: 1000 !important;
}


/* ====================================search MOBILE ============================ */

@media (max-width: 575px) {

    .adg-mobile-search-area {
        padding: 30px 15px 25px !important;
    }

    .adg-mobile-search-area .adg-dropdown-btn {
        height: 50px !important;
        font-size: 14px !important;
    }

    .adg-mobile-search-area .adg-medicine-box {
        height: 50px !important;
    }

    .adg-mobile-search-area .adg-medicine-box input {
        font-size: 14px !important;
    }

}



/* <!--     ================= TRUSTED REVIEW BOX  =================  --> */

.trusted-extra-banner {

    width: 100%;
    margin-bottom: 18px;
    border: 1px solid #d9dfe3;
    background: #fff;
}

.trusted-extra-banner img {
    margin-top: 40px;
    width: 100%;
    height: auto;
    display: block;
}

/* ================= LEFT SIDE ICON ================= */

.trusted-review-toggle {
    position: fixed;
    left: 0;
    top: 35%;
    width: 48px;
    height: 48px;
    border: 1px solid #d8dce0;
    border-left: none;
    background: #ffffff;
    color: #315d63;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999999;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .10);
}


/* ================= REVIEW SIDEBAR ================= */

.trusted-review-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 340px;
    max-width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 999998;
    /* padding: 10px; */
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, .15);
    transform: translateX(-110%);
    transition: transform .35s ease;
}


/* OPEN */

.trusted-review-section.active {
    transform: translateX(0);
    padding: 20px;
}


/* ================= CLOSE BUTTON ================= */

.trusted-review-close {
    position: absolute;
    top: 60px;
    right: 0px;
    width: 35px;
    height: 35px;
    border: none;
    background: transparent;
    color: #f1f1f1;
    background: #aba6a6;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
}


/* ================= REVIEW CARD ================= */

.review-card {
    position: relative;
    min-height: 350px;
    padding: 42px 24px 45px;
    text-align: center;
    background: #f8f8f8;
    border: 1px solid #d8dce0;
    border-top: 3px solid #7cb342;
}


/* ================= LOGO ================= */

.trusted-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
}

.trusted-check {
    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #76b82a;
    color: #fff;

    font-size: 12px;

    margin-right: 4px;
}

.trusted-text {
    font-size: 17px;
    color: #444;
}

.trusted-text b {
    color: #75a943;
}

.trusted-logo sup {
    color: #75a943;
    font-size: 7px;
}


/* ================= SCORE ================= */

.review-score {
    font-size: 38px;
    font-weight: 800;

    line-height: 1;

    margin-bottom: 8px;

    color: #111;
}

.review-label {
    font-size: 16px;
    font-weight: 700;

    color: #3c4248;
}


/* ================= LINE ================= */

.review-line {
    height: 1px;
    background: #d3d7da;
    margin: 28px 0 10px;
}


/* ================= REVIEW TEXT ================= */

.review-text {
    max-width: 260px;

    margin: 0 auto 12px;

    color: #5e666d;

    font-size: 19px;

    line-height: 1.4;
}

.review-user {
    font-size: 13px;
    color: #777;
}


/* ================= SLICK ARROWS ================= */

.trusted-review-slider .slick-prev,
.trusted-review-slider .slick-next {
    width: 28px;
    height: 28px;

    top: auto;
    bottom: 15px;

    z-index: 99;

    border: 2px solid #cbd1d5;
    border-radius: 50%;

    background: #f8f8f8;

    transform: none;
}

.trusted-review-slider .slick-prev {
    left: 15px;
}

.trusted-review-slider .slick-next {
    right: 15px;
}

.trusted-review-slider .slick-prev:before,
.trusted-review-slider .slick-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    font-size: 12px;

    color: #a9b0b5;

    opacity: 1;
}

.trusted-review-slider .slick-prev:before {
    content: "\f053";
}

.trusted-review-slider .slick-next:before {
    content: "\f054";
}


/* ================= MOBILE ONLY ================= */

@media (max-width: 969px) {

    .trusted-review-toggle {
        display: flex;
    }

}


/* TABLET */

@media (min-width: 969px) {

    .trusted-review-section {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: auto;
        transform: none;
        box-shadow: none;
    }

    .trusted-review-close {
        display: none;
    }

}




/* ================= OVERLAY ================= */

.trusted-review-overlay {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.35);

    z-index: 999997;

    opacity: 0;
    visibility: hidden;

    transition: all 0.35s ease;
}

/* Overlay Open */

.trusted-review-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* Sidebar overlay se upar rahega */

.trusted-review-section {
    z-index: 999998 !important;
}


/* Icon sabse upar */

.trusted-review-toggle {
    z-index: 999999 !important;
}







/* <!-- =========================== IMPORTANT NOTICE  ============================== --> */

.important-notice {
    background: #fff;
}

.notice-box {
    padding: 25px 20px;
    background: #f8f8f8;
    border: 1px solid #eee;
}

.notice-box p {
    margin-bottom: 20px;
    font-weight: 800;
}

/* Title */

.notice-title {
    color: #d71919;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

/* Red */

.notice-warning {
    color: #e00000;
    font-size: 22px;
}

/* Green */

.notice-green {
    color: #187d4b;
    font-size: 22px;
}

/* Blue */

.notice-blue {
    color: #3547a9;
    font-size: 22px;
}

/* Small green */

.notice-small {
    font-size: 20px;
}

/* Example */

.notice-example {
    color: #d71919;
    font-size: 21px;
    line-height: 1.35;
    margin-bottom: 0 !important;
}


/* ================= TABLET ================= */

@media (max-width: 991px) {

    .notice-title {
        font-size: 25px;
    }

    .notice-warning,
    .notice-green,
    .notice-blue {
        font-size: 19px;
    }

    .notice-small,
    .notice-example {
        font-size: 18px;
    }

}


/* ================= MOBILE ================= */

@media (max-width: 575px) {

    .important-notice {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .notice-box {
        padding: 20px 12px;
    }

    .notice-box p {
        margin-bottom: 16px;
    }

    .notice-title {
        font-size: 21px;
    }

    .notice-warning,
    .notice-green,
    .notice-blue {
        font-size: 16px;
        line-height: 1.4;
    }

    .notice-small,
    .notice-example {
        font-size: 16px;
        line-height: 1.4;
    }

}




/* <!-- =========================== service-feature-section ============================== --> */

/* =======================  SERVICE FEATURE BAR ======================= */

.service-feature-section {
    width: 100%;
    padding: 12px 0;
    background: #fff;
}

.service-feature-row {
    width: 100%;
    background: #f4f4f4;
}


/* ======================= FEATURE ITEM ======================== */

.service-feature {
    min-height: 90px;

    display: flex;
    align-items: center;

    /* padding: 5px 1px; */

    border-right: 1px solid #ffffff;

    transition: all 0.25s ease;
}


/* ========================== ICON =========================== */

.service-icon {
    width: 48px;
    min-width: 48px;

    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 12px;
}

.service-icon i {
    color: #1d3c5b;
    font-size: 32px;

    transition: all 0.25s ease;
}


/* ========================= CONTENT ========================== */

.service-content {
    min-width: 0;
}

.service-content h4 {
    margin: 0 0 2px;

    color: #34495e;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.3;
}

.service-content p {
    margin: 0;

    color: #7890a6;

    font-size: 13px;
    font-weight: 400;

    line-height: 1.4;
}


/* ========================= HOVER EFFECT ============================ */

.service-feature:hover {
    background: #eeeeee;
}

.service-feature:hover .service-icon i {
    transform: scale(1.08);
}


/* ========================  LAST ITEM BORDER REMOVE ======================= */

.service-feature-row>div:last-child .service-feature {
    border-right: 0;
}


/* ========================= TABLET ========================= */

@media (max-width: 991px) {

    .service-feature-section {
        padding: 10px 0;
    }

    .service-feature {
        min-height: 85px;

        padding: 12px 14px;

        border-right: 1px solid #ffffff;
        border-bottom: 1px solid #ffffff;
    }

    .service-icon {
        width: 44px;
        min-width: 44px;

        height: 44px;

        margin-right: 10px;
    }

    .service-icon i {
        font-size: 29px;
    }

    .service-content h4 {
        font-size: 14px;
    }

    .service-content p {
        font-size: 12px;
    }
}


/* ====================== MOBILE ========================= */

@media (max-width: 767px) {

    .service-feature-section {
        padding: 8px 0;
    }

    .service-feature {
        min-height: 75px;

        padding: 10px 15px;

        border-right: 0;
        border-bottom: 1px solid #ffffff;
    }

    .service-icon {
        width: 42px;
        min-width: 42px;

        height: 42px;

        margin-right: 10px;
    }

    .service-icon i {
        font-size: 27px;
    }

    .service-content h4 {
        font-size: 14px;
        line-height: 1.25;
    }

    .service-content p {
        font-size: 12px;
        line-height: 1.3;
    }

}


/* =========================== SMALL MOBILE ========================== */

@media (max-width: 575px) {

    .service-feature {
        min-height: 70px;

        padding: 9px 12px;
    }

    .service-icon {
        width: 38px;
        min-width: 38px;

        height: 38px;

        margin-right: 9px;
    }

    .service-icon i {
        font-size: 25px;
    }

    .service-content h4 {
        font-size: 13px;
    }

    .service-content p {
        font-size: 11px;
    }

}


/* ===================== EXTRA SMALL MOBILE =========================== */

@media (max-width: 400px) {

    .service-feature {
        padding: 8px 10px;
    }

    .service-icon {
        width: 36px;
        min-width: 36px;

        margin-right: 8px;
    }

    .service-icon i {
        font-size: 23px;
    }

    .service-content h4 {
        font-size: 12px;
    }

    .service-content p {
        font-size: 10px;
    }

}






/* <!-- ===========================  TOP SELLING PRODUCTS ======================--> */

.top-selling-section {
    background: #fff;
}

.section-heading h2 {
    margin: 0;
    color: #68717a;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* ================= PRODUCT CATEGORY LIST ================= */

.product-category-list {
    display: block;
}


/* ================= PRODUCT GRID ================= */

.product-grid {
    border: 1px solid #0b9c9c;
}


/* ================= PRODUCT CARD ================= */

.product-card {
    height: 100%;
    background: #fff;
    border-right: 1px solid #0b9c9c;
    border-bottom: 1px solid #0b9c9c;
    padding: 10px;
}

/* Remove right border from last column */

.product-grid .col-lg-4:nth-child(3n) .product-card {
    border-right: 0;
}


/* ================= PRODUCT IMAGE ================= */

.product-image-box {
    position: relative;
    width: 100%;
    height: 280px;
    background: #f3f3f3;
    overflow: hidden;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    display: block;
}

.product-image-box:hover {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

/* ================= DISCOUNT BADGE ================= */

.discount-badge {
    /* position: absolute; */
    top: 10px;
    left: 10px;

    display: inline-flex;
    align-items: center;

    height: 26px;
    padding: 0 12px;

    background: linear-gradient(90deg,
            #d90036,
            #ff7014);

    color: #fff;
    font-size: 12px;
    font-weight: 700;

    z-index: 5;
}


/* ================= HOT + DISCOUNT ================= */

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 5px;

    z-index: 5;
}

.product-badges .discount-badge {
    position: static;
}


/* ================= HOT BADGE ================= */

.hot-badge {
    min-width: 80px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2b632b;
    color: #fff;

    font-size: 12px;
    font-weight: 700;
}


/* ================= OUT OF STOCK ================= */

.stock-overlay {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    z-index: 10;

    background: rgba(255, 255, 255, .96);

    padding: 16px 25px;

    white-space: nowrap;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.stock-overlay span {
    color: #111;
    font-size: 15px;
    font-weight: 800;
}


/* ================= PRODUCT CONTENT ================= */

.product-content {
    padding: 18px 2px 8px;
}


/* ================= PRODUCT TITLE ================= */

.product-content h3 {
    margin: 0 0 3px;

    color: #101010;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    /* Only 1 line + ... */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}


/* ================= CATEGORY ================= */

.product-category {
    margin: 0 0 2px;

    color: #777;

    font-size: 14px;
}


/* ================= PACK ================= */

.product-pack {
    margin: 0 0 8px;

    color: #777;

    font-size: 14px;
}


/* ================= RATING ================= */

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

.stars {
    color: #f5bd00;

    font-size: 19px;

    letter-spacing: -2px;
}

.review-count {
    color: #777;

    font-size: 13px;
    font-weight: 600;
}


/* ================= PRICE ================= */

.product-price {
    margin-bottom: 12px;
    color: #008b8b;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}


/* ================= BUTTON ================= */

.product-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 150px;
    height: 40px;

    padding: 0 18px;

    background: #f1f1f1;

    color: #666;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition: all .25s ease;
}

.product-btn:hover {
    background: #008b8b;
    color: #fff;
}


/* ======================== TABLET ========================== */

@media (max-width: 991px) {

    .section-heading h2 {
        font-size: 25px;
    }

    .product-image-box {
        height: 300px;
    }

    /* Hide Category List on Tablet */
    .product-category-list {
        display: none !important;
    }

    .product-grid .col-lg-4:nth-child(3n) .product-card {
        border-right: 1px solid #0b9c9c;
    }

    .product-grid .col-md-6:nth-child(2n) .product-card {
        border-right: 0;
    }

}


/* ========================== MOBILE =========================== */

@media (max-width: 769px) {
    .product-image-box {
        position: relative;
        width: 100%;
        height: 220px !important;
        background: #f3f3f3;
        overflow: hidden;
    }

    .product-image-box img {
        width: 100%;
        height: 100%;
        /* object-fit: contain; */
        display: block;
    }
}

@media (max-width: 575px) {

    .top-selling-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .section-heading {
        margin-bottom: 20px !important;
    }

    .section-heading h2 {
        font-size: 23px;
    }

    /* Hide Category List on Mobile */
    .product-category-list {
        display: none !important;
    }

    .product-grid {
        border-left: 1px solid #0b9c9c;
        border-right: 1px solid #0b9c9c;
    }

    .product-grid .col-md-6:nth-child(2n) .product-card {
        border-right: 0;
    }

    .product-card {
        border-right: 1 !important;
        padding: 10px;
    }

    .product-image-box {
        height: 280px;
    }

    .product-content {
        padding: 15px 3px 10px;
    }

    .product-content h3 {
        font-size: 16px;
    }

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

    .product-btn {
        width: 100%;
    }

}



/* <!-- ========================== Menu banner Categoire css  =============================== --> */
.product-category-menu {
    position: sticky;
    top: 20px;
    z-index: 1000;
    width: 100%;
}



.product-category-list {
    width: 100%;
    background: #fff;
    border: 1px solid #dedede;
    position: relative;
    z-index: 1000;
}



.product-category {
    position: static;
}


/* ================================== CATEGORY LINK =========================== */

.product-category-link {
    min-height: 55px;
    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #243746;
    background: #fff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    border-bottom: 1px solid #e5e5e5;

    transition: all .2s ease;
}

.product-category-link i {
    font-size: 11px;
    color: #777;
    transition: .2s ease;
}


/* =================================== HOVER CATEGORY ================================== */

.product-category:hover>.product-category-link {
    background: #08716f;
    color: #fff;
}

.product-category:hover>.product-category-link i {
    color: #fff;
    transform: translateX(3px);
}


/* ================================= DESKTOP SUB MENU ====================================== */

.product-mega-menu {
    position: absolute;

    /* IMPORTANT */
    left: 100%;
    top: 0;

    width: 800px;
    max-width: calc(100vw - 330px);

    padding: 15px 20px;

    background: #fff;

    border: 1px solid #eee;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .15);

    z-index: 99999;

    opacity: 0;
    visibility: hidden;

    transform: translateX(8px);

    pointer-events: none;

    transition:
        opacity .15s ease,
        visibility .15s ease,
        transform .15s ease;
}

.product-category:hover>.product-mega-menu {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);

    pointer-events: auto;
}


.product-mega-menu a {
    display: flex;
    align-items: center;

    min-height: 50px;

    padding: 8px 12px;

    color: #333;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    border-bottom: 1px solid #eee;

    transition: all .2s ease;
}

.product-mega-menu a:hover {
    color: #08716f;
    background: #f4fafa;

    padding-left: 17px;
}


.product-mega-menu .row {
    margin-left: -8px;
    margin-right: -8px;
}

.product-mega-menu .row>div {
    padding-left: 8px;
    padding-right: 8px;
}


/* ============================ IMPORTANT Keep submenu within viewport  ============================== */

@media (min-width: 992px) {

    .product-category-menu {
        position: sticky;
        top: 20px;
    }

}


/* =============================== TABLET =================================== */

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

    .product-category-menu {
        position: sticky;
        top: 15px;
    }

    .product-category-list {
        width: 100%;
    }

    .product-mega-menu {
        left: 100%;
        width: 450px;
        max-width: calc(100vw - 400px);
    }

}

@media (max-width: 767px) {

    .product-category-menu {
        position: sticky;
        top: 10px;

        width: 100%;
    }

    .product-category-list {
        width: 100%;
    }

    .product-category {
        position: relative;
    }

    .product-category-link {
        min-height: 52px;

        padding: 0 15px;

        font-size: 14px;
    }


    /* Mobile submenu normal flow mein */
    .product-mega-menu {

        position: static;

        width: 100%;
        max-width: 100%;

        padding: 8px 10px;

        display: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        pointer-events: auto;

        box-shadow: none;

        border: 0;

        background: #f7fafa;
    }


    /* Mobile par hover disable */
    .product-category:hover>.product-mega-menu {
        display: none;
    }


    .product-mega-menu a {
        min-height: 44px;

        padding: 8px 10px;

        font-size: 12px;
    }

}


@media (max-width: 575px) {

    .product-category-menu {
        top: 0;
    }

    .product-category-link {
        min-height: 50px;
        font-size: 13px;
    }

}




/* ===================== CUSTOM FOOTER =========================== */

.custom-footer {
    position: relative;
    background: #292a26;
    color: #ffffff;
    padding: 70px 0 0;
}

/* TOP TEAL LINE */

.footer-top-line {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 48px;

    background: #237f80;
}


/* ========================= MAIN FOOTER ============================== */

.footer-main {
    padding-top: 15px;
}

.footer-widget h4 {
    margin: 0 0 15px;

    color: #f5f5f5;

    font-size: 19px;
    font-weight: 700;
}

.footer-widget ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-widget ul li {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.footer-widget ul li a {
    display: block;

    position: relative;

    padding: 9px 10px 9px 20px;

    color: #b7b9bd;

    text-decoration: none;

    font-size: 16px;

    transition: all .3s ease;
}

.footer-widget ul li a::before {
    content: "›";

    position: absolute;

    left: 4px;

    top: 7px;

    color: #9da4a9;

    font-size: 20px;
}

.footer-widget ul li a:hover {
    color: #2aa8a2;
    padding-left: 25px;
}


/* ============================= MIDDLE SECTION =================================== */

.footer-middle {
    padding: 65px 0 50px;
}

.footer-payment h5 {
    margin-bottom: 18px;

    color: #f5f5f5;

    font-size: 15px;
    font-weight: 500;

    letter-spacing: .3px;
}

.footer-image-box img {
    max-height: 150px;
    width: auto;
}


/* ============================ DISCLAIMER ==================================== */

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, .08);

    padding: 35px 0 25px;
}

.footer-disclaimer h4 {
    margin-bottom: 15px;

    color: #f4f4f4;

    font-size: 19px;
    font-weight: 700;
}

.footer-disclaimer p {
    margin: 0;

    color: #aeb2b5;

    font-size: 16px;
    line-height: 1.7;
}


/* ==================================== TABLET ===================================== */

@media (max-width: 991px) {

    .custom-footer {
        padding-top: 60px;
    }

    .footer-top-line {
        height: 40px;
    }

    .footer-main {
        padding-top: 5px;
    }

    .footer-middle {
        padding: 45px 0 35px;
    }

}


/* =================================  MOBILE ===================================== */

@media (max-width: 575px) {

    .custom-footer {
        padding-top: 48px;
    }

    .footer-top-line {
        height: 35px;
    }

    .footer-main {
        padding-top: 5px;
    }

    .footer-widget {
        margin-bottom: 12px;
    }

    .footer-widget h4 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .footer-widget ul li a {
        font-size: 15px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .footer-middle {
        padding: 35px 0 25px;
    }

    .footer-payment {
        text-align: center !important;
        margin-bottom: 25px;
    }

    .footer-payment h5 {
        font-size: 14px;
    }

    .footer-image-box img {
        max-height: 48px;
    }

    .footer-disclaimer {
        padding-top: 25px;
        padding-bottom: 20px;
    }

    .footer-disclaimer h4 {
        font-size: 17px;
    }

    .footer-disclaimer p {
        font-size: 14px;
        line-height: 1.6;
    }

}





/* ================= COPYRIGHT ================= */

.footer-copyright {
    background: #1e1f1c;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 18px 0;
}

.footer-copyright p {
    margin: 0;
    color: #9da4a9;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: #9da4a9;
    font-size: 14px;
    text-decoration: none;
    transition: .3s;
}

.footer-bottom-links a:hover {
    color: #2aa8a2;
}


/* MOBILE */

@media (max-width: 767px) {

    .footer-copyright {
        text-align: center;
        padding: 15px 0;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 10px;
    }

}