:root{
	--color-title-slide: rgba(255, 255, 255, 1);
	--color-description-slide: rgba(254, 251, 250, 1);
	--border-pagination: 1px solid rgba(254, 251, 250, 1);
	--background-color-bullet-active: rgba(254, 251, 250, 1);
	--background-color-current-slide: rgba(238, 113, 3, 1);
    --border-category-list: 1px solid rgba(18, 17, 17, 0.2);
}


/** ================BOX_CATEGORY_AND_SWIPER================ */


.container_home_catalog_baner{
    display: flex;
    width: 100%;
}

.list_category_home{
    display: none;
}

/* .list_category_home{
    display: block;
    background-color: var(--background-color-menu-category);
    width: 350px;
    height: 440px;
} */

.home_swiper_viewport{
	width: 355px;
	height: 175px;
	border: none;
	padding: 0;
	margin: 0;
}


.home_img_responsive{
    display: block;
	width: 355px;
	height: 175px;
	object-fit: cover;
}

.home_swiper_pagination{
    display: none;
}


.slide-content{
	padding-left: 10px;
	padding-right: 10px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
	z-index: 500;
}

.slide-content.position-left{
	align-items: flex-end;
}


.slide-title{
	position: relative;
	width: 65%;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.14;
	text-align: left;
	color: var(--color-title-slide);
	margin-bottom: 50px;
	text-align: left;
}

.slide-title.position-left {
	text-align: right;
}

.slide-title::before {
	display: block;
	position: absolute;
	content: "";
	bottom: -10px;
	left: 0;
	width: 100px;
	height: 2px;
	background-color: var(--background-color-current-slide);
}


.position-left .slide-title::before {
    left: auto;
    right: 0;
}

.slide-description{
    display: none;
}


.slide-button{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 160px;
	height: 32px;
	background-color: var(--background-color-current-slide);
}


.slide-button-text{
	position: absolute;
	z-index: 600;
	color: var(--color-description-slide);
	font-family: var(--font-family-minor);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.14;
}



.slide-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--backdrop-dark);
    opacity: 0;
    transition: opacity var(--transition-all-time);
}

.slide-button:hover::after {
    opacity: 1;
}
/** ================/BOX_CATEGORY_AND_SWIPER================ */



/** ================BOX_TABS================ */


.tabs_section_category{
    padding-top: 10px;
    padding-bottom: 20px;
}

.tabs_section_category_recommended{
    padding-top: 20px;
}


.tabs_box_title_link{
    display: flex;
    gap: 30px;
    align-items: end;
    margin-bottom: 10px;
    justify-content: space-between;
}

.tabs_box_title_link_recommended{
    margin-bottom: 20px;
}

.tabs_title{
    font-family: var(--font-family-main);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.18;
}


.tabs_link{
    font-family: var(--font-family-minor);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.36;
    color: var(--color-hover);
}

.tabs_link:hover{
    color: var(--color-hover);
    text-decoration: underline;
}



.tabs_container_btn{
    overflow: auto;
    display: flex;
    flex-wrap: nowrap;
    row-gap: 10px;
    column-gap: 10px;
    padding-bottom: 5px;
    padding-right: 2px;
    margin-bottom: 10px;
}

.tabs_button{
    text-wrap: nowrap;
    font-family: var(--font-family-minor);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.36;
    border-radius: 8px;
    border: var(--border-tabs) ;
    padding: 15px 20px;
    transition: border-color var(--transition-all-time);
}


.tabs_button:hover {
    border-color: var(--color-hover);
}


.tabs_active{
    border-color: var(--color-hover);
    color: var(--color-hover);
}

.tabs_container_list{
    display: none;
}


.tabs_container_list.active{
    display: block;
}


.tabs_list_products{
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    overflow: auto;
    gap: 10px;
    padding-top: 4px;
    padding-bottom: 20px;
    padding-right: 2px;
    margin-bottom: 10px;
}

.tabs_item_product_link{
    box-sizing: content-box;
    width: 170px;
    border: var(--border-tabs);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-all-time);
}

.tabs_box_product_photo{
    width: 100%;
    padding: 4px;
}


.tabs_product_photo{
    width: 100%;
    display: block;
    border-radius: 4px;
    object-fit: cover;
    height: 150px;
}


.tabs_box_product_info{
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: space-between;
}

.tabs_product_title{
    font-family: var(--font-family-minor);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.36;
    letter-spacing: 0.02em;
    max-height: 57px;
    overflow: hidden;
}


.tabs_box_rating_price{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

.box_icon{
    display: flex;
    align-items: center;
    height: auto;
}

.tabs_icon_rating {
    width: 15px;
    height: 15px;
    opacity: 0.2;
}


.filled{
    fill: var(--color-hover);
    opacity: 1;
}

.tabs_rating_value{
    font-family: var(--font-family-minor);
    font-size: 12px;
    font-weight: 400;
    opacity: 0.55;
    margin: 0;
}

.tabs_product_price{
    font-family: var(--font-family-minor);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.36;
}

.tabs_btn_show_more, .tabs_btn_add_product{
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 220px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    outline: none;
    background-color: var(--background-color-button-primary);
    transition: background-image var(--transition-all-time);
}


.tabs_btn_add_product{
    width: 100%;
    margin-top: 10px;
}

.tabs_btn_span{
    font-family: var(--font-family-main);
    position: relative;
    z-index: 10;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.14;
    color: var(--color-text-header-main);
}

.tabs_btn_text{
    font-family: var(--font-family-main);
    position: relative;
    z-index: 10;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.14;
    color: var(--color-text-header-main);
    margin: 0;
}

.tabs_btn_show_more::after, .tabs_btn_add_product::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--backdrop-dark);
    opacity: 0;
    transition: opacity var(--transition-all-time);
}

.tabs_btn_show_more:hover::after, .tabs_btn_add_product:hover::after {
    opacity: 1; /* Показати затемнення при наведенні */
}

.tabs_item_product_link:hover{
    transform: translateY(-4px);
    box-shadow:
            0px 2px 3px 0px rgba(0, 0, 0, 0.23),
            0px 6px 6px 0px rgba(0, 0, 0, 0.2),
            0px 14px 9px 0px rgba(0, 0, 0, 0.12),
            0px 25px 10px 0px rgba(0, 0, 0, 0.03),
            0px 40px 11px 0px rgba(0, 0, 0, 0);
}

.hide {
    display: none; /* Приховує елемент */
}

/** ================/BOX_TABS================ */


/** ================BOX_SERVICE================ */

/* .section_service{
    padding-top: 20px;
    padding-bottom: 20px;
} */


.service_container{
    display: flex;
    flex-direction: column;
    border: var(--border-tabs);
    background-color: var(--background-color-banner);
    border-radius: 8px;
}

.service_box_column{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    margin: 0;
}

.service_item{
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.service_item_photo{
    display: block;
    border-radius: 4px;
    width: 130px;
    height: 130px;
    object-fit: cover;
}


.service_box_item_title_content{
    display: flex;
    flex-direction: column;
}


.service_item_title{
    font-family: var(--font-family-minor);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.36;

}

.service_item_content{
    font-family: var(--font-family-minor);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.36;
    opacity: 0.6;
}


.service_info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 10px;
}

.service_box_info_title_content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service_info_title{
    font-size: 20px;
    font-weight: 400;
    line-height: 1.18;
}

.service_info_content{
    font-family: var(--font-family-minor);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.36;
}

.service_btn_contact_us{
    position: relative;
    width: 240px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.14;
    outline: none;
    color: var(--color-text-header-main);
    background-color: var(--background-color-button-primary);
    transition: background-image var(--transition-all-time);
}


.service_btn_contact_us::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--backdrop-dark);
    opacity: 0;
    border-radius: 4px;
    transition: opacity var(--transition-all-time);
}

.btn_span{
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    gap: 10px;
    flex-wrap: nowrap;
    
}

.btn_span_text{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.14;
    color: var(--color-text-header-main);
    margin: 0;
    text-wrap: nowrap;
}

.service_btn_contact_us:hover::after {
    opacity: 1; /* Показати затемнення при наведенні */
}

/** ================/BOX_SERVICE================ */


/** ================CATEGORY_LIST================ */
.title_list_category{
    font-size: 20px;
    font-weight: 400;
    line-height: 1.18;
    text-align: left;

}

.category_container_lists{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category_column{
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: var(--border-category-list);
    overflow-y: hidden; 
    transition: all var(--transition-all-time);
}


.category_box_title_link_icon{
    padding-top: 20px;
    padding-bottom: 20px;
}


.category_column.open_category{
    max-height: 100%;
}


.category_title_link{
    font-family: var(--font-family-minor);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.36;
    text-align: left;
    transition: color var(--transition-all-time);
}

.category_title_link_not_child{
    padding-top: 20px;
    padding-bottom: 20px;
}

.category_box_title_link_icon{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.category_title_link_icon{
    width: 16px;
    height: 16px;
    display: block;
    transform: rotate(90deg);
}


.open_icon_category {
    transform: rotate(270deg);
}


.category_title_link:hover{
    color: var(--color-text-hover);
    cursor: pointer;
}


.category_list{
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 1;
    margin: 0;
    transform: translateY(-100%);
    padding-top: 10px;
    padding-bottom: 20px;
    transition: all var(--transition-all-time);
}

.category_list.open_category{
    transform: translateY(0);
}

.container_category_list{
    overflow: hidden;
    height: 0;
    transition: height 150ms linear 0s;
}

.container_category_list.open_category{
    height: 100%;
}



.category_links_item{
    font-family: var(--font-family-minor);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.36;
    transition: color var(--transition-all-time);
}

.category_links_item:hover{
    color: var(--color-text-hover);
    cursor: pointer;
}

/** ================/CATEGORY_LIST================ */




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

@media screen and (min-width: 768px) {
/** ================BOX_CATEGORY_AND_SWIPER_TABLET================ */
.home_swiper_viewport{
    width: 700px;
    height: 348px;
}


.home_img_responsive{
    width: 700px;
    height: 348px;
}



.home_swiper_pagination{
    display: block;
    bottom: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}
    
.swiper-pagination-bullet{
        display: block;
        width: 10px !important;
        height: 10px !important;
        border: var(--border-pagination);
        opacity: 1;
        background-color: rgba(0, 0, 0, 0);
        margin: 0;
    }
    
    .swiper-pagination-bullet:hover{
        
        background-color: var(--background-color-bullet-active);
    }
    
    .swiper-pagination-bullet-active{
        background-color: var(--background-color-bullet-active);
    }
    
    .slide-content{
        padding-left: 20px;
        padding-right: 20px;
    }
    
    
    .slide-title{
        width: 60%;
        font-size: 40px;
        margin-bottom: 40px;
    }
    
    
    .slide-title::before {
        bottom: -20px;
    }
    
    
    .slide-description{
        display: block;
        width: 57%;
        font-family: var(--font-family-minor);
        font-size: 14px;
        font-weight: 400;
        line-height: 1.09;
        text-align: left;
        color: var(--color-description-slide);
        margin-bottom: 50px;
    }
    
    
    .slide-description.position-left {
        text-align: right;
    } 
    
    .slide-button{
        width: 220px;
        height: 40px;
    }
    
/** ================/BOX_CATEGORY_AND_SWIPER_TABLET================ */
    
/** ================BOX_TABS_TABLET================ */
    
    .tabs_section_category{
        padding-top: 20px;
    }

    .tabs_box_title_link{
        justify-content: flex-start;
        margin-bottom: 20px;
    }

    .tabs_title{
        font-size: 24px;
    }

    .tabs_link{
        font-size: 16px;
    }

    .tabs_container_btn{
        row-gap: 10px;
        margin-bottom: 20px;
    }     
    
    
    .tabs_item_product_link{
        width: 220px;
    }

    .tabs_product_photo{
        height: 190px;
    }
    
    .tabs_box_product_info{
        gap: 10px;

    }
    
    .tabs_product_title{
        font-size: 14px;
    }
    
    .tabs_box_rating_price{
        gap: 10px;
    }
    
    .tabs_btn_add_product{
        margin-top: 0;        
    }

/** ================/BOX_TABS_TABLET================ */
 

/** ================BOX_SERVICE_TABLET================ */
    .service_box_column{
        flex-direction: row;
        gap: 25px;
    }

    .service_item{
        width: 210px;
        flex-direction: column;
    }

    .service_item_photo{
        width: 210px;
        height: 120px;
    }

    .service_item_title{
    text-align: center;
    }

    .service_item_content{
    text-align: center;
    }


    .service_info{
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .service_box_info_title_content{
        display: flex;
        flex-direction: column;
        width: 440px;
        gap: 10px;
    }

    .service_info_title{
        font-size: 24px;

    }

    .service_info_content{
        font-size: 16px;
    }
/** ================/BOX_SERVICE_TABLET================ */


/** ================CATEGORY_LIST_TABLET================ */
.title_list_category{
    font-size: 24px;
}

/** ================/CATEGORY_LIST_TABLET================ */




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



/** ================DESKTOP================ */
@media screen and (min-width: 1440px) {
/** ================BOX_CATEGORY_AND_SWIPER_DESKTOP================ */
    
    .list_category_home{
        display: block;
        background-color: var(--background-color-menu-category);
        width: 350px;
        height: 440px;
        position: relative;
        z-index: 100;
    }

    .home_swiper_viewport{
        width: 890px;
        height: 440px;
    }
    
    
    .home_img_responsive{
        width: 890px;
        height: 440px;
    }
    
    
    .slide-content{
        top: 50px;
        transform: translateY(0);
        padding-left: 40px;
        padding-right: 40px;
    }
     
    
    .slide-title{
        width: 61%;
        font-size: 48px;
    }
    
    .slide-description{ 
        font-size: 18px; 
    }
    
/** ================/BOX_CATEGORY_AND_SWIPER_DESKTOP================ */
/** ================BOX_TABS_DESKTOP================ */
    
    .tabs_section_category{
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .tabs_title{
        font-size: 32px;
    }
    
    .tabs_list_products{
        overflow: hidden;
    }

    .tabs_item_product_link{
        box-sizing: border-box;
        width: 240px;
    }

    .tabs_product_photo{
        height: 210px;
    }
    
     
/** ================/BOX_TABS_DESKTOP================ */


/** ================BOX_SERVICE_DESKTOP================ */
    .service_container{
        flex-direction: row;
        gap: 40px;
    }
    
    .service_box_column{
        flex-direction: row;
        gap: 30px;
    }

   
    .service_info{
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
    }

    .service_box_info_title_content{
        display: flex;
        flex-direction: column;
        width: 440px;
        gap: 10px;
    }

    .service_info_title{
        font-size: 32px;

    }

/** ================/BOX_SERVICE_DESKTOP================ */


/** ================CATEGORY_LIST_DESKTOP================ */
    .title_list_category{
        font-size: 32px;
        text-align: center;
        margin-bottom: 20px;
    }

    .category_container_lists{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .category_column{
        width: auto;
        gap: 10px;
        border-bottom: none;
        overflow-y: visible; 
        transition: all var(--transition-all-time);
    }

    .category_box_title_link_icon{
    padding: 0;
    
    }

    .category_title_link_not_child{
        padding: 0;
    }

    .category_box_title_link_icon{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
    }

    .category_title_link_icon{
    display: none;
    }


    .category_title_link:hover{
        color: var(--color-text-hover);
        cursor: pointer;
    }


    .category_list{
        transform: translateY(0);
        padding: 0;
    }


    .container_category_list{
        overflow: hidden;
        height: 100%;
    }



/** ================/CATEGORY_LIST_DESKTOP================ */




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


.tabs_item_product{
    position: relative;
}


.box_compensation_category {
    position: absolute;
    z-index: 990;
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    border-radius: 43px;
    color: #FEFBFA;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.21;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    background-color: #45A02E;

}


[data-swiper-slide-index="0"] .slide-content {
    display: none;
}


.hidden_heading {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}
