@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    /* Coder71 Theme */
    --primary-color: #3DB54B;
    --secondary-color: #27272A;

    --dark-100: #F4F4F5;
    --dark-200: #E4E4E7;
    --dark-300: #D4D4D8;
    --dark-400: #A1A1AA;
    --dark-500: #71717A;
    --dark-600: #52525B;
    --dark-700: #3F3F46;

    --gray-100: #E6E8EC;
    --gray-300: #B4BBC5;
    --gray-400: #9BA4B1;
}

.font-inter {
    font-family: 'Inter', sans-serif !important;
}

.font-poppins {
    font-family: 'Poppins', sans-serif !important;
}

.cursor-pointer {
    cursor: pointer;
}

.col-span-3 {
    grid-column: span 3;
}

.col-span-2 {
    grid-column: span 2;
}

.primary-btn-main {
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
    height: 48px !important;
    background-color: var(--primary-color) !important;

    @media only screen and (max-width: 560px) {
        height: 40px !important;
    }

    p {
        font-size: 14px !important;
        color: white !important;
    }
}

.primary-btn-main:hover {
    background-color: #368B40 !important;
}

.primary-btn-main:focus {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}


.secondary-btn-main {
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
    height: 48px !important;
    background-color: #FFC610 !important;

    @media only screen and (max-width: 560px) {
        height: 40px !important;
    }

    p {
        font-size: 14px !important;
        color: #FFFFFF !important;
    }
}

.secondary-btn-main:hover {
    background-color: #d7a813 !important;
}

.secondary-btn-main:focus {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.inactive-button {
    background-color: var(--dark-700) !important;
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
    height: 48px !important;
    color: var(--dark-400) !important;
    /* max-width: 320px; */

    p {
        color: var(--dark-400) !important;
    }
}

body {
    background-color: black;
    overflow: initial;
    overflow-x: initial;
    overflow-y: initial;
    scroll-behavior: smooth;
}

/* container */
.custom__container {
    width: 100%;
    max-width: 1420px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;

    @media (min-width: 640px) {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    @media (min-width: 768px) {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    @media (min-width: 1024px) {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}


/*===== Header style start =====*/
.desktop.header__wrapper {
    display: block;
    background-color: black;

    .axil-mainmenu {
        background-color: #000;
    }

    .axil-mainmenu.axil-sticky {
        background-color: black;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .header-navbar {
        height: 96px;
    }

    .search-box__wrapper {
        display: flex;
        align-items: center;
        justify-content: center;

        .axil-search {
            max-width: 644px;

            input#search2 {
                height: 48px;
                padding-left: 20px;
                border-radius: 100px;
                background-color: var(--secondary-color);
                color: var(--dark-400);
                border: 1px solid transparent;
            }

            button.icon.wooc-btn-search {
                top: 14px;
                left: auto;
                right: 16px;
            }
        }
    }

    .header-action {
        .cart-dropdown-btn {
            gap: 15px;

            .cart-icon-box {
                position: relative;
                height: 48px;
                width: 48px;
                background-color: var(--secondary-color);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;

                .cart-active {
                    background-color: var(--primary-color);
                    border-radius: 50%;
                    height: 12px;
                    width: 12px;
                    position: absolute;
                    top: 0px;
                    right: 0px;
                    box-shadow: 0px 0px 8px 0px #9EFFA9CC;
                }
            }

            .cart-count-box {
                .cart__count {
                    font-weight: 400;
                    font-size: 12px;
                    line-height: 20px;
                    color: var(--dark-400);
                }

                .cart__price {
                    font-weight: 700;
                    font-size: 18px;
                    line-height: 27px;
                    color: #FFFFFF;

                    span {
                        font-size: 15px;
                    }
                }
            }
        }
    }

    .mainMenu__wrapper {
        background-color: var(--secondary-color);
        height: 60px;
        display: flex;
        align-items: center;

        .mainMenu__items {
            text-transform: capitalize;
            display: flex;
            align-items: center;
            justify-content: start;
            gap: 40px;

            a {
                color: var(--dark-400);
                text-decoration: none;
                font-weight: 500;
                font-size: 16px;
                line-height: 24px;


                &:hover {
                    color: var(--dark-100);
                }

                &.active {
                    color: var(--dark-100);
                    font-weight: 600;
                }
            }
        }
    }

    @media only screen and (max-width: 767px) {
        display: none;
    }
}

.mobile.mobile-header__wrapper {
    display: none;
    background: var(--secondary-color);

    .axil-mainmenu.axil-sticky {
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .axil-mainmenu {
        padding: 10px 0;
        background: var(--secondary-color);

        .mainmenu {
            margin-top: 0;
            justify-content: flex-start;

            .axil-mobile-toggle .menu-btn:after {
                background-color: transparent;
            }
        }

        .header-brand {
            margin-left: initial;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .header-action {
            margin-top: 0;

            .cart-dropdown-btn {
                gap: 15px;

                .cart-icon-box {
                    position: relative;
                    height: 38px;
                    width: 38px;
                    background-color: #000000;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    .cart-active {
                        background-color: var(--primary-color);
                        border-radius: 50%;
                        height: 12px;
                        width: 12px;
                        position: absolute;
                        top: 0px;
                        right: 0px;
                        box-shadow: 0px 0px 8px 0px #9EFFA9CC;
                    }
                }

                .cart-count-box {
                    .cart__count {
                        font-weight: 400;
                        font-size: 12px;
                        line-height: 20px;
                        color: var(--dark-400);
                    }

                    .cart__price {
                        font-weight: 500;
                        font-size: 12px;
                        line-height: 20px;
                        color: #FFFFFF;
                    }
                }
            }
        }

        .header-navbar {
            .mainmenu-nav {
                top: 0px;
                width: 350px;
                background-color: #121212;
                margin-bottom: 65px;

                .mobile-close-btn {
                    height: 35px;
                    width: 35px;
                    top: 15px;
                    right: 12px;
                    background-color: #FFFFFF;
                    border-radius: 40px;
                    color: #000000;

                    i {
                        font-size: 18px;
                        font-weight: lighter;
                    }

                    &:hover {
                        color: var(--dark-100);
                        background-color: var(--primary-color);
                    }
                }

                .mobile-nav-brand {
                    background-color: #000000;
                    padding: 15px 5px;

                    .logo {
                        padding-left: 10px;
                    }
                }

                .mainmenu {
                    padding: 5px;
                    background-color: #121212;

                    .category__dropdown {
                        margin-bottom: 40px;
                    }

                    summary {
                        color: var(--dark-100);
                        background: #1B1B1B;
                        font-size: 18px;
                        padding-inline: 10px;
                        padding-block: 10px;
                        margin-bottom: 5px !important;
                        border-radius: 4px;
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                    }

                    .category__dropdown summary::after {
                        content: '+';
                        font-size: 20px;
                        color: #666;
                        font-size: 14px;
                        font-weight: 700;
                        color: #FFFFFF;
                        background: #000;
                        height: 26px;
                        width: 26px;
                        aspect-ratio: 1;
                        border-radius: 50%;
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                        transition: transform 0.3s ease;
                    }

                    .category__dropdown[open] summary::after {
                        content: '−';
                        font-size: 14px;
                        font-weight: 700;
                        color: #FFFFFF;
                        background: #000;
                        height: 26px;
                        width: 26px;
                        aspect-ratio: 1;
                        border-radius: 50%;
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                    }

                    .category-image {
                        img {
                            height: 30px;
                            width: 30px;
                            object-fit: contain;
                            margin-right: 10px;
                        }
                    }

                    .category__name {
                        font-size: 16px;
                        font-weight: 400;
                    }

                    p {
                        background: #333;
                        font-size: 18px;
                        padding-inline: 10px;
                        padding-block: 10px;
                        margin-bottom: 5px !important;
                        border-radius: 4px;

                        a {
                            color: #FFFFFF;
                            display: flex;
                            align-items: center;
                            justify-content: space-between;

                            i {
                                font-size: 10px;
                                background: #121212;
                                height: 26px;
                                width: 26px;
                                aspect-ratio: 1;
                                border-radius: 50%;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                            }
                        }
                    }

                    .mainMenuItem {
                        display: block;
                        font-size: 16px !important;
                        font-weight: 400;
                        color: var(--dark-100);
                        background: transparent;
                        font-size: 18px;
                        padding-inline: 10px;
                        border-radius: 4px;

                        &:hover {
                            background: #1B1B1B;
                        }
                    }

                    .menuSocial__wrapper {
                        margin-top: 35px !important;
                        color: var(--dark-100);
                        background: #1B1B1B;
                        font-size: 18px;
                        padding-inline: 10px;
                        padding-block: 15px;
                        margin-bottom: 5px !important;
                        border-radius: 4px;
                        display: flex;
                        align-items: center;
                        gap: 15px;

                        a {
                            color: var(--secondary-color);
                            font-weight: lighter;
                            font-size: 16px;
                            background: var(--dark-100);
                            height: 30px !important;
                            width: 30px;
                            border-radius: 50%;
                            aspect-ratio: 1;
                            display: flex;
                            align-items: center;
                            justify-content: center;

                            &:hover {
                                color: var(--dark-100);
                                background: var(--primary-color);
                            }
                        }
                    }
                }

            }
        }
    }

    .mobilesearch {
        padding-top: 10px;

        input#search2 {
            padding-left: 20px;
            border-radius: 100px;
        }

        button.icon.wooc-btn-search {
            top: 10px;
            left: auto;
            right: 8px;
        }
    }

    @media only screen and (max-width: 767px) {
        .mobile-header__wrapper {
            display: block;
        }
    }
}

body.open .closeMask {
    /* height: 100%;
    width: 100%;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 6;
    transition: 0.3s; */
}

/*===== Header style end =====*/


/*===== Featured products style start =====*/
.featured-products__wrapper {
    background-image: url('/frontend/images/featured-products-BG.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding-block: 100px;

    @media (max-width: 768px) {
        padding-block: 50px;
    }


    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;

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

    .section-title {
        font-weight: 600;
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -1.5px;
        color: #FFFFFF;


        @media (max-width: 992px) {
            font-size: 28px;
            line-height: 36px;
            letter-spacing: -1px;
        }

        @media (max-width: 768px) {
            font-size: 24px;
            line-height: 32px;
            letter-spacing: -0.5px;
        }

        @media (max-width: 576px) {
            font-size: 20px;
            line-height: 28px;
            letter-spacing: -0.25px;
        }
    }
}

/*===== Featured products style end =====*/


/*===== Best offer seciton heading style start =====*/
.best-offers__wrapper {
    padding-block: 100px;

    @media (max-width: 768px) {
        padding-block: 50px;
    }

    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;

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

    .section-title {
        font-weight: 600;
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -1.5px;
        color: #FFFFFF;


        @media (max-width: 992px) {
            font-size: 28px;
            line-height: 36px;
            letter-spacing: -1px;
        }

        @media (max-width: 768px) {
            font-size: 24px;
            line-height: 32px;
            letter-spacing: -0.5px;
        }

        @media (max-width: 576px) {
            font-size: 20px;
            line-height: 28px;
            letter-spacing: -0.25px;
        }
    }

    .view-all-link {
        color: var(--primary-color);
        text-decoration: none;
        height: 24px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
        font-weight: 500;

        span {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 24px;
        }

        @media (max-width: 992px) {
            font-size: 15px;
        }

        @media (max-width: 768px) {
            font-size: 14px;
        }

        @media (max-width: 576px) {
            font-size: 13px;
        }
    }
}

/*===== Best offer seciton heading style end =====*/


/*===== Cart Drawer style start =====*/
.cart-dropdown {

    .cart-content__wrapper {
        background-color: var(--secondary-color);
        width: 350px;
        padding: 0;
        overflow-x: hidden;
        overflow-y: auto;

        .cart-header {
            border-bottom: 1px solid var(--dark-400);
            padding: 15px;

            .header-title {
                font-size: 20px;
                color: #FFFFFF;
            }

            .cart-close {
                background-color: var(--dark-100);
                height: 32px;
                width: 32px;
                color: #000000;

                &:hover {
                    color: #FFFFFF;
                    background-color: var(--primary-color);
                }
            }
        }

        .cart-body {
            padding-block: 10px;

            .cart-item-list {
                .cart-item {
                    border: 0;
                    padding: 15px;
                    margin-top: 0;
                    margin-bottom: 0px;

                    &:hover {
                        background-color: #333333;
                    }

                    .item-img {
                        margin-right: 10px;

                        img {
                            height: 90px;
                            width: 90px;
                        }

                        .close-btn {
                            background-color: var(--secondary-color);
                            border: 1px solid var(--dark-200);
                            color: #FFFFFF;
                            height: 25px;
                            width: 25px;
                            top: -8px;
                            left: -8px;

                            &:hover {
                                background-color: #d50d0d;
                            }
                        }
                    }

                    .item-content {
                        padding-right: 0;

                        .item-title {
                            color: var(--dark-200);

                            a {
                                color: var(--dark-200);

                                &:hover {
                                    color: var(--primary-color);
                                }
                            }
                        }

                        .item-price {
                            color: var(--dark-200);
                        }

                        .item-quantity {
                            top: 70%;

                            .quantity-input {
                                color: var(--dark-200);
                            }

                            .qtybtn {
                                background-color: var(--dark-200);
                                border-color: var(--dark-200);
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                font-weight: 600;
                                color: var(--secondary-color);

                                &:hover {
                                    background-color: var(--primary-color);
                                    border-color: var(--primary-color);
                                    color: #FFFFFF;
                                }
                            }
                        }
                    }
                }

                .noCartItem {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;

                    .noCartItem__title {
                        color: var(--dark-100);
                    }
                }
            }
        }

        .cart-footer {
            border-top: 1px solid var(--dark-400);
            padding: 15px;

            .cart-subtotal {
                margin-top: 0;

                .subtotal-title {
                    font-size: 20px;
                    color: var(--dark-100);
                }

                .subtotal-amount {
                    font-size: 20px;
                    color: var(--dark-100);
                }
            }

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

                .checkout-btn {
                    width: 100% !important;
                    text-align: center;
                    background-color: var(--primary-color);
                    color: #FFFFFF;
                    padding-block: 12px;
                    margin-top: 18px;

                    &:hover {
                        background-color: #368B40;
                    }
                }
            }
        }
    }


    @media (max-width: 768px) {
        width: initial;
    }


}

/*===== Cart Drawer style end =====*/


/*===== Checkout Page Style Start =====*/
.checkoutPage__wrapper {
    padding-block: 60px;

    .checkout__wrapper {
        display: flex;
        gap: 30px;

        .orderForm__wrapper {
            width: 40%;

            .card {
                background-color: #333333;
                border-radius: 8px;

                .orderForm__header {
                    color: #FFFFFF;
                    padding: 3px;
                    margin-bottom: 25px;
                    padding-top: 8px;
                    padding-inline: 5px;
                }

                .form-group {
                    label {
                        background: #333;
                        color: #FFFFFF;
                    }

                    input {
                        color: #FFFFFF;
                        background-color: transparent;
                        border-color: #FFFFFF;

                        &:focus {
                            border-color: var(--primary-color);
                        }
                    }

                    select {
                        color: #FFFFFF;
                        background-color: transparent;
                        border-color: #FFFFFF;
                        border-radius: 6px;

                        option {
                            color: #000;
                        }

                        &:focus {
                            border-color: var(--primary-color);
                            box-shadow: none;
                        }
                    }
                }

                .checkout-btn {
                    font-size: 20px;
                    color: #FFFFFF;
                    background-color: var(--primary-color);
                    border-color: var(--primary-color);
                    border-radius: 6px;

                    &:hover {
                        background-color: #368B40;
                        border-color: #368B40;
                    }
                }
            }
        }

        .orderDetails__wrapper {
            flex: 1;
            background-color: #333;
            border-radius: 8px;

            .card {
                background-color: #333;
                border: 0;
                border-radius: 8px;

                .card-title {
                    color: #FFFFFF;
                }

                .table-responsive {
                    .table {
                        color: #FFFFFF;

                        .pro-qty .qtybtn {
                            &:hover {
                                border-color: var(--primary-color);
                            }
                        }

                        .pro-qty input {
                            color: #FFFFFF;

                            &:focus {
                                border-color: var(--primary-color);
                            }
                        }
                    }
                }

                .table-responsive {
                    tbody {
                        border-top: 0 !important;
                    }

                    .cart-item {
                        &:first-child {
                            padding-top: 5px;
                        }

                        .product-name {
                            span {
                                min-width: 200px;
                                display: -webkit-box !important;
                                -webkit-line-clamp: 2;
                                -webkit-box-orient: vertical;
                                overflow: hidden;
                            }
                        }

                        .product-quantity {
                            .pro-qty {
                                display: flex;
                            }
                        }
                    }
                }

                .total_section {
                    .h6 {
                        color: #FFFFFF;
                    }
                }
            }
        }

    }


    @media (max-width: 991px) {
        padding-top: 30px;

        .checkout__wrapper {
            flex-direction: column;

            .orderForm__wrapper {
                width: 100%;
            }

            .orderDetails__wrapper {
                flex: 1;
            }
        }
    }

    @media (max-width: 768px) {
        padding-top: 15px;
    }

}

/*===== Checkout Page Style End =====*/


.hot-deals-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;

    @media only screen and (max-width: 991px) {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    @media only screen and (max-width: 767px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    @media only screen and (max-width: 640px) {
        gap: 10px;
    }
}

.axil-shop-area {
    .axil-product {
        max-height: unset !important;
    }

    .product-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 26px;

        @media only screen and (max-width: 991px) {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        @media only screen and (max-width: 767px) {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
    }
}






/*===== Product style start =====*/
.product-style-one {
    background-color: var(--secondary-color) !important;
    border-radius: 8px;

    .thumbnail {
        min-height: unset !important;
        max-height: unset !important;

        img {
            height: unset !important;
            object-fit: contain !important;
            aspect-ratio: 1/1;
        }

        .label-block {
            top: 12px !important;
            left: 12px !important;
            right: unset !important;

            .product-badget {
                font-size: 14px !important;
                background-color: #43B2A1 !important;
                padding: 4px 10px !important;
                box-shadow: none !important;
                line-height: 20px;
            }

        }

    }

    .product-content {
        .inner {
            min-height: 100px;

            h5.title {
                font-size: 14px;

                a {
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    display: -webkit-box;
                    overflow: hidden;
                    font-size: 14px;
                    line-height: 22px;
                }
            }

            .current-price {
                font-weight: 600 !important;
                line-height: 30px;
            }

            .old-price {
                color: var(--dark-500) !important;
                font-weight: normal !important;
            }
        }


        .product-add-to-cart {
            .cart-action {
                li {

                    button,
                    a {
                        border-radius: 5px !important;
                        transition: all 0.3s ease !important;
                        height: 48px !important;

                        @media only screen and (max-width: 560px) {
                            height: 40px !important;
                        }


                        p {
                            font-size: 14px !important;
                            color: white !important;
                        }
                    }

                    button:focus {
                        border: 0 !important;
                        outline: 0 !important;
                        box-shadow: none !important;
                    }

                    a:focus {
                        border: 0 !important;
                        outline: 0 !important;
                        box-shadow: none !important;
                    }

                    .active-button {
                        background-color: var(--primary-color) !important;
                    }

                    .active-button:hover {
                        background-color: #368B40 !important;
                    }

                    .inactive-button {
                        background-color: var(--dark-700) !important;
                    }
                }
            }
        }
    }
}

.axil-product:hover>.thumbnail>a .product_img {
    transform: none !important;
}

/*===== Product seciton end =====*/


/*===== Product Details Start =====*/
.product-details {
    padding-top: 56px;

    @media only screen and (max-width: 768px) {
        padding-top: 15px;
    }

    .product-details-wraper {
        @media only screen and (max-width: 991px) {
            padding-bottom: 20px !important;
        }

        @media only screen and (max-width: 768px) {
            padding-bottom: 10px !important;
        }


        .product-details-content {
            display: flex;
            gap: 76px;


            @media only screen and (max-width: 1200px) {
                gap: 50px;
            }

            @media only screen and (max-width: 991px) {
                gap: 0px;
                flex-direction: column;
            }

            .product-slider__area {
                max-width: 517px;
                width: 100%;
                /* margin-bottom: 20px; */
                height: fit-content;

                @media only screen and (min-width: 991px) {
                    position: sticky;
                    top: 212px;
                }

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

                .single-product-thumbnail {
                    background-color: var(--secondary-color);
                    border-radius: 8px;
                    box-shadow: 0px 4px 8px 0px #00000014;
                    max-height: unset !important;
                }

                .small-thumb-wrapper {
                    .small-thumb-img {
                        width: fit-content !important;
                    }
                }
            }

            .product-description {
                flex: 1 1 0%;

                .ratings {
                    width: fit-content;
                    background-color: var(--secondary-color);
                    border-radius: 100px;
                    padding: 4px 14px;
                    margin-bottom: 8px;
                }

                .inner {
                    .product-title {
                        font-weight: 600;
                        font-size: 32px;
                        line-height: 40px;
                        letter-spacing: -1.5px;
                        color: #FAFAFA;
                        margin-bottom: 8px !important;
                    }

                    .product-category {
                        /* font-size: 14px; */
                        color: var(--dark-200);
                        padding-right: 12px;
                        border-right: 1px solid var(--dark-700);
                        width: fit-content;
                        margin-bottom: 8px;
                    }

                    .product-brand {
                        /* font-size: 14px; */
                        color: var(--dark-200);
                        padding-left: 12px;
                        width: fit-content;
                        margin-bottom: 8px;
                    }

                    .product-price-variant {
                        margin-top: 18px;
                        margin-bottom: 26px;
                        gap: 5px;

                        @media only screen and (max-width: 768px) {
                            margin-bottom: 18px;
                        }

                        .current-price-product {
                            font-weight: 600;
                            font-size: 32px;
                            line-height: 40px;
                            letter-spacing: -1.5px;
                            color: #FAFAFA;
                        }

                        .old-price {
                            font-weight: 500;
                            font-size: 20px;
                            line-height: 27px;
                        }
                    }

                    .discount-price {
                        font-size: 14px !important;
                        background-color: #43B2A1 !important;
                        padding: 4px 10px;
                        border-radius: 4px;
                        margin-left: 12px;

                        @media only screen and (max-width: 786px){
                            font-size: 12px !important;
                            padding: 4px 8px;
                        }
                    }

                }

                .single-product-content {
                    .item-quantity {
                        background-color: var(--secondary-color);
                        border-radius: 5px;
                        padding: 9px 12px;
                        gap: 10px;
                        width: fit-content !important;

                        @media only screen and (max-width: 768px) {
                            padding: 5px 10px;
                        }

                        .decrease-qty,
                        .increase-qty {
                            width: 32px;
                            height: 32px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            background-color: var(--dark-700);
                            border-radius: 100%;
                            cursor: pointer;

                            @media only screen and (max-width: 768px) {
                                width: 26px;
                                height: 26px;
                            }
                        }

                        .quantity-input {
                            width: 12px;
                            border: none;
                            border-radius: none;
                            font-size: 16px;
                        }
                    }

                    .cart-buttons {
                        max-width: 440px;
                    }

                    .product-info {
                        .product-size-variation {
                            select {
                                width: fit-content;
                                height: auto;
                                padding: 4px 16px;
                                border-color: #3F3F46;
                                border-radius: 5px;
                            }

                            select:focus {
                                border-color: #3F3F46;
                                outline: none;
                                box-shadow: none;
                            }
                        }
                    }

                    .product-desc-wrapper {
                        h5 {
                            color: var(--dark-400);
                        }

                        .single-desc {
                            * {
                                color: var(--dark-400) !important;
                            }
                        }
                    }
                }
            }
        }
    }

    .axil-product-area {
        @media only screen and (max-width: 1024px) {
            padding-top: 40px !important;
        }

        @media only screen and (max-width: 768px) {
            padding-top: 30px !important;
        }

        .section-title-wrapper {
            .title {
                font-weight: 600;
                font-size: 32px;
                line-height: 40px;
                letter-spacing: -1.5px;
                color: #FFFFFF;
                margin-bottom: 25px !important;

                @media (max-width: 992px) {
                    font-size: 28px;
                    line-height: 36px;
                    letter-spacing: -1px;
                }

                @media (max-width: 768px) {
                    font-size: 24px;
                    line-height: 32px;
                    letter-spacing: -0.5px;
                }
            }
        }
    }
}

/*===== Product Details End =====*/


.axil-breadcrumb-area {
    padding-block: 30px;
    margin-bottom: 0px;
    background-color: #333333;

    .inner {
        .axil-breadcrumb-item {
            color: var(--primary-color) !important;
        }

        .axil-breadcrumb-item.active {
            color: var(--primary-color) !important;
        }

        .axil-breadcrumb-item {
            a {
                transition: all 0.3s ease;
            }

            a:hover {
                color: var(--primary-color) !important;
            }
        }

        .separator {
            background-color: var(--gray-300) !important;
        }

        .bradcrumb-thumb::after {
            background-color: var(--secondary-color);
        }
    }
}

/*===== Common Css End =====*/


/*===== Footer seciton start =====*/
.footer-style-2 {
    background-color: var(--secondary-color);
    padding-block: 80px;

    @media only screen and (max-width: 991px) {
        padding-block: 60px;
    }

    @media only screen and (max-width: 767px) {
        padding-block: 50px;
    }

    .footer-wraper {
        display: grid;
        grid-template-columns: repeat(9, 1fr);
        gap: 50px;

        @media only screen and (max-width: 991px) {
            gap: 30px;

            .col-span-3 {
                grid-column: span 9;
            }

            .col-span-2 {
                grid-column: span 3;
            }
        }

        @media only screen and (max-width: 767px) {
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;

            .col-span-3 {
                grid-column: span 1;
            }

            .col-span-2 {
                grid-column: span 1;
            }
        }

        .logo {
            margin-bottom: 50px;

            @media only screen and (max-width: 991px) {
                margin-bottom: 20px;
            }

            img {
                max-width: 160px;
            }

            p {
                color: var(--dark-300);
                font-size: 14px;
                line-height: 22px;
            }
        }

        .share-area {

            h6 {
                font-size: 18px;
                font-weight: 600;
            }

            .social-icons {
                display: flex;
                justify-content: start;
                gap: 10px;

                @media only screen and (max-width: 991px) {
                    justify-content: center;
                }

                a {
                    display: inline-block;
                    color: #333;
                    border-radius: 50%;
                    width: 30px;
                    height: 30px;
                    line-height: 30px;
                }
            }
        }

        .widget-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--gray-100);
            text-transform: capitalize !important;
            letter-spacing: 0;
            margin-bottom: 36px !important;


            @media only screen and (max-width: 991px) {
                font-size: 18px;
            }

            @media only screen and (max-width: 767px) {
                margin-bottom: 20px !important;
                margin-top: 36px;
            }
        }

        .widget-title.mobile-title {
            transition: all 0.3s ease;
            user-select: none;
        }

        .widget-title.mobile-title .toggle-icon {
            transition: transform 0.3s ease;
            font-size: 1.2rem;
        }

        .widget-title.mobile-title.collapsed .toggle-icon {
            transform: rotate(180deg);
        }

        .contact-info-wraper {
            .inner {
                display: flex;
                flex-direction: column;
                gap: 16px;
                font-size: 14px;

                max-height: 500px;
                overflow: hidden;
                transition: max-height 0.3s ease, padding 0.3s ease;


                p {
                    font-size: 14px;
                    color: var(--gray-300);
                }

                h6 {
                    font-size: 14px;
                    color: var(--primary-color);
                    margin-bottom: 4px;
                    font-weight: normal !important;
                }
            }

            .inner.collapsed {
                max-height: 0;
                padding-top: 0;
            }
        }

        .proxy-wraper,
        .best-categories-wraper {
            .inner {
                max-height: 500px;
                overflow: hidden;
                transition: max-height 0.3s ease, padding 0.3s ease;

                ul {
                    list-style: none;

                    li {
                        margin: 0 0 12px;
                        font-family: 'Inter', sans-serif !important;

                        @media only screen and (max-width: 767px) {
                            margin: 0 0 6px;
                        }

                        a {
                            color: var(--gray-300);
                            text-decoration: none;
                            font-size: 14px;
                            transition: all 0.3s ease;
                            font-weight: 400;

                            &:hover {
                                color: var(--gray-100);
                                font-weight: 600;
                            }

                            &::after {
                                content: none;
                            }
                        }
                    }

                    li:last-child {
                        margin-bottom: 0;
                    }
                }
            }

            .inner.collapsed {
                max-height: 0;
                padding-top: 0;
            }
        }

    }

    .copyright-area {
        border-top: 1px solid #444;

        .copyright-text {
            p {
                font-size: 14px;
                color: var(--gray-400);
            }

            a {
                color: var(--gray-400);
                font-weight: 500;
                transition: all 0.3s ease;
            }

            a:hover {
                color: #EC1C24;
            }
        }

        .payment-icons {
            /* height: 24px; */
            margin: 0 5px;
        }
    }
}

/*===== Footer seciton end =====*/


/*===== Static Page Header Start =====*/
.same-page-wrapper {
    * {
        font-family: 'Inter', sans-serif !important;
    }

    .axil-breadcrumb-area {
        padding-block: 30px;
        margin-bottom: 80px;
        background-color: #333333;

        @media only screen and (max-width: 1024px) {
            margin-bottom: 60px;
        }

        @media only screen and (max-width: 640px) {
            margin-bottom: 46px;
        }

        .inner {
            .axil-breadcrumb-item {
                color: var(--primary-color) !important;
            }

            .axil-breadcrumb-item.active {
                color: var(--primary-color) !important;
            }

            .axil-breadcrumb-item {
                a {
                    transition: all 0.3s ease;
                }

                a:hover {
                    color: var(--primary-color) !important;
                }
            }

            .separator {
                background-color: var(--gray-300) !important;
            }

            .bradcrumb-thumb::after {
                background-color: var(--secondary-color);
            }
        }
    }

    .axil-page-area.axil-section-gap {

        @media only screen and (max-width: 1024px) {
            padding-bottom: 60px;
        }

        @media only screen and (max-width: 640px) {
            padding-bottom: 46px;
        }

        .same-page-content {
            background-color: #333333;
            padding: 46px 32px;
            border-radius: 10px;

            @media only screen and (max-width: 767px) {
                padding: 32px 24px;
            }

            h2 {
                font-size: 32px;
                color: white !important;
                font-family: 'Inter', sans-serif !important;

                * {
                    font-size: 32px;
                    color: white !important;
                    font-family: 'Inter', sans-serif !important;
                }
            }

            * {
                color: var(--gray-300);
                font-size: 14px;
            }
        }
    }
}

/*===== Static Page Header Start =====*/



/*===== Brand Start =====*/
.all-brands-page {
    .cat-blocks-container {
        .all-brand-wraper {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;

            @media only screen and (max-width: 1200px) {
                grid-template-columns: repeat(4, 1fr);
            }

            @media only screen and (max-width: 1024px) {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }

            @media only screen and (max-width: 720px) {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .cat-block {
                height: 160px;
                min-height: unset;
                border: unset;
                /* background-color: var(--secondary-color); */

                @media only screen and (max-width: 575px) {
                    height: 90px;
                }

                figure {
                    /* height: 124px; */
                    min-height: unset;

                    img {
                        width: 70%;
                        height: auto;
                        object-fit: contain;

                        @media only screen and (max-width: 475px) {
                            height: 90px;
                        }
                    }
                }

            }
        }
    }
}

/*===== Brand End =====*/

/*===== All Category Start =====*/
.all-category-page {
    .cat-blocks-container {
        .all-category-wraper {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;

            @media only screen and (max-width: 1200px) {
                grid-template-columns: repeat(4, 1fr);
            }

            @media only screen and (max-width: 1024px) {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }

            @media only screen and (max-width: 720px) {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .cat-block {
                min-height: unset;
                border: unset;
                padding-bottom: 18px !important;

                @media only screen and (max-width: 575px) {
                    padding-bottom: 8px !important;

                }

                figure {

                    .title {
                        color: var(--dark-700) !important;
                        font-weight: 500;
                    }

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

            }
        }
    }
}

/*===== All Category End =====*/



.not-found__wrapper {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;

    .alert.alert-warning {
        max-width: 200px;
        margin-bottom: 0;
    }
}



/*===== Order Success Start =====*/
.order-success-wraper {
    .success-content {
        .success-title {
            color: var(--primary-color);
        }

        .order-success-buttons {
            a {
                background-color: var(--primary-color);
                transition: all 0.3s ease;
            }

            a:hover {
                background-color: #368B40 !important;
            }
        }

        .invoice-no {
            color: var(--dark-500);
            transition: all 0.3s ease;
        }

        .invoice-no:hover {
            color: var(--primary-color);
        }
    }
}

/*===== Order Success End =====*/



.mfp-container {
    height: 100vh !important;
}



.product-desc-wrapper {
    .single-desc {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.8;
        font-size: 16px;
    }

    /* Headings */
    .single-desc h1 {
        font-size: 32px;
        font-weight: 700;
        margin: 28px 0 16px;
    }

    .single-desc h2 {
        font-size: 28px;
        font-weight: 700;
        margin: 24px 0 14px;
    }

    .single-desc h3 {
        font-size: 24px;
        font-weight: 600;
        margin: 20px 0 12px;
    }

    .single-desc h4 {
        font-size: 20px;
        font-weight: 600;
        margin: 18px 0 10px;
    }

    .single-desc h5 {
        font-size: 18px;
        font-weight: 600;
        margin: 16px 0 8px;
    }

    .single-desc h6 {
        font-size: 17px;
        font-weight: 600;
        margin: 14px 0 8px;
    }

    /* Paragraphs */
    .single-desc p {
        margin: 14px 0;
        font-size: 16px;
    }

    /* Lists */
    .single-desc ul,
    .single-desc ol {
        margin: 14px 0 14px 24px;
        padding-left: 20px;
    }

    .single-desc ul {
        list-style-type: disc;
    }

    .single-desc ol {
        list-style-type: decimal;
    }

    .single-desc li {
        margin-bottom: 6px;
        font-size: 16px;
    }

    /* Spans */
    .single-desc span {
        font-size: 16px;
    }

    /* Images */
    .single-desc img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 24px auto;
        border-radius: 6px;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .single-desc {
            font-size: 15px;
        }

        .single-desc h1 {
            font-size: 28px;
        }

        .single-desc h2 {
            font-size: 24px;
        }

        .single-desc h3 {
            font-size: 21px;
        }

        .single-desc h4 {
            font-size: 19px;
        }

        .single-desc h5 {
            font-size: 17px;
        }

        .single-desc h6 {
            font-size: 16px;
        }

        .single-desc p,
        .single-desc li,
        .single-desc span {
            font-size: 15px;
        }
    }

}


.mfp-arrow {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.mfp-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}


.mfp-arrow:before,
.mfp-arrow:after {
    display: none !important;
}


.mfp-arrow.mfp-arrow-right {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark-600);
    box-shadow: 0px 4px 8px 0px #00000014;
    color: white;
    opacity: 1;
    right: 20px;
    transition: all 0.3s ease;

    &:hover {
        background-color: var(--primary-color);
    }
}

.mfp-arrow.mfp-arrow-left {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark-600);
    box-shadow: 0px 4px 8px 0px #00000014;
    color: white;
    opacity: 1;
    left: 20px;
    transition: all 0.3s ease;

    &:hover {
        background-color: var(--primary-color);
    }
}



.mfp-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 1044;
}

.mfp-arrow-left {
    left: 20px;
}

.mfp-arrow-right {
    right: 20px;
}

.mfp-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}





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

    .page-item {
        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 40px;
            width: 40px;
            aspect-ratio: 1;
            border-radius: 50%;
            color: var(--secondary-color);

            &:hover{
                background-color: var(--primary-color);
                border-color: var(--primary-color);
                color: var(--dark-100);
            }
        }
    }

    .page-item.active {
        .page-link {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--dark-100);
        }
    }


    @media only screen and (max-width: 768px){
        .page-item {
            .page-link {
                height: 30px;
                width: 30px;
            }
        }
    }
}