/* ======================================Top Slider css START===================================== */
    .slider-top-wrapper {
        width: 1200px;
        height: 393px;
        display: flex;
        gap: 16px;
        margin: 0 auto;
    }

    .watch-wrapper {
        flex: 0 0 800px;
    }

    .discount-wrapper {
        flex: 0 0 360px;
    }

    .watch-card {
        width: 100%;
        height: 100%;
        opacity: 1;
        background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 50%, #1a4a6e 100%);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 16px;
        border: none;
        position: relative;
        overflow: hidden;
        transition: background-image 0.5s ease-in-out;
    }

    .watch-card .card-content {
        position: absolute;
        top: 30px;
        left: 30px;
        color: white;
        z-index: 5;
    }

    .watch-card .card-content h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px;
        color: white;
    }

    .watch-card .card-content p {
        font-size: 14px;
        margin-bottom: 20px;
        color: white;
        max-width: 300px;
        line-height: 1.5;
    }

    .shop-now-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 24px;
        background: transparent;
        color: #95C43F;
        text-decoration: none;
        border: 2px solid #95C43F;
        border-radius: 8px;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
        margin-top: 200px;
    }

    .shop-now-btn:hover {
        background: #95C43F;
        color: white;
        text-decoration: none;
    }

    .shop-now-btn i {
        font-size: 16px;
    }

    .discount-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
        height: 100%;
    }

    .discount-card {
        width: 100%;
        height: 188.5px;
        opacity: 1;
        border-radius: 16px;
        border: none;
        position: relative;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .discount-card .card-content {
        position: absolute;
        top: 20px;
        left: 20px;
        color: white;
        z-index: 5;
    }

    .discount-card .card-content h3 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 5px;
        color: white;
    }

    .discount-card .card-content p {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 12px;
        color: white;
    }

    .shop-now-btn-small {
        display: inline-block;
        padding: 6px 16px;
        background: transparent;
        color: white;
        text-decoration: underline;
        font-size: 12px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .shop-now-btn-small:hover {
        color: #95C43F;
        text-decoration: underline;
    }

    .hero-cards {
        display: flex;
        gap: 20px;
        /* width: 1200px; */
        margin: 0 auto;
    }

    .hero-card {
        width: 100%;
        height: auto;
        aspect-ratio: 2.3 / 1;
        opacity: 1;
        border-radius: 16px;
        border: none;
        position: relative;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .hero-card .card-content-small {
        position: absolute;
        top: 21px;
        left: 20px;
        width: 131px;
        height: 53px;
        gap: 10px;
        opacity: 1;
        color: white;
        z-index: 5;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hero-card .card-content-small h4 {
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 10px 0;
        color: white;
    }

    .shop-now-link {
        display: inline-block;
        color: white;
        text-decoration: underline;
        font-size: 13px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .shop-now-link:hover {
        color: #95C43F;
        text-decoration: underline;
    }

    .slider-dots {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 10;
    }

    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot:hover {
        background: rgba(255, 255, 255, 0.8);
    }

    .dot.active {
        background: white;
        width: 10px;
        height: 10px;
    }


    .slider-dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
    }

    .slider-dots .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgb(161, 160, 160);
        cursor: pointer;
        transition: 0.3s;
    }

    .slider-dots .dot.active {
        background: #95C43F !important;
    }

    @media (max-width: 575.98px) {
        .container-fluid {
            padding-left: 15px !important;
            padding-right: 15px !important;
        }

        .slider-top-wrapper {
            width: 100%;
            height: auto;
            flex-direction: column;
            gap: 16px;
        }

        .watch-wrapper {
            flex: 1;
        }

        .watch-card {
            height: 200px;
        }

        .discount-wrapper {
            flex: 1;
        }

        .discount-cards {
            flex-direction: row;
            height: auto;
            gap: 10px;
        }

        .discount-card {
            width: calc(50% - 5px);
            height: 140px;
            background-size: 100% 100%;
        }

        .hero-cards {
            width: 100%;
            flex-direction: column;
            gap: 16px;
            background-size: 100% 100%;
        }

        .hero-card {
            width: 100%;
            height: auto;
            aspect-ratio: 2.3 / 1;
            background-size: cover;
        }
    }

    @media (min-width: 576px) and (max-width: 767.98px) {
        .container-fluid {
            padding-left: 30px !important;
            padding-right: 30px !important;
        }

        .slider-top-wrapper {
            width: 100%;
            height: auto;
            flex-direction: column;
            gap: 16px;
        }

        .watch-wrapper {
            flex: 1;
        }

        .watch-card {
            height: 240px;
        }

        .discount-wrapper {
            flex: 1;
        }

        .discount-cards {
            flex-direction: row;
            height: auto;
            gap: 12px;
        }

        .discount-card {
            width: calc(50% - 6px);
            height: 160px;
        }

        .hero-cards {
            width: 100%;
            flex-direction: column;
            gap: 16px;
        }

        .hero-card {
            width: 100%;
            height: auto;
            aspect-ratio: 2.3 / 1;
        }
    }

    @media (min-width: 768px) and (max-width: 991.98px) {
        .container-fluid {
            padding-left: 50px !important;
            padding-right: 50px !important;
        }

        .slider-top-wrapper {
            width: 100%;
            max-width: 700px;
            height: auto;
            flex-direction: column;
            gap: 16px;
        }

        .watch-wrapper {
            flex: 1;
        }

        .watch-card {
            height: 300px;
            background-size: 100% 100%;
        }

        .discount-wrapper {
            flex: 1;
        }

        .discount-cards {
            flex-direction: row;
            height: auto;
            gap: 16px;
        }

        .discount-card {
            width: calc(50% - 8px);
            height: 180px;
            background-size: 100% 100%;
        }

        .hero-cards {
            width: 100%;
            max-width: 700px;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 16px;
        }

        .hero-card {
            width: calc(50% - 8px);
            height: auto;
            aspect-ratio: 2.3 / 1;
            background-size: cover;
        }
    }

    @media (min-width: 992px) and (max-width: 1199.98px) {
        .container-fluid {
            padding-left: 100px !important;
            padding-right: 100px !important;
        }

        .slider-top-wrapper {
            width: 100%;
            max-width: 900px;
            height: 330px;
            gap: 16px;
        }

        .watch-wrapper {
            flex: 0 0 640px;
        }

        .discount-wrapper {
            flex: 0 0 244px;
        }

        .discount-card {
            height: 157px;
        }

        .hero-cards {
            width: 100%;
            max-width: 900px;
            gap: 16px;
        }

        .hero-card {
            width: calc(33.333% - 11px);
            height: auto;
            aspect-ratio: 2.3 / 1;
        }
    }

    @media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1200px !important;
    }
}
/* ======================================Top Slider css END===================================== */


/* ======================================Header & Menu css START===================================== */
    :root {
        --naas-green-dark: #95C43F;
        --naas-green-light: #F0F9EE;
        --naas-header-green: #95C43F;
        --naas-separator-color: #E0E0E0;
        --naas-text-color: #4A4A4A;
        --naas-footer-green: #95C43F;
    }

    body {
        font-family: 'Lato', Arial, sans-serif;
        color: var(--naas-text-color);
    }

    .naas-social-icons-header i {
        cursor: pointer;
        transition: color 0.2s;
    }

    .naas-social-icons-header i:hover {
        color: #dedede;
    }

    .naas-green-text {
        color: var(--naas-green-dark);
    }

    .naas-link {
        color: var(--naas-green-dark);
    }

    .naas-link:hover {
        color: #95C43F;
    }

    .naas-top-bar {
        background-color: var(--naas-header-green);
        color: white;
        font-size: 0.75rem;
    }

    .naas-logo-img {
        height: 35px;
        width: auto;
    }

    .naas-welcome-text {
        font-weight: 700;
        font-style: normal;
        color: #FFFFFF;
        font-family: 'Lato', Arial, sans-serif;
        font-size: 12px;
    }

    .naas-more-btn {
        margin-left: 5px !important;
        color: #FFFFFF;
        border: 1px solid #FFFFFF !important;
        background-color: transparent;
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .btn-check:focus+.btn,
    .btn:focus {
        outline: 0;
        box-shadow: none !important;
    }

    .naas-all-categories {
        background-color: #F8F8F8;
        border: 1px solid #E8E8E8;
        color: #4A4A4A;
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: 0.25rem;
        font-size: 0.9rem;
        height: 41px;
    }

    .fa,
    .fas {
        font-family: "Font Awesome 5 Pro";
        font-weight: 900;
    }

    .three-dot {
        margin-right: 15px !important;
    }

    .naas-search-input {
        border: 1px solid #E8E8E8;
        border-radius: 0.25rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        border-left: none;
    }

    .input-group {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        width: 71% !important;
    }

    .naas-dropdown-btn {
        border: 1px solid #E0E0E0;
        background-color: white;
        color: #FFFFFF;
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        min-width: 85px;
    }

    .naas-lang-btn {
        cursor: pointer;
        color: white !important;
    }

    .naas-green-search-btn {
        background-color: var(--naas-green-dark);
        color: white;
        border-radius: 0.25rem;
        padding: 0.6rem 1.50rem;
        border: none;
        font-size: 0.9rem;
    }

    .naas-login-btn {
        background-color: var(--naas-green-dark);
        color: white;
        font-weight: 500;
        padding: 0.6rem 1rem;
        border-radius: 0.25rem;
        font-size: 0.9rem;
    }

    .naas-signup-btn {
        margin-left: 5px !important;
        background-color: white;
        color: #95C43F;
        border: 1px solid #95C43F;
        font-weight: 500;
        padding: 0.6rem 1rem;
        border-radius: 0.25rem;
        font-size: 0.9rem;
    }

    .naas-header-divider {
        border-top: 1px solid #E0E0E0;
    }

    .naas-login-bg {
        background-color: var(--naas-green-light);
        min-height: 70vh;
    }

    .naas-title-login {
        font-size: 1.9rem;
        font-weight: 500;
        margin-bottom: 0.2rem;
    }

    .naas-subtitle-customer {
        font-size: 1.5rem;
        font-weight: 500;
    }

    .naas-access-text {
        font-size: 0.9rem;
        margin-top: 0.75rem;
    }

    .naas-social-section {
        margin-top: 30px;
    }

    .naas-social-title {
        font-size: 1rem;
        font-weight: 500;
    }

    .naas-social-btn {
        padding: 0.8rem 1rem;
        border-radius: 0.25rem;
        font-weight: 500;
        border: 1px solid #E8E8E8;
        color: #555;
        background-color: white;
        font-size: 0.9rem;
        line-height: 1;
        height: 40px;
    }

    .naas-social-btn img {
        height: 18px;
        width: 18px;
        margin-top: -1px;
    }

    .naas-separator {
        border-top: 1px solid var(--naas-separator-color);
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }

    .naas-form-group {
        margin-bottom: 2.25rem !important;
    }

    .naas-form-label {
        font-size: 0.9rem;
        font-weight: 500;
        color: #444;
        margin-bottom: 0.5rem;
    }

    .naas-input {
        border-radius: 0.25rem;
        border: 1px solid #ced4da;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        height: 40px;
    }

    .naas-input:focus {
        border-color: var(--naas-green-dark);
        box-shadow: 0 0 0 0.25rem rgba(108, 174, 69, 0.2);
    }

    .naas-form-options {
        font-size: 0.75rem;
    }

    .naas-forgot-link {
        font-weight: 500;
    }

    .naas-create-account {
        font-size: 0.8rem;
        margin-top: 20px !important;
        margin-bottom: 0 !important;
    }

    .naas-login-btn-form {
        background-color: var(--naas-green-dark);
        border-color: var(--naas-green-dark);
        color: white;
        font-weight: bold;
        padding: 0.8rem 1rem;
        border-radius: 0.25rem;
        font-size: 0.9rem;
    }

    .naas-footer-content {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    .naas-footer-compact {
        padding-top: 20px;
        padding-bottom: 8px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .naas-footer-compact .naas-footer-col {
        padding-bottom: 0.5rem;
    }

    .naas-footer-heading {
        margin-bottom: 0.6rem;
        font-size: 0.95rem;
    }

    .naas-footer-text,
    .naas-link-list a {
        font-size: 0.85rem;
        color: #6a6a6a;
    }

    .naas-footer-green-hr {
        border: 0;
        height: 2px;
        background: var(--naas-footer-green);
        margin: 1.25rem 0;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.95;
    }

    .naas-newsletter-group .form-control {
        border-radius: 20px 0 0 20px;
        border: 1px solid #d6e8c9;
        padding: .5rem 0.9rem;
    }

    .naas-newsletter-group .naas-subscribe-btn {
        border-radius: 0 20px 20px 0;
        background: var(--naas-footer-green);
        color: #fff;
        border: none;
        padding: .5rem 1rem;
        font-weight: 600;
        margin-left: -1px;
    }

    .naas-footer-copyright {
        text-align: center;
        font-size: 0.85rem;
        color: #7a7a7a;
        padding-bottom: 8px;
    }


    .form-control:focus {
        color: #212529;
        background-color: #fff;
        border-color: #95C43F;
        outline: 0;
        box-shadow: 0 0 0 .10rem #95C43F;
    }

    :root {
        --naas-green-medium: #8AC540;
        --naas-text-color: #4A4A4A;
    }

    body {
        background-color: #f8f8f8;
    }

    .header-mimic {
        background-color: white;
        padding: 1.5rem 2rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .naas-action-icon {
        font-size: 1.25rem;
        color: var(--naas-text-color);
        margin-left: 1.5rem;
        position: relative;
        cursor: pointer;
        transition: color 0.2s;
        text-decoration: none;
    }

    .naas-action-icon:hover {
        color: var(--naas-green-medium);
        text-decoration: none;
    }

    .naas-cart-badge {
        position: absolute;
        top: -8px;
        right: -10px;
        padding: 2px 6px;
        border-radius: 50%;
        background-color: var(--naas-green-medium);
        color: white;
        font-size: 0.7rem;
        font-weight: bold;
        line-height: 1;
    }

    @media (max-width: 767.98px) {
        .naas-action-icon {
            margin-left: 1rem;
            font-size: 1.1rem;
        }
    }

    .naas-track-btn {
        margin-left: 5px !important;
        background-color: white;
        color: #95C43F;
        border: 1px solid #95C43F;
        font-weight: 500;
        padding: -4.4rem 1rem;
        border-radius: 0.25rem;
        font-size: 0.9rem;
    }

    @media (min-width: 1200px) {
        .container,
        .container-lg,
        .container-md,
        .container-sm,
        .container-xl {
            max-width: 1200px !important;
        }
    }

    .naas-navbar-wrapper {
        background: white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    .naas-navbar-inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    .navbar-brand {
        margin-right: 20px;
    }

    .naas-logo-img {
        height: 40px;
        object-fit: contain;
    }

    .naas-search-group-full {
        flex: 1;
        width: 1000px !important;
        margin: 10;
        border: 1px solid #E0E0E0;
        border-radius: 8px;
        overflow: hidden;
    }

    .naas-all-categories {
        background: white;
        color: #333;
        border: none;
        border-right: 1px solid #E0E0E0 !important;
        border-radius: 0 !important;
        padding: 10px 16px;
        font-size: 14px;
        white-space: nowrap;
        transition: background 0.3s;
    }

    .naas-all-categories:hover {
        background: #f5f5f5;
    }

    .naas-search-input {
        border: none;
        padding: 10px 16px;
        font-size: 14px;
    }

    .naas-search-input:focus {
        box-shadow: none;
        outline: none;
    }

    .naas-green-search-btn {
        background: #8BC34A;
        border: none;
        color: white;
        padding: 10px 20px;
        border-radius: 0 !important;
        transition: background 0.3s;
    }

    .naas-green-search-btn:hover {
        background: #7CB342;
    }

    .naas-action-buttons {
        gap: 15px;
    }

    .naas-action-icon {
        position: relative;
        color: #333;
        font-size: 20px;
        transition: color 0.3s;
    }

    .naas-action-icon:hover {
        color: #8BC34A;
    }

    .naas-action-icon span {
        position: absolute;
        top: -8px;
        right: -10px;
        background: #8BC34A;
        color: white;
        font-size: 11px;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
    }

    .naas-login-btn {
        background: white;
        border: 1px solid #8BC34A;
        color: #8BC34A;
        padding: 8px 20px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s;
        margin-left: 20px;
    }

    .naas-login-btn:hover {
        background: #8BC34A;
        color: white;
    }

    .naas-signup-btn {
        background: #8BC34A;
        border: 1px solid #8BC34A;
        color: white;
        padding: 8px 20px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s;
    }

    .naas-signup-btn:hover {
        background: #7CB342;
        border-color: #7CB342;
    }

    .track-order.btn {
        padding: .10rem .75rem !important;
    }

    @media (max-width: 1199px) {
        .naas-search-group-full {
            max-width: 500px;
            margin: 0 15px;
        }

        .naas-all-categories {
            padding: 8px 12px;
            font-size: 13px;
        }

        .three-dot {
            display: none;
        }
    }

    @media (max-width: 991px) {
        .naas-search-group-full {
            order: 3;
            width: 100%;
            max-width: 100%;
            margin: 15px 0 0 0;
        }

        .navbar-brand {
            margin-right: auto;
        }

        .naas-action-buttons {
            margin-left: auto;
        }
    }

    @media (max-width: 767px) {
        .naas-all-categories {
            font-size: 0;
            padding: 8px 10px;
        }

        .naas-all-categories i {
            font-size: 16px;
            margin: 0 !important;
        }

        .naas-search-input {
            padding: 8px 12px;
            font-size: 13px;
        }

        .naas-green-search-btn {
            padding: 8px 15px;
        }

        .naas-login-btn,
        .naas-signup-btn {
            padding: 6px 12px;
            font-size: 13px;
        }

        .naas-login-btn i {
            display: none;
        }

        .naas-action-icon {
            font-size: 18px;
        }
    }

    @media (max-width: 575px) {
        .naas-logo-img {
            height: 32px;
        }

        .naas-action-buttons {
            gap: 8px;
        }

        .naas-login-btn {
            padding: 6px 10px;
            font-size: 12px;
        }

        .naas-signup-btn {
            padding: 6px 10px;
            font-size: 12px;
        }
    }
/* ========================================Header & Menu css END========================================== */


/* ======================================Category Modal Open css START===================================== */
    #categoryModal .modal-dialog {
        max-width: 1400px;
    }

    #categoryModal .modal-content {
        border-radius: 15px;
        border: none;
        box-shadow: none;
        background-color: #f0f0f5;
        overflow: hidden;
    }

    #categoryModal .modal-header {
        padding: 25px 40px;
        border-bottom: none;
        background-color: #f0f0f5;
        border-radius: 12px 12px 0 0;
    }

    #categoryModal .modal-title {
        font-size: 26px;
        font-weight: 600;
        color: #1a1a1a;
        letter-spacing: -0.5px;
    }

    #categoryModal .modal-header a {
        color: #007bff;
        text-decoration: none;
        font-size: 15px;
        font-weight: 400;
    }

    #categoryModal .modal-header a:hover {
        text-decoration: underline;
        color: #0056b3;
    }

    #categoryModal .modal-header .close {
        font-size: 20px;
        color: #1a1a1a;
        opacity: 1;
        padding: 0;
        margin: 0;
        font-weight: 300;
    }

    #categoryModal .modal-header .close:hover {
        opacity: 0.7;
    }

    #categoryModal .modal-body {
        padding: 0 40px 40px 40px;
        background-color: #f0f0f5;
        border-radius: 0 0 12px 12px;
    }

    #categoryModal .category-modal-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        margin: 0;
    }

    #categoryModal .category-column {
        padding: 0;
        margin: 0;
        max-width: 100%;
    }

    #categoryModal .col-md-6 {
        flex: none;
        max-width: 100%;
        padding: 0;
    }

    #categoryModal ul.list-unstyled {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    #categoryModal .category-item-wrapper {
        padding: 20px 0;
        margin: 0;
    }

    #categoryModal .category-header {
        padding: 0 20px;
        cursor: pointer;
        border-left: 3px solid #d0d0d0;
        transition: border-left-color 0.2s ease;
        height: 35px;
    }

    #categoryModal .category-header:hover {
        border-left-color: #7cb342;
    }

    #categoryModal .category-header[aria-expanded="true"] {
        border-left-color: #7cb342;
    }

    #categoryModal .category-name {
        font-size: 15px;
        color: #1a1a1a;
        font-weight: 500;
        margin: 0;
        line-height: 1.4;
    }

    #categoryModal a.category-name {
        text-decoration: none;
    }

    #categoryModal a.category-name:hover {
        color: #1a1a1a;
    }

    #categoryModal .collapse-icon {
        font-size: 20px;
        color: #7cb342;
        font-weight: 300;
        line-height: 1;
        font-style: normal;
        user-select: none;
    }

    #categoryModal .collapse-icon::before {
        content: '+';
    }

    #categoryModal [aria-expanded="true"] .collapse-icon {
        color: #1a1a1a;
        font-weight: 400;
    }

    #categoryModal [aria-expanded="true"] .collapse-icon::before {
        content: '—';
    }

    #categoryModal .small-icon {
        font-size: 20px;
    }

    #categoryModal .subcategories-wrapper {
        margin-top: 0;
        padding-left: 60px;
        padding-right: 20px;
    }

    #categoryModal .subcategories-list {
        margin: 0;
        padding: 0;
    }

    #categoryModal .subcategory-item {
        padding: 12px 0;
        margin-bottom: 8px;
    }

    #categoryModal .subcategory-item:last-child {
        margin-bottom: 0;
    }

    #categoryModal .subcategory-header {
        cursor: pointer;
    }

    #categoryModal .subcategory-link,
    #categoryModal .subcategory-header .text-secondary {
        font-size: 15px;
        color: #1a1a1a;
        font-weight: 400;
        padding-left: 25px;
        border-left: 2px solid #d0d0d0;
        transition: all 0.2s ease;
        line-height: 1.4;
    }

    #categoryModal .subcategory-link {
        text-decoration: none;
        display: block;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    #categoryModal .subcategory-link:hover,
    #categoryModal .subcategory-header:hover .text-secondary {
        color: #7cb342;
        border-left-color: #7cb342;
    }

    #categoryModal .child-categories-wrapper {
        margin-top: 8px;
        padding-left: 25px;
    }

    #categoryModal .child-categories-list {
        margin-left: 0;
        padding: 0;
    }

    #categoryModal .child-category-item {
        padding: 8px 0;
    }

    #categoryModal .child-category-link {
        font-size: 14px;
        color: #666;
        font-weight: 400;
        padding-left: 25px;
        border-left: 2px solid #e0e0e0;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    #categoryModal .child-category-link:hover {
        color: #7cb342;
        border-left-color: #7cb342;
    }

    #categoryModal .collapse {
        transition: none;
    }

    #categoryModal .collapsing {
        transition: height 0.25s ease;
    }

    .modal-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 0 !important;
        width: 100vw;
        height: 100vh;
        background-color: #000;
    }

    @media (max-width: 992px) {
        #categoryModal .category-modal-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        #categoryModal .category-modal-grid {
            grid-template-columns: 1fr;
        }

        #categoryModal .modal-dialog {
            margin: 10px;
        }

        #categoryModal .modal-header {
            padding: 20px 25px;
        }

        #categoryModal .modal-body {
            padding: 0 25px 30px 25px;
        }

        #categoryModal .category-item-wrapper {
            padding: 15px 0;
        }
    }

    @media (max-width: 576px) {
        #categoryModal .modal-header {
            padding: 15px 20px;
        }

        #categoryModal .modal-body {
            padding: 0 20px 25px 20px;
        }

        #categoryModal .modal-title {
            font-size: 22px;
        }

        #categoryModal .category-header,
        #categoryModal .subcategory-link {
            padding-left: 15px;
        }

        #categoryModal .subcategories-wrapper {
            padding-left: 30px;
        }
    }
/* ======================================Category Modal Open css END=========================================== */


/* ======================================Category Slider Styles START========================================== */
    .category-section.container {
        margin-top: 110px !important;
    }

    .category-border {
        position: relative;
        padding: 0 40px;
    }

    .category-slider-wrapper {
        position: relative;
    }

    .category-slider {
        display: flex;
        gap: 35px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 18px 0;
        cursor: grab;
        user-select: none;
    }

    .category-slider.dragging {
        cursor: grabbing;
        scroll-behavior: auto;
    }

    .category-slider::-webkit-scrollbar {
        display: none;
    }

    .category-item {
        flex-shrink: 0;
    }

    .category-item a {
        text-decoration: none;
        display: block;
        pointer-events: auto;
    }

    .category-name {
        color: #333;
        font-size: 14px;
        font-weight: 500;
        white-space: nowrap;
        transition: color 0.3s ease;
        padding: 4px 2px;
    }

    .category-item a:hover .category-name {
        color: #95C43F;
    }

    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        transition: all 0.3s ease;
        opacity: 1;
    }

    .slider-arrow:hover {
        background: none !important;
    }

    .slider-arrow.left {
        left: -50px;
    }

    .slider-arrow.right {
        right: -50px;
    }

    .slider-arrow i {
        font-size: 18px;
        color: #95C43F;
    }

    @media (max-width: 768px) {
        .category-border {
            padding: 0 30px;
        }

        .category-slider {
            gap: 25px;
            padding: 15px 0;
        }

        .category-name {
            font-size: 13px;
        }

        .slider-arrow {
            width: 28px;
            height: 28px;
        }

        .slider-arrow.left {
            left: -35px;
        }

        .slider-arrow.right {
            right: -35px;
        }

        .slider-arrow i {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .category-border {
            padding: 0 25px;
        }

        .category-slider {
            gap: 20px;
        }

        .slider-arrow.left {
            left: -30px;
        }

        .slider-arrow.right {
            right: -30px;
        }
    }
/* ======================================Category Slider Styles END========================================== */


/* ======================================Best Deal Products Styles START===================================== */
    .bestdeal-header {
        width: 1200px;
        height: 38px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        opacity: 1;
        margin: 0 auto 20px;
    }

    .bestdeal-header h2 {
        font-size: 32px;
        font-weight: bold;
        color: #2B2D32;
        margin: 0;
    }

    .bestdeal-header .bestdeal-view-all {
        color: #2B2D32;
        text-decoration: none;
        font-weight: medium;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .bestdeal-header .bestdeal-view-all:hover {
        color: #333;
    }

    .bestdeal-container {
        display: flex;
        gap: 20px;
        width: 1200px;
        height: 694px;
        opacity: 1;
        margin: 0 auto;
    }

    .bestdeal-card-large {
        width: 468px;
        height: 694px;
        opacity: 1;
        border-radius: 5px;
        background: #0a1628;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border: none;
        position: relative;
        overflow: hidden;
    }

    .bestdeal-small-cards {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        width: 712px;
        height: 694px;
        opacity: 1;
    }

    .bestdeal-card {
        width: 224px;
        height: 337px;
        opacity: 1;
        padding-bottom: 10px;
        border-radius: 5px;
        border: 1px solid #e0e0e0;
        background: white;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .bestdeal-card .bestdeal-badge {
        position: absolute;
        top: 10px;
        left: 0px;
        background: #95C43F;
        color: white;
        padding: 3px 8px;
        border-radius: 3px;
        font-size: 12px;
        font-weight: bold;
        z-index: 2;
    }

    .bestdeal-card .bestdeal-wishlist-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        border: none;
        background: transparent;
        color: #6173AC;
        font-size: 18px;
        cursor: pointer;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .bestdeal-card:hover .bestdeal-wishlist-btn {
        opacity: 1;
    }

    .bestdeal-card .bestdeal-image {
        width: 100%;
        height: 256px;
        opacity: 1;
        object-fit: cover;
        display: block;
        transition: height 0.3s ease;
    }

    .bestdeal-card:hover .bestdeal-image {
        height: 220px;
    }

    .bestdeal-card .bestdeal-card-body {
        width: 100%;
        padding: 8px 10px 2px 10px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .bestdeal-card .bestdeal-card-hover-actions {
        position: absolute;
        bottom: 4px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        width: 200px;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 3;
        pointer-events: none;
    }

    .bestdeal-card:hover .bestdeal-card-hover-actions {
        opacity: 1;
        pointer-events: auto;
    }

    .bestdeal-card .bestdeal-view-detail-btn {
        flex: 1;
        padding: 8px 15px;
        background: white;
        border: 1px solid #95C43F;
        border-radius: 8px;
        color: #95C43F;
        text-decoration: none;
        font-size: 12px;
        font-weight: 500;
        transition: all 0.3s ease;
        text-align: center;
    }

    .bestdeal-card .bestdeal-view-detail-btn:hover {
        background: #95C43F;
        color: white;
    }

    .bestdeal-card .bestdeal-cart-icon-btn {
        width: 45px;
        height: 35px;
        background: #95C43F;
        border: none;
        border-radius: 8px;
        color: white;
        font-size: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .bestdeal-card .bestdeal-cart-icon-btn:hover {
        background: #7fb030;
    }

    .bestdeal-card h5 {
        font-size: 14px;
        font-weight: 600;
        color: #2B2D32;
        margin-bottom: 5px;
        line-height: 1;
    }

    .bestdeal-card .bestdeal-price {
        margin-bottom: 0;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .bestdeal-card .bestdeal-old-price {
        text-decoration: line-through;
        color: #A3A9BA;
        font-weight: 400;
        font-size: 12px;
    }

    .bestdeal-card .bestdeal-new-price {
        color: #2B2D32;
        font-weight: 400;
        font-size: 12px;
    }

    .bestdeal-card .bestdeal-product-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .bestdeal-card .bestdeal-stock-text {
        font-size: 10px;
        color: #109D58;
        font-weight: 400;
        margin-bottom: 0;
        line-height: 1;
    }

    .bestdeal-card .bestdeal-stock-text span {
        color: #A3A9BA;
        font-weight: 600;
    }

    .bestdeal-card .bestdeal-rating {
        display: flex;
        align-items: center;
        gap: 3px;
        font-size: 10px;
        line-height: 1;
    }

    .bestdeal-card .bestdeal-rating i.bi-star-fill {
        color: #E5B341;
    }

    .bestdeal-card .bestdeal-rating i.bi-star {
        color: #A3A9BA;
    }

    .bestdeal-card .bestdeal-review-count {
        color: #A3A9BA;
        font-size: 10px;
    }

    @media (max-width: 575.98px) {
        .container-fluid {
            padding-left: 15px !important;
            padding-right: 15px !important;
        }

        .bestdeal-header {
            width: 100%;
            height: auto;
            margin-bottom: 15px;
        }

        .bestdeal-header h2 {
            font-size: 20px;
        }

        .bestdeal-header .bestdeal-view-all {
            font-size: 12px;
        }

        .bestdeal-container {
            width: 100%;
            height: auto;
            flex-direction: column;
            gap: 16px;
        }

        .bestdeal-card-large {
            width: 100%;
            height: 250px;
        }

        .bestdeal-small-cards {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            gap: 16px;
            width: 100%;
            height: auto;
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .bestdeal-small-cards::-webkit-scrollbar {
            display: none;
        }

        .bestdeal-card {
            width: 180px;
            min-width: 180px;
            height: 280px;
            flex-shrink: 0;
        }

        .bestdeal-card .bestdeal-image {
            height: 180px;
        }

        .bestdeal-card:hover .bestdeal-image {
            height: 180px;
        }

        .bestdeal-card .bestdeal-card-body {
            padding: 4px 8px 0px 8px;
        }

        .bestdeal-card .bestdeal-card-body h5 {
            font-size: 11px;
            margin-bottom: 2px;
            line-height: 1.2;
        }

        .bestdeal-card .bestdeal-price {
            margin-bottom: 2px;
        }

        .bestdeal-card .bestdeal-old-price {
            font-size: 9px;
        }

        .bestdeal-card .bestdeal-new-price {
            font-size: 9px;
        }

        .bestdeal-card .bestdeal-product-info {
            margin-bottom: 2px;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
        }

        .bestdeal-card .bestdeal-stock-text {
            font-size: 8px;
            line-height: 1.2;
            margin-bottom: 0;
            width: 100%;
        }

        .bestdeal-card .bestdeal-rating {
            font-size: 8px;
            line-height: 1.2;
            gap: 2px;
            width: 100%;
        }

        .bestdeal-card .bestdeal-review-count {
            font-size: 8px;
        }

        .bestdeal-card .bestdeal-card-hover-actions {
            opacity: 1;
            pointer-events: auto;
            bottom: 2px;
            width: 90%;
            gap: 5px;
        }

        .bestdeal-card .bestdeal-view-detail-btn {
            padding: 3px 6px;
            font-size: 8px;
            height: 24px;
        }

        .bestdeal-card .bestdeal-cart-icon-btn {
            width: 30px;
            height: 24px;
        }

        .bestdeal-card .bestdeal-cart-icon-btn img {
            width: 16px;
            height: 16px;
        }
    }

    @media (min-width: 576px) and (max-width: 767.98px) {
        .container-fluid {
            padding-left: 30px !important;
            padding-right: 30px !important;
        }

        .bestdeal-header {
            width: 100%;
            height: auto;
            margin-bottom: 15px;
        }

        .bestdeal-header h2 {
            font-size: 24px;
        }

        .bestdeal-header .bestdeal-view-all {
            font-size: 13px;
        }

        .bestdeal-container {
            width: 100%;
            height: auto;
            flex-direction: column;
            gap: 16px;
        }

        .bestdeal-card-large {
            width: 100%;
            height: 280px;
        }

        .bestdeal-small-cards {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            gap: 16px;
            width: 100%;
            height: auto;
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .bestdeal-small-cards::-webkit-scrollbar {
            display: none;
        }

        .bestdeal-card {
            width: 200px;
            min-width: 200px;
            height: 290px;
            flex-shrink: 0;
        }

        .bestdeal-card .bestdeal-image {
            height: 190px;
        }

        .bestdeal-card:hover .bestdeal-image {
            height: 190px;
        }

        .bestdeal-card .bestdeal-card-body {
            padding: 5px 8px 0px 8px;
        }

        .bestdeal-card .bestdeal-card-body h5 {
            font-size: 12px;
            margin-bottom: 3px;
            line-height: 1.2;
        }

        .bestdeal-card .bestdeal-price {
            margin-bottom: 3px;
        }

        .bestdeal-card .bestdeal-old-price {
            font-size: 10px;
        }

        .bestdeal-card .bestdeal-new-price {
            font-size: 10px;
        }

        .bestdeal-card .bestdeal-product-info {
            margin-bottom: 2px;
            flex-direction: column;
            align-items: flex-start;
            gap: 3px;
        }

        .bestdeal-card .bestdeal-stock-text {
            font-size: 9px;
            line-height: 1.2;
            margin-bottom: 0;
            width: 100%;
        }

        .bestdeal-card .bestdeal-rating {
            font-size: 9px;
            line-height: 1.2;
            gap: 2px;
            width: 100%;
        }

        .bestdeal-card .bestdeal-review-count {
            font-size: 9px;
        }

        .bestdeal-card .bestdeal-card-hover-actions {
            opacity: 1;
            pointer-events: auto;
            bottom: 2px;
            width: 92%;
            gap: 6px;
        }

        .bestdeal-card .bestdeal-view-detail-btn {
            padding: 4px 8px;
            font-size: 9px;
            height: 26px;
        }

        .bestdeal-card .bestdeal-cart-icon-btn {
            width: 34px;
            height: 26px;
        }

        .bestdeal-card .bestdeal-cart-icon-btn img {
            width: 18px;
            height: 18px;
        }
    }

    @media (min-width: 768px) and (max-width: 991.98px) {
        .container-fluid {
            padding-left: 50px !important;
            padding-right: 50px !important;
        }

        .bestdeal-header {
            width: 100%;
            max-width: 100%;
            height: auto;
            margin-bottom: 20px;
        }

        .bestdeal-header h2 {
            font-size: 28px;
        }

        .bestdeal-container {
            width: 100%;
            max-width: 100%;
            height: auto;
            flex-direction: column;
            gap: 20px;
        }

        .bestdeal-card-large {
            width: 100%;
            height: 320px;
        }

        .bestdeal-small-cards {
            /* display: grid; */
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            width: 100%;
            height: auto;
        }

        .bestdeal-card {
            width: 100%;
            min-width: 0;
        }

        .bestdeal-card .bestdeal-wishlist-btn {
            opacity: 1;
        }

        .bestdeal-card .bestdeal-card-hover-actions {
            opacity: 1;
            pointer-events: auto;
            width: 90%;
        }

        .bestdeal-card .bestdeal-image {
            height: 205px;
        }

        .bestdeal-card:hover .bestdeal-image {
            height: 205px;
        }
    }

    @media (min-width: 992px) and (max-width: 1199.98px) {
        .container-fluid {
            padding-left: 50px !important;
            padding-right: 50px !important;
        }

        .bestdeal-header {
            width: 100%;
            max-width: 100%;
            margin: 0 auto 20px;
        }

        .bestdeal-header h2 {
            font-size: 30px;
        }

        .bestdeal-container {
            display: flex;
            gap: 20px;
            width: 100%;
            max-width: 100%;
            height: auto;
            margin: 0 auto;
        }

        .bestdeal-card-large {
            width: 350px;
            min-width: 350px;
            height: 694px;
            flex-shrink: 0;
        }

        .bestdeal-small-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(3, auto);
            gap: 20px;
            width: 100%;
            height: auto;
            flex-wrap: unset;
            overflow: visible;
        }

        .bestdeal-card {
            width: 100%;
            height: 337px;
            min-width: 0;
        }

        .bestdeal-card .bestdeal-wishlist-btn {
            opacity: 1;
        }

        .bestdeal-card .bestdeal-card-hover-actions {
            opacity: 1;
            pointer-events: auto;
        }

        .bestdeal-card .bestdeal-image {
            height: 200px;
        }

        .bestdeal-card:hover .bestdeal-image {
            height: 170px;
        }

        .bestdeal-card .bestdeal-card-hover-actions {
            width: 90%;
        }
    }
    /* ======================================Best Deal Products Styles END================================== */


    /* ======================================Sticky Header & Menu START===================================== */
    .header-sticky-new {
        background-color: #95C43F;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        /* width: 100%; */
        z-index: 998;

    }

    .menu-sticky-new {
        position: fixed;
        top:40px;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 997;
    }
    /* @media (min-width: 991px) {
         .padding{
        padding: 70px 0 0 0;
        }
    } */
    
    /* ======================================Sticky Header & Menu END======================================= */

/* add to cart z-indexing */
.z-index{
    z-index: 9999 !important;
}