

:root {
    --primary-color: #FF5C02;
    --size14: 0.875rem;
    --size12: 0.75rem;
}

html{
    font-size: 16px!important;
}
body{
    line-height: 1.2;
    font-family: "Manrope", sans-serif;
    font-weight: 500;

}

.skeleton {
    height: 100vh;
    background: white;
    background-size: 200% 100%;

    position: fixed;
    inset: 0;
    z-index: 999;
}

html.start_intro_modal_open,
body.start_intro_modal_open{
    overflow: hidden;
}

body.start_intro_modal_open{
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
}

.start_intro_modal{
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: stretch;
    justify-content: center;
}

.start_intro_modal.is_visible{
    display: flex;
}

.start_intro_modal__dialog{
    width: 100%;
    max-width: 550px;
    height: 100vh;
    background: #000;
}

.start_intro_modal__frame{
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}



main{
    padding-bottom: 5rem;
}

body, html{
    max-width: 550px;
    margin: 0 auto;

}
.loader_box{
    background-image: url("../img/loader_bg.jpg");
    background-size: cover;
    background-position: center center;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: flex;
}
.mt_05{
    margin-top: 0.5rem;
}
.reg_form_bottom.leffed{
    text-align: left;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0.5rem;
}
.loader_logo{
    width: 13rem;
    display: block;
}
.loader_icon{
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
}
.loader_icon img{
    animation: spin 2s linear infinite;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.main_slider_item{
    height: 100vh;
    display: flex!important;
    align-items: flex-end;
    position: relative;
}
.ab_img{
    position: absolute;
    left: 0;
    top: 0;
}
.main_slider_title{
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.main_slider_content{
    text-align: center;
    padding: 2.5rem 15px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
}
.main_slider_item:after{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.9) 93%);
    z-index: 1;
}
.main_slider_text{
    font-size: 0.875rem;
    line-height: 1.3;
}
.btn{
    width: 100%;
    height: 3.375rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    background: #FF5C02;
    color: white!important;
}
.btn.bordered{
    border: 1px solid #BBBBBB;
    background: white;
    color: #252525!important;
}
.reg_logo{
    width: 10rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin-bottom: 2.4rem;*/
}
.reg_block{
    background: #FF5C02;
    /*padding-top: 3.2rem;*/
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.reg_white{
    background: white;
    padding: 2rem 0;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    position: relative;
    top: 3rem;
    transition: all 0.35s;
}
.reg_white.factive{
    top: 0;

}

.section_title{
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}
.reg_block .section_text{
    margin-bottom: 1rem;
}
.section_text{
    font-size: 0.875rem;
    color: #777777;
    margin-bottom: 2.3rem;
}
.section_text span{
    color: black;
}
.form-group{
    margin-bottom: 1.1rem;
}
.form_label{
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}
.form-control{
    border: 1px solid #D2D2D2;
    width: 100%;
    background: white;
    height: 3.125rem;
    border-radius: 12px;
    font-size: 0.875rem;
    padding: 0 1.1rem;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    color: black;
}
.form-control::placeholder{
    color: #A4A4A4;
}
.policy{
    font-size: 0.75rem;
    /*margin-top: 2.2rem;*/
    line-height: 1.4;
    /*margin-bottom: 1.9rem;*/
    color: #777777;
}
.policy a{
    color: #777777;
    text-decoration: underline;
}
.reg_form_bottom{
    text-align: center;
    font-size: 0.875rem;
    padding-top: 0.4rem;
    color: #777777;
}
.reg_form_bottom a{
    color: black;
    font-weight: 700;
}
.form_icon{
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 1.4rem;
    transition: all 0.35s;
    opacity: 0;
    pointer-events: none;
}
.form_icon.pass_view{
    opacity: 1;
    pointer-events: painted;
}
.pass_view .in_active{
    display: none;
}
.pass_view.active .in_active{
    display: block;
}
.pass_view.active .active{
    display: none;
}
.form-group.has_error .form-control{
    border-color: #ED0230;
}
.form-group.has_success .form-control{
    border-color: #01A779;
}

.form-group.has_success .form_icon, .form-group.has_error .form_icon{
    opacity: 0!important;
}
.form-group.has_success .form_icon.success{
    opacity: 1!important;
}
.form-group.has_error .form_icon.error{
    opacity: 1!important;
}
.form-group.has_error .form_error_text{
    display: block;
}
.form_error_text{
    margin-top: 0.5rem;
    color: #ED0230;
    font-size: 0.875rem;
    display: none;
    font-weight: 500;
}
.auth_form .result{
    text-align: center;
    margin-bottom: 0.875rem;
}
.auth_form .result p{
    margin: 0;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 600;
}
.auth_form .result p[style*="red"]{
    background: rgba(237, 2, 48, 0.08);
    color: #ED0230 !important;
    border: 1px solid rgba(237, 2, 48, 0.18);
}
.auth_form .result p:not([style*="red"]){
    background: rgba(1, 167, 121, 0.08);
    color: #01A779;
    border: 1px solid rgba(1, 167, 121, 0.18);
}
.forgot_code .form-control{
    padding: 0;
    text-align: center;
    font-weight: 700;
    font-size: 1.4rem;
    width: 22%;
}
.modal .section_title{
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.modal .section_text{
    margin-bottom: 1.5rem;
}
header{
    position: static;
    padding-top: 1.7rem;
}
.logo{
    display: block;
    width: 11rem;
}
.header_right a{
    width: 1.75rem;
    margin-left: 1rem;
}
.show_filter_btn{
    background: #FF5C02;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.show_filter_btn img{
    width: 1.25rem;
}
.search_form{
    width: calc(100% - 3.5rem);
    position: relative;
    background: #F5F5F5;
    border-radius: 30px;
    overflow: hidden;
}
.search_form input{
    background: transparent;
    width: 100%;
    font-family: "Manrope", sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    height: 3rem;
    padding: 0 1rem;
    padding-left: 3.2rem;
}
.search_form input::placeholder{
    color: #777777;
}
.search_form button{
    position: absolute;
    left: 0;
    top: 0;
    /* transform: translateY(-50%); */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 3rem;
    background: transparent;
}
.search_form button img{
    width: 1.25rem;
}
.search_box{
    margin-top: 1.5rem;
}
.sale_item{
    color: white;
    /*width: 18.7rem;*/
    height: 11.7rem;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.2rem 1.2rem;
}
.sale_item.black{
    color: black;
}
.sales_slider{
    overflow: unset!important;
}
section{
    padding-top: 2rem;
}
#main_collections .sale_title{
    font-size: 1.1rem;
}
.sale_title{
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}
.sale_text{
    font-size: 0.75rem;
    opacity: 0.75;
}
.sale_btn{
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    padding: 0.75rem 1rem;
    border-radius: 30px;
    background: white;
    color: #2A008C;
}
.sale_item.black_color{
    color: black;
}
#main_banner_1 .sale_btn{
    color: #ED0230;
}
#main_banner_2 .sale_btn{
    color: #4A4A4A;
}
#main_banner_3 .sale_btn{
    color: #4A4A4A;
}
#main_banner_4 .sale_btn{
    color: #C74700;
}
.orange .sale_btn{
    color: #8D3200;
}
.sale_top, .sale_bottom{
    position: relative;
    z-index: 1;
}
.section_title_sm{
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
}
.all_link{
    color: var(--primary-color)!important;
    display: flex;
    align-items: center;
}
.all_link img{
    width: 1.063rem;
    margin-left: 0.4rem;
}
.title_flex{
    margin-bottom: 1.2rem;
}
.main_cat_slider{
    overflow: unset!important;
}
.main_cat_slider .swiper-slide {
    width: 4.5rem;
}
.main_cat_item{
    display: block;
}
.main_cat_img{
    height: 4.5rem;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    overflow: hidden;
}
.main_cat_title{
    margin-top: 0.5rem;
    text-align: center;
    font-weight: 700;
    font-size: var(--size12);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}
.main_cat_meta{
    margin-top: 0.2rem;
    text-align: center;
    font-size: 0.6875rem;
    color: #9A9A9A;
    line-height: 1.3;
}

.main_products .swiper-slide{
    width: 11.25rem;
}
.main_products{
    overflow: unset!important;
}
.prod_item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.prod_img{
    height: 11.25rem;
    border-radius: 8px;
    overflow: hidden;
    /*background: #E8E8E8;*/
    position: relative;
}
.prod_fav{
    position: absolute;
    right: 0.1rem;
    top: 0.3rem;
    z-index: 1;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.35s;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prod_fav.active{
    background: #ED0230;
}
.prod_fav img{
    width: 1rem;
    display: block;
}
.prod_add{
    width: 2rem;
    height: 2rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 1px 2px 0px #FF5C021A;
}
.prod_add img{
    width: 1.25rem;
}
.prod_price{
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.15rem;
}
.prod_old_price{
    color: #BBBBBB;
    font-weight: 700;
    font-size: var(--size14);
    text-decoration: line-through;
}
.prod_title{
    font-weight: 800;
    margin-top: 0.6rem;
    min-height: 2.5rem;
}
.prod_cat{
    font-size: var(--size12);
    font-weight: 400;
    text-transform: lowercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.07rem;
    opacity: 0.5;
    margin-top: 0.6rem;
}
.prod_bottom{
    margin-top: 0.9rem;
}

.products_row .prod_img{
    height: 10.313rem;
    border-radius: 12px;
}

.brands{
    overflow: unset!important;
}
.brands .swiper-slide{
    width: 4rem;
}
.brand_item{
    display: block;
    height: 4rem;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #E8E8E8
}
.reviews{
    overflow: unset!important;
}
.reviews .swiper-slide{
    width: 18.75rem;
}
.rev_item {
    border: 1px solid #E8E8E8;
    border-radius: 20px;
    overflow: hidden;
    background: white;
}
.rev_pad{
    padding: 1.3rem 1.3rem;
}
.rev_top{
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
}
.rev_top img{
    width: var(--size14);
    margin-right: 0.35rem;
}
.rev_prod_img{
    border-radius: 8px;
    overflow: hidden;
    height: 4rem;
    width: 4rem;
}

.rev_prod_text{
    width: calc(100% - 4rem);
    padding-left: 1.2rem;
}
.rev_prod_text .prod_cat{
    margin-top: 0;
    margin-bottom: 0.4rem;
}
.rev_prod_text .prod_title{
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 0.7rem;
}
.rev_prod_ratings{
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: var(--size12);
}
.rev_prod_ratings img{
    width: var(--size14);
}
.rev_prod_ratings span{
    margin: 0 0.4rem;
}
.rev_counts{
    color: #A4A4A4;
}
.rev_pad.border{
    border-top: 1px solid #E8E8E8;
    padding-top: 0;
}
.rr_icon{
    background: #FFDB431A;
    color: #FF9D02;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: var(--size14);
    font-weight: 700;
    margin-right: 1.2rem;
}
.rr_title{

}
.rr_title span{
    font-size: var(--size14);
    font-weight: 700;
    margin-bottom: 0.2rem;
    display: block;
}
.rr_title img{
    width: 0.688rem;
    margin-right: 0.1rem;
}
.rr_date{
    font-weight: 700;
    font-size: 0.625rem;
    color: #BBBBBB;
}
.rev_list_item{
   padding-top: 1.7rem;
}
.rr_content{
    font-size: var(--size12);
    margin-top: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;   /* 2 Р¶РѕР» */
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #606060;
}
.full_rev{
    display: flex;
    align-items: center;
    font-size: var(--size14);
    font-weight: 700;
    justify-content: center;
    padding: 1.2rem 0;
}
.full_rev img{
    width: 0.763rem;
    margin-left: 0.3rem;
    filter: brightness(0) invert(0);
}
.big_journal{
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1.25rem;
    height: 12.5rem;
    overflow: hidden;
    position: relative;
    border-radius: 24px;
    display: block;
}
.big_journal_title{
    position: relative;
    z-index: 1;
}
.journal_slider{
    overflow: unset!important;
}
.journal_slider .swiper-slide{
    width: 11.25rem;
}
.journal_item{
    display: block;
}
.journal_slider{
    margin-top: 1rem;
}
.journal_img{
    height: 11.25rem;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 0.6rem;
}
.journal_title{
    font-size: var(--size14);
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;   /* 2 Р¶РѕР» */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gif_cart_item{
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    height: 22.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.45rem;
    color: white;
}
.gif_cart_item .section_text{
    color: white;
    font-size: var(--size12);
    line-height: 1.3;
    opacity: 0.75;
}
.gif_cart_item .section_title_sm{

}
.btn.white{
    background: white;
    color: #C74700!important;
    height: 2.75rem;
    /*font-size: var(--size12);*/
}
.gif_cart_item_top, .gif_cart_item_bottom{
    position: relative;
    z-index: 1;
}

.address_item{
    border-radius: 16px;
    border: 1px solid #E8E8E8;
    padding: 1rem;
}
.address_img{
    height: 10.125rem;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}
.address_title{
    font-weight: 700;
    margin-bottom: 0.9rem;
}
.address_address{
    font-size: var(--size14);
    margin-bottom: 1.1rem;
    color: #606060;
}
.address_phone a{
    color: #606060;
}
.address_phone{
    font-size: var(--size14);
    display: flex;
    flex-direction: column;
    margin-bottom: 0.7rem;
}
.address_slider{
    overflow: unset!important;
}
.address_slider .swiper-slide{
    width: 20rem;
}
.address_work{
    font-size: var(--size12);
    font-weight: bold;
    background: #F5F5F5;
    border-radius: 8px;
    margin-top: 1.3rem;
    padding: 0.6rem 0.9rem;
}
.address_work_left{

}
.address_work_left img{
    width: 1.25rem;
    margin-right: 0.8rem;
}
.address_map_link{
    color: var(--primary-color);
}

.bottom_menu{
    display: flex;
    justify-content: space-between;
    border-radius: 999px;
    padding: 0.25rem;
    box-shadow: 0px 0px 4px 0px #00000033;
    background: #FFFFFFB8;
}
.bottom_menu a{
    width: 25%;
    display: block;
    font-size: 0.688rem;
    font-weight: 600;
    border-radius: 999px;
    text-align: center;
    padding: 0.6rem 0;
}
.bottom_menu a.active{
    background: #FF5C02;
    color: white;
}
.bottom_menu a.active img{
    filter: brightness(0) invert(1);
}
.bottom_menu_icon{
    width: 1.375rem;
    height: 1.375rem;
    margin: 0 auto;
    margin-bottom: 0.3rem;
    position: relative;
}
.bottom_menu_badge{
    position: absolute;
    top: -0.375rem;
    right: -0.625rem;
    min-width: 1rem;
    height: 1rem;
    padding: 0 0.25rem;
    border-radius: 999px;
    background: #FF5C02;
    color: #FFFFFF;
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1rem;
    text-align: center;
    display: none;
}
.bottom_menu_badge.is_visible{
    display: block;
}
.fixed_menu{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0.3rem;
    padding: 0 15px;
    z-index: 25;
}
.page_back{
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page_back img{
    width: 1.5rem;
}

.page_header .search_box{
    margin: 0;
    width: calc(100% - 3.5rem);
}
.page_header .search_form{
    width: calc(100% - 3.5rem);
}
.page_header .show_filter_btn{
    background: #F5F5F5;
    width: 3rem;
    height: 3rem;
}
.page_header .show_filter_btn img{
    filter: brightness(0) invert(0);
}
.page_header .search_form input{
    height: 3rem;
}
.sort_show_flex{
    font-size: var(--size14);
}
.sort_show_flex img{
    width: 1rem;
    margin-left: 0.35rem;
}
.catalog_sort{
    position: relative;
}
.catalog_sort_dropdown{
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    min-width: 11.5rem;
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 1rem;
    padding: 0.5rem;
    box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.08);
    display: none;
    z-index: 15;
}
.catalog_sort.is_open .catalog_sort_dropdown{
    display: flex;
    flex-direction: column;
}
.catalog_sort_dropdown a{
    display: block;
    padding: 0.7rem 0.75rem;
    color: #252525;
    font-size: 0.875rem;
    line-height: 1.3;
    border-radius: 0.75rem;
}
.catalog_sort_dropdown a.active{
    background: #F5F5F5;
    font-weight: 700;
}
.products_count{
    font-size: var(--size14);
    color: #8E8E8E;
}
.page_fixed_header{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    background: white;
    z-index: 25;
    padding: 1rem 0;
}
.page_top_padding{
    padding-top: 5.5rem;
}
.sort_flex{
    margin-bottom: 1.5rem;
}
.selected_filters{
    margin-bottom: 1rem;
    overflow: unset;
}
.selected_filters .swiper-slide{
    width: auto;
}
.selected_filters a{
    width: auto;
    display: inline-flex;
    padding: 0 0.7rem;
    height: 2.313rem;
    align-items: center;
    font-weight: 700;
    font-size: var(--size14);
    background: var(--primary-color);
    color: white;
    border-radius: 30px;
}
.selected_filters a.is_breadcrumb{
    background: #F5F5F5;
    color: #606060;
}
.selected_filters a.is_breadcrumb.is_active{
    background: var(--primary-color);
    color: #FFFFFF;
}
.selected_filters a img{
    width: 1rem;
    margin-left: 0.3rem;
}

.category_nav{
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0 15px;
    padding-bottom: 0.35rem;
    margin: 0 -15px;
    margin-bottom: 1rem;
    scrollbar-width: none;
}
.category_nav::-webkit-scrollbar{
    display: none;
}
.category_nav_chip{
    flex: 0 0 auto;
    min-height: 2.25rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: #F5F5F5;
    color: #606060;
    font-size: 0.8125rem;
    font-weight: 700;
    white-space: nowrap;
}
.category_nav_chip.active{
    background: var(--primary-color);
    color: #FFFFFF;
}

.filter_page{
    display: none;
    min-height: 100vh;
    background: transparent;
    position: relative;
    /*padding-top: 5rem;*/
    padding-bottom: 0;
}
.filter_page.is_open{
    display: block;
    position: fixed;
    inset: 0;
    z-index: 120;
    overflow-y: auto;
}
.filter_backdrop{
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(0.375rem);
    z-index: 40;
}
.filter_page .filter_box{
    position: relative;
    z-index: 45;
    background: #FFFFFF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 0;
    overflow: hidden;
    /*border-top-right-radius: 1.5rem;*/
    /*border-top-left-radius: 1.5rem;*/
}

.filter_header{
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E8E8E8;
    margin-bottom: 0;
}
/*.filter_back_btn{*/
/*    width: 1.5rem;*/
/*    height: 1.5rem;*/
/*    padding: 0;*/
/*    border: 0;*/
/*    background: transparent;*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    flex-shrink: 0;*/
/*}*/
/*.filter_back_btn img{*/
/*    width: 1rem;*/
/*    filter: brightness(0) invert(0);*/
/*}*/
.filter_top_title{
    flex: 1 1 auto;
    font-size: 1.25rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.filter_reset{
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--primary-color);
}
.filter_content{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 8.5rem;
}
.filter_section{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.filter_label{
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700;
    color: #8E8E8E;
}
.filter_chips{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.filter_chip{
    cursor: pointer;
    min-height: 2.5625rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: #E8E8E8;
    color: #252525;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.filter_chip.active{
    background: var(--primary-color);
    color: #FFFFFF;
}
.filter_chip_remove{
    font-size: 1rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.filter_chip input{
    display: none;
}
.filter_chip:has(input:checked){
    background: var(--primary-color);
    color: #FFFFFF;
    /*padding-right: 0.75rem;*/
}
.filter_chip:not(:has(input:checked)) .filter_chip_remove{
    display: none;
}
.filter_price_inputs{
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
}
.filter_price_field{
    height: 3rem;
    border-radius: 0.75rem;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
}
.filter_price_prefix{
    font-size: 0.875rem;
    line-height: 1.1;
    color: #777777;
    font-weight: 500;
}
.filter_price_separator{
    font-size: 0.875rem;
    line-height: 1.1;
    color: #777777;
    font-weight: 500;
}
.filter_price_field input{
    border: 0;
    background: transparent;
    width: 100%;
    padding: 0;
    font-family: "Manrope", sans-serif;
    font-size: 0.875rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.filter_price_field input:focus{
    outline: none;
}
.filter_range{
    position: relative;
    height: 2rem;
    margin-top: 0.125rem;
}
.filter_range_input{
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    margin: 0;
    cursor: pointer;
    z-index: 3;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
}
.filter_range_input::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    background: transparent;
    border: 0;
    pointer-events: auto;
}
.filter_range_input::-moz-range-thumb{
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    background: transparent;
    border: 0;
    pointer-events: auto;
}
.filter_range_track,
.filter_range_active{
    position: absolute;
    top: 0.875rem;
    height: 4px;
    border-radius: 2px;
}
.filter_range_track{
    left: 0;
    right: 0;
    background: #E8E8E8;
}
.filter_range_active{
    left: 20%;
    right: 35%;
    background: var(--primary-color);
}
.filter_range_thumb{
    position: absolute;
    top: 1rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.filter_range_thumb-start{
    left: 20%;
}
.filter_range_thumb-end{
    left: 65%;
}
.filter_range_values{
    display: flex;
    justify-content: space-between;
    margin-top: -0.125rem;
}
.filter_range_values span{
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 700;
    color: #8E8E8E;
}
.filter_skin_grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}
.filter_option_card{
    position: relative;
    cursor: pointer;
    min-height: 3rem;
    border: 1px solid #E8E8E8;
    border-radius: 0.75rem;
    padding: 0.75rem 0.75rem 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.filter_option_card input{
    position: absolute;
    inset: 0;
    opacity: 0;
    margin: 0;
    cursor: pointer;
}
.filter_option_text{
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.875rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.filter_option_circle{
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    border: 1px solid #E8E8E8;
    background: #FFFFFF;
    flex-shrink: 0;
    position: relative;
}
.filter_option_card input:checked ~ .filter_option_circle:after{
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 999px;
    background: var(--primary-color);
}
.filter_category_list{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.filter_category_group{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.filter_category_details{
    border: 1px solid #ECE7E2;
    border-radius: 1rem;
    background: #FFFFFF;
    padding: 0;
    overflow: hidden;
}
.filter_category_details[open]{
    border-color: #E4D8CC;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.04);
}
.filter_category_summary{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.95rem 1rem;
}
.filter_category_summary::-webkit-details-marker{
    display: none;
}
.filter_category_summary_main{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}
.filter_category_summary_text{
    font-size: 0.9375rem;
    line-height: 1.2;
    font-weight: 700;
    color: #252525;
}
.filter_category_summary_count{
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.4rem;
    border-radius: 999px;
    background: #F4EFEA;
    color: #8B7F73;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.filter_category_summary_icon{
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid #9A938D;
    border-bottom: 2px solid #9A938D;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-right: 0.2rem;
}
.filter_category_details[open] .filter_category_summary_icon{
    transform: rotate(-135deg);
}
.filter_category_body{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 0.75rem 0.75rem;
    border-top: 1px solid #F2ECE7;
}
.filter_category_children{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 0.875rem;
    margin-left: 0.35rem;
    border-left: 2px solid #F1E7DE;
}
.filter_checkbox_row_parent .filter_checkbox_text{
    font-weight: 700;
    color: var(--primary-color);
}
.filter_checkbox_row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    position: relative;
    cursor: pointer;
    min-height: 2.75rem;
    padding: 0.7rem 0.85rem;
    border-radius: 0.875rem;
    background: #FFFFFF;
    border: 1px solid #ECE7E2;
}
.filter_checkbox_text{
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.875rem;
    line-height: 1.25;
    font-weight: 600;
    color: #4E4A46;
}
.filter_checkbox_row input{
    position: absolute;
    inset: 0;
    opacity: 0;
    margin: 0;
    cursor: pointer;
}
.filter_checkbox_icon{
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 0.4rem;
    border: 1px solid #D4CCC4;
    background: #FFFFFF;
    flex-shrink: 0;
    position: relative;
}
.filter_checkbox_row:has(input:checked) .filter_checkbox_text{
    color: #252525;
}
.filter_checkbox_row:has(input:checked){
    border-color: #FFCFB1;
    background: #FFF8F2;
}
.filter_checkbox_row input:checked + .filter_checkbox_icon{
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.filter_checkbox_row input:checked + .filter_checkbox_icon:after{
    content: "";
    position: absolute;
    left: 7px;
    top: 4px;
    width: 3px;
    height: 7px;
    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    transform: rotate(45deg);
}
.filter_footer{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 46;
    margin-top: auto;
    padding: 1.5rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid #E8E8E8;
    background: #FFFFFF;
}
.filter_submit_btn{
    width: 100%;
    height: 3.375rem;
    font-size: 1rem;
    line-height: 1.4;
    border-radius: 999px;
}
body.filter_modal_open{
    overflow: hidden;
}
body.filter_modal_open .fixed_menu{
    display: none;
}

.product_card_page{
    min-height: 100vh;
    background: #FFFFFF;
    padding-bottom: 9.5rem;
    padding-top: 4.75rem;
}
.product_card_page .fixed_menu{
    display: none;
}
.product_card_topbar{
    background: #FFFFFF;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid #E8E8E8;
}
.product_card_toolbar{
    padding-top: 1.125rem;
    padding-bottom: 0.75rem;
}
.product_card_toolbar_actions{
    gap: 1rem;
}
.product_card_icon_btn{
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: #F5F5F5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.product_card_icon_btn img{
    width: 1.5rem;
    height: 1.5rem;
}
.prod_card_fav svg path{
    transition: all 0.35s;
}
.prod_card_fav.active svg path{
    fill: #ED0230;
}
.product_card_hero{
    /*height: 23.4375rem;*/
    background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}
.product_card_hero:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 7rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}
.product_card_hero_image{
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product_card_hero_image img{
    width: 100%;
    display: block;
}
.product_card_content{
    position: relative;
    z-index: 2;
    margin-top: -0.25rem;
    background: #FFFFFF;
}
.product_card_content .container{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.product_card_intro{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.product_card_category{
    font-size: 0.75rem;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 0.075rem;
    text-transform: lowercase;
    color: #252525;
    opacity: 0.5;
}
.product_card_title{
    font-size: 1.6rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.product_card_rating{
    gap: 0.75rem;
    flex-wrap: wrap;
}
.product_card_stars{
    gap: 0;
}
.product_card_stars img{
    width: 1rem;
    margin-right: 0.2rem;
}
.product_card_stars img.gray{
    filter: grayscale(1);
    opacity: 0.6;
}
.product_card_rating_value{
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.product_card_rating_count{
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
    color: #A4A4A4;
}
.product_card_price{
    gap: 0.75rem;
    flex-wrap: wrap;
}
.product_card_price_current{
    font-size: 1.75rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.035rem;
}
.product_card_price_old{
    font-size: 1.125rem;
    line-height: 1.1;
    font-weight: 700;
    color: #A4A4A4;
    text-decoration: line-through;
}
.product_card_section{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.product_card_section_head{
    gap: 1rem;
}
.product_card_section_title{
    font-size: 1.25rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
    margin-bottom: 0;
}
.product_card_text{
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #606060;
}
.product_card_section_description{
    margin-bottom: -1rem;
}

.product_card_usage{
    background: #F5F5F5;
    border-radius: 1rem;
    padding: 1.5rem;
    padding-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
}
.product_card_usage_head{
    width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    gap: 1rem;
    text-align: left;
    cursor: pointer;
    padding-bottom: 1rem;
}
.product_card_usage_title{
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
    margin-bottom: 0;
}
.product_card_usage_arrow{
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
    transform: rotate(-180deg);
}
.product_card_usage_arrow img{
    width: 1rem;
    height: 1rem;
}
.product_card_usage_body{
    display: none;
}
.product_card_usage:not(.is_open) .product_card_usage_body{
    display: none;
}
.product_card_usage:not(.is_open) .product_card_usage_arrow{
    transform: rotate(0deg);
}
.product_card_tags{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.product_card_tag{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.0625rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid #E8E8E8;
    background: #FFFFFF;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #252525;
}
.product_card_all_reviews{
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--primary-color);
}
.product_card_review{
    border: 1px solid #E8E8E8;
    border-radius: 1rem;
    background: #FFFFFF;
    padding: 1rem 0.75rem 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.product_card_review_head{
    gap: 0.75rem;
    align-items: flex-start;
}
.product_card_review_avatar{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(255, 219, 67, 0.1);
    color: #FF9D02;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 700;
    flex-shrink: 0;
}
.product_card_review_meta{
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 0.125rem;
}
.product_card_review_top{
    gap: 0.75rem;
    align-items: flex-start;
}
.product_card_review_name{
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 700;
    color: #252525;
}
.product_card_review_date{
    font-size: 0.625rem;
    line-height: 1.5;
    font-weight: 700;
    color: #BBBBBB;
    white-space: nowrap;
    margin-left: auto;
}
.product_card_review_stars{
    gap: 0;
}
.product_card_review_stars img{
    width: 0.75rem;
    margin-left: 0.2rem;
}
.product_card_review_stars img.gray{
    filter: grayscale(1);
    opacity: 0.6;
}
.product_card_review_text{
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 500;
    color: #606060;
    padding-left: 3.25rem;
}
.product_card_buybar{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFFFFF;
    border-top: 1px solid #E8E8E8;
    z-index: 30;
    padding-top: 1.5rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
}
.product_card_buybar_inner{
    gap: 0.75rem;
}
.product_card_qty{
    height: 3.375rem;
    background: #F5F5F5;
    border-radius: 999px;
    padding: 0.25rem;
    gap: 1rem;
    flex-shrink: 0;
}
.product_card_qty_btn{
    width: 2.875rem;
    height: 2.875rem;
    border-radius: 999px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.product_card_qty_btn img{
    width: 1.25rem;
    height: 1.25rem;
}
.product_card_qty_value{
    font-size: 1.125rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
    min-width: 0.75rem;
    text-align: center;
}
.product_card_buy_btn{
    flex: 1 1 auto;
    height: 3.375rem;
    font-size: 1rem;
    line-height: 1.4;
    border-radius: 999px;
}
.cart_toast_alert{
    position: fixed;
    right: 0.75rem;
    bottom: 5.5rem;
    z-index: 120;
    max-width: 16rem;
    border-radius: 1rem;
    background: #252525;
    color: #FFFFFF;
    padding: 0.875rem 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.18);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
    transform: translateX(calc(100% + 1rem));
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.cart_toast_alert.is_visible{
    transform: translateX(0);
    opacity: 1;
}
body:has(.product_card_page){
    overflow-x: hidden;
}
body:has(.product_card_page) .fixed_menu{
    display: none;
}

.journal_card_page{
    min-height: 100vh;
    background: #FFFFFF;
    padding-top: 4.5rem;
    padding-bottom: 7rem;
}
.journal_card_topbar{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 25;
    background: #FFFFFF;
    border-bottom: 1px solid #E8E8E8;
}
.journal_card_toolbar{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.journal_card_icon_btn{
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: #F5F5F5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.journal_card_icon_btn img{
    width: 1.5rem;
    height: 1.5rem;
}
.journal_card_hero{
    height: 20rem;
    overflow: hidden;
    background: #F5F5F5;
}
.journal_card_hero img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.journal_card_content{
    background: #FFFFFF;
    padding-top: 1.5rem;
}
.journal_card_content .container{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.journal_card_intro{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.journal_card_badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 92, 2, 0.1);
    font-size: 0.625rem;
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: 0.03125rem;
    color: var(--primary-color);
    width: fit-content;
}
.journal_card_title{
    font-size: 1.6rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.0375rem;
    color: #252525;
    margin-bottom: 0;
}
.journal_card_text{
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #606060;
    margin-bottom: 0;
}
.journal_card_section{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.journal_card_section_title{
    font-size: 1.25rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.journal_card_richtext{
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #606060;
}
.journal_card_richtext p{
    margin-bottom: 0.75rem;
}
.journal_card_richtext p:last-child{
    margin-bottom: 0;
}


.journal_card_products{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.journal_card_products_head{
    gap: 1rem;
}
.journal_card_richtext{
    margin-bottom: -1rem;
}
.journal_card_products_title{
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #252525;
}
.journal_card_products_all{
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 500;
    color: var(--primary-color);
    white-space: nowrap;
}


.fancybox-content{
    width: 100%!important;
}
.fancybox-slide{
    padding-left: 0!important;
    padding-right: 0!important;
}
.journal_card_video{
    position: relative;
    display: block;
    height: 16.25rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #E8E8E8;
}
.journal_card_video_image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.journal_card_video_overlay{
    position: absolute;
    inset: 0;
    background: rgba(255, 92, 2, 0.4);
}
.journal_card_video_button{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4rem;
    height: 4rem;
    margin-left: -2rem;
    margin-top: -2rem;
    border-radius: 999px;
    background: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.journal_card_video_button img{
    width: 2rem;
    height: 2rem;
}
body:has(.journal_card_page){
    overflow-x: hidden;
}

.collection_card_page{
    min-height: 100vh;
    background: #FFFFFF;
    padding-top: 4.5rem;
}
.collection_card_topbar{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 25;
    background: #FFFFFF;
    border-bottom: 1px solid #E8E8E8;
}
.collection_card_heading{
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.collection_card_back{
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.collection_card_back img{
    width: 1.5rem;
    height: 1.5rem;
}
.collection_card_title{
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #252525;
}
.collection_card_body{
    padding-top: 1.8rem;
    padding-bottom: 2rem;
}
.collection_card_count{
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #8E8E8E;
    margin-bottom: 1.25rem;
}
.collection_card_list{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.collection_card_item{
    height: 11.875rem;
    padding: 1.25rem;
    border-radius: 1.5rem;
}

.collection_card_item_pink{
    color: #FFFFFF;
}
body:has(.collection_card_page){
    overflow-x: hidden;
}

.journal_overview_page,
.journal_categories_page{
    min-height: 100vh;
    background: #FFFFFF;
    padding-top: 4.5rem;
}
.journal_overview_topbar{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 25;
    background: #FFFFFF;
    border-bottom: 1px solid #E8E8E8;
}
.journal_overview_heading{
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.journal_overview_back{
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.journal_overview_back img{
    width: 1.5rem;
    height: 1.5rem;
}
.journal_overview_title{
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
    color: #252525;
}
.journal_overview_body{
    padding-top: 1rem;
    padding-bottom: 2rem;
}
.journal_overview_hero{
    margin-bottom: 2rem;
}
.journal_overview_hero.big_journal{
    color: #252525;
    height: 12.5rem;
    padding: 1.25rem;
    margin-bottom: 0;
}
.journal_overview_hero .big_journal_title{
    font-size: 1.875rem;
    line-height: 1.1;
    font-weight: 700;
}
.journal_overview_hero_light:after{
    display: none;
}
.journal_overview_group{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}
.journal_overview_group:first-child{
    margin-top: 0;
}
.journal_overview_group_title{
    font-size: 1.4rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.journal_overview_grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.75rem;
}
.journal_overview_img{
    height: 11.25rem;
    margin-bottom: 0.5rem;
}
.journal_overview_grid .journal_title{
    font-size: 1rem;
    line-height: 1.35;
}
.journal_categories_body{
    padding-top: 1.8rem;
}
.journal_categories_search{
    width: 100%;
    margin-bottom: 1.225rem;
}
.journal_categories_search.search_form{
    width: 100%;
}
.journal_categories_chips{
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0 15px;
    padding-bottom: 0.25rem;
    margin: 0 -15px;
    margin-bottom: 2rem;
    scrollbar-width: none;
}
.journal_categories_chips::-webkit-scrollbar{
    display: none;
}
.journal_categories_chips .filter_chip{
    flex-shrink: 0;
    min-height: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    background: var(--primary-color);
    color: #FFFFFF;
}
.journal_categories_chips .filter_chip.active{
    background: #E8E8E8;
    color: #252525;
}
.journal_categories_grid{
    gap: 1rem 0.5rem;
}
body:has(.journal_overview_page),
body:has(.journal_categories_page){
    overflow-x: hidden;
}

.shop_screen_topbar{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 25;
    background: #FFFFFF;
    border-bottom: 1px solid #E8E8E8;
}
.shop_screen_topbar_with_back .shop_screen_heading{
    justify-content: flex-start;
}
.shop_screen_heading{
    min-height: 5.25rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    gap: 1rem;
}
.shop_screen_title{
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
    color: #252525;
}
.shop_screen_icon_btn{
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: #F5F5F5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.shop_screen_icon_btn img{
    width: 1.375rem;
    height: 1.375rem;
}
.shop_screen_back{
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.shop_screen_back img{
    width: 1.5rem;
    height: 1.5rem;
}
.shop_bottom_cta{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFFFFF;
    border-top: 1px solid #E8E8E8;
    z-index: 30;
    padding-top: 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
}
.shop_bottom_cta_btn strong{
    margin-left: 0.5rem;
}
.shop_bottom_cta_single{
    justify-content: center;
}
.shop_summary{
    margin-top: 1rem;
}
.shop_summary_row{
    padding: 0.5rem 0;
    color: #8E8E8E;
    font-size: 0.875rem;
    line-height: 1.5;
}
.shop_summary_row strong{
    color: #252525;
    font-size: 0.875rem;
    max-width: 60%;
    text-align: right;
}
.shop_summary_green{
    color: #01A779!important;
}
.shop_summary_total{
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #E8E8E8;
    font-size: 1.125rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.shop_summary_total strong{
    color: var(--primary-color);
    font-size: 1.45rem;
}

.cart_empty_page,
.cart_filled_page,
.delivery_page,
.checkout_page,
.add_card_page,
.order_success_page,
.order_tracking_page{
    min-height: 100vh;
    background: #FFFFFF;
}
.cart_empty_page,
.cart_filled_page,
.checkout_page,
.add_card_page,
.order_tracking_page{
    padding-top: 5.25rem;
    padding-bottom: 7rem;
}
.delivery_page{
    padding-top: 5.25rem;
    padding-bottom: 6.75rem;
}
.order_success_page{
    padding-bottom: 7rem;
}

.cart_empty_body{
    padding-top: 1.25rem;
    padding-bottom: 0.2rem;
}
.cart_empty_visual{
    margin-bottom: 1rem;
}


.cart_empty_textbox{
    text-align: center;
    margin-top: -0.5rem;
}
.cart_empty_title{
    font-size: 1.25rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.cart_empty_text{
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #8E8E8E;
}
.cart_empty_categories_head{
    margin-top: 2rem;
}
.cart_empty_categories_title{
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.cart_empty_all_link{
    font-size: 1rem;
    color: var(--primary-color);
}
.cart_empty_categories_row{
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    margin-top: 1rem;
    padding-bottom: 0.25rem;
}
.cart_empty_category{
    min-width: 4rem;
    text-align: center;
    color: #252525;
    font-size: 0.75rem;
}
.cart_empty_category_icon{
    display: block;
    width: 4rem;
    height: 4rem;
    border: 1px solid #E8E8E8;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.cart_empty_category_icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart_empty_banner{
    display: block;
    margin-top: 2rem;
    min-height: 9.25rem;
    border-radius: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #7D41FF 0%, #9E58FF 50%, #6D42FF 100%);
    color: #FFFFFF;
}
.cart_empty_banner_title{
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 700;
}
.cart_empty_banner_text{
    margin-top: 0.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
}
.cart_empty_banner_btn{
    display: inline-flex;
    margin-top: 1.5rem;
    background: #FFFFFF;
    color: #5530B5;
    border-radius: 999px;
    padding: 0.875rem 1.25rem;
    font-weight: 700;
}

.cart_filled_body{
    padding-top: 1.25rem;
}
.cart_filled_clear{
    font-size: 1rem;
    color: #A4A4A4;
    font-weight: 700;
}
.cart_send_bottom{
    margin-top: 1.5rem;
}
.cart_filled_list{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.cart_filled_item{
    border: 1px solid #E8E8E8;
    border-radius: 1rem;
    padding: 0.5rem;
    display: flex;
    gap: 0.875rem;
}
.cart_filled_item_img{
    width: 5.5rem;
    height: 8rem;
    border-radius: 0.75rem;
    overflow: hidden;
    /*background: #F5F5F5;*/
    flex-shrink: 0;
}
.cart_filled_item_content{
    flex: 1 1 auto;
    min-width: 0;
}
.cart_filled_item_top{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
}
.cart_filled_item_cat{
    font-size: 0.75rem;
    color: #A4A4A4;
    letter-spacing: 0.08rem;
    text-transform: lowercase;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.cart_filled_item_remove{
    color: #BBBBBB;
    font-size: 1.5rem;
    line-height: 1;
}
.cart_filled_item_remove img{
    width: 1rem;
}
.cart_filled_item_top{
    margin-bottom: 1rem;
}
.cart_filled_item_title{
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1.15;
    font-weight: 700;
    color: #252525;
}
.cart_filled_item_bottom{
    margin-top: 1rem;
}
.cart_filled_item_price{
    /*font-size: 1.75rem;*/
    line-height: 1.1;
    font-weight: 700;
    color: var(--primary-color);
}
.cart_filled_qty{
    background: #F5F5F5;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.25rem;
}
.cart_filled_qty button{
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: #FFFFFF;
    color: #8E8E8E;
    font-size: 1.5rem;
}
.cart_filled_qty span{
    min-width: 1rem;
    text-align: center;
    font-weight: 700;
}
.cart_filled_promocode{
    margin-top: 2rem;
    background: #F5F5F5;
    border-radius: 1.5rem;
    padding: 1.25rem;
}
.cart_promocode_form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cart_filled_promocode_left{
    gap: 0.75rem;
    color: #8E8E8E;
}
.cart_filled_promocode_left img{
    width: 1.25rem;
}
.cart_promocode_actions{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}
.cart_promocode_actions .promo_icon{
    position: absolute;
    width: 1rem;
    left: 1rem;
    top: 1rem;
}
.cart_promocode_input{
    width: 100%;
    min-width: 0;
    height: 3rem;
    border: 1px solid #D9D9D9;
    border-radius: 999px;
    background: #FFFFFF;
    padding: 0 1rem;
    font-size: 0.875rem;
    color: #171717;
    padding-left: 2.4rem;
}
.order_success_icon_img{
    width: 8rem;
    margin: 0 auto;
}
.cart_promocode_input::placeholder{
    color: #A0A0A0;
}
.cart_promocode_input:focus{
    border-color: var(--primary-color);
    outline: none;
}
.cart_promocode_submit{
    flex-shrink: 0;
    height: 3rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--primary-color);
    font-weight: 700;
    padding: 0 0.25rem;
    font-size: 0.9rem;
}
.cart_promocode_submit.is_disabled{
    opacity: 0.5;
}
.cart_promocode_result{
    text-align: center;
    font-size: 0.875rem;
}
.cart_promocode_result.is_success{
    color: #3C9B6D;
}
.cart_filled_promocode a{
    color: var(--primary-color);
    font-weight: 700;
}

.delivery_map{
    position: relative;
    height: 18rem;
    overflow: hidden;
}
.delivery_map:not(.active){
    display: none;
}
.delivery_map iframe{
    width: 100%!important;
    height: 100%!important;
}
.delivery_city{
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 2;
    background: #FFFFFF;
    border-radius: 999px;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
}
.delivery_pin{
    position: absolute;
    width: 1rem;
    height: 1rem;
    border-radius: 999px;
}
.delivery_pin_blue{
    left: 52%;
    top: 48%;
    background: #2A76FF;
    box-shadow: 0 0 0 6px rgba(42,118,255,0.15);
}
.delivery_pin_dark{
    left: 45%;
    top: 68%;
    background: #252525;
}
.delivery_body{
    margin-top: -1rem;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #FFFFFF 10%, #FFFFFF 100%);
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    position: relative;
    z-index: 2;
    padding-top: 1.5rem;
}
.delivery_tabs{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    background: #F5F5F5;
    border-radius: 1rem;
    padding: 0.25rem;
}
.delivery_tab{
    min-height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #8E8E8E;
}

.delivery_courier_body{
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1rem;
}
.delivery_tab.active{
    background: #FFFFFF;
    color: #252525;
    font-weight: 700;
    pointer-events: none;
}
.delivery_subtitle{
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #8E8E8E;
}
.delivery_cards{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.delivery_option{
    cursor: pointer;
    transition: all 0.5s;
}
.delivery_option,
.address_option{
    border: 1px solid #E8E8E8;
    border-radius: 1rem;
    padding: 1rem;
    background: #FFFFFF;
}
.delivery_option.active,
.address_option.active{
    border-color: var(--primary-color);
}
.delivery_option_title,
.address_option_title{
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.delivery_option_price{
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
}
.delivery_option_address,
.address_option_address{
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #606060;
}
.delivery_option_meta{
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E8E8E8;
    display: flex;
    gap: 2rem;
}
.delivery_option_meta span{
    display: block;
    font-size: 0.625rem;
    color: #A4A4A4;
}
.delivery_option_meta strong{
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #252525;
}
.delivery_note,
.delivery_courier_note{
    margin-top: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #8E8E8E;
}
.address_option_head{
    gap: 1rem;
}
.address_option_badge{
    display: inline-flex;
    margin-top: 0.5rem;
    border-radius: 999px;
    background: var(--primary-color);
    color: #FFFFFF;
    padding: 0.375rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 700;
}
.address_option_actions{
    display: flex;
    gap: 0.5rem;
}
.address_option_actions a{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: #F5F5F5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.address_option_delete{
    background: #FFF0F0!important;
}
.delivery_fab{
    position: absolute;
    right: 1rem;
    bottom: 7rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    background: var(--primary-color);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.checkout_body,
.add_card_body,
.order_tracking_body{
    padding-top: 1.5rem;
}
.checkout_block{
    margin-bottom: 2rem;
}
.checkout_block_head{
    margin-bottom: 1rem;
}
.btn.disabled{
    pointer-events: none;
    filter: grayscale(1);
    opacity: 0.8;
}
.checkout_block_title{
    font-size: 1.1rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.checkout_link{
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
}
.checkout_address_card{
    border: 1px solid #E8E8E8;
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    gap: 1rem;
}
.checkout_address_icon{
    width: 40px;
}
.payment_card_logo{
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: #FFF3EC;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.checkout_address_title{
    font-size: 1.1rem;
    font-weight: 700;
    color: #252525;
}
.checkout_address_text{
    margin-top: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #606060;
}
.payment_card{
    border: 1px solid #E8E8E8;
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.payment_card.active{
    border-color: var(--primary-color);
}
.payment_card_logo_red{
    background: #F44336;
    color: #FFFFFF;
}
.payment_card_logo_google{
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
}
.payment_card_title{
    font-size: 1.25rem;
    font-weight: 700;
    color: #252525;
}
.payment_card_text{
    margin-top: 0.25rem;
    color: #8E8E8E;
}
.payment_add_new{
    min-height: 3.5rem;
    border: 1px dashed var(--primary-color);
    border-radius: 999px;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add_card_form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}
.add_card_field label{
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #252525;
}
.add_card_field input{
    width: 100%;
    height: 3.5rem;
    border: 1px solid #D9D9D9;
    border-radius: 0.875rem;
    padding: 0 1rem;
    font-size: 1rem;
}
.add_card_grid{
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    gap: 1rem;
}
.add_card_secure{
    margin-top: 1rem;
    border: 1px solid #00B388;
    border-radius: 1rem;
    background: #E7F8F2;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.add_card_secure_icon{
    width: 2rem;
    /*height: 2rem;*/
    /*border-radius: 999px;*/
    /*border: 2px solid #00B388;*/
    /*color: #00B388;*/
    /*display: inline-flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*font-weight: 700;*/
}
.add_card_secure_title{
    font-size: 1rem;
    font-weight: 700;
    color: #00B388;
}
.add_card_secure_text{
    margin-top: 0.25rem;
    color: #00B388;
    line-height: 1.3;
    font-size: 0.875rem;
}
.add_card_secure_content{
    width: calc(100% - 2rem);
}
.order_success_body{
    padding-top: 2rem;
    padding-bottom: 0rem;
}
.order_success_icon{
    width: 7rem;
    height: 7rem;
    border-radius: 999px;
    border: 0.5rem solid #00AA84;
    background: #CFEFE7;
    color: #00AA84;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto;
}
.order_success_title{
    margin-top: 0.8rem;
    font-size: 1.45rem;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
    color: #252525;
}
.order_success_text{
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.3;
    text-align: center;
    color: #8E8E8E;
}
.order_success_info{
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.order_success_info_row{
    background: #F5F5F5;
    border-radius: 1rem;
    padding: 1.25rem;
    font-size: 0.9rem;
    color: #8E8E8E;
}
.order_success_info_row strong{
    color: #252525;
    font-size: 1rem;
}
.order_success_head{
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.order_success_block_title{
    font-size: 1.25rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.order_success_count{
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
}
.order_product_list{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.order_product_item{
    border: 1px solid #E8E8E8;
    border-radius: 1rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.order_product_img{
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #F5F5F5;
    flex-shrink: 0;
}
.order_product_title{
    font-size: 1rem;
    line-height: 1.15;
    font-weight: 700;
    color: #252525;
}
.order_product_meta{
    margin-top: 0.25rem;
    color: #606060;
}
.order_success_btn{
    margin-top: 2rem;
    height: 3.375rem;
}

.tracking_status_card{
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FF5C02 0%, #F26A00 100%);
    color: #FFFFFF;
    border-radius: 1.5rem;
    padding: 1rem;
}
.tracking_status_label{
    font-size: 0.875rem;
    opacity: 0.9;
}
.tracking_status_title{
    margin-top: 0.25rem;
    font-size: 1.25rem;
    font-weight: 700;
}
.tracking_status_icon{
    /*width: 3rem;*/
    /*height: 3rem;*/
    /*border-radius: 999px;*/
    /*background: rgba(255,255,255,0.2);*/
    /*display: inline-flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
}
.tracking_status_bottom{
    margin-top: 1.5rem;
}
.tracking_status_time{
    margin-top: 0.25rem;
    font-size: 0.9rem;
    font-weight: 700;
}
.tracking_status_map{
    background: #FFFFFF;
    color: var(--primary-color);
    border-radius: 999px;
    padding: 0.875rem 1.25rem;
    font-weight: 700;
    font-size: 0.8rem;
}
.tracking_steps{
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
.tracking_step{
    display: flex;
    gap: 1rem;
    position: relative;
    padding-bottom: 1.5rem;
}
.tracking_step:not(:last-child):after{
    content: "";
    position: absolute;
    left: 0.75rem;
    top: 2rem;
    bottom: 0;
    width: 1px;
    background: #FFB182;
}
.tracking_step_dot{
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: #F5F5F5;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.tracking_step.done .tracking_step_dot{
    background: var(--primary-color);
}
.tracking_step.current .tracking_step_dot{
    background: #FFFFFF;
    border: 4px solid var(--primary-color);
}
.tracking_step.muted .tracking_step_dot{
    background: #F0F0F0;
    color: #BBBBBB;
}
.tracking_step_title{
    font-size: 0.875rem;
    font-weight: 700;
    color: #252525;
}
.tracking_step_text{
    margin-top: 0.25rem;
    color: #8E8E8E;
    font-size: 0.8rem;
}
.tracking_step_text_orange{
    color: var(--primary-color);
    font-weight: 700;
}



.profile_main_page{
    min-height: 100vh;
    background: #FFFFFF;
    padding-top: 4.5rem;
    padding-bottom: 7rem;
}
.profile_main_topbar{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 25;
    background: #FFFFFF;
    border-bottom: 1px solid #E8E8E8;
}
.profile_main_heading{
    min-height: 5.25rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.profile_main_title{
    font-size: 1.25rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.profile_main_notify{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: #F5F5F5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.profile_main_notify img{
    width: 1.25rem;
    height: 1.25rem;
}
.profile_main_body{
    padding-top: 1.5rem;
}
.profile_main_user{
    border: 1px solid #E8E8E8;
    border-radius: 1.5rem;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.profile_main_avatar{
    width: 4.8125rem;
    height: 4.8125rem;
    border-radius: 999px;
    overflow: hidden;
    flex-shrink: 0;
}
.profile_main_avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile_main_user_name{
    font-size: 1.25rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.profile_main_user_email{
    margin-top: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #777777;
}
.profile_main_user_edit{
    margin-top: 0.375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--primary-color);
}
.profile_main_orders_head{
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.profile_group_title{
    font-size: 1.25rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.profile_group_link{
    font-size: 1rem;
    line-height: 1.1;
    color: var(--primary-color);
}
.profile_orders_slider{
    overflow: unset!important;
}
.profile_orders_slider .swiper-slide{
    width: 18.75rem;
}
.profile_order_card{
    border: 1px solid #E8E8E8;
    border-radius: 1.5rem;
    padding: 1.25rem;
    background: #FFFFFF;
}
.profile_order_card_head{
    margin-bottom: 1rem;
}
.profile_order_number{
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 700;
    color: #252525;
}
.profile_order_status{
    min-height: 1.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: #F3F3F3;
    color: #777777;
    font-size: 0.625rem;
    line-height: 1.5;
    font-weight: 700;
}
.profile_order_status.is_new{
    background: rgba(255, 92, 2, 0.12);
    color: #FF5C02;
}
.profile_order_status.is_processing{
    background: rgba(255, 176, 0, 0.14);
    color: #C98A00;
}
.profile_order_status.is_delivery{
    background: rgba(34, 123, 255, 0.12);
    color: #227BFF;
}
.profile_order_status.is_done{
    background: rgba(1, 167, 121, 0.1);
    color: #01A779;
}
.profile_order_status.is_cancelled{
    background: rgba(237, 2, 48, 0.1);
    color: #ED0230;
}
.profile_order_items{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.profile_order_item{
    border: 1px solid #E8E8E8;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #FFFFFF;
    padding: 0.375rem;
}
.profile_order_item_image{
    aspect-ratio: 1 / 1;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #FFFFFF;
}
.profile_order_item.is_deleted .profile_order_item_image{
    background: #F1F1F1;
}
.profile_order_item_title{
    margin-top: 0.375rem;
    font-size: 0.625rem;
    line-height: 1.2;
    font-weight: 700;
    color: #252525;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 1.5rem;
}
.profile_order_item_deleted{
    margin-top: 0.25rem;
    font-size: 0.5625rem;
    line-height: 1.2;
    font-weight: 700;
    color: #ED0230;
}
.profile_order_item_more{
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 92, 2, 0.1);
    border-color: #FFC9AB;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    aspect-ratio: 1 / 1;
    padding: 0;
}
.profile_order_card_bottom{
    padding-top: 1rem;
    border-top: 1px solid #E8E8E8;
}
.profile_order_date{
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 700;
    color: #8E8E8E;
}
.profile_order_price{
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--primary-color);
}
.profile_main_group{
    margin-top: 2rem;
}
.profile_group_label{
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700;
    color: #777777;
}
.profile_menu_list{
    border: 1px solid #E8E8E8;
    border-radius: 1rem;
    overflow: hidden;
    background: #FFFFFF;
}
.profile_menu_item{
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    padding: 0.875rem;
    border-top: 1px solid #E8E8E8;
}
.profile_menu_item:first-child{
    border-top: 0;
}
.profile_menu_icon{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(255, 92, 2, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.profile_menu_icon img{
    width: 1.5rem;
    height: 1.5rem;
}
.profile_menu_text{
    flex: 1 1 auto;
    min-width: 0;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.profile_menu_badge{
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: var(--primary-color);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}
.profile_menu_arrow{
    width: 1.25rem;
    height: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.profile_menu_arrow img{
    width: 1.25rem;
    height: 1.25rem;
}
.profile_logout_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.375rem;
    border: 1px solid #BBBBBB;
    border-radius: 999px;
    color: #252525;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
    margin-top: 2rem;
    opacity: 0.5;
}
body:has(.profile_main_page){
    overflow-x: hidden;
}

.profile_personal_page{
    min-height: 100vh;
    background: #FFFFFF;
    padding-top: 5.25rem;
    padding-bottom: 7rem;
}
.profile_inner_topbar{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 25;
    background: #FFFFFF;
    border-bottom: 1px solid #E8E8E8;
}
.profile_inner_heading{
    min-height: 5.25rem;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.profile_inner_back{
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.profile_inner_back img{
    width: 1.5rem;
    height: 1.5rem;
}
.profile_inner_title{
    font-size: 1.25rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.profile_personal_body{
    padding-top: 2rem;
}
.profile_personal_avatar_block{
    text-align: center;
    margin-bottom: 2rem;
}
.profile_personal_avatar{
    width: 8.75rem;
    height: 8.75rem;
    border-radius: 999px;
    overflow: visible;
    position: relative;
    margin: 0 auto;
}
.profile_personal_avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
}
.profile_personal_avatar_edit{
    position: absolute;
    right: -0.25rem;
    bottom: 0.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.profile_personal_avatar_edit img{
    width: 1.5rem;
    height: 1.5rem;
}
.profile_personal_name{
    margin-top: 1rem;
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
    color: #252525;
}
.profile_personal_phone{
    margin-top: 0.25rem;
    font-size: 1rem;
    line-height: 1.1;
    color: #8E8E8E;
}
.profile_personal_form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.profile_personal_form .result{
    text-align: center;
    margin-bottom: 0.875rem;
}
.profile_personal_form .result p{
    margin: 0;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 600;
}
.profile_personal_form .result p[style*="red"]{
    background: rgba(237, 2, 48, 0.08);
    color: #ED0230 !important;
    border: 1px solid rgba(237, 2, 48, 0.18);
}
.profile_personal_form .result p:not([style*="red"]){
    background: rgba(1, 167, 121, 0.08);
    color: #01A779;
    border: 1px solid rgba(1, 167, 121, 0.18);
}
.profile_personal_field label{
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #252525;
}
.profile_personal_input{
    min-height: 3rem;
    border: 1px solid #D2D2D2;
    border-radius: 0.75rem;
    padding: 0.9375rem 1.25rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #252525;
    background: #FFFFFF;
}
.profile_birth_input{
    padding-right: 3.75rem;
    -webkit-appearance: none;
    appearance: none;
}
.profile_birth_input::-webkit-calendar-picker-indicator{
    opacity: 0;
    pointer-events: none;
}
.profile_date_trigger{
    right: 1rem;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    border: 0;
    padding: 0;
}
.profile_date_trigger img{
    width: 1.25rem;
    height: 1.25rem;
}
.profile_personal_input_icon{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.profile_personal_input_icon img{
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}
.profile_personal_gender{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.375rem;
}
.profile_personal_gender_btn{
    min-height: 3rem;
    border-radius: 0.75rem;
    background: #F5F5F5;
    color: #252525;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile_personal_gender_btn.active{
    background: #FF5C02;
    color: #FFFFFF;
}
body:has(.profile_personal_page){
    overflow-x: hidden;
}

.profile_password_page{
    min-height: 100vh;
    background: #FFFFFF;
    padding-top: 5.25rem;
    padding-bottom: 7rem;
}
.profile_password_body{
    padding-top: 1.5rem;
}
.profile_password_form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.profile_password_form .result{
    text-align: center;
}
.profile_password_form .result p{
    margin: 0;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 600;
}
.profile_password_form .result p[style*="red"]{
    background: rgba(237, 2, 48, 0.08);
    color: #ED0230 !important;
    border: 1px solid rgba(237, 2, 48, 0.18);
}
.profile_password_form .result p:not([style*="red"]){
    background: rgba(1, 167, 121, 0.08);
    color: #01A779;
    border: 1px solid rgba(1, 167, 121, 0.18);
}
.profile_password_placeholder{
    color: #A4A4A4;
}
.profile_password_strength{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.profile_password_strength_head{
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #252525;
}
.profile_password_strength_head strong{
    color: #01A779;
    font-size: 0.875rem;
    font-weight: 700;
    transition: color 0.2s ease;
}
.profile_password_strength_bar{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
}
.profile_password_strength_bar span{
    height: 4px;
    border-radius: 999px;
    background: #E8E8E8;
    transition: background 0.2s ease;
}
.profile_password_success{
    margin-top: 1rem;
    border: 1px solid #01A779;
    border-radius: 1rem;
    background: rgba(1, 167, 121, 0.1);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.profile_password_success_icon{
    width: 2rem;
    /*height: 2rem;*/
    /*border-radius: 999px;*/
    /*border: 2px solid #01A779;*/
    /*color: #01A779;*/
    /*display: inline-flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*flex-shrink: 0;*/
    /*font-weight: 700;*/
}
.profile_password_success_text{
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 700;
    color: #01A779;
    width: calc(100% - 3.5rem);
}
.profile_password_save{
    margin-top: 1rem;
    height: 3.375rem;
}
.profile_password_cancel{
    min-height: 3.375rem;
    border: 1px solid #BBBBBB;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #252525;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
}
body:has(.profile_password_page){
    overflow-x: hidden;
}

.profile_contacts_page{
    min-height: 100vh;
    background: #FFFFFF;
    padding-top: 5.25rem;
    padding-bottom: 7rem;
}
.profile_contacts_body{
    padding-top: 1.5rem;
}
.profile_contacts_body .container{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.profile_contacts_support{
    position: relative;
    min-height: 4.5625rem;
    border-radius: 1.25rem;
    padding: 0.875rem 0.875rem 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 92, 2, 0.5) 0%, #FF5C02 50%, rgba(255, 92, 2, 0.5) 100%), url('../img/support_bg.jpg') center/cover no-repeat;
}
.profile_contacts_support_content{
    position: relative;
    z-index: 1;
}
.profile_contacts_support_label{
    margin-bottom: 0.25rem;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
}
.profile_contacts_support_phone{
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
    color: #FFFFFF!important;
}
.profile_contacts_support_call{
    position: relative;
    z-index: 1;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.profile_contacts_support_call img{
    width: 1.5rem;
    height: 1.5rem;
}
.profile_contacts_group{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.profile_contacts_title{
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
    color: #252525;
}
.profile_contacts_card_list,
.profile_contacts_feedback_list{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.profile_contacts_store_card,
.profile_contacts_feedback_card{
    border: 1px solid #E8E8E8;
    border-radius: 1rem;
    background: #FFFFFF;
}
.profile_contacts_store_card{
    padding: 1.25rem;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.02);
}
.profile_contacts_store_head{
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.profile_contacts_store_icon{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(255, 92, 2, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.profile_contacts_store_icon img{
    width: 1.5rem;
    height: 1.5rem;
}
.profile_contacts_store_info{
    flex: 1;
    min-width: 0;
}
.profile_contacts_store_name{
    margin-bottom: 0.25rem;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.profile_contacts_store_meta{
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #606060;
}
.profile_contacts_store_bottom{
    min-height: 2.75rem;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.profile_contacts_store_hours{
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}
.profile_contacts_store_hours img{
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}
.profile_contacts_store_hours span{
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 700;
    color: #252525;
}
.profile_contacts_store_map{
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 700;
    color: #FF5C02;
    white-space: nowrap;
}
.profile_contacts_feedback_card{
    min-height: 5.125rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}
.profile_contacts_feedback_main{
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    min-width: 0;
}
.profile_contacts_feedback_icon{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.profile_contacts_feedback_icon img{
    width: 1.5rem;
    height: 1.5rem;
}
.profile_contacts_feedback_icon_mail{
    background: rgba(255, 92, 2, 0.1);
}
.profile_contacts_feedback_icon_tg{
    background: #08C;
}
.profile_contacts_feedback_info{
    flex: 1;
    min-width: 0;
}
.profile_contacts_feedback_title{
    margin-bottom: 0.25rem;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.profile_contacts_feedback_text{
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #606060;
}
.profile_contacts_feedback_arrow{
    width: 1.25rem;
    height: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.profile_contacts_feedback_arrow img{
    width: 1.25rem;
    height: 1.25rem;
}
.profile_contacts_socials{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
}
.profile_contacts_social_item{
    min-height: 3.5rem;
    border: 1px solid #FFC9AB;
    border-radius: 0.75rem;
    background: rgba(255, 92, 2, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile_contacts_social_item img{
    width: 1.5rem;
    height: 1.5rem;
}
body:has(.profile_contacts_page){
    overflow-x: hidden;
}

.profile_orders_page{
    min-height: 100vh;
    background: #FFFFFF;
    padding-top: 5.25rem;
    padding-bottom: 7rem;
}
.profile_orders_body{
    padding-top: 1.5rem;
}
.profile_orders_filters{
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    margin: 0 -15px;
    padding: 0 15px;
    /*margin: 0 -0.0625rem 2rem;*/
    /*padding: 0 0.0625rem;*/
    margin-bottom: 2rem;
}
.profile_orders_filters::-webkit-scrollbar{
    display: none;
}
.profile_orders_filter{
    min-height: 2.1875rem;
    border-radius: 999px;
    background: #E8E8E8;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 700;
    color: #252525;
    white-space: nowrap;
}
.profile_orders_filter.active{
    background: #FF5C02;
    color: #FFFFFF;
}
.profile_orders_list{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.profile_orders_card{
    border: 1px solid #E8E8E8;
    border-radius: 1.5rem;
    background: #FFFFFF;
    box-shadow: 0px 2px 4px 0px rgba(27, 28, 29, 0.04);
    padding: 1rem;
}
.profile_orders_card_head{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.profile_orders_card_meta{
    min-width: 0;
}
.profile_orders_card_number{
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 700;
    color: #8E8E8E;
}
.profile_orders_card_date{
    font-size: 1rem;
    margin-top: 1rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.profile_orders_card_status{
    min-height: 1.5rem;
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.725rem;
    line-height: 1.5;
    font-weight: 700;
    white-space: nowrap;
}
.profile_orders_card_status_process{
    background: rgba(255, 219, 67, 0.1);
    color: #FF9D02;
}
.profile_orders_card_status_done{
    background: rgba(31, 193, 107, 0.1);
    color: #01A779;
}
.profile_orders_card_status_cancel{
    background: rgba(251, 55, 72, 0.1);
    color: #ED0230;
}
.profile_orders_card_content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.profile_orders_items{
    flex: 1;
    min-width: 0;
    display: flex;
    gap: 0.5rem;
}
.profile_orders_item_wrap{
    width: 3rem;
    flex-shrink: 0;
}
.profile_orders_item{
    width: 3rem;
    height: 3rem;
    border: 1px solid #E8E8E8;
    border-radius: 0.45rem;
    background: #FFFFFF;
    overflow: hidden;
    flex-shrink: 0;
}
.profile_orders_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile_orders_item.is_deleted{
    background: #F1F1F1;
}
.profile_orders_item_deleted{
    margin-top: 0.25rem;
    font-size: 0.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #ED0230;
    text-align: center;
}
.profile_orders_item_more{
    background: rgba(255, 92, 2, 0.1);
    border-color: #FFC9AB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 700;
    color: #FF5C02;
}
.profile_orders_price_box{
    width: 5.625rem;
    flex-shrink: 0;
    text-align: right;
}
.profile_orders_price{
    font-size: 1.125rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.profile_orders_count{
    margin-top: 0.25rem;
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 700;
    color: #BBBBBB;
}
.profile_orders_price_box_muted .profile_orders_price{
    color: #8E8E8E;
}
.profile_orders_details_body{
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E8E8E8;
}
.profile_orders_card.is_open .profile_orders_details_body{
    display: block;
}
.profile_orders_detail_row{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}
.profile_orders_detail_row:last-child{
    margin-bottom: 1rem;
}
.profile_orders_detail_row + .profile_orders_detail_row{
    margin-top: 0.875rem;
    padding-top: 0.875rem;
    border-top: 1px solid #F2F2F2;
}
.profile_orders_detail_main{
    flex: 1;
    min-width: 0;
}
.profile_orders_detail_title{
    font-size: 0.875rem;
    line-height: 1.4;
    font-weight: 700;
    color: #252525;
}
.profile_orders_detail_deleted{
    margin-top: 0.25rem;
    font-size: 0.6875rem;
    line-height: 1.3;
    font-weight: 700;
    color: #ED0230;
}
.profile_orders_detail_meta{
    width: 5.5rem;
    flex-shrink: 0;
    text-align: right;
}
.profile_orders_detail_price,
.profile_orders_detail_qty,
.profile_orders_detail_sum{
    font-size: 0.75rem;
    line-height: 1.4;
}
.profile_orders_detail_price,
.profile_orders_detail_sum{
    font-weight: 700;
    color: #252525;
}
.profile_orders_detail_qty{
    margin-top: 0.125rem;
    color: #8E8E8E;
}
.profile_orders_detail_sum{
    margin-top: 0.125rem;
}
.profile_orders_details{
    min-height: 3rem;
    border-radius: 0.75rem;
    background: #F5F5F5;
    border: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem;
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 700;
    color: #252525;
    cursor: pointer;
}
.profile_orders_details img{
    transform: rotate(-90deg);
}
.profile_orders_details img{
    width: 0.875rem;
    height: 0.875rem;
    transition: transform 0.2s ease;
}
.profile_orders_empty{
    padding: 2rem 1.25rem;
    border: 1px solid #E8E8E8;
    border-radius: 1.5rem;
    text-align: center;
    background: #FFFFFF;
}
.profile_orders_empty_title{
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: 700;
    color: #252525;
}
.profile_orders_empty_text{
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #8E8E8E;
}
body:has(.profile_orders_page){
    overflow-x: hidden;
}

.profile_addresses_page,
.profile_address_form_page{
    min-height: 100vh;
    background: #FFFFFF;
    padding-top: 5.25rem;
    padding-bottom: 7rem;
}
.profile_addresses_body,
.profile_address_form_body{
    padding-top: 1.5rem;
}
.profile_addresses_body{
    position: relative;
}
.profile_addresses_body .container{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.profile_addresses_list{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.profile_addresses_card{
    border: 1px solid #E8E8E8;
    border-radius: 1rem;
    background: #FFFFFF;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}
.profile_addresses_card_active{
    border-color: #FF5C02;
}
.profile_addresses_card_main{
    flex: 1;
    min-width: 0;
}
.profile_addresses_card_title{
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.profile_addresses_default{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: #FF5C02;
    font-size: 0.625rem;
    line-height: 1.5;
    font-weight: 700;
    color: #FFFFFF;
}
.profile_addresses_card_text{
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #606060;
}
.profile_addresses_actions{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.profile_addresses_action{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: #E8E8E8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.profile_addresses_action img{
    width: 1.25rem;
    height: 1.25rem;
}
.profile_addresses_action_delete{
    background: rgba(251, 55, 72, 0.1);
}
.profile_addresses_note{
    max-width: 21.4375rem;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #606060;
}
.profile_addresses_add{
    position: fixed;
    right: 1rem;
    bottom: 5.875rem;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: #FF5C02;
    box-shadow: 0px 16px 40px -8px rgba(88, 92, 95, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}
.profile_addresses_add img{
    width: 1.25rem;
    height: 1.25rem;
}
.profile_address_form{
    /*display: flex;*/
    /*flex-direction: column;*/
    /*gap: 1rem;*/
}
.profile_address_form_placeholder{
    color: #A4A4A4;
}
body:has(.profile_addresses_page),
body:has(.profile_address_form_page){
    overflow-x: hidden;
}

.profile_payment_page{
    min-height: 100vh;
    background: #FFFFFF;
    padding-top: 5.25rem;
    padding-bottom: 7rem;
}
.profile_payment_body{
    padding-top: 1.5rem;
}
.profile_payment_body .container{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.profile_payment_group{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.profile_payment_title{
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
    color: #252525;
}
.profile_payment_list{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.profile_payment_card{
    min-height: 5.5rem;
    border: 1px solid #E8E8E8;
    border-radius: 1rem;
    background: #FFFFFF;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}
.profile_payment_card_link{
    min-height: 5rem;
}
.profile_payment_main{
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    min-width: 0;
}
.profile_payment_icon{
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /*overflow: hidden;*/
}
.profile_payment_icon img{
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}
.profile_payment_icon_soft{
    background: rgba(31, 193, 107, 0.1);
}
.profile_payment_icon_plain{
    border: 1px solid #E8E8E8;
    background: #FFFFFF;
}
.profile_payment_info{
    flex: 1;
    min-width: 0;
}
.profile_payment_name{
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.profile_payment_text{
    margin-top: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #606060;
}
.profile_payment_toggle{
    width: 2.75rem;
    height: 1.5rem;
    border-radius: 0.75rem;
    background: #E8E8E8;
    padding: 0.125rem;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.profile_payment_toggle span{
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    background: #FFFFFF;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.06), 0px 1px 3px 0px rgba(10, 13, 18, 0.10);
}
.profile_payment_toggle_active{
    background: #FF5C02;
    justify-content: flex-end;
}
.profile_payment_arrow{
    width: 1.25rem;
    height: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.profile_payment_arrow img{
    width: 1.25rem;
    height: 1.25rem;
}
.profile_payment_add{
    min-height: 3.375rem;
    border: 1px dashed #FF5C02;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem;
    color: #FF5C02!important;
}
.profile_payment_add img{
    width: 1rem;
    height: 1rem;
}
.profile_payment_add span{
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 700;
}
body:has(.profile_payment_page){
    overflow-x: hidden;
}

.profile_favorites_pages{
    min-height: 100vh;
    background: #FFFFFF;
    padding-top: 5.25rem;
    padding-bottom: 7rem;
}
.profile_favorites_body{
    padding-top: 1.5rem;
}
.profile_favorites_count{
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #8E8E8E;
}
.profile_favorites_grid{
    /*display: grid;*/
    /*grid-template-columns: repeat(2, minmax(0, 1fr));*/
    /*gap: 1.5rem 0.75rem;*/
}
.profile_favorites_item{
    display: flex;
    flex-direction: column;
}
.profile_favorites_top{
    display: block;
    position: relative;
}
.profile_favorites_image{
    height: 10.375rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #F5F5F5;
}
.profile_favorites_like{
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.profile_favorites_like img{
    width: 1.75rem;
    height: 1.75rem;
}
.profile_favorites_item .prod_cat{
    margin-top: 0.5rem;
}
.profile_favorites_item .prod_title{
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1.2;
}
.profile_favorites_item .prod_bottom{
    margin-top: 0.75rem;
    gap: 0.5rem;
}
.profile_favorites_add{
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: #FF5C02;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.profile_favorites_add img{
    width: 1.25rem;
    height: 1.25rem;
}
body:has(.profile_favorites_page){
    overflow-x: hidden;
}

.profile_notifications_page{
    min-height: 100vh;
    background: #FFFFFF;
    padding-top: 5.25rem;
    padding-bottom: 7rem;
}
.profile_notifications_body{
    padding-top: 1.5rem;
}
.profile_notifications_body .container{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.profile_notifications_banner{
    min-height: 10.625rem;
    border-radius: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(120deg, #009ADE 0%, #22A8EE 100%);
    position: relative;
    overflow: hidden;
}
.profile_notifications_banner:after{
    content: "";
    position: absolute;
    inset: 0;
    background: url('../img/telegram_bg.jpg') right center/cover no-repeat;
    opacity: 0.95;
}
.profile_notifications_banner_content{
    position: relative;
    z-index: 1;
    width: 12.75rem;
}
.profile_notifications_banner_title{
    font-size: 1.25rem;
    line-height: 1.1;
    font-weight: 700;
    color: #FFFFFF;
}
.profile_notifications_banner_text{
    margin-top: 0.5rem;
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}
.profile_notifications_banner_btn{
    margin-top: 1rem;
    min-height: 2rem;
    border-radius: 999px;
    background: #FFFFFF;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 700;
    color: #0074A7;
}
.profile_notifications_group{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.profile_notifications_label{
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 700;
    color: #777777;
}
.profile_notifications_list{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.profile_notifications_card{
    border: 1px solid #E8E8E8;
    border-radius: 1rem;
    background: #FFFFFF;
    padding: 1.25rem;
}
.profile_notifications_card.is_unread{
    border-color: #FFD5BE;
    background: #FFF9F5;
}
.profile_notifications_card_row{
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}
.profile_notifications_icon{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.profile_notifications_icon img{
    width: 1.5rem;
    height: 1.5rem;
}
.profile_notifications_icon_mark{
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 999px;
    background: currentColor;
    display: block;
}
.profile_notifications_icon_green{
    background: rgba(31, 193, 107, 0.1);
    color: #01A779;
}
.profile_notifications_icon_orange{
    background: rgba(255, 92, 2, 0.1);
    color: #FF5C02;
}
.profile_notifications_icon_red{
    background: rgba(251, 55, 72, 0.1);
    color: #ED0230;
}
.profile_notifications_icon_image{
    background: transparent;
    color: #FF5C02;
}
.profile_notifications_icon_image img{
    width: 2.5rem;
    height: 2.5rem;
}
.profile_notifications_info{
    flex: 1;
    min-width: 0;
}
.profile_notifications_head{
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.profile_notifications_name{
    flex: 1;
    min-width: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 700;
    color: #252525;
}
.profile_notifications_time{
    font-size: 0.625rem;
    line-height: 1.5;
    font-weight: 700;
    color: #BBBBBB;
    white-space: nowrap;
}
.profile_notifications_text{
    margin-top: 0.25rem;
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 500;
    color: #606060;
}
.profile_notifications_text strong{
    font-weight: 700;
    color: #FF5C02;
}
.profile_notifications_action{
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.profile_notifications_action_thumb{
    width: 3rem;
    height: 3rem;
    border: 1px solid #E8E8E8;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #FFFFFF;
    flex-shrink: 0;
}
.profile_notifications_action_thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile_notifications_action_btn{
    flex: 1;
    min-width: 0;
    min-height: 3rem;
    border-radius: 0.75rem;
    background: rgba(255, 92, 2, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    color: #FF5C02;
}
.profile_notifications_action_btn span{
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 700;
}
.profile_notifications_action_btn img{
    width: 0.875rem;
    height: 0.875rem;
    transform: rotate(-90deg);
}
.profile_notifications_empty{
    padding: 2rem 1.25rem;
    border: 1px solid #E8E8E8;
    border-radius: 1.5rem;
    background: #FFFFFF;
    text-align: center;
}
.profile_notifications_empty_title{
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: 700;
    color: #252525;
}
.profile_notifications_empty_text{
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #8E8E8E;
}
.profile_main_notify{
    position: relative;
}
.profile_main_notify_badge{
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    min-width: 1rem;
    height: 1rem;
    border-radius: 999px;
    padding: 0 0.25rem;
    background: #FF5C02;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5625rem;
    line-height: 1;
    font-weight: 700;
    color: #FFFFFF;
}
body:has(.profile_notifications_page){
    overflow-x: hidden;
}

.profile_faq_page{
    min-height: 100vh;
    background: #FFFFFF;
    padding-top: 5.25rem;
    padding-bottom: 7rem;
}
.profile_faq_body{
    padding-top: 1.5rem;
}
.profile_faq_body .container{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.profile_faq_filters{
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    margin: 0 -15px;
    padding: 0 15px;
}
.profile_faq_filters::-webkit-scrollbar{
    display: none;
}
.profile_faq_filter{
    min-height: 2rem;
    border-radius: 999px;
    background: #E8E8E8;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 700;
    color: #252525;
    white-space: nowrap;
}
.profile_faq_filter.active{
    background: #FF5C02;
    color: #FFFFFF;
}
.profile_faq_list{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.profile_faq_item{
    border-radius: 1rem;
    background: #F5F5F5;
    padding: 1.5rem;
}
.profile_faq_head{
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
    cursor: pointer;
}
.profile_faq_question{
    flex: 1;
    min-width: 0;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.profile_faq_arrow{
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.profile_faq_arrow img{
    width: 1rem;
    height: 1rem;
    transform: rotate(-180deg);
}
.profile_faq_answer{
    padding-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #606060;
    display: none;
}
.profile_faq_item:not(.is_open) .profile_faq_answer{
    display: none;
}
.profile_faq_item:not(.is_open) .profile_faq_arrow{
    transform: rotate(180deg);
}
.profile_faq_help{
    border: 1px solid #01A779;
    border-radius: 1rem;
    background: rgba(31, 193, 107, 0.1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.profile_faq_help_icon{
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
}
.profile_faq_help_icon img{
    width: 100%;
    height: 100%;
}
.profile_faq_help_title{
    font-size: 1.125rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.profile_faq_help_text{
    max-width: 15.625rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #606060;
}
.profile_faq_help_btn{
    margin-top: 1.5rem;
    width: 100%;
    min-height: 3.375rem;
    border-radius: 999px;
    background: #01A779;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 700;
    color: #FFFFFF!important;
}
body:has(.profile_faq_page){
    overflow-x: hidden;
}

.profile_legal_page{
    min-height: 100vh;
    background: #FFFFFF;
    padding-top: 5.25rem;
    padding-bottom: 7rem;
}
.profile_legal_body{
    padding-top: 1.5rem;
}
.profile_legal_body .container{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.profile_legal_intro{
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #606060;
}
.profile_legal_list{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.profile_legal_item{
    min-height: 4.25rem;
    border: 1px solid #E8E8E8;
    border-radius: 1rem;
    background: #FFFFFF;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.profile_legal_icon{
    width: 1.75rem;
    height: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.profile_legal_icon img{
    width: 1.75rem;
    height: 1.75rem;
}
.profile_legal_name{
    flex: 1;
    min-width: 0;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.profile_legal_arrow{
    width: 1.25rem;
    height: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.profile_legal_arrow img{
    width: 1.25rem;
    height: 1.25rem;
}
.profile_legal_note{
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #606060;
    text-align: center;
}
.profile_legal_note a{
    color: #FF5C02;
    text-decoration: underline;
}
body:has(.profile_legal_page){
    overflow-x: hidden;
}

.profile_about_page{
    min-height: 100vh;
    background: #FFFFFF;
    padding-top: 5.25rem;
    padding-bottom: 7rem;
}
.profile_about_body{
    padding-top: 1.5rem;
}
.profile_about_body .container{
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.profile_about_intro{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.profile_about_badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 92, 2, 0.1);
    font-size: 0.625rem;
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: 0.03125rem;
    color: #FF5C02;
    align-self: flex-start;
}
.profile_about_title{
    font-size: 1.875rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.0375rem;
    color: #252525;
}
.profile_about_title span{
    color: #FF5C02;
}
.profile_about_text{
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #606060;
}
.profile_about_stats{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}
.profile_about_stat{
    border: 1px solid #E8E8E8;
    border-radius: 1rem;
    background: #FFFFFF;
    padding: 1.25rem;
}
.profile_about_stat_value{
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #252525;
}
.profile_about_stat_text{
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 700;
    color: #606060;
}
.profile_about_section{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.profile_about_section_title{
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
    color: #252525;
}
.profile_about_cards{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.profile_about_card{
    border: 1px solid #E8E8E8;
    border-radius: 1rem;
    background: #FFFFFF;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}
.profile_about_card_icon{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(255, 92, 2, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.profile_about_card_icon img{
    width: 1.5rem;
    height: 1.5rem;
}
.profile_about_card_content{
    flex: 1;
    min-width: 0;
}
.profile_about_card_title{
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.profile_about_card_text{
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #606060;
}
.profile_about_timeline{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 1.3rem;
}
.profile_about_timeline:before{
    content: "";
    position: absolute;
    left: 0.26875rem;
    top: -0.4rem;
    bottom: -0.1rem;
    /* width: 1px; */
    /* background: #FFD2BA; */
    border-left: 3px dashed #FF5C02;
}
.profile_about_timeline_item{
    position: relative;
    display: flex;
    gap: 1.25rem;
}
.profile_about_timeline_dot{
    position: absolute;
    left: -1.5rem;
    top: 0.05rem;
    width: 1rem;
    height: 1rem;
    border: 2px solid #FF5C02;
    border-radius: 999px;
    background: #FFFFFF;
}
.profile_about_timeline_content{
    flex: 1;
    min-width: 0;
}
.profile_about_timeline_year{
    font-size: 0.85rem;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 0.0375rem;
    color: #FF5C02;
}
.profile_about_timeline_title{
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.profile_about_timeline_text{
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #606060;
}
.profile_about_team{
    overflow: unset!important;
    /*display: flex;*/
    /*gap: 0.5rem;*/
    /*overflow-x: auto;*/
    /*scrollbar-width: none;*/
    /*padding-bottom: 0.25rem;*/
}
/*.profile_about_team::-webkit-scrollbar{*/
/*    display: none;*/
/*}*/
.profile_about_team .swiper-slide{
    width: 10.34375rem;
    flex-shrink: 0;
}
.profile_about_person_photo{
    aspect-ratio: 3 / 4;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #E8E8E8;
}
.profile_about_person_photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile_about_person_name{
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 800;
    color: #252525;
}
.profile_about_person_role{
    margin-top: 0.125rem;
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.03rem;
    color: rgba(37, 37, 37, 0.5);
}
.profile_about_social{
    min-height: 11.875rem;
    border-radius: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 92, 2, 0.5) 0%, #FF5C02 50%, rgba(255, 92, 2, 0.5) 100%), url('../img/about.jpg') center/cover no-repeat;
    box-shadow: 0px 16px 40px -8px rgba(88, 92, 95, 0.16);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}
.profile_about_social_title{
    font-size: 1.25rem;
    line-height: 1.1;
    font-weight: 700;
    color: #FFFFFF;
}
.profile_about_social_text{
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}
.profile_about_socials{
    display: flex;
    gap: 0.5rem;
}
.profile_about_social_item{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.profile_about_social_item img{
    width: 1.5rem;
    height: 1.5rem;
}
body:has(.profile_about_page){
    overflow-x: hidden;
}

.profile_stores_page,
.profile_gift_page{
    min-height: 100vh;
    background: #FFFFFF;
    padding-top: 5.25rem;
    padding-bottom: 7rem;
}
.profile_stores_body,
.profile_gift_body{
    padding-top: 1.5rem;
}
.profile_stores_head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.profile_stores_city{
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
    color: #252525;
}
.profile_stores_dots{
    display: flex;
    align-items: center;
    gap: 0.375rem;
}
.profile_stores_dots span{
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: #E8E8E8;
}
.profile_stores_dots span.active{
    background: #FF5C02;
}
.profile_stores_list{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.profile_stores_list .address_item{
    border-color: #FF5C02;
    border-radius: 16px;
    padding: 1rem;
}
.profile_stores_card{
    border: 1px solid #FF5C02;
    border-radius: 1rem;
    background: #FFFFFF;
    padding: 1rem;
}
.profile_stores_image{
    height: 11.5625rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #F5F5F5;
    margin-bottom: 1rem;
}
.profile_stores_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.profile_stores_name{
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.profile_stores_meta,
.profile_stores_phone{
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #606060;
}
.profile_stores_bottom{
    margin-top: 1rem;
    min-height: 2.75rem;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.profile_stores_hours{
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}
.profile_stores_hours img{
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}
.profile_stores_hours span{
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 700;
    color: #252525;
}
.profile_stores_map{
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 700;
    color: #FF5C02;
    white-space: nowrap;
}
.profile_gift_body .container{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.profile_gift_switch{
    min-height: 3.5rem;
    border-radius: 0.75rem;
    background: #F5F5F5;
    padding: 0.25rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.125rem;
}
.profile_gift_switch_item{
    min-height: 3rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 700;
    color: #777777;
}
.profile_gift_switch_item.active{
    background: #FFFFFF;
    color: #252525;
    box-shadow: 0px 16px 32px 0px rgba(88, 92, 95, 0.1);
}
.profile_gift_amount.active{
    border-color: #FF5C02;
    color: #252525;
}
.profile_gift_box{
    border: 1px solid #E8E8E8;
    border-radius: 1rem;
    background: #FFFFFF;
    padding: 1.25rem;
}
.profile_gift_box_title{
    font-size: 1.25rem;
    line-height: 1.1;
    font-weight: 700;
    color: #252525;
}
.profile_gift_divider{
    height: 1px;
    background: #E8E8E8;
    margin: 1rem 0;
}
.profile_gift_textarea{
    min-height: 6.625rem;
    display: flex;
    align-items: flex-start;
    padding-top: 0.875rem;
}
.profile_gift_checks{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.profile_gift_check{
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.profile_gift_check_box{
    width: 1.25rem;
    height: 1.25rem;
    border: 1px solid #E8E8E8;
    border-radius: 0.25rem;
    background: #FFFFFF;
    flex-shrink: 0;
    margin-top: 0.0625rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.profile_gift_check_box img{
    width: 0.875rem;
    height: 0.875rem;
    opacity: 0;
}
.profile_gift_check_box.active{
    border-color: #FF5C02;
    background: #FF5C02;
}
.profile_gift_check_box.active img{
    opacity: 1;
}
.profile_gift_check_text{
    font-size: 0.875rem;
    font-weight: 500;
    color: #606060;
}
.profile_gift_check_text a{
    color: #FF5C02;
}
.profile_gift_page .profile_personal_field{
    margin-bottom: 0;
}
.profile_gift_pay{
    min-height: 3.375rem;
    border-radius: 999px;
    background: #FF5C02;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    color: #FFFFFF;
    margin-top: auto;
    width: 100%;
}
.profile_gift_pay span,
.profile_gift_pay strong{
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
}
.profile_gift_page_card .profile_gift_body .container{
    min-height: calc(100vh - 12.25rem);
}
.prod_add.disabled{
    pointer-events: none;
    filter: grayscale(1);
    opacity: 0.6;
}
body:has(.profile_stores_page),
body:has(.profile_gift_page){
    overflow-x: hidden;
}
.cart_banner{
    margin-top: 2rem;
}
/*.mb-1{*/
/*    margin-bottom: 1rem;*/
/*}*/

.bottom_menu a.active .bottom_menu_badge{
    background: black;
}

.profile_addresses_make_default{
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.75rem;
    line-height: 1.4;
    font-weight: 700;
    color: #FF5C02;
    text-align: left;
}
.js-gif-card-form, .hidden_by_card{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.profile_gift_box .form-group:not(:last-child){
    margin-bottom: 1rem;
}
.product-no-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    font-size: 10px;
    color: black;
    opacity: 0.4;
}
.prod_item .product-no-image-placeholder{
    font-size: 12px;
}
.empty_product_image{
    height: 20rem;
}
.empty_product_image .product-no-image-placeholder{
    font-size: 12px;
}
.prod_price.sm{
    font-size: 0.7rem;
}
.prod_price.sm2{
    font-size: 1rem;
}
.product_card_qty.disabled{
    opacity: 0.6;
    pointer-events: none;
}
.product_barcode{
    margin-top: -1.2rem;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
}
.product_barcode span{
    opacity: 0.6;
}
