@import url('https://fonts.googleapis.com/css2?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 {
    /* font colors  */
    --white-font: #FCFCFC;
    --black-font: #111111;
    --grey-font: #555555;
    --greyLight-font: #929292;
    --white-bg: #fff;

    /* border color  */
    --border-input: #CBCBCB;

    /* brand color  */
    --primary-color: #067FB1;
    --secondary-color: #EF7525;
    --footer-bg: #F9F9F9;
    --darkBlue-shade: #003044;
    --blueShade2: #EFFAFF;
    --orange-light: #F30000;


    /* line effect gradient  */
    --line1-gradient: #603CE9;
    --line2-gradient: #D53CE9;

    /* font family  */
    --poppins-font: "Poppins", sans-serif;
    --source-sans-font: source-sans-pro;

    /* font size  */
    --fs-14: 14px;
    --fs-16: 16px;
    --fs-18: 18px;
    --fs-20: 20px;
    --fs-22: 22px;
    --fs-24: 24px;
    --fs-25: 25px;
}

@font-face {
    font-family: source-sans-pro;
    src: url('../fonts/SourceSansPro-Regular.otf');
}

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

}

body {
    font-family: var(--source-sans-font);
    color: var(--black-font);
    background: var(--white-bg);
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

p {
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.blue-shade02 {
    background: #EFFAFF;
}

.blue-primary {
    background-color: #003044;
    color: var(--white-font) !important;
}


.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

.fs-24 {
    font-size: 24px;
}

.fs_24_heading {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--poppins-font);
}

.grey-text {
    color: var(--grey-font);
}

.grey-light-text {
    color: var(--greyLight-font);
}

.white-neutral {
    color: #E2E2E2;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.bg-darkblue {
    background: var(--darkBlue-shade);
}

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

/* HOME SECTION CSS STARS FORM HERE  */

.icon_fixed_height {
    height: 20px;
    width: 20px;
    object-fit: contain;
}

.icon_fixed_height1 {
    height: 16px;
    width: 16px;
    object-fit: contain;
}

/* HEADER PART CSS STARTS FORM HERE  */

/* top header css  */
.free_shipping_text {
    font-size: var(--fs-14);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location_border_rigt {
    padding-right: 15px;
    padding-left: 15px;
    border-right: 2px solid var(--border-input);
    border-left: 2px solid var(--border-input);
}

.padding-right {
    padding-right: 15px;
}

.padding-left {
    padding-left: 15px;
}

/* second section of header */
.logo {
    max-width: 80px;
    width: 100%;
    max-height: 80px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 3/2;
}

#search_icon {
    background-color: var(--primary-color);
    color: var(--white-font);
    border: none;
    cursor: pointer;
}

.second_header_input input {
    border: 1px solid var(--border-input);
}

.second_header_input input:focus {
    box-shadow: none;
    outline: none;
    border-color: var(--border-input);
}

.headphone_icon_contaienr {
    height: 30px;
    width: 30px;
}

.cart_shop_icons button {
    background: transparent;
    border: none;
    font-size: 24px;
    font-weight: 400;
}

.cart_shop_icons button:nth-child(1) {
    position: relative;
}

.cart_shop_icons button:nth-child(1)::before {
    content: '';
    position: absolute;
    height: 32px;
    width: 1.5px;
    background: #929292;
    top: 50%;
    transform: translateY(-50%);
    left: -25px;
}

/* navvbar css starts  */
.navbar {
    color: var(--white-font);
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1000;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    box-shadow: none !important;
    outline: none !important;
}

.navbar .navbar-nav li a {
    color: var(--white-font);
    font-size: 16px;
    font-weight: 400;
}

.navbar .navbar-nav>li:last-child {
    background: var(--orange-light);
}

.details_link {
    background: var(--orange-light);
    /* padding: 12px 16px; */
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* dropdown css start */

.mega_menu_dropdown {
    position: absolute;
    top: 46px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: var(--white-bg);
    padding: 30px;
    z-index: 999;
    visibility: hidden;
    max-height: 0;
    transition: all .3s ease-in-out;
    opacity: 0;
    box-shadow: 2px 2px 10px 0px #0000001F;
}

/* .mega_menu_bg {
    display: none;
}
.mega_menu_bg.active {
    display: block;
} */
.nav-item.active {
    background: var(--white-bg);
}

.nav-item.active .nav-link {
    color: var(--primary-color) !important;
}

.nav-item {
    transition: all .5s ease-in-out;
}

.nav-item .mega_menu_dropdown.active {
    opacity: 1;
    visibility: visible;
    max-height: 100vh;
}

.drop_down_first_rowContier .imge {
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.drop_down_first_rowContier .imge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.right_angle_clas {
    font-size: 16px;
}

.nav-link {
    padding: 11px;
}

.drop_viewAll a {
    font-size: 16px;
    font-weight: 400;
    color: var(--grey-font) !important;
}

.drop_heading {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--poppins-font);
    color: var(--black-font);
}

.drop_down_linkss li a {
    color: var(--grey-font) !important;
    font-size: 16px;
    font-weight: 400;
}

.drop_doown_borderB {
    border-bottom: 1px solid#E2E2E2;
    padding-bottom: 24px;
}

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

/* dropdown css ends  */


/* HEADER PART CSS ENDS HERE  */




/* onClick scroll to top css  */
#scrollTopBtn {
    background: var(--primary-color);
    font-size: 25px;
    color: var(--white-font);
    position: fixed;
    bottom: 50px;
    right: 30px;
    border: none;
    padding: 10px;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all .5s ease-in-out;
    display: none;
}

#scrollTopBtn.show {
    display: flex;
}

#scrollTopBtn:hover {
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
}

/* HOME PAGE HERO SECTION STARTS FORM HERE  */
.hero_section_home_page {
    padding: 20px 0 100px 0;
}

.hero_height_set {
    height: 776px;
}

.light_blue_bg {
    height: 380px;
    padding: 30px 30px 0 30px;
    background: #F1FAFF;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.light_blue_bg2 {
    background: #FFF4EE;
}

.light_blue_bg3 {
    background: #FCF5FF;
}

.light_blue_bg4 {
    background: #FFF5F3;
}

.light_blue_bg img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.offer_heading {
    font-size: 25px;
    font-weight: 700;
    font-family: var(--poppins-font);
    text-align: center;
}

.shop_now_btn {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    transition: all .5s ease-in-out;
}

.shop_now_btn::before {
    position: absolute;
    content: '';
    width: 32px;
    height: 2.5px;
    background: linear-gradient(to right, var(--line1-gradient), var(--line2-gradient));
    bottom: -2px;
    left: 0;
    transition: all .5s ease-in-out;
}

.shop_now_btn:hover::before {
    width: 100%;
}

.shop_now_btn span i {
    color: var(--black-font);
    transform: rotate(-20deg);
    font-size: 20px;
    transition: all .5s ease-in-out;
}

.shop_now_btn:hover span i {
    transform: rotate(0deg);
}

.hero_center_bg {
    background: #F8F8F8;
    /* padding: 30px 30px 0 30px; */
    padding: 30px;
    height: 776px;
    overflow: hidden;
    border-radius: 8px;
}

.hero_center_bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.essential_50 {
    font-size: 46px;
    font-weight: 700;
    font-family: var(--poppins-font);
}

.hero_center_bg .width_maxx {
    max-width: 350px;
}

.show_now_btn_background {
    background: var(--primary-color);
    color: var(--white-font);
    display: flex;
    align-items: center;
    gap: 15px;
    width: max-content;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all .5s ease-in-out;
}

.show_now_btn_background:hover {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.show_now_btn_background span i {
    transform: rotate(-40deg);
    font-size: 20px;
    transition: all .5s ease-in-out;
}

.show_now_btn_background:hover span i {
    transform: rotate(0deg);
}

/* HOME PAGE HERO SECTION ENDS HERE  */


/* HOME PAGE CATEGORIES SLIDER SECTION CSS STARTS FORM HERE  */
.home_page_slider_categoreis {
    background: var(--blueShade2);
    padding: 100px 0;
}

.cat_heaidng {
    font-size: 40px;
    font-weight: 700;
    font-family: var(--poppins-font);
    line-height: 160%;
}

.categories_slider_content_container {
    background: var(--white-bg);
    color: var(--black-font);
    padding: 16px;
    border-radius: 8px;
    height: 280px;
    max-width: 350px;
    width: 100%;
    overflow: hidden;
    margin: auto;
}

.categories_slider_content_container .cat_image_container {
    height: 150px;
    width: 100%;
    margin: auto;
    border-bottom: 1.5px solid var(--border-input);
    padding-bottom: 10px;
}

.categories_slider_content_container .cat_image_container img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.ass_icon {
    height: 40px;
    width: 40px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 5px;
    font-size: 16px;
    color: var(--white-font);
    border-radius: 50%;
    transition: all .5s ease-in-out;

}

.ass_icon i {
    transform: rotate(-30deg);
    transition: all .3s ease-in-out;
}

.ass_icon:hover i {
    transform: rotate(0deg);
}

.ass_icon:hover {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.myswiper_categories_arrrows {
    position: relative;
    margin-bottom: 40px;
}

.myswiper_categories_arrrows .swiper-button-next1,
.myswiper_categories_arrrows .swiper-button-prev1 {
    position: absolute;
}

.myswiper_categories_arrrows .swiper-button-next1 {
    left: 80px;
}

.myswiper_categories_arrrows .swiper-button-next1,
.myswiper_categories_arrrows .swiper-button-prev1 {
    background-color: transparent;
    width: 45px;
    height: 45px;
    display: flex;
    border: 1px solid var(--primary-color);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;

}

.myswiper_categories_arrrows .swiper-button-next1::after {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--primary-color) !important;
    font-size: 25px;
}

.myswiper_categories_arrrows .swiper-button-prev1::after {
    content: "\f060";
    font-family: "Font Awesome 6 Pro";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--primary-color) !important;
    font-size: 25px;
}

.mySwiperCategories1 .swiper-button-next,
.mySwiperCategories1 .swiper-button-prev {
    background-color: transparent;
    width: 45px;
    height: 45px;
    display: flex;
    border: 1px solid var(--primary-color);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;

}

.mySwiperCategories1 .swiper-button-next::after {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--primary-color) !important;
    font-size: 25px;
}

.mySwiperCategories1 .swiper-button-prev::after {
    content: "\f060";
    font-family: "Font Awesome 6 Pro";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--primary-color) !important;
    font-size: 25px;
}

/* HOME PAGE CATEGORIES SLIDER SECTION CSS ENDS HERE  */


/* HOME PAGE NEW ITESMS SECTION CSS STARTS FROM HERE  */
.home_new_items {
    padding: 100px 0;
    overflow-x: hidden;
}


.new_item-heading {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--poppins-font);
}

.new_items_container {
    padding: 15px;
    background: var(--white-bg);
    box-shadow: 0 4px 20px -4px #00000014;
    /* min-height: 370px; */
    height: 370px;
    max-width: 350px;
    width: 100%;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    overflow: hidden;
    /* cursor: pointer; */
    transition: all .5s ease-in-out;
    margin: auto;
    position: relative;
}

.new_items_container .fs-16.fw-400 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.new_items_container .new_item_imge_container {
    width: 100%;
    height: 250px;
    margin: auto;
    border-bottom: 1px solid #E4E4E4;
    transition: all .5s ease-in-out;
    overflow: hidden;
    /* border: 1px solid red; */
}

.new_items_container:hover .new_item_imge_container {
    width: 100%;
    height: 190px;
}

.new_items_container .new_item_imge_container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 3/2;
    object-position: center;
    padding-bottom: 20px;
    transition: all .5s ease-in-out;

}

.new_items_container:hover .add_to_cart_btn {
    margin-bottom: 0px;
    /* margin-top: 10px; */

}

.add_to_cart_btn {
    background: var(--primary-color);
    padding: 10px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--white-font);
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    /* display: none; */
    margin-bottom: -60px;
    /* margin-top: 40px; */
    transition: all .5s ease-in-out;
}

.add_to_cart_btn:hover {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.new_items_container:hover .heart_shape_new {
    top: 10px;
}

.heart_shape_new {
    font-size: 20px;
    color: var(--primary-color);
    position: absolute;
    top: -50px;
    right: 20px;
    transition: all .5s ease-in-out;
}

.offer_new {
    background: var(--secondary-color);
    padding: 4px 12px;
    width: max-content;
    position: absolute;
    top: 10px;
    left: 10px;
    color: var(--white-font);
    border-radius: 4px;
}

.mySwiperNewItems {
    /* position: relative; */
    padding-top: 40px;
}

.swipreButtonNewItems .swiper-button-nextNewItems {
    position: absolute;
    right: -50px;
    top: 50%;
}

.swipreButtonNewItems .swiper-button-prevNewItems {
    position: absolute;
    left: -50px;
    top: 50%;
}

.swipreButtonNewItems .swiper-button-nextNewItems,
.swipreButtonNewItems .swiper-button-prevNewItems {
    background-color: white;
    width: 45px;
    height: 45px;
    display: flex;
    /* border: 1px solid var(--primary-color); */
    box-shadow: 0 2px 12px 0 #0000001F;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;


}

.swipreButtonNewItems .swiper-button-nextNewItems::after {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--primary-color) !important;
    font-size: 25px;
}

.swipreButtonNewItems .swiper-button-prevNewItems::after {
    content: "\f060";
    font-family: "Font Awesome 6 Pro";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--primary-color) !important;
    font-size: 25px;
}


/* new item second part imges css  */
.new_item_seond_left_image_container {
    height: 420px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.new_item_seond_left_image_container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .5s ease-in-out;
}

.new_item_seond_left_image_container:hover img {
    transform: scale(1.1);
}

.new_item_seond_left_image_container .content {
    position: absolute;
    bottom: 25px;
    left: 20px;
    max-width: 320px;
    width: 100%;
}

.new_item_seond_left_image_container .content p:nth-child(2) {
    font-size: 25px;
    font-weight: 700;
    font-family: var(--poppins-font);
    color: var(--white-font);
}

.new_item_seond_left_image_container .content .shop_now_btn {
    color: var(--white-font);
    width: max-content;
}

.new_item_seond_left_image_container .content .shop_now_btn i {
    color: var(--white-font);
}

.off_white_bg {
    background: #F5F4F9;
    height: 420px;
    width: 100%;
    padding: 30px 20px 20px 20px;
    overflow: hidden;
    border-radius: 10px;
}

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

/* HOME PAGE NEW ITEMS SECTION CSS ENDS HERE  */

.repair_maintenance_section {
    padding: 100px 0;
    background: #FFF4EE;
    overflow-x: hidden;
}

.repair_maintenance_container {
    height: 300px;
    max-width: 320px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 20px;
}

.repier_imgae {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

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

.mySwiperRepair {
    padding-top: 40px;
}

.features_slider_contaier .add_to_cart_btn1 {
    background: var(--primary-color);
    padding: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--white-font);
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    margin: auto;
    transition: all .5s ease-in-out;
}

.features_slider_contaier .add_to_cart_btn1:hover {
    background: transparent;
    padding: 10px 20px;
    gap: 20px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: all .5s ease-in-out;
}

.swipreButtonNewRepair .swiper-button-nextRepair {
    position: absolute;
    right: -50px;
    top: 45%;
    transform: translateY(-50%);
}

.swipreButtonNewRepair .swiper-button-prevRepair {
    position: absolute;
    left: -50px;
    top: 45%;
    transform: translateY(-50%);
}

.swipreButtonReBrand .swiper-button-nextRBrand.swiper-button-disabled,
.swipreButtonFurniture .swiper-button-nextFurniture.swiper-button-disabled,
.swipreButtonElectronics .swiper-button-nextElectronics.swiper-button-disabled,
.swipreButtonFashion .swiper-button-nextFashion.swiper-button-disabled,
.swipreButtonReBrand .swiper-button-prevRBrand.swiper-button-disabled,
.swipreButtonBeauty .swiper-button-nextBeauty.swiper-button-disabled,
.swipreButtonBrands .swiper-button-nextBrands.swiper-button-disabled,
.swipreButtonBrands .swiper-button-prevBrands.swiper-button-disabled,
.swipreButtonBeauty .swiper-button-prevBeauty.swiper-button-disabled,
.swipreButtonNewFeatures .swiper-button-prevNewFeatures.swiper-button-disabled,
.swipreButtonFurniture .swiper-button-prevFurniture.swiper-button-disabled,
.swipreButtonElectronics .swiper-button-prevElectronics.swiper-button-disabled,
.swipreButtonFashion .swiper-button-prevFashion.swiper-button-disabled,
.swipreButtonNewRepair .swiper-button-prevRepair.swiper-button-disabled,
.swipreButtonNewItems .swiper-button-prevNewItems.swiper-button-disabled,
.swipreButtonNewRepair .swiper-button-nextRepair.swiper-button-disabled,
.swipreButtonNewItems .swiper-button-nextNewItems.swiper-button-disabled,
.swipreButtonNewRepair .swiper-button-nextRepair.swiper-button-disabled,
.swipreButtonNewFeatures .swiper-button-nextNewFeatures.swiper-button-disabled {
    opacity: 0.5;
    /* Reduce opacity when disabled */
    pointer-events: none;
    /* Prevent clicking */
    cursor: not-allowed;
    /* Show disabled cursor */
}

.swipreButtonReBrand .swiper-button-nextRBrand,
.swipreButtonNewRepair .swiper-button-nextRepair,
.swipreButtonReBrand .swiper-button-prevRBrand,
.swipreButtonNewRepair .swiper-button-prevRepair {
    background-color: white;
    width: 45px;
    height: 45px;
    display: flex;
    /* border: 1px solid var(--primary-color); */
    box-shadow: 0 2px 12px 0 #0000001F;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;


}

.swipreButtonReBrand .swiper-button-nextRBrand::after,
.swipreButtonNewRepair .swiper-button-nextRepair::after {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--primary-color) !important;
    font-size: 25px;
}

.swipreButtonReBrand .swiper-button-prevRBrand::after,
.swipreButtonNewRepair .swiper-button-prevRepair::after {
    content: "\f060";
    font-family: "Font Awesome 6 Pro";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--primary-color) !important;
    font-size: 25px;
}

.swipreButtonReBrand .swiper-button-nextRBrand,
.swipreButtonReBrand .swiper-button-prevRBrand {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.swipreButtonReBrand .swiper-button-nextRBrand {
    right: -50px;
}


.swipreButtonReBrand .swiper-button-prevRBrand {
    left: -50px;

}


/* HOME PAGE FEATURES PRODUCT SECTION STARTS FROM HERE  */
.features_product_section {
    padding: 100px 0;
    overflow-x: hidden;
}

.black_friday_sale_img_container {
    height: 420px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.star_bg {
    position: absolute;
    top: -6px;
    left: -6px;
    height: 70px;
    width: 70px;
    background: url('../images/Star\ 1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white-font);
}

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

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

.features_slider_contaier {
    height: 420px;
    max-width: 500px;
    width: 100%;
    padding: 25px;
    background: var(--white-bg);
    box-shadow: 0px 4px 10px 0px #0000000D, 0px -4px 10px #0000000D;
    /* overflow: hidden; */
    border-radius: 8px;
}

.features_slider_contaier .left_content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.features_slider_contaier .left_content {
    width: 50%;
    height: 100%;
    position: relative;
    padding: 10px;
}

.features_slider_contaier .left_content::before {
    content: '';
    position: absolute;
    width: 1.5px;
    height: 75%;
    background: #E2E2E2;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.features_slider_contaier .right_content {
    width: 50%;
    height: 100%;
}

.feat_star i {
    color: #FFBB00;
    font-size: 18px;
}

.galaxy_flod {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--poppins-font);
}

.overflow_text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.actural_price {
    font-size: 20px;
    font-family: var(--poppins-font);
    font-weight: 700;
    color: var(--primary-color);
}

.disc_price {
    font-size: 18px;
    font-weight: 500;
    color: var(--greyLight-font);
}

meter {
    max-width: 300px;
    width: 100%;
    height: 12px;
    border: none;
}

/* Style the background of the meter bar */
meter::-webkit-meter-bar {
    background: #eee;
    /* Light grey background */
    border-radius: 20px;
}

/* Apply gradient to the filled portion of the meter */
meter::-webkit-meter-optimum-value,
meter::-webkit-meter-suboptimum-value,
meter::-webkit-meter-even-less-good-value {
    background: linear-gradient(to right, var(--line1-gradient, #ff7e5f), var(--line2-gradient, #feb47b));
    border-radius: 10px;
}

/* Firefox support */
meter::-moz-meter-bar {
    background: linear-gradient(to right, var(--line1-gradient, #ff7e5f), var(--line2-gradient, #feb47b));
    border-radius: 10px;
}

.mySwiperFeatures_sec {
    padding: 10px;
}

.feature_slider_Arrrows {
    position: relative;
    margin-bottom: 40px;
}

.feature_slider_Arrrows .swiper-button-next-feat,
.feature_slider_Arrrows .swiper-button-prev-feat {
    position: absolute;
}

.feature_slider_Arrrows .swiper-button-next-feat {
    left: 0px;
}

.feature_slider_Arrrows .swiper-button-prev-feat {
    right: 20px;
}

.feature_slider_Arrrows .swiper-button-next-feat,
.feature_slider_Arrrows .swiper-button-prev-feat {
    background-color: transparent;
    width: 45px;
    height: 45px;
    display: flex;
    border: 1px solid var(--primary-color);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;

}

.feature_slider_Arrrows .swiper-button-next-feat.swiper-button-disabled,
.home_page_slider_categoreis .swiper-button-next1.swiper-button-disabled,
.home_page_slider_categoreis .swiper-button-prev1.swiper-button-disabled,
.feature_slider_Arrrows .swiper-button-prev-feat.swiper-button-disabled {
    opacity: 0.5;
    /* Reduce opacity when disabled */
    pointer-events: none;
    /* Prevent clicking */
    cursor: not-allowed;
    /* Show disabled cursor */
}

.feature_slider_Arrrows .swiper-button-next-feat::after {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--primary-color) !important;
    font-size: 25px;
}

.feature_slider_Arrrows .swiper-button-prev-feat::after {
    content: "\f060";
    font-family: "Font Awesome 6 Pro";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--primary-color) !important;
    font-size: 25px;
}

/* HOME PAGE FEATURES PRODUCT SECTION ENS HERE */

/* HOME PAGE BRAND LOGO SECTION CSS STARTS FORM HERE  */
.brand_logo_section {
    padding: 100px 0;
    background: #FFF4EE;
    overflow-x: hidden;
}

.logo_brand_container {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background: var(--white-bg);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo_brand_container1 {
    height: 105px;
    width: 105px;
    border-radius: 50%;
    background: var(--white-bg);
    padding: 10px;
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: center;
}

.logo_brand_container img,
.logo_brand_container1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 3/2;
    object-position: center;
}



.swipreButtonBrands .swiper-button-nextBrands {
    position: absolute;
    right: -40px;
    top: 25px;

}

.swipreButtonBrands .swiper-button-prevBrands {
    position: absolute;
    left: -50px;
    top: 25px;
}

.swipreButtonBrands .swiper-button-nextBrands,
.swipreButtonBrands .swiper-button-prevBrands {
    background-color: white;
    width: 45px;
    height: 45px;
    display: flex;
    /* border: 1px solid var(--primary-color); */
    box-shadow: 0 2px 12px 0 #0000001F;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;


}

.swipreButtonBrands .swiper-button-nextBrands::after {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--primary-color) !important;
    font-size: 25px;
}

.swipreButtonBrands .swiper-button-prevBrands::after {
    content: "\f060";
    font-family: "Font Awesome 6 Pro";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--primary-color) !important;
    font-size: 25px;
}

/* HOME PAGE BRAND LOGO SECTION CSS ENS HERE */


/* HOME PAGE BEAUTY ITEMS SECTION CSS STARTS FROM HERE  */
.beauty_items_home_Section {
    overflow-x: hidden;
}

.beauty_items_home_Section .container {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-input)
}



/* HOME PAGE BEAUTY ITEMS SECTION CSS ENS FROM HERE */


/* HOME PAGE FASHION SECTION STARTS FROM HERE  */


.fahion_section_home {
    overflow-x: hidden;
}

.fahion_section_home .container {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-input)
}

.mySwiperFashion,
.mySwiperElectronic,
.mySwiperFurniture,
.mySwiperNewBeauty,
.mySwiperNewFeatures {
    padding: 20px;
}

.swipreButtonFurniture .swiper-button-prevFurniture,
.swipreButtonFashion .swiper-button-prevFashion,
.swipreButtonNewFeatures .swiper-button-prevNewFeatures,
.swipreButtonBeauty .swiper-button-prevBeauty,
.swipreButtonElectronics .swiper-button-prevElectronics {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
}

.swipreButtonFurniture .swiper-button-nextFurniture,
.swipreButtonNewFeatures .swiper-button-nextNewFeatures,
.swipreButtonFashion .swiper-button-nextFashion,
.swipreButtonBeauty .swiper-button-nextBeauty,
.swipreButtonElectronics .swiper-button-nextElectronics {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -50px;
}


.swipreButtonFashion .swiper-button-nextFashion,
.swipreButtonNewFeatures .swiper-button-nextNewFeatures,
.swipreButtonBeauty .swiper-button-nextBeauty,
.swipreButtonElectronics .swiper-button-nextElectronics,
.mySwiperNewBeautyAccount .swiper-button-next,
.swipreButtonFurniture .swiper-button-nextFurniture,
.swipreButtonBeauty .swiper-button-prevBeauty,
.swipreButtonNewFeatures .swiper-button-prevNewFeatures,
.swipreButtonFashion .swiper-button-prevFashion,
.swipreButtonFurniture .swiper-button-prevFurniture,
.swipreButtonElectronics .swiper-button-prevElectronics,
.mySwiperNewBeautyAccount .swiper-button-prev {
    background-color: white;
    width: 45px;
    height: 45px;
    display: flex;
    /* border: 1px solid var(--primary-color); */
    box-shadow: 0 2px 12px 0 #0000001F;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;


}

.swipreButtonFashion .swiper-button-nextFashion::after,
.swipreButtonNewFeatures .swiper-button-nextNewFeatures::after,
.swipreButtonBeauty .swiper-button-nextBeauty::after,
/* .mySwiperFurniture .swiper-button-next::after, */
.swipreButtonElectronics .swiper-button-nextElectronics::after,
.swipreButtonFurniture .swiper-button-nextFurniture::after,
.mySwiperNewBeautyAccount .swiper-button-next::after {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--primary-color) !important;
    font-size: 25px;
}

.swipreButtonFashion .swiper-button-prevFashion::after,
.swipreButtonNewFeatures .swiper-button-prevNewFeatures::after,
.swipreButtonBeauty .swiper-button-prevBeauty::after,
/* .mySwiperFurniture .swiper-button-prev::after, */
.swipreButtonElectronics .swiper-button-prevElectronics::after,
.swipreButtonFurniture .swiper-button-prevFurniture::after,
.mySwiperNewBeautyAccount .swiper-button-prev::after {
    content: "\f060";
    font-family: "Font Awesome 6 Pro";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--primary-color) !important;
    font-size: 25px;
}


/* HOME PAGE FASHION SECTION ENDS HERE  */


/* HOME PAGE ELECTRONIC SECTION STARTS FROM HERE  */
.home_electronic_section {
    overflow-x: hidden;
}

.home_electronic_section .container {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-input)
}

/* HOME PAGE ELECTRONIC SECTON END HERE  */

/* HOME PAGE FURTINURE SECTION CSS STARTS FROM HERE  */
.home_furniture {
    padding: 100px 0;
    overflow-x: hidden;
}

/* HOME PAGE FURTINURE SECTION CSS ENDS HERE */


/* HOME SECTION SHOP BY CATEGORIES SECTION STARTS FORM HERE  */
.shop_by_categories_home {
    padding: 100px 0;
    background: #EFFAFF;
}

.categories_filter_buttons button {
    background: transparent;
    border: 1px solid #E2E2E2;
    border-radius: 5px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 400;
    color: var(--black-font);
}

.categories_filter_buttons button.active {
    background: var(--primary-color);
    border: none;
    color: var(--white-font);
}

.contentCategories {
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: all 0.5s ease-in-out;
    max-height: 0;
    overflow: hidden;
}

.contentCategories.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    max-height: 2000px;
}

.shop_cat_second_row_left {
    height: 715px;
    max-height: 800px;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    background: #DAF4FF;
    padding-top: 40px;
}

.shop_cat_second_row_left .music_imge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* HOME SECTION SHOP BY CATEGORIES SECTION ENS FROM HERE */






/* HOME PAGE SECOND LAST BANNER IMAGE SECTION STARTS FORM HERE  */
.second_last_banner_home {
    overflow-x: hidden;
}

.second_last_banner_container {
    height: 320px;
    width: 100%;
    background: url('./images/second_last_banner.jpg');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 10px;
    margin: 100px 0;
    padding: 100px 0 20px 30px;
}

.second_last_banner_heading {
    font-size: 38px;
    font-weight: 700;
    font-family: var(--poppins-font);
    max-width: 650px;
    color: var(--white-font);
}

.second_last_banner_container .shop_now_btn {
    color: var(--white-font);
    width: max-content;
    margin: 10px 0;
}

.second_last_banner_container .shop_now_btn i {
    color: var(--white-font);
}

.second_last_banner_home .star_bg {
    position: absolute;
    top: -25px;
    left: -20px;
    height: 90px;
    width: 90px;

}

.mb-80 {
    margin-bottom: 80px;

}

.dilivery_content_imge {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background-color: var(--white-bg);
    box-shadow: 4px 4px 18px -4px #00000014, -4px -3px 18px -4px #00000014;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 25px;
}

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

/* HOME PAGE SECOND LAST BANNER IMAGE SECTION ENDS HERE */


/* FOOTER SECTION CSS STARTS FROM HERE  */
footer {
    background: var(--footer-bg);
    padding: 60px 0 20px 0;
    overflow-x: hidden;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer .footer_link {
    color: var(--grey-font);
    font-size: 16px;
    font-weight: 400;
    transition: all .5s ease-in-out;
}

.footer_max_width {
    max-width: 300px;
    width: 100%;
}

footer .footer_link:hover {
    color: var(--secondary-color);
}

.quick_link_heading {
    font-size: 18px;
    font-weight: 600;
}

.news_letter_submit {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 400;
    background: var(--primary-color);
    color: var(--white-font);
    border: none;
    padding: 2px 8px;
    z-index: 5;
}

.news_letter .input-group-default input:focus {
    box-shadow: none !important;
    outline: none !important;
}

.news_letter .input-group-default input {
    border-radius: 0px !important;
    border: 2px solid #DAF4FF;
    background: #EFFAFF;
}

.news_letter .input-group-default input::placeholder {
    color: var(--grey-font);
}

.footer_design_tag {
    font-size: 14px;
    font-weight: 400;
    color: #A5A5A5;
    text-align: center;
    padding: 20px 0 10px 0;
}

.footer_scoial_links_container {
    border-top: 1px solid #E2E2E2;
    padding-top: 20px;
}

.footer_scoial_links_container .social_link_height {
    height: 50px;
    width: 50px;
    border: 1px solid #E2E2E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
}

.footer_scoial_links_container .social_link_height a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
}

.footer_scoial_links_container .social_link_height i {
    font-size: 22px;
    color: var(--primary-color);
}

.footer_design_tag a {
    color: var(--primary-color);
}

/* FOOTER SECTION CSS ENDS HERE */
/* HOME SECTION CSS ENDS HERE  */




/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++  REPAIER AND MAINTENANCE PAGE CSS STARTS FROM HERE  +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* repair and maintainance hero section starts here 1st part  */
.repair_maintenance_hero_section {
    padding: 65px 0;
    background: #EFFAFF;
    overflow-x: hidden;
}

.repaoer_hero_cat_heading {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

/* features secrvice css start 2nd part */
.repair_maintainance_servcice_feature_section {
    padding: 65px 0;
}

.repair_maintainance_servcice_feature_section1 {
    padding: 65px 0;
    border-top: 1px solid var(--border-input);
}

.repair_maintenance_containerRE {
    height: 300px;
    max-width: 320px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 20px;
    margin: auto;
    cursor: pointer;
}

.repair_maintenance_containerRE:hover img {
    transform: scale(1.2);
}

.repier_imgaeRE {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.repier_imgaeRE img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease-in-out;
}

/* 4th section css starts  */
.service_package_section_Text {
    padding: 100px 0;
    background: #EFFAFF;
    overflow-x: hidden;
}

.Package_heading {
    font-size: 24px;
    font-family: var(--poppins-font);
    font-weight: 700;
}

.text-justify {
    text-align: justify;
}

.left_imagePackAge {
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.PlayIcons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.popular_reapir_page {
    max-height: 350px;
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++  REPAIER AND MAINTENANCE PAGE CSS ENDS HERE  +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.cat_page_border_bottom {
    border-bottom: 1px solid var(--border-input);
}



/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++  REPAIER AND MAINTENANCE INDIDVIDUAL  PAGE CSS STARTS FROM HERE  +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.repair_indiviual_section_hero {
    padding: 30px 0 60px 0;
}

.image_container {
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
}

.mySwiperIndividulSmall .image_container {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
}

.mySwiperIndividulSmall .swiper-slide-thumb-active {
    /* padding: 5px;  */
    border: 2px solid #3D554D;
    border-radius: 8px;
    box-sizing: border-box;
    /* height: calc(100% - 50px) !important; */
}

.mySwiperIndividulSmall .image_container {
    border: 3px solid #E2E2E2;
    border-radius: 8px;
}

.Servicing_he {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--poppins-font);
    color: var(--black-font);
}

.sticky_repair_date_indidvidual {
    position: sticky;
    /* height: 95vh; */
    top: 60px;
    right: 0;
}

.repair_hero_right_content {
    padding: 30px;
    border: 1px solid #E2E2E2;
    border-radius: 12px;
}

.Book_Service_heads {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--primary-color);
}

.service_Date_book_btns button {
    border-radius: 8px;
    padding: 8px;
    border: 1px solid #E2E2E2;
    background: transparent;
    transition: all .5s ease-in-out;
}

.service_Date_book_btns button:hover {
    background: #067FB11A;
    border: 1px solid var(--primary-color);
}

.service_Date_book_btns button.active {
    border-radius: 8px;
    padding: 8px;
    background: #067FB11A;
    border: 1px solid var(--primary-color);
}

.price_p_borer {
    padding: 20px 0;
    border-bottom: 1px solid #E2E2E2;
}

.content_item_date {
    display: none;
}

.content_item_date.active {
    display: block;
}

.time_zones .time_zone1 {
    border-radius: 8px;
    padding: 8px 12px;
    border: 1px solid #E2E2E2;
    background: transparent;
    width: max-content;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.time_zones .time_zone1:hover {
    background: #067FB11A;
    border: 1px solid var(--primary-color);
}

.time_zones .time_zone1.active {
    background: #067FB11A;
    border: 1px solid var(--primary-color);
}

.content_container .book_date_btn {
    background: var(--primary-color);
    color: var(--white-font);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    transition: all .5s ease-in-out;
    border-radius: 8px;
}

.content_container .book_date_btn:hover {
    color: var(--primary-color);
    background: transparent;
    border: 1px solid var(--primary-color);
}

.content_container .book_date_btn i {
    transform: rotate(-25deg);
    font-size: 20px;
    transition: all .5s ease-in-out;
}

.content_container .book_date_btn:hover i {
    transform: rotate(0deg);
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++  REPAIER AND MAINTENANCE INDIVIDUAL   PAGE CSS ENDS HERE  +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */



/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++    SHOP DEAILS PAGE CSS STARTS FROM HERE +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.shop_detail_first_Sec {
    padding-top: 30px;
    overflow-x: hidden;
}

.logo_brand_container2 {
    height: 100px;
    width: 100px;
    padding: 10px;
    overflow: hidden;
}

.logo_brand_container2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    overflow: hidden;
}

/* filte section  */
.filter_section_shop_page {
    padding-top: 60px;
}

.left_filter_Section {
    padding: 20px;
    border: 1px solid #E2E2E2;
    border-radius: 8px;
}

.filter_BY {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--poppins-font);
}

.CLEAR_btn {
    background: transparent;
    color: var(--grey-font);
    font-size: 16px;
    font-weight: 400;
    border: none;
    text-decoration: underline;
}

.fa-xmark {
    cursor: pointer;
}

.threeBColor {
    font-size: 16px;
    font-weight: 400;
    color: #3B3B3B;
}

.search_filter_contents {
    border-bottom: 1px solid #DADADA;
    padding: 16px 0;
}

.filter_by_data_accordion {
    padding-top: 16px;
}

.filter_by_data_accordion .accordion-button {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--poppins-font);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.filter_by_data_accordion .accordion {
    border: none;
}

.filter_by_data_accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #DADADA;

}

.filter_by_data_accordion .last_accordion_item {
    border: none;

}

.second_according_inside_according .accordion-item {
    border: none;

}

.filter_by_data_accordion .accordion-button:not(.collapsed) {
    color: var(--black-font);
    background: none;
    box-shadow: none;
}

.second_according_inside_according .accordion-button:not(.collapsed) {
    color: #3B3B3B;
    background: none;
    box-shadow: none;
}

.filter_by_data_accordion .accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

.filter_by_data_accordion .accordion-button::after {
    display: none !important
}

.filter_by_data_accordion .accordion-button .icon::before {
    content: "\2b";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    /* Required for solid icons */
    font-size: 18px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.filter_by_data_accordion .accordion-button[aria-expanded="true"] .icon::before {
    content: "\f068";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    /* Required for solid icons */
    font-size: 18px;
    margin-left: auto;
}

.second_according_inside_according .accordion-button .icon::before {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    font-weight: 600;
    /* Required for solid icons */
    color: var(--grey-font);
    font-size: 18px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.second_according_inside_according .accordion-button[aria-expanded="true"] .icon::before {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    font-weight: 600;
    /* Required for solid icons */
    color: var(--grey-font);
    font-size: 18px;
    margin-left: auto;
}

.filter_by_data_accordion .accordion-body {
    padding: 0;
    padding-bottom: 20px;
}

.second_according_inside_according .accordion-button {
    font-size: 16px;
    font-weight: 400;
    color: #3B3B3B;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.form-check input[type="checkbox"] {
    appearance: none;
    /* Removes default checkbox styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    /* Adjust size */
    height: 18px;
    border: 2px solid #ccc;
    /* Default border */
    border-radius: 1px;
    /* Optional: Rounded corners */
    background-color: white;
    /* Default background */
    transition: all 0.3s ease-in-out;
    outline: none !important;
    /* Removes Bootstrap focus shadow */
    box-shadow: none;
}

/* When the checkbox is checked */
.form-check input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    /* Change to your preferred color */
    border-color: var(--primary-color);
    position: relative;
    box-shadow: none;
}

.second_according_inside_according .form-check input[type="radio"] {
    appearance: none;
    /* Removes default radio button styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    /* Adjust size */
    height: 18px;
    border: 2px solid #ccc;
    /* Default border */
    border-radius: 50%;
    /* Makes it round */
    background-color: white;
    /* Default background */
    transition: all 0.3s ease-in-out;
    outline: none !important;
    /* Removes Bootstrap focus shadow */
    box-shadow: none;
    position: relative;
}

/* When the radio button is checked */
.second_according_inside_according .form-check input[type="radio"]:checked {
    background-color: var(--primary-color);
    /* Change to your preferred color */
    border-color: var(--primary-color);
    box-shadow: none;
}

.second_according_inside_according .radio_btn {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #3B3B3B;
    font-size: 16px;
    font-weight: 400;
}

#SeeMore_btn {
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
}

.brand_SearvhBar input {
    width: 100%;
    padding: 2px 30px;
    outline: none;
    border: 1px solid var(--border-input);
    border-radius: 2px;
}

.brand_SearvhBar {
    position: relative;
}

.brabd_search_icon_serbar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5px;
    cursor: pointer;
    color: var(--darkBlue-shade);
}

.serch_new_Arrivail_shop {
    width: 350px !important;
}

.select_filter_Categories select:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #DADADA;
}

.select_filter_Categories select {
    color: var(--grey-font);
    width: 150px;
}

.product_data_container {
    padding: 15px;
    background: var(--white-bg);
    box-shadow: 0 4px 20px -4px #00000014;
    /* min-height: 310px; */
    height: 360px;
    max-width: 350px;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all .5s ease-in-out;
    margin: auto;
    position: relative;
}

.product_data_containerManageReview {
    padding: 15px;
    background: var(--white-bg);
    box-shadow: 0 4px 20px -4px #00000014;
    min-height: 310px;
    /* height: 300px; */
    max-width: 300px;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all .5s ease-in-out;
    margin: auto;
    position: relative;
}


.product_data_container .add_to_cart_btn {
    margin-top: 10px;
}

.product_data_container:hover .add_to_cart_btn {
    margin-bottom: 0px;
}

.product_data_container:hover .new_item_imge_container {
    height: 140px;

}

.product_data_container .fs-16.fw-400 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.product_data_container .new_item_imge_container {
    width: 100%;
    height: 200px;
    margin: auto;
    border-bottom: 1px solid #E4E4E4;
    transition: all .5s ease-in-out;
    overflow: hidden;
}

.product_data_containerManageReview .new_item_imge_container {
    width: 100%;
    max-height: 180px;
    margin: auto;
    border-bottom: 1px solid #E4E4E4;
    transition: all .5s ease-in-out;
    overflow: hidden;
}

.product_data_containerManageReview .new_item_imge_container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 3/2;
    object-position: center;
    padding-bottom: 20px;
    transition: all .5s ease-in-out;

}

.product_data_container .new_item_imge_container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 3/2;
    object-position: center;
    padding-bottom: 20px;
    transition: all .5s ease-in-out;

}


.product_data_container .prdouct_category {
    font-size: 16px;
    font-weight: 400;
    color: #929292;
}



/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++    SHOP DEAILS PAGE CSS ENDS HERE HERE +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */



/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++    INDIVIDUAL PRODUCT PAGE CSS STARTS FROM HERE +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.individual_product_page_hero_section {
    padding-top: 30px;
    /* overflow-x: hidden; */
}

.image_containeriindividual {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #E2E2E2;
    border-radius: 8px;
}

.mySwiperIndividulSmall .image_containeriindividual {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
}

.mySwiperIndividulSmall .image_containeriindividual {
    border: 2px solid #E2E2E2;
    border-radius: 8px;
}

.mySwiperIndividulSmall .image_containeriindividual img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.individual_product_page_hero_section .swiper-button-next::after {
    color: black;
    font-size: 25px;
}

.individual_product_page_hero_section .swiper-button-next {
    width: 30px;
    height: 30px;
}

.sandisk_heading {
    font-size: 20px;
    font-weight: 400;
    font-family: var(--poppins-font);
}

.individual_pridut_price_descount {
    font-size: 18px;
    font-weight: 400;
    color: #929292;
}

.individual_produt_price {
    font-size: 24px;
    font-weight: 700;
    font-family: 700;
    color: var(--primary-color);
}

.incrememt_decrement_btns {
    width: 130px;
    position: relative;
    border: 1px solid #929292;
    /* overflow: hidden; */
    padding: 8px 10px;
    border-radius: 4px;
}

#numberBox {
    width: 20px;
    background: transparent;
    border: none;
    color: var(--grey-font);
}

.decrease_btn {
    position: absolute;
    right: 10px;
    top: 8px;
    border: none;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
    color: var(--grey-fonte);
}

#numberBox::placeholder {
    text-align: center;
}

.increase_btn {
    position: absolute;
    left: 10px;
    top: 8px;
    border: none;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
    color: var(--grey-font);
}

.add_to_cart_btn1 {
    margin: 0 !important;
}

.wish_lisit_btn {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 400;
    padding: 8px;
    width: 100%;
    display: block;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    text-align: center;
    transition: all .5s ease-in-out;
}

.wish_lisit_btn:hover {
    color: var(--white-font);
    background: var(--primary-color);
    border: none;
}

.capacity_description_container .capacity_filter_buttons button {
    color: var(--grey-font);
    border: 1px solid #929292;
    padding: 8px 25px;
    border-radius: 4px;
    background: none;
    font-size: 16px;
    font-weight: 400;
}

.capacity_description_container .capacity_filter_buttons button.active {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0px 3px 4px 0 #603CE947, 0px -2px 4px 0px #603CE947;
}

.filter_content_capacity {
    display: none;
}

.filter_content_capacity.active {
    display: block;
}

.ul_listStyle {
    list-style: disc;
    margin-left: 30px;
}

.specification_div {
    border-bottom: 1px solid #E2E2E2;
    background: #FAFAFA;
}

.specification_div .description_spec {
    width: 50%;
    padding: 10px 15px;
    color: var(--grey-font);
}

.specification_div .number {
    width: 50%;
    background: var(--white-bg);
    padding: 10px 15px;
    color: var(--grey-font);
}

.spec_contaienr_bore {
    border-top: 1px solid #E2E2E2;
    font-size: 14px;
    font-weight: 400;
}

.sticky_individual_left {
    position: sticky;
    top: 60px;
    left: 0;
}

.review_heading {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--poppins-font);
}

.client_reviw_individual_page {
    background: #F9F9F9;
    border-radius: 8px;
    padding: 24px;
}

.rating_heading {
    font-size: 38px;
    font-weight: 700;
    font-family: var(--poppins-font);
}

.stars {
    font-size: 14px;
    font-weight: 400;
    color: #FFBB00;
}

.review_summary {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--poppins-font);
}

.orange_meter::-webkit-meter-optimum-value,
.orange_meter::-webkit-meter-suboptimum-value,
.orange_meter::-webkit-meter-even-less-good-value {
    background: #F8D000;
    border-radius: 10px;
}

.orange_meter::-webkit-meter-bar {
    background: var(--white-bg);
    /* Light grey background */
    border-radius: 20px;
}

/* Firefox support */
meter::-moz-meter-bar {
    background: #F8D000;
    border-radius: 10px;
}

.client_profile_individual {
    height: 40px;
    width: 40px;
    overflow: hidden;
    border-radius: 50%;
}

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

.client_review_indiviula {
    font-size: 18px;
    font-weight: 400;
    color: #3B3B3B;
}

.individual_product_page_hero_section .two_images div {
    height: 220px;
    width: 140px;
    overflow: hidden;
    border-radius: 8px;
}

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

.client_individaul_border {
    border-bottom: 1px solid #DADADA;
    padding-bottom: 24px;
}

.view_BTN {
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
    text-align: centera;
}

.similar_produt_container_individiula p:nth-child(1) {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    padding-bottom: 10px;
}

.similar_produt_container_individiula p:nth-child(2) {
    font-size: 38px;
    font-weight: 700;
    font-family: var(--poppins-font);
    color: var(--black-font);
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++    INDIVIDUAL PRODUCT PAGE CSS END HERE+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++    
CATEGORES PAGE CSS STARTS FORM HERE +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.gadget_categoreies {
    padding-top: 40px;
    overflow-x: hidden;
}

.border_bottoom_categoreis {
    border-bottom: 1px solid var(--border-input);
    padding-bottom: 60px;
}

.categories_slider_content_containerBorder {
    border: 1px solid #E4E4E4;
    box-shadow: 0px 4px 20px -4px #00000014, 0px -4px 20px -4px #00000014;
}

h3 {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--poppins-font);
}

.beauty_categoreies {
    overflow-x: hidden;
    padding-top: 60px;
}

.womens_clothing_categories {
    overflow-x: hidden;
    padding-top: 60px;
}

/* 
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++    
CATEGORES PAGE CSSS ENDS HERE+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


/** //////////////////////////////////////////////////////////////   BRAND PAGE CSS STARTS FROM HERE ////////////////////////////////////// **/

.featured_brands_brand {
    padding-top: 30px;
    overflow-x: hidden;
}

.logo_brand_containerBrands {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background: var(--white-bg);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #E3DFF3;
}

.logo_brand_containerBrandsFeatured {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background: var(--white-bg);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #E3DFF3;
}

.logo_brand_containerBrands img,
.logo_brand_containerBrandsFeatured img {
    width: 100%;
    /* height: 100%; */
    object-fit: contain;
    aspect-ratio: 3/2;
    object-position: center;
}

.boxNmeA {
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #8F8F8F;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
}

.brads_by_name {
    padding-top: 60px;
}

.name_of_brands_byAlphabet ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.name_of_brands_byAlphabet {
    padding: 40PX 0;
    border-bottom: 1px solid var(--border-input);
}

.first_section_individula_brand {
    padding-top: 30px;
}

/** //////////////////////////////////////////////////////////////   INDIVIDUAL BRAND PAGE CSS ENDS FROM FERE ////////////////////////////////////// **/



/** //////////////////////////////////////////////////////////////   WISH LIST CSS STARTS FROM HERE  ////////////////////////////////////// **/


.whish_list_Section {
    padding-top: 30px;
}

h2 {
    font-size: 38px;
    font-weight: 700;
    font-family: var(--poppins-font);
}

.wishlist_product {
    max-width: 350px;
    width: 100%;
    background: var(--white-bg);
    padding: 15px;
    box-shadow: 0px 4px 20px -4px #00000014, 0px -4px 20px -4px #00000014;
    border: 1px solid #E2E2E2;
    border-radius: 6px;
    height: 100%;
}

.whish_list_image {
    height: 160px;
    width: 100%;
    overflow: hidden;
    padding-bottom: 16px;
    border-bottom: 1px solid #E4E4E4;
    margin-bottom: 10px;
}

.wishlist_product p {
    flex-grow: 1;
}

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

.wishlist_product .add_to_cart_btnWishList {
    border: 1px solid var(--primary-color);
    padding: 10px;
    width: 100%;
    background: transparent;
    border-radius: 6px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.remove_btn {
    background: none;
    color: #929292;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    text-align: center;
    border: none;
}

.wish_list_radio input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
    border: 2px solid black !important;
    cursor: pointer;
}


/** //////////////////////////////////////////////////////////////   WISHLIST PAGE CSS ENDS FROM FERE ////////////////////////////////////// **/






/* ************************************************* CART PAGE SECTION CSS STARTS FROM HERE ********************************** */
.added_to_cart_prodoct_section {
    padding-top: 30px;
}

.cart_produt_image {
    max-width: 150px;
    width: 100%;
    overflow: hidden;
}

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

.cart_product_description p:nth-child(1) {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--poppins-font);
}

.cart_price_REmove_nt p:nth-child(2) {
    color: var(--grey-font);
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline;
}

.cart_items {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-input);
}

.cart_price_details_container {
    padding: 20px;
    background: #F7F7F7;
    border-radius: 8px;
}

.promo_code_input_container input {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid var(--border-input);
    background: transparent;
    outline: none;
}

.promo_code_input_container button {
    background: transparent;
    border: 1px solid var(--border-input);
    color: var(--grey-font);
    padding: 5px 10px;
}

.cart_prices {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-input);
}

.promo_code {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-input);
}

.checkout_btn {
    width: 100%;
    color: var(--white-font);
    padding: 10px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 8px;
}

.Total_Checkout_container {
    padding: 24px 0;
}

.cart_price_sticky {
    position: sticky;
    top: 0;
    right: 0;
}

.payment_methods div {
    width: 50px;
}

.payment_methods img {
    width: 100%;
    object-fit: contain;
}

/* ************************************************* CART PAGE SECTION CSS ENDS FROM ********************************** */


/* ---------------- LOGIN PAGE CSS STARTS FORM HERE ---------- */
.secure_login p {
    color: #3B3B3B;
    font-size: 16px;
    font-weight: 400;
}

.border_bottom_login {
    border-bottom: 1px solid #A5A5A5;
}

.login_form_container {
    max-width: 650px;
    width: 100%;
    margin: auto;
    padding: 50px 0 20px 0;
}

.login_form_container form .login_email {
    border: 1px solid var(--black-font);
    outline: none;
}

.login_form_container form .login_email:focus {
    box-shadow: none;
}

.login_form_container form .login_email::placeholder {
    color: #3B3B3B;
}

.submit_btn {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 25px;
    color: var(--white-font);
    border: none;
    border-radius: 6px;
    width: 100%;
    background: var(--primary-color);
}

.login_form_container form {
    padding: 30px 40px;
}

.or_line {
    position: relative;
    text-align: center;
}

.or_line::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    width: 270px;
    width: 41%;
    background: #BEBEBE;
    height: 1px;
}

.or_line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    width: 270px;
    width: 41%;
    background: #BEBEBE;
    height: 1px;
}

.google_continue {
    padding: 40px;
}

.google_continue p {
    border: 1px solid #8F8F8F;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
}


.account_pricacy {
    max-width: 400px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #3B3B3B;
    margin: auto;
}

.account_pricacy a,
.have_account {
    color: #3D554D;
}

.show_password {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: var(--grey-font);
    text-decoration: underline;
}

.prev_used_email {
    font-size: 16px;
    color: #3B3B3B;
    font-weight: 400;
    text-align: center;
    padding: 30px 0 20px 0;
}

.use_differernt_email {
    font-size: 14px;
    color: #3D554D;
    font-weight: 400;
    text-decoration: underline;
    text-align: center;
}

.login_form_container .enter_name input:focus {
    box-shadow: none;
}

.login_form_container .enter_name input::placeholder {
    color: #3B3B3B;
}

.login_form_container .enter_name input {
    border: 1px solid var(--black-font);
    outline: none;
}

.forgot_password {
    font-size: 14px;
    color: #3D554D;
    font-weight: 400;
    text-align: end;
    text-decoration: underline;
}

/* ---------------- LOGIN PAGE CSS ENDS HERE ---------- */


/* +++++++++++++++++++++++++++++++++++   ABOUT PAGE CSS STARTS FROM HERE ++++++++++++++++++++++++++++++++++++++++++++ */
h1,
.heading_font {
    font-size: 52px;
    font-weight: 700;
    font-family: var(--poppins-font);
}

.about_what_we_do {
    padding: 40px 0 60px 0;
    overflow-x: hidden;
}

.left_about_image_container {
    height: 550px;
    overflow: hidden;
}

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

.right_about_image_container {
    height: 520px;
    overflow: hidden;
}

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

.about_page_about_us {
    padding: 100px 0;
    background: #EFFAFF;
    overflow-x: hidden;
}

.about_page_number {
    font-size: 46px;
    font-family: var(--poppins-font);
    font-weight: 700;
    color: var(--primary-color);
}

.about_us_left_container .brand_tag {
    font-size: 20px;
    font-weight: 700;
}

.about_page_team_section {
    padding: 100px 0;
    overflow-x: hidden;
}

.team_member_image {
    height: 400px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px
}

.team_member_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.team_member_name {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--poppins-font);
    padding: 16px 0;
}

/* ++++++++++++++++++++++++++++++++++++++ ABOUT PAGE CSS ENDS FROM HERE +7777777777777777777777777 */





/* 888888888888888888888888888888888888888888888888888  CHECKOUT ADDRESS PAGE CSS STARTS FROM HERE 8888888888888888888888888888888 */
.shipping_address_section {
    padding: 30px 0 20px 0;
    overflow-x: hidden;
}

.shipping_form form input:focus,
.shipping_form form textarea:focus {
    box-shadow: none;
    border: 1px solid var(--black-font);
}

.shipping_form form input::placeholder,
.shipping_form form textarea::placeholder {
    color: #3B3B3B;
    font-size: 16px;
    font-weight: 400;
}

.shipping_form form textarea::placeholder {
    padding: 5px;
}

.shipping_form form textarea {
    border-radius: 6px;
    padding: 5px;
}

.shipping_form form input,
.shipping_form form textarea {
    border: 1px solid var(--black-font);
    outline: none;
}

.shipping_form form label {
    color: #3B3B3B;
    font-size: 16px;
    font-weight: 400;
}

.continue_to_payment {
    padding: 10px;
    width: 50%;
    background: var(--primary-color);
    color: var(--white-font);
    border: none;
    border-radius: 6px;
    text-align: center;
}

.checOutSubmut_btn .save_btn_shipping {
    padding: 10px;
    width: 50%;
    background: var(--primary-color);
    color: var(--white-font);
    border: none;
    border-radius: 6px;
    text-align: center;
}

.checOutSubmut_btn p {
    padding: 10px;
    width: 50%;
    background: transparent;
    color: var(--grey-font);
    border: 1px solid #929292;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
}

.light-black-text {
    color: #3B3B3B;
}

.shipping_address_section .cart_price_details_container .cart_prices {
    border-bottom: 1px solid #585858;
}

/* 888888888888888888888888888888888888888888888888888  CHECKOUT ADDRESS PAGE CSS ENDS HERE 8888888888888888888888888888888 */


/* 888888888888888888888888888888888888888888888888888  CHECKOUT PAYMETN PAGE CSS STARTS FROM HERE 8888888888888888888888888888888 */
.shipping_heading {
    font-size: 24px;
    font-family: var(--poppins-font);
    font-weight: 700;
}

.shipping_change {
    font-size: 16px;
    font-weight: 400;
    color: #3D554D;
    text-decoration: underline;
}

.sub_heading {
    color: #1B1B1B;
    font-size: 16px;
    font-weight: 400;
}

.shipping_details {
    border-bottom: 1px solid #767676;
    padding-bottom: 25px;
}

.shipping_payment_sectioN {
    padding: 25px 0;
}

.shipping_payment_sectioN form input {
    border: 1px solid #A3A3A3;
    outline: none;
}

.shipping_payment_sectioN form input:focus {
    box-shadow: none;
    border: 1px solid #A3A3A3;
}

.shipping_payment_sectioN form input::placeholder {
    color: #8F8F8F;
}

.payment_methodcheckout {
    width: max-content;
    margin: auto;
}

.payment_methodcheckout div {
    width: 50px;
    height: 28px;
    border: 1px solid #A6A4A4;
    overflow: hidden;
}

.payment_methodcheckout div img {
    width: 100%;
    object-fit: contain;
    height: 100%;
    aspect-ratio: 3/2;
    padding: 3px;
}

.nepal_payment_methods button img {
    width: 50px;
    object-fit: contain;
}

.nepal_payment_methods button {
    padding: 10px 20px;
    color: #3D554D;
    border: 1px solid #3D554D;
    border-radius: 6px;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
}

.pay_now_btn {
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white-font);
    width: 100%;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
}

.lock_con_card,
.question_mark {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: #848484;
}


/* 888888888888888888888888888888888888888888888888888  CHECKOUT PAYMETN PAGE CSS END FROM HERE 8888888888888888888888888888888 */


/* 1111111111111111111111111111111111111111 CONATACT PAGE CSS STARTS FROM HERE 11111111111111111111111111111 */
.contact_section {
    padding: 50px 0;
    overflow-x: hidden;
}

.contact_left {
    background: #F4F4F4;
    padding: 32px;
    border-radius: 6px;
}

.contact_details .icons {
    height: 44px;
    width: 44px;
    border-radius: 3px;
    padding: 5px;
    background: var(--white-bg);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);

}

.contact_details {
    padding-bottom: 30px;
    border-bottom: .5px solid var(--black-font);
}

.social_ionns {
    font-size: 25px;
    display: flex;
    align-items: center;
    gap: 30px;
    color: #3B3B3B;
    margin-top: 40px;
}

.contact_submitBtn {
    background: var(--primary-color);
    color: var(--white-font);
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
}

.contact_map iframe {
    width: 100%;
}

/* 1111111111111111111111111111111111111111 CONATACT PAGE CSS ENDS HERE  11111111111111111111111111111 */

/* ++++++++++++++++++ TESTINOMIAL PAGE CSS STARTS FROM  HERE ++++++++++++++++++++++++++++++++++++++++++++ */
.client_testinomial_section_testi_page {
    padding: 50px 0;
    overflow-x: hidden;
}

.client_review_container {
    background: var(--white-bg);
    padding: 24px;
    box-shadow: 4px 4px 18px -6px #0000001A, -4px 0px 18px -6px #0000001A;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.client_rating {
    color: #FFBB00;
    font-size: 14px;
}

.client_review_description {
    padding: 20px 0;
    border-bottom: 1px solid #E8E8E8;
    flex-grow: 1;
}

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

.client_profile {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.client_name {
    font-size: 18px;
    font-weight: 700;
}

/* ++++++++++++++++++++++++++++++++ TESTINOMIAL PAGE CSS ENDS HERE +++++++++++++++++++++++++++++++  */


/* ======================= BLOG PAGE CSS STARTS FORM HERE ================ */
.blog_image_contaier {
    height: 320px;
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
}

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

.blog_Date p {
    color: #908F8F;
    font-size: 14px;
    font-weight: 400;
    padding: 20px 0;
}

.blog_heading {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--poppins-font);
    color: var(--black-font);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3em;
}

.READM_MORE_BTN {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 400;
    width: max-content;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all .5s ease-in-out;
}

.READM_MORE_BTN:hover {
    background: var(--primary-color);
    color: var(--white-font);
}

.individual_blogSection {
    background: url('./images/blogImage/b2.jpg');
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay_individual {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00000052;
}

.individual_blogSection h1 {
    font-size: 52px;
    font-weight: 700;
    font-family: var(--poppins-font);
    color: var(--white-font);
    text-align: center;

}

.individual_blog_content {
    padding: 50px 0;
}

.other_blog_related_contents {
    padding: 100px 0;
    background: #EFFAFF;
}

.indivdual_description {
    list-style: decimal;
    margin-left: 25px;
    padding-bottom: 20px;
}

.additional_tips ul {
    margin-left: 25px;
    list-style: disc;
}

.individual_image {
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
}

.individual_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.you_may_also_like {
    font-size: 38px;
    font-weight: 700;
    font-family: var(--poppins-font);
    text-align: center;
    padding-bottom: 30px;
}

.custom-mobilemenu {
    display: none;
}

.ztop {
    position: relative;
    z-index: 1050;
}

@media screen and (min-width: 992px) {
    .user_profile_dropdown_container:hover .accountDropDown {
        max-height: 650px;
        overflow: visible;
        visibility: visible;
        padding: 20px;
    }
}

.accountDropDown {
    background: var(--white-bg);
    position: absolute;
    top: 38px;
    right: 0;
    z-index: 10000;
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 4px 4px 18px -6px #0000001A, -4px 0px 18px -6px #0000001A;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all .5s ease-in-out;
}

.account_profile {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    overflow: hidden;
}

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

.user_datas i {
    font-size: 35px;
}

.user_datas img {
    height: 30px;
    width: 30px;
    object-fit: cover;
}

.use_name {
    font-size: 20px;
    font-weight: 400;
    font-family: var(--poppins-font);
    padding: 5px 0;
}

.logut_container p {
    font-size: 16px;
    font-weight: 400;
    color: #EE0000;
}

.logout_icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 5px;
}


/* ======================= BLOG PAGE CSS STARTS ENDS HERE ================ */


/* ====================== ACCOUNT PAGE CSS STARTS FROM HERE ========================= */
.account_section {
    background: #F5F5F5;
    padding: 30px 0;
}

.item_image {
    height: 80px;
    width: 80px;
    overflow: hidden;
}

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

.account_page_table .table thead th {
    background: #F1F1F1 !important;
    color: var(--black-font);
    font-size: 14px;
    font-weight: 400;
    border-bottom: 0;
    padding: 20px;
    text-align: center;
    vertical-align: middle !important;
}

.account_page_table td {
    text-align: center;
    vertical-align: middle !important;
    color: var(--black-font);
    font-size: 16px;
    font-weight: 400;
}

.account_page_table tbody tr {
    border-bottom: 1px solid #AFAFAF;
}

.account_page_table tbody tr td {
    padding: 30px;
}

.account_page_table tbody tr:last-child {
    border-bottom: none !important;
}

.account_section_right_container,
.account_section_left_container,
.recently_viewed_section_accoutn {
    background: var(--white-bg);
    padding: 25px;
    border-radius: 6px;
}

.recently_viewed_section_accoutn {
    overflow-x: hidden;
}

.pending_order {
    color: #E88700 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.completed_order {
    color: #07C800 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.account_page_table tbody tr:last-child td {
    border-bottom: none !important;
}

.clock_heitht {
    height: 25px;
    width: 25px;
    object-fit: contain;
}

.blue_light_shade {
    background: #EFFAFF;
    padding: 16px;
    border-radius: 6px;
}

.new_item_imge_container_Account img {
    width: 100%;
    height: 120px !important;
    object-fit: contain;
}

.mySwiperNewBeautyAccount {
    position: relative;
    overflow: visible;
    padding-top: 40px;
}

.mySwiperNewBeautyAccount .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 6px;
    background-color: #ccc;
    transition: all 0.3s ease;
    border-radius: 5px;
}

/* Style for the active bullet */
.mySwiperNewBeautyAccount .swiper-pagination .swiper-pagination-bullet-active {
    width: 20px;
    background-color: var(--black-font);
}


.mySwiperNewBeautyAccount .swiper-button-next {
    position: absolute;
    right: -20px;
}

.mySwiperNewBeautyAccount .swiper-button-prev {
    position: absolute;
    left: -20px;
}

/* ====================== ACCOUNT PAGE CSS ENDS FORM HERE  ========================= */


/* --------------- RECENTLY VIEW/MY PERSONAL INFO  PAGE CSS STARTS FORM HERE ----------- */
.recently_viewed_PAGE {
    padding: 50px 0;
}

.account_information_edit {
    padding: 50px 0;
    overflow-x: hidden;
}

.user_name {
    font-size: 16px;
    font-weight: 400;
    color: #3B3B3B;
}

.account_info_edit_form .edit_first_name {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--white-bg);
    padding: 1px 7px;
    z-index: 10;
    color: #7A7A7A;
    font-size: 14px;
}

.account_info_edit_form input {
    border-radius: 6px !important;
}

.account_info_edit_form button {
    background: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    color: var(--white-font);
    border: none;
}

#edit-button,
#password-edit,
.cur_pointer {
    cursor: pointer;
}

.account_password_input_form input {
    border: 1px solid var(--black-font);
    outline: none;
}

.account_password_input_form input:focus {
    box-shadow: none;
    border: 1px solid var(--black-font);
}

.account_password_input_form input::placeholder {
    color: #3B3B3B;
}

.add_new_address_btn {
    background: var(--primary-color);
    color: var(--white-font);
    font-size: 16px;
    font-weight: 600;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: center;
    border-radius: 6px;
}

.shipping_address_add_form select {
    border: 1px solid var(--black-font);
}

.shipping_address_add_form select:focus {
    border: 1px solid var(--black-font);
    box-shadow: none;
}

.book_person_name {
    font-size: 16px;
    font-weight: 600;
    color: #1B1B1B;
}

.default_shipping_address {
    color: #767676;
    font-size: 14px;
    font-weight: 400;
    background: #F1F1F1;
    padding: 4px 12px;
    width: max-content;
}

.red_delete {
    color: #F00004;
    cursor: pointer;
}

.booking_address_container {
    border-bottom: 1px solid #767676;
    padding-bottom: 25px;
}

.manage_review_btn {
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    padding: 10px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all .5s ease-in-out;
    margin-top: 10px;
}

.manage_review_btn:hover {
    background: var(--primary-color);
    color: var(--white-font);
}

/* --------------- RECENTLY VIEW/MY PRESONAL INFO PAGE CSS ENDS HERE ----------- */


/* 00000000000000000000 MANAGE REVIEWS PAGE CSS STARTS FORM HERE 0000000000000000000 */
.manage_reviews_heading {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 10px 0;
    border-bottom: 1px solid #E2E2E2;
}

.to_be_reviewd {
    color: #A5A5A5;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    cursor: pointer;
}

.to_be_reviewd.active {
    color: var(--primary-color);
}

.to_be_reviewd.active::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.reviewed_finished {
    color: #A5A5A5;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    position: relative;
}

.reviewed_finished.active {
    color: var(--primary-color);
}

.reviewed_finished.active::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.review_image img {
    height: 150px;
    width: 150px;
    object-fit: contain;
}

.review_brand {
    font-size: 16px;
    font-weight: 400;
    color: #929292;
}

.review_item_name {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--poppins-font);
    color: var(--black-font);
    padding: 10px 0;
}

.review_item_price {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.reviewed .stars,
.rating_stars .stars {
    font-size: 25px;
}

.reviewed {
    display: none;
    padding-bottom: 40px;
    border-bottom: 1px solid #E2E2E2;
}

.review_description_user {
    padding: 20px;
    border: 1px solid var(--black-font);
    border-radius: 6px;
    margin-top: 20px;
}

.image_container_userAdded,
.image_add_by_user_more {
    height: 85px;
    width: 85px;
    border-radius: 6px;
    /* overflow: hidden; */
    margin-top: 10px;
}

.image_add_by_user_more img {
    width: 100%;
    height: 100%;
    border-radius: 6px;

}

.image_container_userAdded img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;

}

.rateHeading {
    font-size: 16px;
    font-weight: 700;
    padding: 10px 0;
}

.review_write_text textarea {
    width: 100%;
    border: 1px solid var(--black-font);
    border-radius: 6px;
    margin-top: 20px;
    padding: 5px;
    outline: none;
}

.review_write_text textarea::placeholder {
    color: #3B3B3B;
    font-size: 16px;
    font-weight: 400;
}

.cross_icon {
    position: absolute;
    height: 20px !important;
    width: 20px !important;
    object-fit: contain;
    top: -10px;
    right: -10px;
    cursor: pointer;
}

.review_submit_btn {
    border: none;
    background: var(--primary-color);
    color: var(--white-font);
    font-size: 16px;
    font-weight: 600;
    width: max-content;
    padding: 10px 25px;
    border-radius: 6px;
}

/* 00000000000000000000 MANAGE REVIEWS PAGE CSS ENDS FORM HERE  0000000000000000000 */

/* 4444444444444444444444 ORDER HISTOR PAGE CSS STARTS FORM HERE 44444444444444444444444 */
.ORDER_HISTORY_PAGE_SECTION {
    padding: 45px 0;
}

.returned_order {
    color: #003CFF !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.cancelled_order {
    color: #E80000 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.Devlivered_oprder {
    color: #00E832 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.progress_order {
    color: #ED7B00 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.order_tack_buttons_container button {
    color: #A5A5A5;
    font-size: 18px;
    font-weight: 400;
    border: none;
    background: transparent;
    padding: 0 40px;
    text-align: center;
    position: relative;
}

.order_tack_buttons_container button.active {
    color: #3D554D;
    font-weight: 600;
}

.order_tack_buttons_container button.active::before {
    content: '';
    position: absolute;
    bottom: -20px;
    height: 2px;
    width: 100%;
    left: 0;
    background: #3D554D;
}

.order_tack_buttons_container {
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #E2E2E2;
}

.order_item {
    display: none;
}

.order_item.active {
    display: block;
}

/* 4444444444444444444444 ORDER HISTOR PAGE CSS ENDS FROM HERE  44444444444444444444444 */

/* 0000000000000000000 ORDER HISTORY TRACK PAGE SECTION STARTS FROM HERE 000000000000000000000 */
.order_history_track_section {
    padding: 45px 0;
}

.track_image {
    width: 40px;
    height: 40px;
    overflow: hidden;
}

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

.track_order_box_container,
.track_order_container {
    padding: 24px;
    background: var(--white-bg);
    box-shadow: 0px 2px 12px 0px #0000000D, 0px -2px 12px 0px #0000000D;
    border-radius: 6px;
}

.track_order_box_container i {
    font-size: 22px;
}

.contact_icons_height {
    height: 30px;
    width: 30px;
    overflow: hidden;
    display: block;
}

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

.w_33 {
    border-right: 2px solid #D9D9D9;
    height: 100%;
    margin: auto;
}

.find_order_btn {
    border: none;
    background: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    color: var(--white-font);
    border-radius: 6px;
    padding: 10px;
    width: 100%;
}

/* 0000000000000000000 ORDER HISTORY TRACK PAGE SECTION ENDS FORM HERE 000000000000000000000 */
@media (max-width: 992px) {
    .product_data_container .new_item_imge_container {
        height: 125px;
    }

    .product_data_container {
        padding: 10px;
    }

    .recently_viewed_section_accoutn {
        padding: 15px;
    }

    .new_items_container .new_item_imge_container {
        height: 150px;
    }

    .order_tack_buttons_container button {
        padding: 0 20px;
        font-size: 16px;
    }

    h1,
    .heading_font {
        font-size: 28px;
        font-weight: 700;
        font-family: var(--poppins-font);
    }

    #navbarSmall.scrolled {
        position: fixed;
        top: 0;
        left: 0;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        /* padding: 10px; */
        background: var(--white-bg);
        width: 100%;
    }

    #small_screen_searh_bar.active {
        display: none;
    }

    .navbar-toggler i {
        color: var(--black-font);
        font-size: 30px;
    }

    .offcanvas-button {
        background: none;
        border: none;
    }

    .offcanvas-header {
        background-color: var(--black-font);
        display: flex;
        justify-content: space-between;
        color: var(--white-font);
    }

    .offcanvas {
        background-color: var(--white-bg);
    }

    .offcanvas-body {
        padding: 0px !important;
    }

    /* #navbarSmallScreen .nav-item{
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #E2E2E2;
        padding: 10px 25px;
    } */
    #navbarSmallScreen .nav-item {
        display: flex;
        flex-direction: column;
        width: 100%;
        border-bottom: 1px solid #E2E2E2;
    }

    #navbarSmallScreen .nav-item .nav-link {
        color: var(--grey-font);
    }

    .nav-item:hover .nav-link {
        color: var(--grey-font) !important;
    }


    /* small page nav  */
    .dropdown-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        cursor: pointer;
        padding: 5px 20px 5px 20px;
    }

    #navbarSmallScreen .nav-item .dropdown-menu {
        border: none !important;
    }

    #navbarSmallScreen .nav-item .dropdown-menu .dropdown-item {
        color: var(--grey-font);
        padding: 15px 5px 15px 50px;
    }

    #navbarSmallScreen .nav-item .icon-toggle {
        font-size: 16px;
        font-weight: 400;
        color: var(--grey-font);
    }

    #navbarSmallScreen .nav-item .dropdown-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        font-size: 16px;
        font-weight: 400;
        transition: max-height 0.3s ease-out, opacity 0.3s ease, visibility 0.3s ease;
        padding: 0;
    }

    #navbarSmallScreen .nav-item .dropdown-menu.show {
        max-height: 800px;
        /* Adjust based on your content */
        opacity: 1;
        visibility: visible;
    }

    #navbarSmallScreen .nav-item .dropdown-menu li:first-child {
        border-top: 1px solid #E2E2E2;
    }

    #navbarSmallScreen .nav-item .dropdown-menu li:not(:last-child) {
        border-bottom: 1px solid #E2E2E2;
    }

    #navbarSmallScreen .nav-item .dropdown-menu span {
        color: var(--primary-color) !important;
    }

    #navbarSmallScreen .nav-item .dropdown-menu span .badge {
        color: white !important;
        font-size: 18px;
    }

    /* #navbarSmallScreen .nav-item .dropdown-menu li:last-child a {
        color: var(--primary-color) !important;
    } */


    .offcanvas-header .fa-xmark {
        font-size: 30px;
        color: var(--white-font);
    }

    .details_link {
        color: var(--white-font) !important;
    }

    .cart_shop_icons button:nth-child(1)::before {

        display: none;
    }

    .hero_height_set {
        height: auto;
    }

    .mySwiperCategories1 {
        padding-bottom: 40px;
    }

    .heart_shape_new {
        top: 10px;
    }

    .add_to_cart_btn {
        margin-bottom: 0px;
        /* margin-top: 10px; */
    }

    .mySwiperRepair,
    .mySwiperNewItems,
    .mySwiperBrands,
    .mySwiperFashion,
    .mySwiperElectronic,
    .mySwiperFurniture,
    .mySwipercartAudio,
    .mySwipercartAudio1,
    .mySwipercartAudio2,
    .mySwipercartAudio3,
    .mySwipercartAudio4 {
        padding-bottom: 40px;
    }

    .mySwiperBrands {
        padding-top: 20px;
    }

    .shop_cat_second_row_left {
        height: auto;
        gap: 50px;
    }


    /* repaierMaintaindance Indiviual page */
    .sticky_repair_date_indidvidual {
        position: static;
        height: max-content;
    }

    .sticky_individual_left {
        position: static;
    }

    /* toggle the user profile  */
    .accountDropDown {
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        transition: all 0.5s ease;
    }

    .accountDropDown.active {
        max-height: 650px;
        overflow: visible;
        visibility: visible;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .custom-mobilemenu {
        display: block;
    }

    .ztop {
        z-index: auto;
    }

    .w_33 {
        border-right: none;
    }

    .blue_light_shade {
        padding: 5px;
        background: none;
    }

    .account_section_left_container {
        padding: 10px 5px;
    }

    .navbar-toggler i {
        color: var(--black-font);
        font-size: 30px;
    }

    .left_imagePackAge {
        height: 350px;
    }

    .text-justify {
        text-align: start;
    }

    .hero_center_bg {
        height: 600px;
    }

    .essential_50 {
        font-size: 30px;
    }

    .cat_heaidng {
        font-size: 30px;
    }

    .mySwiperNewItems .swiper-button-next {
        position: absolute;
        right: 5px;
    }

    .mySwiperNewItems .swiper-button-prev {
        position: absolute;
        left: 5px;
    }

    .mySwiperRepair .swiper-button-next {
        position: absolute;
        right: 5px;
        display: none;
    }

    .mySwiperRepair .swiper-button-prev {
        position: absolute;
        left: 5px;
        display: none;
    }

    .mySwiperRepair {
        padding: 30px 10px;
    }

    .second_last_banner_container {
        padding: 60px 0 20px 30px;
    }

    .second_last_banner_heading {
        font-size: 28px;
    }

    .similar_produt_container_individiula p:nth-child(2) {
        font-size: 22px;
    }

    .navbar .navbar-nav>li:last-child {
        background: inherit;
    }

    /* .offcanvas.show:not(.hiding),
    .offcanvas.showing {
        height: 100vh;
        z-index: 10000;
    } */
}

@media (max-width: 576px) {
    .custom-mobilemenu {
        display: block;
    }

    .ztop {
        z-index: auto;
    }

    .navbar .navbar-nav>li:last-child {
        background: inherit;
    }

    /* .offcanvas.show:not(.hiding),
    .offcanvas.showing {
        height: 100vh;
        z-index: 10000;
    } */

    .newsletter-inputs {
        position: relative;
    }

    .product_data_container .new_item_imge_container {
        height: 140px;
    }

    .you_may_also_like {
        font-size: 25px;
    }

    .new_items_container .new_item_imge_container {
        height: 175px;
    }

    .account_information_edit {
        padding: 30px 0;
    }

    .mySwiperNewBeautyAccount {
        padding: 20px 0 !important;
    }

    .accountDropDown {
        right: -80px;
    }

    .cart_shop_icons button {
        font-size: 25px;
    }

    .fs-18 {
        font-size: 16px;
    }

    h1,
    h2,
    .heading_font {
        font-size: 22px;
    }

    .repair_maintenance_section,
    .features_product_section,
    .brand_logo_section,
    .beauty_items_home_Section,
    .fahion_section_home,
    .beauty_items_home_Section,
    .home_electronic_section,
    .home_furniture,
    .shop_by_categories_home,
    .service_package_section_Text,
    .about_page_about_us,
    .about_page_team_section {
        padding: 60px 0;
    }

    .second_last_banner_container {
        margin: 60px 0;
    }

    .add_to_cart_btn {
        font-size: 14px;
    }

    .beauty_items_home_Section .container,
    .fahion_section_home .container,
    .home_electronic_section .container {
        padding: 0;
        border-bottom: none;
    }

    .essential_50 {
        font-size: 25px;
    }

    .light_blue_bg {
        padding: 20px 20px 0 20px;
    }

    .cat_heaidng {
        font-size: 25px;
    }

    .home_page_slider_categoreis,
    .home_new_items {
        padding: 60px 0;
        overflow-x: hidden;
    }

    .new_item-heading {
        font-size: 22px;
    }

    .off_white_bg,
    .new_item_seond_left_image_container {
        height: 380px;
    }

    .add_to_cart_btn {
        padding: 5px;
    }

    .mySwiperNewItems,
    .mySwiperNewBeauty,
    .mySwiperNewFeatures,
    .mySwiperRepair,
    .mySwiperBrands,
    .mySwiperBrands2,
    .mySwipercartAudio,
    .mySwipercartAudio1,
    .mySwipercartAudio2,
    .mySwipercartAudio3,
    .mySwipercartAudio4 {
        padding: 40px 10px;
    }

    .mySwiperNewBeauty,
    .mySwiperFashion,
    .mySwiperElectronic,
    .mySwiperFurniture {
        padding: 40px 20px;
    }

    .repier_imgae {
        height: 120px;
    }

    .repair_maintenance_container {
        height: 240px;
    }

    .repair_maintenance_container .fs-18 {
        font-size: 16px;
    }

    .swiper-pagination-bullet-active {
        background: var(--primary-color);
    }

    .features_slider_contaier .right_content {
        width: 100%;
    }

    .features_slider_contaier .left_content {
        width: 100%;
    }

    .features_slider_contaier {
        height: 580px;
        width: 95%;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .star_bg {
        display: none;
    }

    .mySwiperFeatures_sec {
        /* padding: 20px  5px 40px 10px; */
        padding: 0;
        margin: auto;
        width: 100%;
        padding-bottom: 40px;
    }

    .galaxy_flod {
        font-size: 18px;
    }

    .feat_star i {
        font-size: 16px;
    }

    .actural_price {
        font-size: 18px;
    }

    .disc_price {
        font-size: 16px;
    }

    .features_slider_contaier .left_content {
        height: 180px;
        padding-bottom: 20px;
    }

    .features_slider_contaier .left_content::before {
        width: 100%;
        height: 1.5px;
        top: 100%;
        left: 0;
    }

    .logo_brand_container,
    .logo_brand_containerBrands {
        height: 70px;
        width: 70px;
        border-radius: 50%;
        background: var(--white-bg);
        padding: 5px;
    }

    .logo_brand_container1 {
        height: 70px;
        width: 70px;
        border-radius: 50%;
        background: var(--white-bg);
        padding: 15px;
    }

    .second_last_banner_container {
        height: 250px;
        background-size: cover;
        background-position: center center;
        padding: 60px 20px;
    }


    .second_last_banner_heading {
        font-size: 25px;
    }

    .hero_section_home_page {
        padding: 0px 0 60px 0;
    }

    .footer_scoial_links_container {
        border-top: 0px;
        padding-top: 30px;
    }

    .footer_max_width,
    .broder_bootom {
        border-bottom: 1px solid #E2E2E2;
        padding-bottom: 20px;
        max-width: 100% !important;
    }


    .logo_brand_container2 {
        height: 70px;
        width: 70px;
    }

    .logo_brand_container2 img {
        height: 60px;
        width: 60px;
    }

    .shop_detail_first_Sec {
        padding-top: 0;
    }

    .mySwiperBrandspadding {
        padding: 20px 0 !important;
    }

    .serch_new_Arrivail_shop {
        width: 250px !important;
    }

    .image_containeriindividual {
        height: 350px;
    }

    .product_data_container .fs-16.fw-400 {
        font-size: 14px;
    }

    .cart_product_description p:nth-child(1) {
        font-size: 16px;
    }

    .or_line::before {
        width: 30%;
    }

    .or_line::after {
        width: 30%;
    }

    .left_about_image_container,
    .right_about_image_container {
        height: 400px;
    }

    .contact_section {
        padding: 20px 0;
    }

    .individual_blogSection h1 {
        font-size: 25px !important;
    }

    .individual_blogSection {
        height: 400px;
    }

    .account_section_right_container {

        padding: 10px;
    }

    .order_tack_buttons_container button {
        font-size: 14px;
        padding: 0 10px;
        white-space: nowrap;
    }

    .order_tack_buttons_container {
        overflow-x: scroll;
    }
}


.new_items_container p.d-flex.align-items-center.gap-1 {
    padding-bottom: 10px;
    flex-wrap: wrap;
}