

.header_custom {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 10px;
    border-radius: 0px 0px 28px 28px;
    background: #FFF;
    box-shadow: 0px 1px 4px 0px rgba(114, 138, 155, 0.25);
    transition: all var(--transition-time-default);
    position: fixed;
    top: 0;
    z-index: 100;
}



.header_container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.container_content_header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box_icon_menu_burger{
    display: flex;
    width: 44px;
    height: 44px;
    padding: 12px 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    background: #E22833;
}

.icon_menu_burger {
    display: block;
    width: 31px;
    height: 23px;
    flex-shrink: 0;
}


.box_contact_blog {
    display: none;
}




.box_icon_cart_profile_header {
    display: flex;
    padding: 7px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #F5F5F5;
    position: relative;
}

.text_cart_profile_header{
    display: none;

}

/** ===================== container_burger_menu =====================  **/

.container_burger_menu {
    left: -100vh;
    top: 0;
    z-index: 1000;
    position: fixed;
    display: flex;
    min-width: 270px;
    width: 80%;
    max-width: 455px;
    height: 100vh;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    background: #FFF;
    transform: translateX(-100%);
    transition: all var(--transition-time-default);
}


.container_burger_menu.open {
    left: 0;
    z-index: 2000;
    transform: translateX(0);
}


.backdrop{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    z-index: -1;
    transition: all var(--transition-time-default);
}

.backdrop.open {
    opacity: 1;
    z-index: 999;
}


.box_top_container{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.icon_close_mobile_menu{
    display: flex;
    width: 30px;
    height: 30px;
    padding: 6px;
    justify-content: center;
    align-items: center;
}



.container_nav_list_mobile{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav_list_mobile{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.item_nav_list_mobile{
    display: flex;
    padding: 4px 0px;
    /*justify-content: center;*/
    align-items: center;
    gap: 10px;
    border-radius: 62px;
    transition: all var(--transition-time-default);
}

.link_item_nav_list_mobile{
    color:  #1A1A1A;
    font-family: var(--font-family-minor);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.33;
    transition: all var(--transition-time-default);
}

.item_nav_list_mobile:hover {
    background: #FFEFBB;
}

.box_profile_cart_menu_mobile{
    display: flex;
    flex-direction: column;
    gap: 12px;

}

.text_cart_profile_header_mobile_menu{
    color: #535863;
    font-family: var(--font-family-minor);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.42;
    transition: all var(--transition-time-default);
}

.box_profile, .box_profile a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.box_cart_mobile_menu, .box_cart_mobile_menu a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.box_cart_header{
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon_cart_profile_header{
    transition: all var(--transition-time-default);
    opacity: 0.6;
}

.box_profile_header:hover .icon_cart_profile_header, .box_cart_header:hover .icon_cart_profile_header{
    opacity: 1;

}

.box_profile_header:hover, .box_cart_header:hover{
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: 0;
    left: 26px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F82A1D;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cart-count span {
    color: #FFF;
    font-family: var(--font-family-minor);
    font-size: 11px;
}

/**================== container_cart_header ================== **/


.container_cart_header{
    position: fixed;
    right: -150vh;
    top: 0;
    z-index: 1000;
    display: flex;
    min-width: 270px;
    max-width: 540px;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(100%);
    background:  #FFF;
    transition: all var(--transition-time-default);
}


.container_cart_header.open {
    right: 0;
    transform: translateX(0);
    z-index: 2000;
}

.box_cart_header_modal{
    display: flex;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(245, 245, 245, 1);
}

@media screen and (min-width: 540px) {
    .box_cart_header_modal {
        min-width: 540px;
    }
}

.title_cart_header{
    color: #1A1A1A;
    text-align: center;
    font-family: var(--font-family-minor);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.62;
}


.box_icon_close_cart_header{
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: rgba(245, 245, 245, 1);
    border-radius: 50%;

}


.icon_close_cart_header{
    width: 18px;
    height: 18px;
    display: block;
    opacity: 0.6;
    transition: all var(--transition-time-default);
}


.box_icon_close_cart_header:hover .icon_close_cart_header{
    opacity: 1;
}


.list_order_cart_header{
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.item_order_cart_header{
    display: flex;
    padding: 20px;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    border-radius: 26px;
    border: 1px solid #D9D9D9;
    background: #F6F6F6;
}


.box_photo_cart_header{
    display: flex;
    max-width: 150px;
    max-height: 102px;
    justify-content: center;
    align-items: center;
}


.box_info_order_cart_header{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;
}

.box_info_order_top{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.box_name_product_size {
    width: inherit;
}

.name_product_cart_header{
    color:  #1A1A1A;
    font-family: var(--font-family-minor);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.45;
    align-self: stretch;
    transition: all var(--transition-time-default);
}

.name_product_cart_header:hover {
    cursor: pointer;
    text-decoration: underline;
    color: rgba(226, 40, 51, 1);
}

.size_product_cart_header{
    color:  #535863;
    font-family: var(--font-family-minor);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.45;
    align-self: stretch;
}


.icon_delete_product_order{
    display: flex;
    width: 25px;
    height: 25px;
    padding: 3px 3px 4px 4px;
    justify-content: center;
    align-items: center;
    fill: rgba(124, 127, 132, 1);
    transition: all var(--transition-time-default);

}

.icon_delete_product_order:hover{
    fill:rgba(226, 40, 51, 1);
    cursor: pointer;
}


.box_info_order_bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}


.box_price_product_cart_header{
    display: flex;
    align-items: center;
    gap: 3px;
}

.price_product_cart_header{
    color:  #1A1A1A;
    font-family: var(--font-family-minor);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.45;
}

.price_product_cart_header_currency{
    color:  #1A1A1A;
    font-family: var(--font-family-minor);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.45;
}


.box_calculator_cart_order{
    display: flex;
    width: 104px;
    padding: 10px 16px;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-radius: 32px;
    background: #FFF;
}

.number_product_cart_header{
    color: #1A1A1A;
    text-align: center;
    font-feature-settings: 'cv01' on, 'cv03' on, 'cv04' on;
    font-family: var(--font-family-minor);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.45;
}


.icon_calculator_plus_minus{
    width: 15px;
    height: 15px;
}


.container__total_price_btn_order_cart_header{
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    border-top: 1px solid #D9D9D9;
    background:  #FFF;
}

.box_total_price_cart_header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;

}

.total_price_text_cart_profile_header{
    color:  #535863;
    font-family: var(--font-family-minor);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.45;
}

.total_price_cart_header{
    color:  #1A1A1A;
    font-family: var(--font-family-minor);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.45;
}

.total_price_cart_header_currency{
    color: #1A1A1A;
    font-family: var(--font-family-minor);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.45;
}

.btn_order_cart_header{
    display: flex;
    padding: 13px 18px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 62px;
    background:  #E22833;
    transition: all var(--transition-time-default);
}

.text_btn_order_cart_header{
    color: #FFF;
    font-family: var(--font-family-minor);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.33;
    display: flex;
    align-items: center;
    gap: 5px;
}

.text_btn_order_cart_header::after{
    display: block;
    content: '';
    width: 23px;
    height: 20px;
    background-image: url('../image/header/icon_arrow_white_right.svg');
    background-size: 100% 100%;
    background-position-x: 0;
    transition: all var(--transition-time-default);

}


.btn_order_cart_header:hover{
    background-color: rgba(26, 26, 26, 1);
}

.btn_order_cart_header:hover .text_btn_order_cart_header::after {
    background-position-x: 23px;
}

.box_profile_header,
.container_nav_list_desktop,
.decoration_line{
    display: none;
}


/**================== /container_cart_header ================== **/
/**================== TABLET ================== **/

@media screen and (min-width: 768px) {
    .header_custom {
        padding: 20px;
    }

    .logo_header{
        width: 164px;
        height: 41px;
    }

    .box_icon_menu_burger{
        margin-right: 72px;
    }

    .text_cart_profile_header{
        display: block;
        color:  #535863;
        font-family: var(--font-family-minor);
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 1.42;

    }

    .text_cart_profile_header:hover{
        color:  #E22833;
        text-decoration-line: underline;
        text-decoration-style: solid;
    }

    .logo_header_mobile_menu{
        width: 164px;
        height: 41px;
    }


    .container_nav_list_mobile{
        gap: 20px;
    }

    .nav_list_mobile{
        gap: 20px;
    }

    .box_profile_cart_menu_mobile{
        gap: 20px;
    }
}

/**================== /TABLET ================== **/

/**================== DESKTOP ================== **/

@media screen and (min-width: 1280px) {
    .header_custom {
        padding: 20px 60px;

    }

    .container_content_header{
        display: flex;
        flex-direction: column;
        gap: 16px;
        max-width: 1320px;
        margin-left: auto;
        margin-right: auto;
    }

    .box_icon_menu_burger{
        display: none;
    }

    .box_logo_contact_blog{
        display: flex;
        align-items: center;
        gap: 48px;
    }

    .box_contact_blog{
        display: flex;
        align-items: center;
        gap: 14px;

    }

    .link_contact_blog{
        color:  #535863;
        font-family: var(--font-family-minor);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.42;
        padding: 8px;
        transition: all var(--transition-time-default);
    }

    .link_contact_blog:hover{
        color:  var(--color-text-hover-red);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .box_profile_cart {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .box_profile_header, .box_profile_header a{
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .decoration_line{
        display: block;
        width: 100%;
        height: 1px;
        background: #ECF0F4;
    }

    .container_nav_list_desktop{
        display: block;
        width: 100%;
    }

    .nav_list_desktop{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .link_item_nav_list_desktop{
        display: flex;
        padding: 10px 14px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 62px;
        transition: all var(--transition-time-default);
        color:  #1A1A1A;
        font-family: var(--font-family-minor);
        font-size: 15px;
        font-style: normal;
        font-weight: 600;
        line-height: 1.33;
    }

    .link_item_nav_list_desktop:hover{
        background: #FFEFBB;
        cursor: pointer;
    }

    li.active > a.link_item_nav_list_desktop,
    .link_item_nav_list_desktop.active {
        background: #FFEFBB;
        cursor: pointer;
    }

}

/**================== /DESKTOP ================== **/


/**====== button scroll to top ======== **/
.btn_scroll_top-bloc{
    text-align: right;
    position: fixed;
    bottom: 60px;
    right: 60px;
    opacity: 0;
    z-index: 300;
    visibility: hidden;
    transition: all ease-in-out 300ms;
}

.btn_scroll_top-bloc.visible{
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.btn_scroll_top {
    z-index: 999;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #E22833;
    position: fixed;
    right: 60px;
    bottom: 52px;
    transition: all var(--transition-time-default);
}

.btn_scroll_top::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    transform: translate(-50%,-50%) rotate(-90deg);
    width: 28px;
    height: 28px;
    background-image: url(../image/header/icon_arrow_white_right.svg);
    background-size: 100% 100%;
    background-position-x: 0;
    transition: all var(--transition-time-default);
}


.btn_scroll_top:hover {
    background-color: #F19E00;
}

.btn_scroll_top:hover::before {
    background-position-x: 28px;
}

@media screen and (min-width: 744px) {
    .btn_scroll_top {
        width: 68px;
        height: 68px;
    }
}

@media (max-width: 1279px) {
    .btn_scroll_top-bloc{
        display: none;
    }
}
/**====== button scroll to top ======== **/


/**====== pagination ======== **/
.box_pagination_blog_list_page {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.icon_arrow_pagination_blog_list_page {
    max-width: 24px;
    max-height: 24px;
}

.icon_arrow_pagination_blog_list_page.prev {
    transform: rotate(180deg);
}

.btn_prev_pagination_blog_list_page, .btn_next_pagination_blog_list_page{
    box-sizing: border-box;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #DDE0E2;
    background: #FFF;
    transition: all var(--transition-time-default);
    cursor: pointer;
}

.btn_prev_pagination_blog_list_page:disabled, .btn_next_pagination_blog_list_page:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.box_page_pagination_blog_list_page {
    display: flex;
    align-items: center;
    gap: 10px;
}

.number_page_pagination_blog_list_page, .plug_page_pagination_blog_list_page {
    display: flex;
    box-sizing: border-box;
    width: 36px;
    height: 36px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #000;
    text-align: center;
    font-family: var(--font-family-minor);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    border-radius: 12px;
    opacity: 0.2;
    transition: all var(--transition-time-default);
    cursor: pointer;
}

.number_page_pagination_blog_list_page.active {
    background: #FFF;
    opacity: 1;
}

.number_page_pagination_blog_list_page:hover{
    background: #FFF;
    opacity: 1;
}
/**====== pagination ======== **/