@keyframes loading {
    0% {
        background-position: 200%0
    }

    to {
        background-position: -200%0
    }
}

@keyframes float {

    0%,
    to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

:root {
    --MainColor: transparent;
    --GrayColor: #b0b0b0;
    --blackColor: #202020;
    --WhiteColor: #fff;
    --TextColor: #2f2f37;
    --DangerColor: #ef5350;
    --SuccessColor: #28b642;
    --MainColor_rgb: transparent;
    --TextColor1: #374151;
    --TextColor2: #263238;
    --GrayColor1: #F5F5F5;
    --GrayColor2: #B9B9B9;
    --font-family:
}


img {
    display: block;
    width: auto;
    height: auto;
    aspect-ratio: attr(width)/attr(height)
}

* {
    font-family: var(--font-family);
    font-style: normal;
    margin: 0;
    outline: 0 !important;
    font-display: swap !important;
    transition: transform .4s ease-in-out, opacity .4s ease-in-out;
}

button:disabled {
    cursor: not-allowed !important
}

a:disabled {
    cursor: not-allowed !important
}

textarea {
    resize: none;
    field-sizing: content;
}

.d-block {
    display: block !important
}

.currency_select .dropdown-toggle:after,
.dropdown-toggle:after,
.hide,
.itemContainer .itemOptions span:last-child:after,
.Languge_select .dropdown-toggle:after,
.signatureForSmallScreen {
    display: none !important
}

.text-right {
    text-align: right !important
}

.font-bold {
    font-weight: 700 !important
}

.pr-30 {
    padding-right: 30px !important
}

.pl-30 {
    padding-left: 30px !important
}

.pr-10 {
    padding-right: 10px !important
}

.pl-10 {
    padding-left: 10px !important
}

.pr-5 {
    padding-right: 5px !important
}

.pl-5 {
    padding-left: 5px !important
}

@media screen and (max-width:576px) {
    .col-xs-6 {
        width: 50% !important
    }
}

.apps-row {
    margin-top: 5% !important
}

.apps-row h1 {
    font-size: clamp(1.5rem, 2.5vw, 3rem);
    font-weight: 700;
    color: var(--MainColor);
    text-align: center;
    padding: 0;
    margin: 0 0 30px
}

.apps-row .appsImages {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.apps-row .appsImages img {
    width: 180px;
    height: auto
}

.noAppsFound {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.noAppsFound p {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 2rem);
    color: var(--TextColor1);
    font-weight: 700;
}

.appsLoading,
.site-preparing {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0
}

.apps-process-mode {
    margin: 0 !important
}

.apps-process-mode-content {
    flex-direction: column
}

.apps-process-mode-content,
.site-disabled-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

.site-disabled-content {
    flex-direction: row
}

.site-disabled-content-animation {
    max-width: 30%
}

.site-disabled-content-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px
}

.site-disabled-content-text h1 {
    font-size: clamp(2rem, 2.5vw, 4rem)
}

.site-disabled-content-text h1,
.site-disabled-content-text h2 {
    text-align: center;
    color: #404040;
    font-weight: 700;
    margin-bottom: 0
}

.site-disabled-content-text h2 {
    font-size: clamp(1rem, 2.5vw, 2rem)
}

.site-disabled-content-text p {
    font-size: clamp(1.5rem, 2.5vw, 4.5rem);
    text-align: center;
    color: #f31700;
    margin: 0
}

.page_404 {
    padding: 40px 0;
    background: #fff;
    height: 100vh;
    display: flex;
    align-items: center
}

.contant_box_404 h1,
.contant_box_404 h3 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.link_404 {
    color: #fff !important;
    padding: 10px 20px;
    background: #000;
    margin: 20px 0;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    border-radius: 8px
}

.contant_box_404 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ---------------------------------------------------------------- */

p {
    margin: 0;
    padding: 0;
}

.uber_head {
    background-color: var(--MainColor);
    width: 100%;
    padding: 10px 0px;
    min-height: 60px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9;
}


.uber_head .right_contain p,
.uber_head .right_contain a,
.email_containInSmall p,
.email_containInSmall a {
    color: var(--WhiteColor);
    font-size: 11px;
    text-decoration: none;
    margin: 0;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    transition: transform .4s ease-in-out, opacity .4s ease-in-out;
    will-change: transform, opacity;
    cursor: pointer;
}

.uber_head .right_contain p:hover,
.uber_head .right_contain a:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}

.uber_head .right_contain p:first-child {
    padding-left: 20px;
}

.uber_head .center_contain p {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    color: var(--WhiteColor);
    margin: 0;
}

.uber_head .left_contain {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 20px;
}

.uber_head .left_contain .Track_order {
    font-size: 14px;
    font-weight: bold;
    text-decoration: underline;
    color: var(--WhiteColor);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    will-change: transform, opacity;
    cursor: pointer;
}

.uber_head .left_contain .Track_order:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}

.Languge_select .dropdown .dropdown-toggle,
.currency_select .dropdown .dropdown-toggle {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 7px;
    box-shadow: none !important;
}

.currency_select .dropdown .dropdown-toggle {
    color: var(--MainColor);
    font-size: 18px;
}

.Languge_select .dropdown .dropdown-item,
.currency_select .dropdown .dropdown-item {
    text-align: right !important;
}

.currency_select .dropdown-menu .dropdown-item span,
.Languge_select .dropdown-menu .dropdown-item span {
    display: block;
    transition: transform .4s ease-in-out, opacity .4s ease-in-out;
    text-decoration: none;
    font-size: 14px;
    will-change: transform;
}

.currency_select .dropdown-menu,
.Languge_select .dropdown-menu {
    padding: 4px 0;
    margin: 0;
    text-align: right;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .35);
    background-color: var(--WhiteColor);
    border: 0;
}

.Languge_select .dropdown-menu .dropdown-item:hover span,
.currency_select .dropdown-menu .dropdown-item:hover span {
    color: var(--MainColor) !important;
}

.main_nav .nav_contain {
    width: 100%;
    margin-top: 25px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    /* padding: 10px 0; */
}

.main_nav .nav_contain .right_contain .icon {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.main_nav .nav_contain .right_contain .icon button {
    display: inline-block;
    color: var(--MainColor);
    font-size: 20px;
    padding: 0px 10px;
    background-color: transparent;
    outline: none;
    border: none;
    cursor: pointer;
    will-change: transform, opacity;
}

.main_nav .nav_contain .right_contain .icon button:first-child {
    padding-right: 0;
}

.main_nav .nav_contain .right_contain .icon button:last-child {
    padding-left: 0;
}

.main_nav .nav_contain .right_contain .icon button:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}

.user_profile a {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
}

.user_profile p {
    font-size: 10px;
    color: var(--MainColor);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    will-change: transform, opacity;
    cursor: pointer;
}

.user_profile p:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}

.user_profile p .user_icon_circle {
    font-size: 20px;
}

.show_in_small {
    display: none !important
}

.open_mobile_menue {
    color: var(--blackColor) !important;
    font-size: 30px !important;
}

.nav_logo {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    width: 100%;
}

.nav_logo img {
    display: block;
    width: 130px;
    object-fit: contain;
    aspect-ratio: 2 / 1;
}

.logo_placeholder svg,
.nav_logo img {
    max-height: 70px;
    max-width: 130px
}

.main_nav .left_contain {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.main_nav .left_contain .fav_contain,
.main_nav .left_contain .basket_contain {
    text-decoration: none;
    color: var(--MainColor);
    font-size: 20px;
    position: relative;
    will-change: transform, opacity;
    cursor: pointer;
    border: none;
    background: transparent;
}

.main_nav .left_contain .fav_contain:hover,
.main_nav .left_contain .basket_contain:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}

.main_nav .left_contain .fav_contain {
    margin-right: 10px;
}

.main_nav .left_contain .fav_contain span,
.main_nav .left_contain .basket_contain span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 12px;
    text-align: center;
    color: var(--WhiteColor);
    background-color: var(--MainColor);
    border-radius: 50%;
    position: absolute;
    right: -14px;
    top: -5px;
    z-index: 1;
}

.user_profile_in_small button {
    width: 40px;
    height: 40px;
    font-size: 30px;
    border-radius: 50%;
    color: var(--WhiteColor);
    border: none;
    text-align: center;
    background: var(--MainColor);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.user_profile_in_small a span {
    color: var(--TextColor1);
    font-size: 14px;
    font-weight: 600;
}

.user_profile_in_small a {
    gap: 0 !important;
}

.user_profile_in_small a p {
    width: 35px;
    height: 35px;
    border: 1px solid var(--MainColor);
    text-align: center;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    color: var(--MainColor);
    font-size: 30px;
}

@keyframes marquee {
    0% {
        transform: translateX(-50%)
    }

    to {
        transform: translateX(0)
    }
}


.marqueeContainer {
    overflow: hidden;
    padding: 6px 25px;
    white-space: nowrap;
    position: relative;
    direction: ltr
}

.marqueeTrack {
    display: inline-block;
    animation: marquee 100s linear infinite
}

.marqueeContainer:hover .marqueeTrack {
    animation-play-state: paused
}

.marqueeItem {
    display: inline-block;
    padding: 0 10px;
    font-size: 13px;
    color: #fff
}

.btn:first-child:active {
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
}

.searchSideContain .inputContain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    border-bottom: 1px solid #9CA3AF;
    padding: 0px;
}

.searchSideContain .inputContain .searchIcon {
    font-size: 40px;
    color: var(--blackColor);
}

.searchSideContain .inputContain input {
    background: transparent;
    border: none;
    padding: 0px;
    font-size: 12px;
    width: 100%;
    margin: 0px 25px;
}

.searchSideContain .inputContain:focus-within {
    border-bottom: 1px solid var(--blackColor);
}

.searchSideContain .inputContain .goSearch {
    background-color: var(--blackColor);
    color: var(--WhiteColor);
    border: 1px solid var(--blackColor);
    font-size: 12px;
    height: 25px;
    width: 80px;
    text-align: center;
    display: inline-block;
    transition: all ease-in-out .4s;
    cursor: pointer;
    border-radius: 5px;
}

.searchSideContain .inputContain .goSearch:disabled {
    cursor: not-allowed !important;
    opacity: 0.5;
}

.searchSideContain .inputContain .goSearch:hover {
    background-color: transparent;
    color: var(--blackColor);
}

.searchSideContain {
    padding: 30px;
    /* position: relative; */
}

.searchSideContain .closeSearchSide,
.Auth_modal .close_auth_modal,
.mobile_side_menu_container .close_side_menu,
.favoriteSideMenuContain .closeFavoriteSideMenu,
.filterSideMenuContainer .closeFilterSideMenu,
.quickProductOverviewContain .closeQuickProductOverview {
    position: absolute;
    left: -50px;
    top: 10px;
    z-index: 99;
    background-color: transparent;
    font-size: 30px;
    border: none;
    outline: none;
    color: var(--WhiteColor);
    cursor: pointer;
    will-change: transform, opacity;
}

.searchSideContain .closeSearchSide:hover,
.Auth_modal .close_auth_modal:hover,
.favoriteSideMenuContain .closeFavoriteSideMenu:hover,
.filterSideMenuContainer .closeFilterSideMenu:hover,
.quickProductOverviewContain .closeQuickProductOverview:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}

.Auth_modal .auth_head,
.favoriteSideMenuContain .favoriteSideMenuHead,
.filterSideMenuContainer .filterSideMenuHead,
.quickProductOverviewContain .quickProductOverviewHead {
    background-color: #EFEFEF;
    text-align: center;
    padding: 13px 5px;
}

.Auth_modal .auth_head p,
.favoriteSideMenuContain .favoriteSideMenuHead p,
.filterSideMenuContainer .filterSideMenuHead p,
.quickProductOverviewContain .quickProductOverviewHead p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: bold;
    color: var(--blackColor);
}

.Auth_modal .offcanvas-body,
.favoriteSideMenuContain .offcanvas-body,
.filterSideMenuContainer .offcanvas-body,
.quickProductOverviewContain .offcanvas-body {
    padding: 0;
}

.Auth_modal .section_contain {
    margin-top: 20px;
    padding: 0px 20px;
}

/* .Auth_modal {
    position: relative;
} */

.auth_content_header .auth_content_head {
    color: #484848;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.auth_content_header .auth_content_descriotion {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    color: #303468;
    margin-top: 10px;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.submit_button {
    background-color: var(--MainColor);
    color: var(--WhiteColor);
    border: 1px solid var(--MainColor);
    font-size: 16px;
    font-weight: bold;
    display: block;
    width: 100%;
    border-radius: 10px;
    padding: 10px 0px;
    cursor: pointer;
    transition: all ease-in-out .4s;
}

.submit_button:hover {
    background-color: transparent;
    color: var(--MainColor);
}

.reset_password button {
    background-color: transparent;
    color: var(--MainColor);
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
    border: none;
    cursor: pointer;
    will-change: transform, opacity;
    transition: all ease-in-out .4s;
}

.reset_password button:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}

.have_account p {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #505050;
}

.have_account p button {
    background-color: transparent;
    color: var(--MainColor);
    font-size: 13px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    will-change: transform, opacity;
}

.have_account p button:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}

.backToLogin {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 13px;
    font-weight: 700;
    color: #484848;
}

.backToLogin button {
    background-color: transparent;
    color: var(--MainColor);
    font-size: 13px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    will-change: transform, opacity;
}

.backToLogin button:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}

.otp_form .formContainer .otpInputsContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    direction: ltr !important;
}

.otp_form .formContainer form .form-group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 15%;
    aspect-ratio: 1 / 1;
}

.otp_form .formContainer form .form-group input {
    width: 100%;
    height: 100%;
    padding: 5px 20px;
    border: 2px solid #f0f0f0;
    font-size: 14px;
    border-radius: 12px;
    color: var(--TextColor);
    margin-bottom: 0;
    transition: transform .3s ease, opacity .3s ease;
    will-change: transform, opacity;
}

.otp_form .formContainer form .form-group input:focus {
    box-shadow: 0 0 0 2px rgba(var(--MainColor_rgb), .35);
    border-color: transparent;
}

.otp_form .formContainer form .form-group input.is-invalid {
    border-color: var(--DangerColor);
    background-image: none !important;
}

.resend_code p {
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--blackColor);
}

.resend_code span {
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--MainColor);
}

.resend_code button {
    background-color: transparent;
    color: var(--MainColor);
    font-size: 13px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    will-change: transform, opacity;
}

.resend_code button:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}

.sectionMargin {
    margin-top: 30px !important;
}


.singleImageAd {
    overflow: hidden;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

.singleImageAd img {
    width: 99.9%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: transform .3s ease;
    will-change: transform;
}

.singleImageAd:hover img {
    transform: scale(0.95);
}

.section_head p {
    font-size: 30px;
    font-weight: bold;
    color: var(--TextColor2);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.section_head svg {
    width: 25px
}

.section_head svg path {
    fill: var(--TextColor2);
}

.main_cat_item {
    will-change: transform;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.main_cat_item:hover {
    transform: scale(0.95);
}

.main_cat_item .categori_photo {
    width: 100%;
    height: 100%;
    aspect-ratio: 2/1;
    border-radius: 15px;
    display: block;
    object-fit: cover;
}

.main_cat_item .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.main_cat_item .category_nam_content {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 10px;
}

.main_cat_item .category_nam_content .categori_nam {
    margin: 0;
    font-size: clamp(13px, 2vw, 32px);
    font-weight: bold;
    color: var(--WhiteColor);
    line-height: 1;
}

.main_cat_item .showCategoryProducts {
    text-decoration: none !important;
    background-color: var(--WhiteColor);
    color: var(--blackColor);
    font-size: clamp(12px, 2vw, 16px);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--WhiteColor);
    border-radius: 30px;
    padding: 10px 20px;
    transition: all ease-in-out .4s;
}

.main_cat_item .showCategoryProducts:hover {
    background-color: transparent;
    color: var(--WhiteColor);
}

.main_cat_item .showCategoryProducts .icon {
    transform: rotate(180deg);
}

.main_cat_item .productsNumber {
    margin: 0;
    font-size: clamp(11px, 2vw, 20px);
    font-weight: 400;
    color: var(--WhiteColor);
}

.see_more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: none;
    /* background-color: var(--GrayColor1); */
    background-color: rgba(var(--MainColor_rgb), .1);
    border-radius: 20px;
    padding: 10px 30px;
    color: var(--blackColor);
    font-size: 20px;
    transition: all ease-in-out .5s;
    text-decoration: none !important;
}

.see_more:hover {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    color: var(--MainColor);
}

.swiper-initialized {
    padding: 0 30px 30px !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--MainColor) !important
}

.swiper-pagination {
    bottom: 0 !important;
    text-align: center
}

.categoriesContain {
    margin-top: 30px;
}

.relatedProductsContainer .swiper {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.brands_swiper .swiper-pagination-bullet {
    width: 20px;
    height: 5px;
    border-radius: 10px;
}

.breadcrumb_nav {
    color: #9ca3af;
    text-decoration: none !important;
    font-size: 16px;
    direction: rtl;
    margin: 20px 0;
}

.breadcrumb_nav ol {
    display: flex;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: -5% !important;
}

.breadcrumb_nav ol a {
    color: #9A9A9A !important;
    text-decoration: none;
    font-size: 16px;
}

.breadcrumb_nav ol li span {
    margin: 0 5px;
}

.breadcrumb_nav ol .currentPage {
    cursor: not-allowed;
    color: var(--blackColor) !important;
}

.breadcrumb_nav ol a:hover {
    color: var(--MainColor) !important;
}

.breadcrumb_nav ol .currentPage:hover {
    color: var(--blackColor) !important;
}

.brands_swiper .brand_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.brands_swiper .swiper {
    margin-top: 20px !important;
}

.brands_swiper a {
    text-decoration: none !important;
}

.brands_swiper .brand_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    max-height: 120px;
    min-height: 120px;
}

.brands_swiper .brand_name {
    margin: 5px 0 0;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    display: block;
    text-align: center;
    width: 100%;
}

.brands_swiper .sectionTitle h2 {
    font-size: 17px;
    font-weight: bold;
    color: var(--TextColor2);
    margin: 0;
    margin-bottom: -9px;
}

.brands_swiper .sectionTitle span {
    font-size: 17px;
    font-weight: bold;
    color: var(--TextColor2);
    margin: 0;
    margin-bottom: -2px;
    display: inline-block;
    width: 60px;
    height: 5px;
    background-color: var(--TextColor2);
    border-radius: 10px;
}

/* ===== Product Shape 1 ===== */
.product_s1 {
    background-color: rgba(var(--MainColor_rgb), .1);
    padding: 20px;
    margin-top: 10px;
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product_s1 .product_img {
    position: relative;
}

.product_s1 .product_img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    transition: transform .3s ease;
    will-change: transform;
}

.product_s1:hover.product_s1 .product_img img {
    transform: scale(1.07);
}

.product_s1 .outOfStockButton {
    background: var(--GrayColor2);
    color: var(--WhiteColor);
    width: 90%;
    padding: 6px 0px;
    border: 1px solid var(--GrayColor2);
    border-radius: 10px;
    font-size: 14px;
    font-weight: normal;
    white-space: nowrap;
    display: inline-block;
    position: absolute;
    bottom: 22px;
    right: 0;
    left: 0;
    margin-inline: auto;
    cursor: not-allowed !important;
}

.product_s1 .whatsAppInquire {
    background: #28b642;
    color: var(--WhiteColor);
    width: 90%;
    padding: 6px 0px;
    border: 1px solid #28b642;
    border-radius: 10px;
    font-size: 14px;
    font-weight: normal;
    white-space: nowrap;
    display: inline-block;
    position: absolute;
    bottom: 22px;
    right: 0;
    left: 0;
    margin-inline: auto;
    cursor: pointer;
    transition: all ease-in-out .4s;
    will-change: background, color;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.product_s1 .whatsAppInquire:hover {
    background: transparent;
    color: #28b642;
}

.product_s1 .addToCart {
    background: var(--MainColor);
    color: var(--WhiteColor);
    width: 90%;
    padding: 6px 0px;
    border: 1px solid var(--MainColor);
    border-radius: 10px;
    font-size: 14px;
    font-weight: normal;
    white-space: nowrap;
    display: inline-block;
    position: absolute;
    bottom: 22px;
    right: 0;
    left: 0;
    margin-inline: auto;
    cursor: pointer;
    transition: all ease-in-out .4s;
    will-change: transform;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.product_s1 .addToCart:hover {
    transform: scale(1.05);
}

.product_s1 .discount_contain {
    position: absolute;
    right: 15px;
    top: 15px;
    /* background-color: var(--MainColor); */
    background-image: url(/assets/discount-bacg.svg);
    background-position: center;
    height: 50px;
    width: 50px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--WhiteColor);
    font-size: 15px;
    background-repeat: no-repeat;
    z-index: 2;
}

.product_s1 .product_data {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
}

.product_s1 .right_content .product_name {
    font-size: 16px;
    font-weight: 600;
    color: var(--blackColor);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-decoration: none;
    transition: all ease-in-out .4s;
}

.product_s1 .right_content .product_name:hover {
    color: var(--MainColor);
}

.product_s1 .price {
    margin-top: 5px;
}

.product_s1 .price .real {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    color: var(--blackColor);
    font-size: 14px;
    font-weight: 600;
}

.product_s1 .price .fake {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    color: var(--GrayColor2);
    font-size: 14px;
    font-weight: 600;
    text-decoration: line-through;
}

.product_s1 .left_content .addToFav {
    background-color: transparent;
    font-size: 20px;
    color: var(--MainColor);
    border: 1px solid var(--GrayColor2);
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 45px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: all ease-in-out .4s;
    will-change: background, color;
}

.product_s1 .left_content .addToFav:hover {
    background-color: var(--MainColor);
    color: var(--WhiteColor);
}

/* ===== Product Shape 2 ===== */
.product_s2 {
    margin-top: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product_s2 .product_img {
    position: relative;
}

.product_s2 .product_img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    transition: transform .3s ease;
    will-change: transform;
}

.product_s2:hover.product_s2 .product_img img {
    transform: scale(0.95);
}

.product_s2 .soldOut {
    background: var(--blackColor);
    color: var(--WhiteColor);
    width: auto;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: normal;
    white-space: nowrap;
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    cursor: not-allowed !important;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.product_s2 .discount_contain {
    position: absolute;
    left: 15px;
    top: 15px;
    /* background-color: var(--MainColor); */
    background-image: url(/assets/discount-bacg.svg);
    background-position: center;
    height: 50px;
    width: 50px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--WhiteColor);
    font-size: 15px;
    background-repeat: no-repeat;
    z-index: 2;
}

.product_s2 .product_data {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
}

.product_s2 .right_content .product_name {
    font-size: 16px;
    font-weight: 600;
    color: var(--blackColor);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-decoration: none;
    transition: all ease-in-out .4s;
}

.product_s2 .right_content .product_name:hover {
    color: var(--MainColor);
}

.product_s2 .price {
    margin-top: 5px;
}

.product_s2 .price .real {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    color: var(--blackColor);
    font-size: 14px;
    font-weight: 600;
}

.product_s2 .price .fake {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    color: var(--GrayColor2);
    font-size: 14px;
    font-weight: 600;
    text-decoration: line-through;
}

.product_s2 .left_content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.product_s2 .left_content .addToFav,
.product_s2 .left_content .addToCart {
    background-color: transparent;
    font-size: 20px;
    color: var(--MainColor);
    border: 1px solid var(--GrayColor2);
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 45px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: all ease-in-out .4s;
    will-change: background, color;
}

.product_s2 .left_content .addToFav:hover,
.product_s2 .left_content .addToCart:hover {
    background-color: var(--MainColor);
    color: var(--WhiteColor);
}

.product_s2 .left_content .whatsAppInfo {
    background-color: transparent;
    font-size: 20px;
    color: #28b642;
    border: 1px solid #28b642;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 45px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: all ease-in-out .4s;
    will-change: background, color;
}

.product_s2 .left_content .whatsAppInfo:hover {
    background-color: #28b642;
    color: var(--WhiteColor);
}

.product_s2 .left_content .whatsAppInfo.disabled {
    background-color: var(--GrayColor2);
    border: 1px solid var(--GrayColor2);
    color: var(--WhiteColor);
    cursor: not-allowed !important;
}

.product_s2 .left_content .addToCart:disabled {
    background-color: var(--GrayColor2);
    color: var(--WhiteColor);
    cursor: not-allowed !important;
}

.product_s1 .whatsAppInquire {
    background: #28b642;
    color: var(--WhiteColor);
    width: 90%;
    padding: 6px 0px;
    border: 1px solid #28b642;
    border-radius: 10px;
    font-size: 14px;
    font-weight: normal;
    white-space: nowrap;
    display: inline-block;
    position: absolute;
    bottom: 22px;
    right: 0;
    left: 0;
    margin-inline: auto;
    cursor: pointer;
    transition: all ease-in-out .4s;
    will-change: background, color;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.product_s1 .whatsAppInquire:hover {
    background: transparent;
    color: #28b642;
}





/* ===== Product Shape 3 ===== */
.product_s3 {
    overflow: hidden;
    transition: all ease-in-out .4s;
    border-radius: 10px;
    will-change: background, box-shadow, transform;
}

.product_s3:hover {
    background-color: rgba(var(--MainColor_rgb), .1);
    box-shadow: 0 0 10px 0 rgba(var(--MainColor_rgb), .5);
    transform: scale(0.95);
}

.product_s3 .product_img {
    position: relative;
}

.product_s3 .product_img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0px;
}

.product_s3 .addToFav {
    /* background-color: #D7E3E8; */
    background-color: rgba(var(--MainColor_rgb), .35);
    border: none;
    color: var(--MainColor);
    font-size: 25px;
    width: 50px;
    height: 50px;
    aspect-ratio: 1 / 1;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 15px;
    top: 15px;
    border-radius: 10px;
    transition: all ease-in-out .4s;
    will-change: background, color;
}

.product_s3 .addToFav:hover {
    background-color: var(--MainColor);
    color: var(--WhiteColor);
}

.product_s3 .discount_contain {
    position: absolute;
    right: 15px;
    top: 15px;
    /* background-color: var(--MainColor); */
    background-image: url(/assets/discount-bacg.svg);
    background-position: center;
    height: 50px;
    width: 50px;
    aspect-ratio: 1 / 1;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--WhiteColor);
    font-size: 15px;
    background-repeat: no-repeat;
    z-index: 2;
}

.product_s3 .product_data {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    padding: 10px 6px;
}

.product_s3 .product_data .outOfStockButton {
    background: var(--GrayColor2);
    color: var(--WhiteColor);
    width: 90%;
    padding: 6px 0px;
    border: 1px solid var(--GrayColor2);
    border-radius: 10px;
    font-size: 14px;
    font-weight: normal;
    white-space: nowrap;
    display: inline-block;
    margin-inline: auto;
    cursor: not-allowed !important;
}

.product_s3 .whatsAppInquire {
    background: #28b642;
    color: var(--WhiteColor);
    width: 90%;
    padding: 6px 0px;
    border: 1px solid #28b642;
    border-radius: 10px;
    font-size: 14px;
    font-weight: normal;
    white-space: nowrap;
    display: inline-block;
    cursor: pointer;
    transition: all ease-in-out .4s;
    will-change: background, color;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.product_s3 .whatsAppInquire:hover {
    background: transparent;
    color: #28b642;
}

.product_s3 .addToCart {
    background: var(--MainColor);
    color: var(--WhiteColor);
    width: 90%;
    padding: 6px 0px;
    border: 1px solid var(--MainColor);
    border-radius: 10px;
    font-size: 14px;
    font-weight: normal;
    white-space: nowrap;
    display: inline-block;
    cursor: pointer;
    transition: all ease-in-out .4s;
    will-change: background, color;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.product_s3 .addToCart:hover {
    background: transparent;
    color: var(--MainColor);
}

.product_s3 .product_data .product_name {
    font-size: 20px;
    font-weight: 600;
    color: var(--blackColor);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-decoration: none;
    transition: all ease-in-out .4s;
    text-align: center;
    margin-top: 10px;
}

.product_s3 .product_data .product_name:hover {
    color: var(--MainColor);
}

.product_s3 .price {
    margin-top: 5px;
}

.product_s3 .price .real {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    color: var(--blackColor);
    font-size: 20px;
    font-weight: 600;
}

.product_s3 .price .fake {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    color: var(--GrayColor2);
    font-size: 20px;
    font-weight: 600;
    text-decoration: line-through;
}

/* ===== Slider Shape===== */

.adSliderSwiper2 {
    padding: 0 10px !important;
}


.adSliderSwiper2 .swiper-pagination-bullet {
    background-color: var(--WhiteColor) !important;
    width: 15px !important;
    height: 15px !important;
    aspect-ratio: 1 / 1;
    opacity: 1 !important;
}

.adSliderSwiper2 .swiper-pagination-bullet-active {
    width: 75px !important;
    border-radius: 10px !important;
}

.adSliderSwiper2 .swiper-pagination {
    bottom: 35px !important;
}

.adSliderSwiper2 .swiper-slide img {
    width: 99.9% !important;
    height: auto !important;
    display: block;
    border-radius: 10px;
    transition: transform .3s ease;
    will-change: transform;
}

.adSliderSwiper2 .swiper-slide img:hover {
    transform: scale(0.95);
}

.adSliderSwiper3 {
    padding: 0 10px !important;
}

.adSliderSwiper3 .swiper-slide img {
    width: 100%;
    border-radius: 16px;
    display: block;
    transition: transform .3s ease;
    will-change: transform;
}

.adSliderSwiper3 .swiper-slide img:hover {
    transform: scale(0.95);
}

.adSliderSwiper3 .swiper-slide {
    opacity: 0.5;
    transition: 0.3s;
}

.adSliderSwiper3 .swiper-slide-active {
    opacity: 1;
    transform: scale(1.02);
}

.adSliderSwiper3 .swiper-button-next,
.adSliderSwiper3 .swiper-button-prev {
    background: var(--WhiteColor);
    font-size: 9px;
    width: 40px;
    height: 40px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--WhiteColor);
    border-radius: 10px;
    opacity: .5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--MainColor);
}

.adSliderSwiper3 .swiper-button-next svg,
.adSliderSwiper3 .swiper-button-prev svg {
    width: 12px;
}

.adSliderSwiper3 .swiper-button-next:hover,
.adSliderSwiper3 .swiper-button-prev:hover {
    opacity: 1;
}


/* ===== Lower Mobile Nav ===== */

.Lower_mobile_nav {
    background: var(--MainColor);
    padding: 18px 5px;
    width: 98%;
    border-radius: 45px;
    position: fixed;
    bottom: 20px;
    z-index: 9;
    left: 0;
    right: 0;
    margin-inline: auto;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: none;
}

.Lower_mobile_nav .menue_links {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-around;
    min-height: 40px;
}

.Lower_mobile_nav .menue_links .menue_link {
    font-size: 23px;
    color: var(--WhiteColor);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.Lower_mobile_nav .menue_links .menue_link-active {
    background-color: var(--WhiteColor);
    width: 40px;
    height: 40px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color: var(--MainColor);
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.Lower_mobile_nav .menue_links .menue_link-active span {
    top: -9px !important;
}

.Lower_mobile_nav .menue_links .menue_link span {
    position: absolute;
    right: -15px;
    top: -14px;
    width: 20px;
    height: 20px;
    background-color: var(--WhiteColor);
    color: var(--MainColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border-radius: 50%;
}

/* ===== Language Currency Changer ===== */
.languageCurrencyChanger .offcanvas-header button {
    border: 0;
    background-color: transparent;
    outline: 0
}

.languageCurrencyChanger {
    padding: 20px;
    min-height: 220px !important;
}

.languageCurrencyChanger .offcanvas-header {
    padding: 0;
    justify-content: flex-end
}

.languageCurrencyChanger .offcanvas-header button {
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-size: 20px;
    color: var(--DangerColor)
}

.languageCurrencyChanger .form-label {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 16px;
    color: var(--MainColor);
    font-weight: 700
}

.languageCurrencyChanger .form-label .icon {
    color: var(--blackColor)
}

.languageCurrencyChanger .form-select {
    background-position: left .1rem center;
    cursor: pointer;
    outline: 0;
    border-color: #e9e9f0;
    height: 35px;
    font-size: 10px;
    color: var(--blackColor);
    padding: 7px 17px
}

/* ===== Footer ===== */

.footer {
    margin-top: 15px;
    padding: 40px 0px;
    /* border-top: 1px solid #E9E9E9; */
}

.abut_matger {
    text-align: center;
}

.abut_matger .foter_head {
    font-size: 17px;
    font-weight: bold;
    color: var(--TextColor2);
    margin: 0;
    margin-bottom: -9px;
}

.abut_matger .foter_head p {
    margin-bottom: -9px !important;
}

.abut_matger .foter_head span {
    margin: 0;
    margin-bottom: -2px;
    display: inline-block;
    width: 60px;
    height: 5px;
    background-color: var(--TextColor2);
    border-radius: 10px;
}

.abut_matger .foter_praghraf {
    font-size: 15px;
    color: var(--TextColor);
    margin: 0;
    margin-top: 20px;
}

.pagesAndSocial {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.pagesAndSocial .separator {
    width: 2px;
    height: 25px;
    background-color: #E8E8E8;
}

.pagesAndSocial .pages {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.pagesAndSocial .pages a {
    font-size: 14px;
    color: var(--blackColor);
    text-decoration: underline;
    transition: all ease-in-out .4s;
}

.pagesAndSocial .pages a:hover {
    color: var(--MainColor);
    transform: translateY(-4px);
    opacity: 0.8;
}

.pagesAndSocial .social {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pagesAndSocial .social a {
    font-size: 22px;
    color: var(--blackColor);
    text-decoration: none;
    transition: all ease-in-out .4s;
}

.pagesAndSocial .social a:hover {
    color: var(--MainColor);
    transform: translateY(-4px);
    opacity: 0.8;
}

.pagesAndSocial .apps {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pagesAndSocial .apps a {
    font-size: 22px;
    color: var(--blackColor);
    text-decoration: none;
    transition: all ease-in-out .4s;
}

.pagesAndSocial .apps a:hover {
    color: var(--MainColor);
    transform: translateY(-4px);
    opacity: 0.8;
}

.paymentsAndRights {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10%;
    margin-top: 20px;
}

.all_rights_reserved {
    text-align: center;
    /* margin-top: 20px; */
}

.all_rights_reserved p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: var(--blackColor);
    font-weight: 300;
    transition: all ease-in-out .4s;
}

.all_rights_reserved p a {
    color: var(--blackColor);
    text-decoration: none;
    font-weight: 300;
    transition: all ease-in-out .4s;
}

.all_rights_reserved p a:hover {
    color: var(--MainColor);
    transform: translateY(-4px);
    opacity: 0.8;
}

.visaLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* margin-top: 20px; */
}

.newsletter_form_content h2 {
    font-size: 20px;
    font-weight: bold;
    color: var(--TextColor2);
    margin: 0;
    margin-bottom: 10px;
}

.newsletter_form_content form {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.newsletter_form_content form button {
    background: var(--MainColor);
    color: var(--WhiteColor);
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all ease-in-out .4s;
    will-change: transform, opacity;
}

.newsletter_form_content form button:hover {
    transform: translateY(-4px);
    opacity: 0.8;
}

.widthSeparator {
    width: 100%;
    display: block;
    background: var(--GrayColor1);
    height: 3px;
    border-radius: 10px;
    margin: auto;
    margin-top: 20px;
}

.map_location {
    text-align: center;
    margin-top: 20px;
}

.map_location a {
    font-size: 20px;
    color: var(--blackColor);
    text-decoration: underline;
    transition: all ease-in-out .4s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 5px;
}

.map_location a:hover {
    color: var(--MainColor);
    transform: translateY(-4px);
    opacity: 0.8;
}

.share.fotter-socilIcon,
.whats.fotter-socilIcon {
    color: rgb(255, 255, 255);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 40px;
    height: 40px;
    position: fixed;
    right: 10px;
    z-index: 9;
    display: flex;
    text-decoration: none;
    animation: 3s ease-in-out 0s infinite normal none running float;
    will-change: transform;
    transform: translateZ(0px);
    transition: transform 0.3s, opacity 0.3s;
}

.share.fotter-socilIcon,
.whats.fotter-socilIcon {
    border: 1px solid rgb(255, 255, 255);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out .4s;
    will-change: transform, opacity;
}

.share.fotter-socilIcon:hover,
.whats.fotter-socilIcon:hover {
    opacity: 0.3;
}

.share.fotter-socilIcon {
    background-color: var(--MainColor);
    bottom: 200px;
    font-size: 20px;
}

.whats.fotter-socilIcon {
    background-color: rgb(37, 211, 102);
    bottom: 150px;
    font-size: 26px;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--MainColor) !important;
    color: var(--WhiteColor) !important;
}


.no_data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 4%;
}

.no_data p {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: var(--TextColor);
    text-align: center;
}

.toShoppingButton {
    background: var(--MainColor);
    color: var(--WhiteColor);
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all ease-in-out .4s;
    will-change: transform, opacity;
    text-decoration: none;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 700;
    margin-top: 20px;
    display: inline-block;
    text-align: center;
    width: fit-content;
}

.toShoppingButton:hover {
    transform: translateY(-4px);
    opacity: 0.8;
}

.categoriseSkeletons svg,
.productsSkeletons .productSkeletonsItem svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
    padding: 0
}

.cartSkeletons svg,
.productDetailsSkeletons svg,
.productsSkeletons svg {
    max-width: 100% !important
}

.productDetailsSkeletons .productDetailsSkeletonsItem svg,
.productDetailsSkeletons .sliderSkeletons svg {
    transform: scaleX(-1)
}

.Subcategories-wrapper {
    width: 100%;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.Subcategories-wrapper .Subcategories-scroll {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.Subcategories-wrapper .Subcategories-scroll a.active,
.Subcategories-wrapper .Subcategories-scroll span.active,
.Subcategories-wrapper .Subcategories-scroll a:hover,
.Subcategories-wrapper .Subcategories-scroll span:hover {
    background-color: var(--MainColor);
    border-color: var(--MainColor);
    color: var(--WhiteColor);
}

.Subcategories-wrapper .Subcategories-scroll a,
.Subcategories-wrapper .Subcategories-scroll span {
    margin: 3px;
    width: auto;
    font-size: 15px;
    padding: 5px 15px;
    background-color: transparent;
    color: var(--TextColor);
    border: 2px solid #f2f2f2;
    border-radius: 10px;
    transition: .4s ease-in-out;
    cursor: pointer;
    white-space: nowrap;
    display: inline-block;
    text-decoration: none;
    will-change: background-color, border-color, color;
}

.productPageContain {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.productPageContain .rightSide {
    width: 25%;
    min-width: 300px;
    height: 100vh;
    position: sticky;
    top: 0;
    background-color: #F9FAFB;
    border-radius: 10px;
    padding: 15px;
}

.productPageContain .leftSide .topSection {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 10px 0px;
}

.productPageContain .leftSide .topSection .left .form-select {
    width: auto;
    padding: 0 0 0 2rem;
    color: var(--MainColor);
    cursor: pointer;
    font-size: 13px;
    box-shadow: none !important;
    background-position: left .75rem center;
    border: 0;
    outline: none;
}

.productPageContain .leftSide .topSection .left .customSortSelect {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.productPageContain .leftSide .topSection .left .customSortSelect .sortLabel {
    color: #6B7280;
    font-size: 13px;
    white-space: nowrap;
}

.productPageContain .leftSide .topSection .left .customSortSelect .sortValue {
    color: var(--MainColor);
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
}

.productPageContain .leftSide .topSection .left .customSortSelect .sortIcon {
    color: var(--MainColor);
    font-size: 11px;
}

.productPageContain .leftSide .topSection .left .customSortSelect .sortNativeSelect {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    border: none;
    background: none;
}

.numberOfProducts {
    font-size: 20px;
    font-weight: bold;
    color: var(--MainColor);
    margin: 0;
    padding: 0;
}

.show_in_medium {
    display: none !important;
}

.hide_in_medium {
    display: block !important;
}

.filterButton {
    background-color: transparent;
    border: none;
    color: var(--blackColor);
    font-size: 20px;
    padding: 0;
    cursor: pointer;
    transition: all ease-in-out .4s;
    will-change: transform, opacity;
}

.filterButton:hover {
    transform: translateY(-4px);
    opacity: 0.8;
}

#myCarousel img {
    object-fit: cover !important
}

.productDetailsContainer .product_name {
    color: #17183B;
    font-size: 44px;
    font-weight: bold;
    margin: 0px;
}

.productDetailsContainer .descount_cost,
.productDetailsContainer .product_cost {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}

.productDetailsContainer .product_cost {
    gap: 15px;
}

.productDetailsContainer .descount_cost {
    gap: 10px;
    margin: 0;
    color: #17183B;
    font-size: 24px;
    font-weight: bold;
}

.productDetailsContainer .descount_cost span:first-child {
    display: block;
    direction: ltr;
}

.productDetailsContainer .main_cost {
    color: var(--GrayColor);
    font-size: 16px;
    font-weight: 500;
    text-decoration: line-through;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 2px;
}

.productDetailsContainer .offers {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.productDetailsContainer .offers .offersIcon .iconOffers {
    font-size: 35px;
    color: #FF5674;
}

.productDetailsContainer .offers .offersData {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 5px;
}

.productDetailsContainer .offers .offersData .dataOffers {
    color: #FF5674;
    margin: 0;
    font-size: 14px;
}

.productDetailsContainer .product_Properties .properties .propertiesHead {
    color: var(--MainColor);
    font-size: 12px;
    font-weight: bold;
}

.productDetailsContainer .properties .propertiesData {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}


.productDetailsContainer .properties .propertiesData .item input[type=radio] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.productDetailsContainer .properties .propertiesData .item input[type=radio]:checked+label {
    background-color: var(--MainColor);
    color: var(--WhiteColor);
}

.productDetailsContainer .properties .propertiesData .item input[type=radio]:disabled+label,
.upload-box.disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.productDetailsContainer .properties .propertiesData .item label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0 10px;
    min-width: 90px;
    height: 40px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    background: #f0f0f0;
    white-space: normal;
    text-overflow: ellipsis;
    cursor: pointer;
    overflow: hidden;
    transition: .2s ease-in-out;
    border-radius: 10px;
    color: #606060;
}

.productDescription .descriptionSection label,
.productDescription .detailsSection label {
    color: var(--MainColor);
    font-size: 12px;
    font-weight: bold;
}

.showMoreButton {
    font-size: 12px;
    font-weight: bold;
    color: var(--TextColor1);
    text-decoration: underline;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: inline;
}

/* .detailsContent * {
    display: inline !important;
} */

.descriptionContent p {
    margin: 0;
    padding: 0;
    color: var(--TextColor1);
    font-size: 12px;
    font-weight: 700;
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.productDetailsContainer .addation_option_details .addetion_data {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.productDetailsContainer .addation_option_details .addetion_data .text label {
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    cursor: pointer;
    color: var(--blackColor);
}

.productDetailsContainer .addation_option_details .addetion_data .text p {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    cursor: pointer;
    color: var(--TextColor1);
    margin: 0;
    padding: 0;
    margin-right: 5px;
}

.productDetailsContainer .addation_option_details .addetion_1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.productDetailsContainer .addation_option_details .addetion_data .input {
    display: flex;
    align-items: center
}

.productDetailsContainer .addation_option_details .addetion_data .input input[type=checkbox] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--MainColor);
    border-radius: 4px;
    cursor: pointer;
    transition: .2s;
    position: relative
}

.productDetailsContainer .addation_option_details .addetion_data .input input[type=checkbox]:checked {
    background-color: var(--MainColor);
    border-color: var(--MainColor);
    color: var(--WhiteColor);
    cursor: pointer;
    transition: .2s
}

.productDetailsContainer .addation_option_details .addetion_data .input input[type=checkbox]:checked:after {
    content: "✓";
    color: var(--WhiteColor);
    font-size: 14px;
    position: relative;
    right: 3px;
    top: -5px;
}

.productDetailsContainer .addation_option_details .addetion_2 textarea {
    width: 100%;
    min-height: 70px;
    field-sizing: content;
    padding: 10px 20px;
    font-size: 16px;
    resize: none;
    border: 2px solid #d3d3d3;
    border-radius: 10px;
    outline: 0
}

.productDetailsContainer .addation_option_details .addetion_2 textarea:focus {
    box-shadow: none
}

.customBorder {
    background-color: var(--bs-border-color);
    width: 100%;
    height: 2px;
    margin: 10px 0px;
}

.product_Properties .product_Quantity {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.product_Properties .product_Quantity .Quantity {
    border: 1px solid #A2A3B1;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.product_Properties .product_Quantity .Quantity button {
    background: none;
    border: none;
    padding: 0;
    font-size: 16px;
    color: #17183B;
    cursor: pointer;
    transition: all ease-in-out .4s;
    will-change: transform, opacity;
}

.product_Properties .product_Quantity .Quantity button:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}

.product_Properties .product_Quantity .Quantity button:disabled {
    cursor: not-allowed;
    color: #ABABAB !important;
}

.product_Properties .product_Quantity .Quantity span {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    text-align: center;
    height: auto;
    width: auto;
    padding: 0px 15px;
    max-width: 60px;
    color: #17183B;
}

.product_Properties .product_Quantity .product_AddToCart .whatsAppInquire {
    font-size: 16px;
    font-weight: bold;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid #28b642;
    background-color: #28b642;
    color: var(--WhiteColor);
    transition: .4s ease-in-out;
    text-decoration: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    transition: .4s ease-in-out;
    will-change: transform, opacity;
}

.product_Properties .product_Quantity .product_AddToCart .whatsAppInquire:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}

.product_Properties .product_Quantity .product_AddToCart .whatsAppInquire.disabled {
    cursor: not-allowed;
    opacity: 0.4;
    border-color: #ABABAB;
    background-color: #ABABAB;
    color: var(--WhiteColor);
}

.product_Properties .product_Quantity .product_AddToCart .addToCart {
    font-size: 16px;
    font-weight: bold;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--MainColor);
    background-color: var(--MainColor);
    color: var(--WhiteColor);
    transition: .4s ease-in-out;
    text-decoration: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    transition: .4s ease-in-out;
    will-change: transform, opacity;
}

.product_Properties .product_Quantity .product_AddToCart .addToCart:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}


.product_Properties .product_Quantity .product_AddToCart .addToCart:disabled {
    cursor: not-allowed;
    opacity: 0.4;
    border-color: #ABABAB;
    background-color: #ABABAB;
    color: var(--WhiteColor);
}

.product_Properties .addToWishlist {
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: var(--MainColor);
    cursor: pointer;
    transition: .4s ease-in-out;
    will-change: transform, opacity;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.product_Properties .addToWishlist:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}

.productDetailsContainer .product_cost,
.productDetailsContainer .offers,
.productDetailsContainer .product_Properties .properties,
.productDetailsContainer .product_Properties .productDescription,
.productDetailsContainer .product_Properties .addation_option_details,
.productDetailsContainer .addation_option_details .addetion_2,
.product_Properties .addToWishlist,
.productDetailsContainer .product_Properties .productDescription .detailsSection {
    margin-top: 10px;
}


.relatedProductsContainer {
    margin-top: 40px;
}

.relatedProductsContainer h2 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: var(--blackColor);
    margin: 0;
}

.cartItemsListContainer {
    background-color: #F7F7F7;
    padding: 20px;
    border-radius: 10px;
}

.itemContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    border-bottom: 1px solid #B0B0B0;
    padding-bottom: 17px;
    margin-top: 17px;
}

.itemContainer:first-child {
    margin-top: 0;
}

.itemContainer:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cartItemsListContainer .rightContent img {
    width: 250px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
    object-position: center;
    object-fit: cover;
    object-position: center;
}

.itemContainer .leftContent .itemName {
    font-size: clamp(14px, 2vw, 20px);
    font-weight: bold;
    display: inline-block;
    color: var(--TextColor1);
    text-decoration: none;
    text-decoration: none;
    transition: .4s ease-in-out;
    will-change: transform, opacity;
}

.itemContainer .leftContent .itemName:hover {
    opacity: 0.8;
}

.itemContainer .leftContent .itemOptions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.itemContainer .leftContent .itemOptions svg {
    width: 15px;
    height: 15px;
}

.itemContainer .leftContent .itemOptions span {
    font-size: clamp(10px, 1.5vw, 12px);
    font-weight: 500;
    color: #8D8D8D;
}

.itemContainer .leftContent .itemOptions span:after {
    content: "/";
    color: #8D8D8D;
    font-size: 12px;
    font-weight: 500;
    margin: 0px 3px;
}

.itemContainer .leftContent .itemOptions span:last-child:after {
    content: "";
    margin-left: 0;
    margin-right: 0;
}

.itemContainer .leftContent .itemExtraOPtion {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
}

.itemContainer .leftContent .itemExtraOPtion p {
    font-size: clamp(10px, 1.5vw, 13px);
    font-weight: 500;
    color: var(--TextColor2);
    margin: 0;
    padding: 0;
}

.itemContainer .leftContent .itemExtraOPtion p span:last-child {
    font-weight: bold;
}

.itemContainer .leftContent .itemPrice {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.itemContainer .leftContent .itemPrice .priceHead,
.itemContainer .leftContent .itemPrice .sellingPrice,
.itemContainer .leftContent .itemPrice .oldPrice {
    font-size: 13px;
    font-weight: 500;
    color: var(--blackColor);
    margin: 0;
    padding: 0;
}

.itemContainer .leftContent .itemPrice .oldPrice {
    text-decoration: line-through;
    color: var(--GrayColor);
    font-size: clamp(10px, 1.5vw, 12px);
}

.itemContainer .leftContent .itemQuantity .changeQuantity {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.itemContainer .leftContent .itemQuantity .changeQuantity button {
    background: none;
    border: none;
    padding: 0;
    font-size: 16px;
    color: #17183B;
    cursor: pointer;
    transition: .4s ease-in-out;
    will-change: transform, opacity;
}

.itemContainer .leftContent .itemQuantity .changeQuantity button:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.itemContainer .leftContent .itemQuantity .changeQuantity button:disabled {
    cursor: not-allowed;
    color: #ABABAB !important;
}

.itemContainer .leftContent .itemQuantity .changeQuantity input {
    border: 1px solid transparent;
    padding: 0;
    border-radius: 4px;
    height: auto;
    width: 50px;
    text-align: center;
    font-size: 16px;
    background-color: transparent;
    transition: .4s ease-in-out;
    will-change: background-color, border-color;
}

.itemContainer .leftContent .itemQuantity .changeQuantity input:focus,
.itemContainer .leftContent .itemQuantity .changeQuantity input:hover {
    box-shadow: none;
    background-color: var(--WhiteColor);
    border-color: #A2A3B1;
}

.itemContainer .leftContent .itemQuantity .changeQuantity input:disabled {
    cursor: not-allowed;
    color: #ABABAB !important;
}

.itemContainer .leftContent .itemQuantity .totalQuantityPrice {
    font-size: 13px;
    color: var(--blackColor);
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.itemContainer .leftContent .itemQuantity .totalQuantityPrice span {
    font-weight: 500;
}

.itemContainer .leftContent .itemNote {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.itemContainer .leftContent .itemNote svg {
    width: 15px;
    height: 15px;
}

.itemContainer .leftContent .itemNote svg path {
    fill: var(--TextColor1);
}

.itemContainer .leftContent .itemNote span {
    font-size: clamp(10px, 1.5vw, 13px);
    font-weight: 500;
    color: var(--TextColor2);
    margin: 0;
    padding: 0;
}

.itemContainer .leftContent .deleteButton {
    background: none;
    border: none;
    padding: 0;
    font-size: 16px;
    color: var(--DangerColor);
    cursor: pointer;
    transition: .4s ease-in-out;
    will-change: transform, opacity;
}

.itemContainer .leftContent .deleteButton:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

/* .itemContainer .leftContent .deleteButton, */
.itemContainer .leftContent .itemQuantity .changeQuantity,
.itemContainer .leftContent .itemNote,
.itemContainer .leftContent .itemQuantity,
.itemContainer .leftContent .itemPrice,
.itemContainer .leftContent .itemExtraOPtion,
.itemContainer .leftContent .itemOptions,
.itemContainer .leftContent .itemName {
    margin-bottom: 10px;
}

.cartSummary .head {
    font-size: 21px;
    color: #202020;
    margin-bottom: 20px;
}

.cartSummary .data {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.cartSummary .data span,
.cartSummary .data p {
    font-size: 15px;
    color: #202020;
    margin: 0;
    padding: 0;
}

.cartSummary .data .amountBeforeDiscount {
    text-decoration: line-through;
    color: var(--GrayColor);
    margin-left: 10px;
}

.cartSummary .data.amount_due {
    margin-top: 20px;
}

.cartSummary .data.amount_due p,
.cartSummary .data.amount_due span {
    font-weight: bold;
    font-size: 18px;
}

.bottomBut .cartBut {
    background-color: var(--MainColor);
    color: var(--WhiteColor);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: .4s ease-in-out;
    will-change: transform, opacity;
    text-align: center;
    border: none;
}

.bottomBut .cartBut:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transform: translateY(-2px);
    opacity: 0.8;
}

.confirmOrderBigButton .cartBut {
    border-radius: 30px;
    padding: 10px 40px;
}

.userSelector {
    margin-bottom: 30px;
}

.userSelector p {
    font-size: 24px;
    color: #333333;
    margin: 0;
    margin-bottom: 14px;
}

.css-13cymwt-control {
    background: #F5F5F7 !important;
    border-color: #F5F5F7 !important;
    border-radius: 10px !important;
    min-height: 50px !important;
}

.css-1jqq78o-placeholder {
    color: #8B8FA8 !important;
    font-size: 13px !important;
}

.css-t3ipsp-control:hover {
    border-color: #80BEFC !important;
    border-radius: 10px !important;
}

.css-t3ipsp-control:focus {
    box-shadow: none !important;
    border-color: #80BEFC !important;
    border-radius: 10px !important;
}

.css-t3ipsp-control:focus-within {
    box-shadow: none !important;
    border-color: #80BEFC !important;
    border-radius: 10px !important;
}

.css-hlgwow {
    padding: 8px !important;
}

.cartAddressesContainer {
    background-color: #F7F7F7;
    padding: 20px;
    border-radius: 10px;
}

.not_registered {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.not_registered p {
    font-size: clamp(12px, 2vw, 16px);
    color: #333333;
    margin: 0;
    padding: 0;
}

.not_registered button {
    margin: 0;
    font-size: clamp(12px, 2vw, 16px);
    color: var(--MainColor);
    cursor: pointer;
    text-decoration: underline;
    background-color: transparent;
    border: none;
    padding: 0px 3px;
    transition: all .4s ease-in-out;
    will-change: transform, opacity, text-shadow;
}

.not_registered button:hover {
    transform: scale(.95);
    text-decoration: none;
    text-shadow: 1px 0px 1px #ccc, 0px 1px 1px #eee, 2px 1px 1px #ccc, 1px 2px 1px #eee, 3px 2px 1px #ccc, 2px 3px 1px #eee, 4px 3px 1px #ccc, 3px 4px 1px #eee, 5px 4px 1px #ccc, 4px 5px 1px #eee, 6px 5px 1px #ccc, 5px 6px 1px #eee, 7px 6px 1px #ccc;
}

.choose_receive_way {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.choose_receive_way .ways {
    width: 40%;
}

.choose_receive_way .ways input[type=radio] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.choose_receive_way .ways input[type=radio]:checked+label {
    background-color: var(--MainColor);
    color: var(--WhiteColor);
}

.choose_receive_way .ways input[type=radio]+label {
    background-color: var(--WhiteColor);
    color: var(--MainColor);
    font-size: clamp(12px, 2vw, 16px);
    height: 57px;
    cursor: pointer;
    text-align: center;
    border: none;
    border-radius: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.choose_receive_way .ways .icon {
    border-radius: 30px;
    position: absolute;
    right: -16px;
    top: 0px;
    width: 77px;
    height: 58px;
    background-color: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose_receive_way .ways .icon svg path {
    fill: var(--MainColor);
}

.Customer_Information,
.choose_receive_way {
    margin-top: 20px;
}

.Customer_Information .address_head,
.delivery_method .address_head,
.customer_addresses .address_head,
.payment_methods .address_head,
.discount_code .address_head {
    color: #333333;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 500;
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
}

.Customer_Information .floating-labels .form-group,
.addNewAddress .floating-labels .form-group,
.discount_code.floating-labels .form-group,
.orderNote.floating-labels .form-group {
    border-color: #DFDFDF;
    background-color: #F7F7F7 !important;
}

.Customer_Information .floating-labels .placholder,
.addNewAddress .floating-labels .placholder {
    right: 10px;
}

.Customer_Information .floating-labels .form-group:focus-within .placholder,
.Customer_Information .floating-labels .form-group:has(.form-control:not(:placeholder-shown)) .placholder,
.addNewAddress .floating-labels .form-group:focus-within .placholder,
.addNewAddress .floating-labels .form-group:has(.form-control:not(:placeholder-shown)) .placholder,
.discount_code.floating-labels .form-group:focus-within .placholder,
.discount_code.floating-labels .form-group:has(.form-control:not(:placeholder-shown)) .placholder,
.orderNote.floating-labels .form-group:focus-within .placholder,
.orderNote.floating-labels .form-group:has(.form-control:not(:placeholder-shown)) .placholder {
    background-color: #f7f7f7;
}

.Customer_Information .css-13cymwt-control,
.addNewAddress .css-13cymwt-control {
    border-color: #DFDFDF !important;
    background-color: #F7F7F7 !important;
    border-width: 2px !important;
}

.css-16xfy0z-control {
    border-radius: 10px !important;
    border-width: 2px !important;
}

.error {
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: var(--bs-form-invalid-color);
}

.save_address_button {
    background-color: var(--MainColor);
    color: var(--WhiteColor);
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    transition: .4s ease-in-out;
    will-change: transform, opacity;
    font-size: clamp(12px, 2vw, 16px);
    font-weight: 500;
    cursor: pointer;
    border: none;
}

.save_address_button:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transform: translateY(-2px);
    opacity: 0.8;
}

.cartAddressesContainer .save_address_button {
    background-color: var(--MainColor) !important;
    color: var(--WhiteColor) !important;
    border-radius: 30px !important;
}

.css-1nmdiq5-menu {
    z-index: 9 !important;
}

.delivery_method,
.customer_addresses,
.payment_methods {
    margin-top: 40px;
}

.add_new_address_button {
    background-color: transparent;
    color: var(--MainColor);
    border: none;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    font-size: clamp(12px, 2vw, 16px);
    cursor: pointer;
    transition: .4s ease-in-out;
    will-change: transform, opacity;
}

.add_new_address_button:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.addresses_header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 25px;
}

.delivery_method_item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.delivery_method_item .deliveryItem input[type=radio] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.delivery_method_item .deliveryItem input[type=radio]:checked+label {
    background-color: var(--MainColor);
    color: var(--WhiteColor);
}

.delivery_method_item .deliveryItem input[type=radio]+label {
    background-color: var(--WhiteColor);
    color: var(--TextColor1);
    font-size: clamp(12px, 2vw, 16px);
    cursor: pointer;
    border: none;
    border-radius: 10px;
    width: auto;
    position: relative;
    padding: 5px 15px;
    transition: .4s ease-in-out;
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 150px;
}

.delivery_method_item .deliveryItem input[type=radio]+label:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transform: translateY(-2px);
    opacity: 0.8;
}

.delivery_method_item .deliveryItem label p {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    font-size: clamp(12px, 2vw, 18px);
}

.toPaymentButton {
    width: 50%;
}

.payment_methods .payment_method_item input[type=radio] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.payment_methods .payment_method_item input[type=radio]:checked+label {
    background-color: var(--MainColor);
    color: var(--WhiteColor);
}

.payment_methods .payment_method_item input[type=radio]+label {
    background-color: var(--WhiteColor);
    color: var(--TextColor1);
    font-size: clamp(12px, 2vw, 16px);
    cursor: pointer;
    border: none;
    border-radius: 10px;
    width: auto;
    position: relative;
    padding: 15px;
    transition: .4s ease-in-out;
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    min-width: 150px;
    min-height: 90px;
}

.payment_methods .payment_method_item input[type=radio]+label img {
    width: 25px;
    height: 100%;
    object-fit: contain;
}

.payment_methods .payment_method_item input[type=radio]+label:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transform: translateY(-2px);
    opacity: 0.8;
}

.payment_method_item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.Application_Summary h3 {
    font-size: 21px;
    color: #202020;
    margin-bottom: 20px;
}

.Application_Summary .items {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.Application_Summary .items.total_amount {
    margin-top: 20px;
    font-weight: bold;
    font-size: clamp(18px, 2vw, 20px);
}

.Application_Summary .items.total_amount p {
    margin-top: 20px !important;
    font-weight: bold !important;
    font-size: clamp(18px, 2vw, 20px) !important;
    margin: 0 !important;
}


.Application_Summary .items p {
    font-size: clamp(15px, 2vw, 16px);
    color: #202020;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.Application_Summary .items .original_sub_total {
    color: var(--GrayColor);
    text-decoration: line-through;
}

/* ===== productsInCart ===== */
.productsInCart {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.productsInCart .basket_items {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    /* background-color: #fff; */
    border-radius: 10px;
    padding: 10px;
    /* box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.07); */
}

.productsInCart .basket_items .img {
    flex-shrink: 0;
}

.productsInCart .basket_items .img img {
    width: 130px;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 5px;
}

.productsInCart .basket_items .data {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    min-width: 0;
}

.productsInCart .basket_items .data .item_name {
    margin-bottom: 6px;
    width: 100%;
}

.productsInCart .basket_items .data .item_name a {
    font-size: clamp(13px, 1.5vw, 15px);
    font-weight: bold;
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: opacity 0.3s;
}

.productsInCart .basket_items .data .item_name a:hover {
    opacity: 0.6;
}

.productsInCart .basket_items .data .itemOptions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}

.productsInCart .basket_items .data .itemOptions svg {
    width: 12px;
    height: 12px;
}

.productsInCart .basket_items .data .itemOptions span {
    font-size: clamp(11px, 1.5vw, 13px);
    color: #6E6E6E;
    margin: 0;
    padding: 0;
}

.productsInCart .basket_items .data .itemExtraOPtion {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 6px;
}

.productsInCart .basket_items .data .itemExtraOPtion p {
    font-size: clamp(11px, 1.5vw, 13px);
    color: var(--TextColor2);
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.productsInCart .basket_items .data .itemExtraOPtion p span:last-child {
    font-weight: bold;
}

.productsInCart .basket_items .data .itemNote {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
}

.productsInCart .basket_items .data .itemNote svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.productsInCart .basket_items .data .itemNote svg path {
    fill: var(--TextColor1);
}

.productsInCart .basket_items .data .itemNote span {
    font-size: clamp(11px, 1.5vw, 13px);
    color: #626262;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.productsInCart .basket_items .data .item_salary {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    margin: 0 0 4px;
}

.productsInCart .basket_items .data .item_salary span:first-child {
    font-size: clamp(11px, 1.5vw, 13px);
    color: var(--TextColor2);
    font-weight: 500;
}

.productsInCart .basket_items .data .item_salary span:last-child {
    font-size: clamp(11px, 1.5vw, 13px);
    color: var(--TextColor1);
    font-weight: bold;
}

.productsInCart .inYourBasket {
    font-size: clamp(18px, 2vw, 21px);
    color: #1F1D1E;
    font-weight: 500;
    margin-bottom: 10px;
}

/* ===== End productsInCart ===== */

.order_done {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0;
    padding-top: 50px;
}

.order_done p {
    font-size: clamp(18px, 2vw, 22px);
    margin: 20px 0;
    color: var(--TextColor1);
    text-align: center;
}

.order_done p span {
    font-size: clamp(19px, 2vw, 24px);
    font-weight: bold;
    padding: 0 10px;
}


.bankAccountContain .bankData {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.payment_method_item .cr-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.cr-wrapper {
    display: table;
    position: relative;
    padding-right: 30px;
    cursor: pointer;
    margin-bottom: 0;
}

.cr-wrapper input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.payment_method_item input[type=radio] {
    accent-color: var(--MainColor);
}

.cr-wrapper *,
.cr-wrapper :after,
.cr-wrapper :before {
    box-sizing: content-box !important;
}

.bankAccountContain .cr-wrapper input[type=radio]~.cr-input {
    top: 57%;
    right: 0;
    width: 16px;
    height: 16px;
}

.cr-wrapper input[type=radio]~.cr-input {
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid var(--MainColor);
    transform: translateY(-50%);
    transition: background .25s;
    border-radius: 12px;
}

.cr-wrapper span {
    font-size: 16px;
    color: var(--blackColor);
}

.cr-wrapper input[type=radio]~.cr-input:after {
    content: "";
    position: absolute;
    display: none;
    top: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    border-radius: 20px;
    background: var(--MainColor);
}

.cr-wrapper input:checked~.cr-input:after {
    display: block;
}

.bankAccountContain .cr-wrapper input[type=radio]~.cr-input:after {
    top: 2px;
    right: 2px;
}

.ibanNumber {
    margin: 0;
    padding: 0;
    justify-content: flex-start;
    gap: 10px;
}

.bankAccountContain,
.ibanNumber {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.copy-btn {
    background: 0 0;
    border: 0;
    cursor: pointer;
    padding: 0;
    color: #01529a;
    transition: .4s ease-in-out;
    will-change: transform, opacity;
    font-size: 16px;
}

.copy-btn:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.bank_accounts .bankAccountContain .upload-container,
.bankAccountContain .bankData {
    min-width: 100% !important;
}

.upload-box {
    height: 100px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    color: #777;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2px;
    font-size: 11px;
}

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

.change-overlay,
.delete-btn {
    color: #fff;
    display: flex;
    transition: .4s ease-in-out;
    cursor: pointer;
}

.change-overlay,
.delete-btn {
    position: absolute;
    align-items: center;
    justify-content: center;
}

.delete-btn {
    top: 8px;
    right: 8px;
    background: var(--DangerColor);
    border: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 8px;
}

.change-overlay {
    bottom: -100%;
    width: 100%;
    height: 25px;
    background: var(--GrayColor);
    font-size: 10px;
}

.image-wrapper:hover .change-overlay {
    bottom: 0;
}

.bankAccountContain {
    display: flex;
    justify-content: space-between;
    padding: 11px;
    border: 1px solid #c0c9d0;
    border-radius: 12px;
    margin-top: 20px;
    gap: 15px;
    flex-wrap: wrap;
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
}


.image-wrapper {
    position: relative;
    width: auto;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    transition: .4s ease-in-out;
    max-width: 80%;
    margin: auto;
}

.Toastify__toast-icon {
    width: 52px !important;
}

.Toastify__toast {
    padding: 8px !important;
    border-radius: 10px !important;
    color: var(--WhiteColor) !important;
    /* background: var(--TextColor1) !important; */
}


.contact_us_form .floating-labels .placholder {
    right: 10px;
}

.sendButton {
    background-color: var(--MainColor);
    color: var(--WhiteColor);
    border: none;
    border-radius: 8px;
    padding: 15px 16px;
    font-size: clamp(12px, 1.5vw, 14px);
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    will-change: transform, opacity;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.sendButton:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.trackOrderForm {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 40px;
}

.trackOrderForm .Group {
    width: 80%;
}

.trackOrderForm .trackButton {
    background-color: var(--MainColor);
    color: var(--WhiteColor);
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: clamp(12px, 1.5vw, 14px);
    cursor: pointer;
    width: 20%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    will-change: transform, opacity;
    gap: 10px;
    white-space: nowrap;
}

.trackOrderForm .trackButton .icon {
    font-size: clamp(18px, 1.5vw, 20px);
}

.trackOrderForm .trackButton:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.track_order_result {
    margin-top: 40px;
}

.track_order_result .orders_item {
    overflow: hidden;
    border: 1px solid #E8E8E8;
    border-radius: 5px;
}

.track_order_result .orders_item .head {
    background-color: #FBFBFB;
    padding: 10px 20px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.track_order_result .orders_item .head .data {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.track_order_result .orders_item .head .data p {
    color: #171717;
    font-size: 18px;
    margin: 0;
    padding: 0;
}

.track_order_result .orders_item .head .data span {
    margin: 0;
    padding: 0;
    margin-top: 5px;
    color: #6E6E6E;
    font-size: 11px;
}

.track_order_result .orders_item .center {
    padding: 10px 20px;
}

.track_order_result .orders_item .center .data {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #E7EBF4;
    padding: 12px 0px;
}

.track_order_result .orders_item .center .data p:first-child {
    font-size: clamp(12px, 1.5vw, 16px);
    color: #696969;
    margin: 0;
    padding: 0;
}

.track_order_result .orders_item .center .data p:last-child {
    font-size: clamp(12px, 1.5vw, 18px);
    color: #505050;
    margin: 0;
    padding: 0;
}

.payment_method2 {
    display: none !important;
}

.track_order_result .orders_item .last {
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #E7EBF4;
}

.track_order_result .orders_item .last .data {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}

.track_order_result .orders_item .last .data p {
    font-size: 18px;
    color: #171717;
    margin: 0;
    padding: 0;
}

.track_order_result .orders_item .last .data span {
    font-size: 11px;
    color: #6E6E6E;
    margin: 0;
    padding: 0;
    margin-top: 0px;
}

.track_order_result .orders_item .center .data:last-child {
    border: none;
}

.my_order_products .proudacts .basket_items {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    border-radius: 10px;
    background: var(--GrayColor1);
    padding: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.my_order_products .proudacts .basket_items .img img {
    width: 250px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
}

.my_order_products .proudacts .data {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    /* gap: 10px; */
}

.my_order_products .proudacts .basket_items .data .item_name a {
    width: 100%;
    font-weight: bold;
    color: #333333;
    text-decoration: none;
    font-size: clamp(14px, 1.5vw, 16px);
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    will-change: transform, opacity;
}

.my_order_products .proudacts .basket_items .data .item_name a:hover {
    transform: translateY(-2px);
    opacity: 0.5;
}

.my_order_products .proudacts .basket_items .data .itemOptions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.my_order_products .proudacts .basket_items .data .itemOptions span {
    font-size: clamp(12px, 1.5vw, 14px);
    color: #6E6E6E;
    margin: 0;
    padding: 0;
}

.my_order_products .proudacts .basket_items .data .itemOptions svg {
    width: 14px;
    height: 14px;
}

.my_order_products .proudacts .basket_items .data .itemExtraOPtion {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
}

.my_order_products .proudacts .basket_items .data .itemExtraOPtion p {
    font-size: clamp(12px, 1.5vw, 13px);
    color: var(--TextColor2);
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.my_order_products .proudacts .basket_items .data .itemExtraOPtion p span:last-child {
    font-weight: bold;
}

.my_order_products .proudacts .basket_items .data .itemNote {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.my_order_products .proudacts .basket_items .data .itemNote svg {
    width: 14px;
    height: 14px;
}

.my_order_products .proudacts .basket_items .data .itemNote svg path {
    fill: var(--TextColor1);
}

.my_order_products .proudacts .basket_items .data .itemNote span {
    font-size: clamp(12px, 1.5vw, 13px);
    color: #626262;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.my_order_products .proudacts .basket_items .data .item_salary {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    margin: 0;
}

.my_order_products .proudacts .basket_items .data .item_salary span:first-child {
    font-size: clamp(12px, 1.5vw, 13px);
    color: var(--TextColor1);
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.my_order_products .proudacts .basket_items .data .item_salary span:last-child {
    font-size: clamp(12px, 1.5vw, 13px);
    color: var(--TextColor1);
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.my_order_products {
    margin-top: 40px;
}

.my_order_products .proudacts .basket_items .data .item_name,
.my_order_products .proudacts .basket_items .data .itemOptions,
.my_order_products .proudacts .basket_items .data .itemExtraOPtion,
.my_order_products .proudacts .basket_items .data .itemNote,
.my_order_products .proudacts .basket_items .data .item_salary {
    margin: 0;
    margin-bottom: 10px;
}

.account_big_contain {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
}

.account_big_contain .account_nav {
    padding: 5px;
    padding-top: 20px;
    border: 1px solid #f5f5f5;
    width: 22%;
}

.account_big_contain .account_data {
    width: 75%;
}

.account_big_contain .account_nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account_big_contain .account_nav ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

.account_big_contain .account_nav ul li:first-child {
    margin-top: 0;
}

.account_big_contain .account_nav ul li button,
.account_big_contain .account_nav ul li .logout_button {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    cursor: pointer;
    background-color: transparent;
    border: none;
    padding: 10px 20px;
    font-size: 10px;
    text-decoration: none;
    transition: .5s ease-in-out;
    will-change: transform, opacity;
}

.account_big_contain .account_nav ul li button:hover,
.account_big_contain .account_nav ul li .logout_button:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.account_big_contain .account_nav ul li button.active {
    background-color: var(--MainColor);
    color: var(--WhiteColor);
}

.account_big_contain .account_nav ul li button.active span {
    color: var(--WhiteColor);
}

.account_big_contain .account_nav ul li button span,
.account_big_contain .account_nav ul li .logout_button span {
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 400;
    color: var(--MainColor);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.account_big_contain .account_nav ul li button span .itemIcon,
.account_big_contain .account_nav ul li .logout_button span .itemIcon {
    font-size: clamp(18px, 2vw, 20px);
}

.account_big_contain .account_nav ul li .logout_button span,
.account_big_contain .account_nav ul li .logout_button {
    color: var(--DangerColor);
}

.account_big_contain .account_data .account_text_head {
    font-size: clamp(18px, 2vw, 20px);
    color: #1E1014;
    margin: 0;
    margin-bottom: 20px;
}

.updateData {
    background-color: var(--MainColor);
    color: var(--WhiteColor);
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: clamp(14px, 1.5vw, 16px);
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    transition: .5s ease-in-out;
    will-change: transform, opacity;
}

.updateData:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.my_orders_contain .head {
    font-size: clamp(18px, 2vw, 20px);
    color: #1E1014;
    margin: 0;
    margin-bottom: 20px;
}

.my_orders .orders_item {
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid #E8E8E8;
    border-radius: 5px;
}

.my_orders .orders_item .head {
    background-color: #FBFBFB;
    padding: 10px 20px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.my_orders .orders_item .head .data {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.my_orders .orders_item .head .data p {
    color: #171717;
    font-size: clamp(12px, 1.5vw, 18px);
    margin: 0;
    padding: 0;
}

.my_orders .orders_item .head .data span {
    margin: 0;
    padding: 0;
    margin-top: 5px;
    color: #6E6E6E;
    font-size: 11px;
}

.my_orders .orders_item .center {
    padding: 10px 20px;
}

.my_orders .orders_item .center .data {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #E7EBF4;
    padding: 5px 0px;
}

.my_orders .orders_item .center .data p:first-child {
    font-size: clamp(12px, 1.5vw, 16px);
    color: #696969;
    margin: 0;
    padding: 0;
}

.my_orders .orders_item .center .data p:last-child {
    font-size: clamp(12px, 1.5vw, 18px);
    color: #505050;
    margin: 0;
    padding: 0;
}

.my_orders .orders_item .center .data:last-child {
    border: none;
}

.my_orders .orders_item .last {
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #E7EBF4;
}

.my_orders .orders_item .last .data {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}

.my_orders .orders_item .last .data p {
    font-size: clamp(10px, 1.5vw, 18px);
    color: #171717;
    margin: 0;
    padding: 0;
}

.my_orders .orders_item .last .data span {
    font-size: clamp(9px, 1.5vw, 18px);
    color: #6E6E6E;
    margin: 0;
    padding: 0;
    margin-top: 0px;
}

.my_orders .orders_item .last .data .showOrderButton {
    background-color: var(--MainColor);
    color: var(--WhiteColor);
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: clamp(9px, 1.5vw, 14px);
    cursor: pointer;
    white-space: nowrap;
    transition: .5s ease-in-out;
    will-change: transform, opacity;
}

.my_orders .orders_item .last .data .showOrderButton:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.my_orders .orders_item .last .data .showOrderButton:disabled {
    background-color: #E7EBF4;
    color: #6E6E6E;
    cursor: not-allowed;
}

.orderModalHeader {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.orderModalHeader h4 {
    font-size: clamp(18px, 2vw, 20px);
    color: var(--TextColor1);
    margin: 0;
    padding: 0;
}

.orderModalHeader button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: clamp(18px, 2vw, 20px);
    color: var(--DangerColor);
    transition: .5s ease-in-out;
    will-change: transform, opacity;
}

.orderModalHeader button:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.my_address .addresses_contain {
    padding: 10px 20px;
    border: 1px solid #D1D1D8;
    border-radius: 2px;
    /* margin-top: 20px; */
}

.my_address .addresses_contain .loading_address,
.my_orders .loading_orders {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 170px;
}

.my_address .addresses_contain .item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
    border-bottom: 1px solid #d1d1d8;
}

.my_address .addresses_contain .item .right_data {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.my_address .addresses_contain .item .data {
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.my_address .addresses_contain .item .data p:first-child {
    color: #17183B;
    font-size: clamp(12px, 2vw, 16px);
    margin: 0;
    padding: 0;
}

.my_address .addresses_contain .item .count h1 {
    margin: 0;
    padding: 0;
    font-size: clamp(12px, 2vw, 16px);
    color: #17183B;
}

.my_address .addresses_contain .item .data p:last-child {
    color: #A2A3B1;
    font-size: clamp(12px, 2vw, 16px);
    margin: 0;
    padding: 0;
    margin-top: 5px;
}

.my_address .addresses_contain .item .action {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 5px;
}

.my_address .addresses_contain .item .action .edite {
    background-color: transparent;
    color: var(--MainColor);
    border: none;
    cursor: pointer;
    font-size: clamp(18px, 2vw, 20px);
    transition: .5s ease-in-out;
    will-change: transform, opacity;
}

.my_address .addresses_contain .item .action .edite:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.my_address .addresses_contain .item .action .remove_address {
    background-color: transparent;
    color: var(--DangerColor);
    border: none;
    cursor: pointer;
    font-size: clamp(18px, 2vw, 20px);
    transition: .5s ease-in-out;
    will-change: transform, opacity;
}

.my_address .addresses_contain .item .action .remove_address:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.my_address .addresses_contain .item .action .remove_address:disabled,
.my_address .addresses_contain .item .action .edite:disabled {
    background-color: transparent;
    color: #6E6E6E;
    cursor: not-allowed;
}

.my_address .addresses_contain .item:last-child {
    border: none;
}

.my_address .adressHead {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.my_address .adressHead h1 {
    margin: 0 !important;
}

.add_address_button {
    background-color: var(--TextColor1);
    color: var(--WhiteColor);
    border: none;
    cursor: pointer;
    font-size: clamp(12px, 2vw, 16px);
    font-weight: 500;
    transition: .5s ease-in-out;
    will-change: transform, opacity;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 8px;
}

.add_address_button:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.addressModalHeader {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.addressModalHeader h4 {
    font-size: clamp(18px, 2vw, 20px);
    color: var(--WhiteColor);
    margin: 0;
    padding: 0;
}

.custom_modal1 .form-control.is-invalid {
    background-image: none !important;
    border-color: #dc3545 !important;
}

.custom_modal1 .modal-content {
    background-color: #121D2B;
    border-radius: 25px;
    padding: 15px;
}

.custom_modal1 .modal-header {
    border: none;
}

.custom_modal1 .inputHead {
    color: rgba(255, 255, 255, 70%);
    font-size: 16px;
}

.custom_modal1 .form-control {
    border: 1px solid rgba(255, 255, 255, 10%);
    background-color: rgba(255, 255, 255, 10%);
    color: white;
    font-size: 16px;
    padding: 0px 10px;
    height: 50px;
    border-radius: 8px;
    transition: .5s ease-in-out;
}

.custom_modal1 .form-control:disabled {
    background-color: rgba(255, 255, 255, 10%) !important;
    color: rgba(255, 255, 255, 50%) !important;
    cursor: not-allowed;
}

.custom_modal1 .form-control::placeholder {
    color: var(--WhiteColor);
}

.custom_modal1 .form-control:focus {
    border: 1px solid rgba(255, 255, 255, 100%);
    color: var(--WhiteColor) !important;
    box-shadow: none !important;
    background-color: rgba(255, 255, 255, 10%) !important;
}

.custom_modal1 .css-13cymwt-control,
.custom_modal1 .css-16xfy0z-control,
.custom_modal1 .css-t3ipsp-control {
    border: 1px solid rgba(255, 255, 255, 10%) !important;
    background-color: rgba(255, 255, 255, 10%) !important;
}

.custom_modal1 .css-1dimb5e-singleValue,
.custom_modal1 .css-1jqq78o-placeholder {
    color: var(--WhiteColor) !important;
}


.select-is-invalid .css-13cymwt-control {
    border-color: #dc3545 !important
}

.save_address_button {
    background-color: var(--WhiteColor) !important;
    color: var(--TextColor1) !important;
}

.logout_modal_content {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logout_modal_content .warning_icon {
    font-size: 70px;
    color: var(--WhiteColor);
}

.logout_modal_content h4 {
    color: rgba(255, 255, 255, 70%);
    font-size: clamp(12px, 1.5vw, 16px);
    margin: 0;
}

.logout_modal .modal-content {
    padding: 0 !important;
}

.logout_modal_buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logout_modal_buttons .logout_modal_button1,
.logout_modal_buttons .logout_modal_button2 {
    width: 40%;
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: clamp(12px, 1.5vw, 16px);
    font-weight: 700;
    transition: .5s ease-in-out;
    will-change: transform, opacity;
}

.logout_modal_buttons .logout_modal_button1:hover,
.logout_modal_buttons .logout_modal_button2:hover {
    transform: scale(0.95);
    opacity: 0.8;
}

.logout_modal_buttons .logout_modal_button1 {
    background-color: var(--DangerColor);
    color: var(--WhiteColor);
}

.logout_modal_buttons .logout_modal_button2 {
    background-color: var(--WhiteColor);
    color: var(--TextColor1);
}

.error_message {
    color: var(--DangerColor);
    font-size: clamp(12px, 1.5vw, 14px);
    margin-top: 5px;
    margin-bottom: 0;
    padding: 0;
    text-align: start;
}

.mobile_side_menu_container {
    border-top-left-radius: 20px !important;
}

.mobile_side_menu_container .sideMenuHeader {
    padding: 20px 5px;
    background: var(--MainColor);
    border-top-left-radius: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile_side_menu_container .sideMenuHeader h3 {
    color: var(--WhiteColor);
    font-size: clamp(14px, 1.5vw, 16px);
    margin: 0;
    padding: 0;
}

.sideMenuCategories {
    padding: 20px 10px;
    list-style: none;
    margin: 0;
}


.sideMenuCategories li {
    padding: 5px;
}

.sideMenuCategories li a {
    font-size: 14px;
    color: var(--TextColor1);
    font-weight: 700;
    text-decoration: none;
    transition: .5s ease-in-out;
    will-change: transform, opacity;
    margin-bottom: 10px;
}

.sideMenuCategories li a:hover {
    transform: scale(0.95);
    opacity: 0.8;
}

.sideMenuCategories li .head,
.sideMenuCategories li .secondLevelHead,
.sideMenuCategories li .thirdLevelHead {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.sideMenuCategories li .secondLevel,
.sideMenuCategories li .thirdLevel {
    padding-right: 10px;
}


.sideMenuCategoriesLoading {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.languageCurrencyChanger {
    background-color: var(--GrayColor1) !important;
}

.languageCurrencyChanger .offcanvas-body {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.sideMenuFooter {
    margin-top: 20px;
    padding: 0 10px;
}

.sideMenuFooter .Track_order {
    font-size: 12px;
    font-weight: 700;
    text-decoration: underline;
    color: var(--MainColor);
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    will-change: transform, opacity;
    cursor: pointer;
}

.sideMenuFooter .Track_order svg path {
    fill: var(--MainColor);
}

.relatedProductsContainer .swiper-initialized {
    padding-top: 30px !important;
}

.relatedProductsContainer .swiper-button-prev {
    top: 25px !important;
    right: 85% !important;
    width: 15px !important;
    height: 15px !important;
    color: var(--blackColor) !important;
}

.relatedProductsContainer .swiper-button-prev .swiper-navigation-icon {
    width: 15px !important;
    height: 15px !important;
}

.relatedProductsContainer .swiper-button-next {
    top: 25px !important;
    width: 15px !important;
    height: 15px !important;
    color: var(--blackColor);
}

.relatedProductsContainer .swiper-button-next .swiper-navigation-icon {
    width: 15px !important;
    height: 15px !important;
}

.relatedProductsContainer .swiper-button-prev,
.relatedProductsContainer .swiper-button-next {
    display: none !important;
}

.page_title {
    margin-top: 20px;
}

.page_title h1 {
    margin: 0;
    padding: 0;
    font-size: clamp(22px, 3vw, 42px);
    margin-right: -5%;
    text-align: center;
}

.contactUsContainer {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    padding: 20px;
}

.contactUsContainer .contactUs {
    width: 70%;
    background-color: var(--WhiteColor);
    border-radius: 25px;
    padding: 38px 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.contactUsContainer .storeInformation {
    width: 30%;
}

.contactUsContainer .pageBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 63%;
    background-color: rgba(var(--MainColor_rgb), .1);
    z-index: -1;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
}

.storeInformation .items {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

.storeInformation .items .item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.storeInformation .items .item .icon {
    color: var(--MainColor);
    font-size: 30px;
}

.storeInformation .items .item .content h4 {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: bold;
    color: var(--blackColor);
    margin: 0;
    padding: 0;
    margin-bottom: 5px;
}

.storeInformation .items .item .content p {
    color: var(--MainColor);
    font-size: clamp(16px, 1.5vw, 20px);
    padding: 0;
    margin: 0;
}

.contactUsContainer .newsletter_form {
    margin-top: 16%;
}

.newsLetterHead h3 {
    font-size: clamp(16px, 1.5vw, 24px);
    font-weight: bold;
    color: #5D5A88;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

.newsLetterHead p {
    font-size: clamp(10px, 1.5vw, 13px);
    color: #9795B5;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

.favoriteSideMenuContent {
    padding: 20px;
}

.custom_modal1 .css-1cfo1cf {
    color: var(--WhiteColor) !important;
}

.language_currency_buttonChanger {
    background-color: transparent;
    border: none;
    font-size: 13px;
    color: var(--WhiteColor);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.language_currency_buttonChanger span:first-child {
    margin-bottom: 4px;
}

/* .quickProductOverviewContain {
    min-width: 45% !important;
} */

.quickProductOverviewContent {
    padding: 20px;
}

/* Quick overview carousel overrides */
.quickOverviewCarousel #myCarousel {
    height: 320px;
}

.quickOverviewCarousel #myCarousel .f-carousel__slide {
    align-items: stretch;
}

.quickOverviewCarousel #myCarousel .f-carousel__slide img {
    width: 100%;
    height: 100%;
    max-width: unset;
    max-height: unset;
    object-fit: cover;
}

.quickProductOverviewQuantity {
    flex-direction: column !important;
}

.product_cost .DiscountAmount {
    background-color: rgba(var(--MainColor_rgb), .1);
    color: var(--MainColor);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 30px;
    text-align: center;
}

.quickProductOverviewContainer .product_cost {
    flex-wrap: wrap !important;
}

.filterSideMenuContainer .filter-section {
    padding: 20px;
}












/* ===== Discount Code & Order Note - Floating Labels ===== */
.discount_code .apply_discount_button {
    background-color: var(--MainColor);
    color: var(--WhiteColor);
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: clamp(12px, 1.5vw, 14px);
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
    z-index: 2;
    transition: opacity 0.2s ease;
}

.discount_code .apply_discount_button:hover {
    opacity: 0.85;
}

.discount_code_error {
    display: block;
    color: var(--DangerColor);
    font-size: 12px;
    margin-top: 4px;
    min-height: 18px;
}

.orderNote .form-group.textarea-form-group {
    align-items: flex-start;
    height: auto;
    padding-top: 16px;
    padding-bottom: 12px;
}

.orderNote .form-group.textarea-form-group .form-control {
    min-height: 30px !important;
    resize: none;
    field-sizing: content;
}

.orderNote .placholder {
    top: 20px;
    transform: none;
}

.orderNote .form-group:focus-within .placholder,
.orderNote .form-group:has(.form-control:not(:placeholder-shown)) .placholder {
    top: -10px;
    transform: none;
}

.discount_code_success {
    display: block;
    color: var(--SuccessColor);
    font-size: 12px;
    margin-top: 4px;
    min-height: 18px;
}

/* ===== End Discount Code & Order Note ===== */


/* ===== Agreement Checkbox ===== */
.agreement_checkbox {
    display: flex;
    /* flex-direction: row-reverse; */
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    padding-left: 0 !important;
    padding-right: 1.5rem !important;
}

.agreement_checkbox .form-check-input {
    float: none;
    margin: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #8B8FA8;
    border-radius: 4px;
    cursor: pointer;
    float: right !important;
    margin-left: 0 !important;
    margin-right: -1.5rem !important;
}

.agreement_checkbox .form-check-input:focus {
    box-shadow: none;
}

.agreement_checkbox .form-check-input:checked {
    background-color: #8B8FA8;
    border-color: #8B8FA8;
}

.agreement_checkbox .form-check-label {
    margin: 0;
    color: var(--blackColor) !important;
    font-size: 15px;
    line-height: 1.5;
    cursor: pointer;
}

.agreement_checkbox .form-check-label a {
    color: var(--blackColor) !important;
    text-decoration: underline;
    font-weight: 700;
    padding: 0 5px;
    will-change: transform, opacity;
}

.agreement_checkbox .form-check-label a:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}

.agreement_checkbox .invalid-feedback {
    width: 100%;
    margin-top: 6px;
    text-align: right;
}

/* ===== End Agreement Checkbox ===== */


/* ===== Floating Labels - Auth Modal ===== */
.floating-labels .form-group {
    position: relative;
    border: 2px solid #F5F5F7;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 0px 10px;
    background-color: #F5F5F7;
    transition: 0.2s ease all;
}

.floating-labels .form-group .field-icon {
    font-size: 18px;
    color: #8B8FA8;
    min-width: 18px;
    flex-shrink: 0;
}

.floating-labels .form-group:focus-within .field-icon {
    color: #3C4071;
}

.floating-labels .form-group .form-control {
    height: 50px;
    border: none;
    padding: 5px 8px;
    outline: none;
    background-color: transparent;
    color: #3C4071 !important;
    font-size: 16px;
    z-index: 1;
    flex: 1;
    min-width: 0;
}

.floating-labels .form-group .form-control:focus {
    box-shadow: none;
    background-color: transparent;
}

.floating-labels .form-group .form-control.is-invalid,
.floating-labels .form-group .form-control.is-valid {
    background-image: none;
}

.floating-labels .form-group textarea.form-control {
    height: auto !important;
    min-height: 100px !important;
}


.floating-labels .placholder {
    color: #8B8FA8;
    position: absolute;
    cursor: auto;
    top: 50%;
    transform: translateY(-50%);
    right: 42px;
    font-size: 14px;
    transition: 0.2s ease all;
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

.floating-labels .form-group:focus-within .placholder,
.floating-labels .form-group:has(.form-control:not(:placeholder-shown)) .placholder {
    top: -10px;
    transform: none;
    right: 11px;
    font-size: 11px;
    background-color: #fff;
    color: #3C4071;
    z-index: 2;
    padding: 0px 4px;
}

.floating-labels .form-group:focus-within {
    background-color: #fff;
    border-color: #80BEFC;
}

.floating-labels .form-group:has(.form-control:not(:placeholder-shown)) {
    background-color: #fff;
    border-color: #80BEFC;
}

.floating-labels .form-group .password-toggle-btn {
    background: none;
    border: none;
    color: #8B8FA8;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    font-size: 16px;
    flex-shrink: 0;
    z-index: 2;
}

.floating-labels .form-group .password-toggle-btn:hover {
    color: #3C4071;
}

/* ===== Floating Labels - Select ===== */
.floating-labels .form-group .form-control.address_select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    padding-left: 46px;
}

/* Chevron arrow */
.floating-labels .form-group:has(.address_select)::after {
    content: '';
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-65%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    pointer-events: none;
    z-index: 2;
}

/* Vertical separator */
.floating-labels .form-group:has(.address_select)::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #DFDFDF;
    pointer-events: none;
    z-index: 2;
}

/* إعادة الـ label لمكانها لما مفيش اختيار ومفيش focus */
.floating-labels .form-group:has(.address_select):not(.has-value):not(:focus-within) .placholder {
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    font-size: 14px;
    background-color: transparent;
    color: #8B8FA8;
    z-index: 0;
    padding: 0;
}

.floating-labels .form-group.has-value .placholder,
.floating-labels .form-group:has(.address_select):focus-within .placholder {
    top: -10px;
    transform: none;
    right: 11px;
    font-size: 11px;
    background-color: #f7f7f7;
    color: #3C4071;
    z-index: 2;
    padding: 0px 4px;
}

.floating-labels .form-group:has(.address_select:not(:placeholder-shown)) {
    background-color: #F7F7F7;
    border-color: #DFDFDF;
}

.floating-labels .form-group.has-value,
.floating-labels .form-group:has(.address_select):focus-within {
    border-color: #80BEFC;
}

.floating-labels .form-group:has(.address_select:not(:placeholder-shown)) .placholder {
    background-color: #F7F7F7;

}

.floating-labels .form-group:has(.address_select:disabled) {
    background-color: #f2f2f2 !important;
    border-color: #DFDFDF;
    pointer-events: none;
}

/* ===== End Floating Labels ===== */

/* ===== Filter Sidebar ===== */

/* Price Range Slider */
.range-container {
    position: relative;
    height: 30px;
    margin: 10px 0;
}

.range-container .slider-track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 4px;
    border-radius: 4px;
    z-index: 1;
    pointer-events: none;
}

.range-container .thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    z-index: 2;
    outline: none;
    border: none;
    margin: 0;
    padding: 0;
}

.range-container .thumb::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #1a4a8a;
    cursor: pointer;
    pointer-events: all;
    border: 3px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.15s ease;
}

.range-container .thumb::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.range-container .thumb::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #1a4a8a;
    cursor: pointer;
    pointer-events: all;
    border: 3px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Price values row */
.price-range-wrapper {
    width: 100%;
}

.price-values-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.price-range-label {
    font-size: 13px;
    color: #4B5563;
    font-weight: 500;
}

.price-range-values {
    font-size: 13px;
    color: #1F2937;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.price-range-values span {
    display: flex;
    gap: 5px;
}

/* Filter sections */
.filter-section {
    padding-bottom: 15px;
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-section-title {
    font-size: 15px;
    font-weight: bold;
    color: var(--blackColor, #17183b);
    margin: 0 0 12px;
}

.filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-x: hidden;
}

/* RTL: checkbox on left, label right-aligned on right */
.filter-checkbox-item.form-check {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 6px 0;
    margin: 0;
    cursor: pointer;
}

.filter-checkbox-item .form-check-input {
    float: none;
    margin: 0;
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    cursor: pointer;
    border: 2px solid #000;
    border-radius: 2px;
    background-color: #fff;
    order: 2;
}

.filter-checkbox-item .form-check-input:checked {
    background-color: var(--MainColor);
    border-color: var(--MainColor);
    box-shadow: none;
}

/* .filter-checkbox-item .form-check-input:focus {
    box-shadow: none;
    border-color: #000;
} */

.filter-checkbox-item .form-check-label {
    cursor: pointer;
    flex: 1;
    font-size: 14px;
    color: #374151;
    text-align: right;
    margin: 0;
    order: 1;
}

/* Sidebar actions button */
.productPageContain .rightSide .actions {
    margin-top: 5px;
}

.productPageContain .rightSide .actions button {
    width: 100%;
    padding: 10px 0;
    background-color: var(--MainColor, #1a4a8a);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.productPageContain .rightSide .actions button:hover {
    opacity: 0.85;
}

/* Make rightSide scrollable when content overflows */
.productPageContain .rightSide {
    overflow-y: auto;
    overflow-x: hidden;
}

.productPageContain .rightSide::-webkit-scrollbar {
    width: 18px;
}

.productPageContain .rightSide::-webkit-scrollbar-track {
    background: transparent;
}

.productPageContain .rightSide::-webkit-scrollbar-thumb {
    background-color: #d1d5db;
    border-radius: 2px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 2px solid transparent;
    border-left: 12px solid transparent;
    background-clip: padding-box;
}

/* Filter modal (Offcanvas) */

.filterSideMenuContainer .actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding: 20px;
    padding-bottom: 25px;
}

.filterSideMenuContainer .actions button {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s ease;
    background-color: var(--MainColor, #1a4a8a);
    color: #fff;
}

.filterSideMenuContainer .actions button:hover {
    opacity: 0.85;
}

/* ===== End Filter Sidebar ===== */