/* VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV */
/* =============== ГЛОБАЛЬНЫЕ ПЕРЕМЕННЫЕ =============== */
/* VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV */

@font-face {
    font-family: 'Impact_load_font';
    src: url('../static/fonts/Anton-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter_load_font';
    src: url('../static/fonts/inter/Inter-VariableFont_opsz\,wght.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM_Serif_Display';
    src: url('../static/fonts/DM_Serif_Display/DMSerifDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV */
/* =============== ГЛОБАЛЬНАЯ СТИЛИЗАЦИЯ =============== */
/* VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV */

html {
    margin: 0;
}

body {
    margin: 0;
    width: 100%;
    /* height: 100vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    overflow-x: hidden;
}

/* =============== ШАПКА САЙТА =============== */

.site_header_cl {
    width: calc(100vw - 80px);
    height: 5vh;
    padding: 40px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.site_header_cl>section {
    width: 32%;
}

/* Вызов меню бургер */

.call_burger_menu_cl {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
}

.call_burger_menu_cl>section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7.5px;
}

.call_burger_menu_cl>section:hover {
    cursor: pointer;
}

.call_burger_menu_cl>section>div {
    width: 25px;
    height: 2px;
    border-radius: 1px;
    background-color: black;
}

/* Логотип компании */

.company_logo_cl {
    display: flex;
    align-items: center;
    justify-content: center;
}

.company_logo_cl>svg {
    width: 15vh;
    height: 3.5vh;
    color: black;
    scale: 1.5;
}

.company_logo_cl>svg:hover {
    cursor: pointer;
}

/* Мини навигация */

.mini_navigation_cl {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    gap: 2vw;
}

.mini_navigation_cl>span {
    font-size: 2.25vh;
    color: black;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
}

.mini_navigation_cl>span:hover {
    cursor: pointer;
}

@media (max-width: 1000px) {

    .site_header_cl {
        width: calc(100vw - 40px);
        height: 4vh;
        padding: 30px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 10px;
    }

    .call_burger_menu_cl>section {
        gap: 7.5px;
    }

    .call_burger_menu_cl>section>div {
        width: 27.5px;
    }

    .company_logo_cl>svg {
        width: 16vh;
        height: 4vh;
    }

    .mini_navigation_cl>span {
        font-size: 2.25vh;
    }
}

@media (max-width: 600px) {

    .site_header_cl {
        width: calc(100vw - 20px);
        height: 3.5vh;
        padding: 20px;
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 25px;
        padding-bottom: 5px;
    }

    .mini_navigation_cl>span:nth-child(1) {
        display: none;
    }

    .call_burger_menu_cl>section {
        gap: 5px;
    }

    .call_burger_menu_cl>section>div {
        width: 22.5px;
        height: 2px;
        border-radius: 1px;
    }

    .company_logo_cl>svg {
        width: 14vh;
        height: 3.5vh;
        scale: 1.25;
    }

    .mini_navigation_cl>span {
        font-size: 2vh;
    }

}

/* =============== ПОДВАЛ САЙТА =============== */

.basement_website_cl {
    width: 100vw;
    display: grid;
    grid-template-columns: 0.5fr 0.25fr 0.25fr;
    /* grid-auto-rows: 11.25vh; */
    border-top: 2px solid black;
    background-color: white;
    z-index: 10;
}

.basement_website_cl>section {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.basement_website_cl>section>svg {
    width: 20vh;
    height: 5vh;
    color: black;
    scale: 1.25;
    transform: translateX(20px);
}

.basement_website_cl>section>svg:hover {
    cursor: pointer;
}

.basement_website_cl>section>a {
    font-size: 2.15vh;
    color: black;
    /* font-family: 'Impact_load_font'; */
    font-family: 'Times New Roman', Times, serif;
    font-weight: 600;
    text-decoration: none;
}

.basement_website_cl>section:nth-child(1) {
    padding-top: 10px;
    padding-left: 15px;
    padding-bottom: 20px;
}

.basement_website_cl>section:nth-child(2) {
    border-left: 2px solid black;
    border-right: 2px solid black;
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 40px;
}

.basement_website_cl>section:nth-child(3) {
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 40px;
}

@media (max-width: 1000px) {
    .basement_website_cl>section>svg {
        transform: translateX(10px);
    }
    .basement_website_cl>section:nth-child(2) {
        padding-left: 5px;
    }
    .basement_website_cl>section:nth-child(3) {
        padding-left: 5px;
    }
}

@media (max-width: 600px) {
    .basement_website_cl {
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: start;
        justify-content: center;
        flex-wrap: wrap;
    }
    .basement_website_cl>section>svg {
        transform: translateX(-0px) translateY(5px);
        scale: 1;
    }
    .basement_website_cl>section:nth-child(1) {
        width: 100vw;
        padding-bottom: 0px;
    }
    .basement_website_cl>section:nth-child(2) {
        padding-left: 40px;
        width: calc(40vw - 40px);
        border-left: none;
        border-right: none;
        padding-bottom: 50px;
    }
    .basement_website_cl>section:nth-child(3) {
        padding-left: 20px;
        width: calc(50vw - 20px);
        padding-bottom: 50px;
        margin-right: 10vw;
    }

    .basement_website_cl>section>a {
        font-size: 2vh;
    }
}

/* =============== МЕНЮ БУРГЕР =============== */

.burger_menu_cl {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: #282828;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    transition: 500ms all;
    z-index: 502;
    opacity: 0;
    visibility: collapse;
}

.bur_me_header_cl {
    width: calc(100% - 10vw);
    height: 15vh;
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.bur_me_header_cl>div {
    width: 30%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.bur_me_header_cl>div:nth-child(1) {
    justify-content: start;
}

.bur_me_header_cl>div:nth-child(1)>svg {
    width: 2.5vh;
    height: 2.5vh;
    color: gray;
    transition: 300ms all ease-in;
}

.bur_me_header_cl>div:nth-child(1)>svg:hover {
    cursor: pointer;
    transform: rotateZ(180deg);
}

.bur_me_header_cl>div:nth-child(2) {
    justify-content: center;
}

.bur_me_header_cl>div:nth-child(2)>svg {
    width: 22vh;
    height: 6vh;
    color: white;
}

.bur_me_row_cl {
    width: calc(100% - 10vw);
    height: 8vh;
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
    flex-direction: row;
    border-top: 2px solid rgba(128, 128, 128, 0.25);
    align-items: start;
    text-align: center;
    justify-content: start;
}

.bur_me_row_cl:hover {
    cursor: pointer;
}

.bur_me_row_cl>div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
}

.bur_me_row_cl>div:nth-child(1) {
    width: 15%;
}

.bur_me_row_cl>div:nth-child(2) {
    width: 60%;
    justify-content: center;
}

.bur_me_row_cl>div:nth-child(1)>span {
    font-size: 3vh;
    color: gray;
    font-family: 'Impact_load_font';
    transition: 300ms all;
}

.bur_me_row_cl>div:nth-child(2)>span {
    font-size: 4vh;
    color: white;
    font-family: 'Impact_load_font';
}

#men_burger_menu_id, #women_burger_menu_id {
    width: 100%;
    height: 0vh;
    padding-top: 0vh;
    padding-bottom: 0vh;
    display: flex;
    flex-direction: column;
    background-color: white;
    /* padding-top: 1.5vh;
    padding-bottom: 1.5vh; */
    overflow: hidden;
    transition: 500ms all;
}

.sub_bm_row_cl {
    width: calc(100% - 10vw);
    height: 4.5vh;
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.sub_bm_row_cl:hover {
    cursor: pointer;
}

.sub_bm_row_cl>div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
}

.sub_bm_row_cl>div:nth-child(1) {
    width: 40%;
}

.sub_bm_row_cl>div:nth-child(2) {
    width: 60%;
}

.sub_bm_row_cl>div:nth-child(2)>span {
    font-size: 2.5vh;
    color: black;
    font-weight: 600;
    font-family: 'Inter_load_font';
}

.sub_bm_row_cl>div:nth-child(2):hover>span {
    font-style: italic;
}

/* VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV */
/* ===================== АНИМАЦИИ ===================== */
/* VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV */

/* Перемещение цвета текста с лева на право */

.bur_me_row_cl:hover>div:nth-child(1)>span {
    color: white;
}

.bur_me_row_cl>div:nth-child(2)>span {
    font-style: normal;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.bur_me_row_cl>div:nth-child(2)>span>span {
    overflow: hidden;
    text-wrap: nowrap;
}

.bur_me_row_cl>div:nth-child(2)>span>span:nth-child(1) {
    position: absolute;
    width: 0px;
    color: gray;
    text-shadow: 0 0 2px gray;
    transition: 450ms all;
}

/* =============== МОДАЛЬНОЕ ОКНО ЗАГРУЗКИ =============== */

#download_window_id {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 5000;
}

#download_window_id>img {
    width: 10vh;
    height: 10vh;
    object-fit: contain;
    object-position: 50% 50%;
}

/* =============== КАРТОЧКА КОРЗИНЫ ТОВАРА =============== */

#product_basket_card_id {
    position: absolute;
    top: calc(5vh + 55px);
    left: 0;
    width: 100vw;
    height: calc(100vh - 5vh - 55px);
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 500;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: end;
    opacity: 0;
    visibility: collapse;
    transition: 500ms all;
}

#product_basket_card_id>section {
    width: 25vw;
    padding: 20px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Шапка карточки корзины товара */

.header_product_basket_card_cl {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.header_product_basket_card_cl>span {
    font-size: 2.5vh;
    color: black;
    font-family: 'Impact_load_font';
}

.header_product_basket_card_cl>svg {
    width: 3vh;
    height: 3vh;
    color: #BFBFBF;
}

.header_product_basket_card_cl>svg:hover {
    cursor: pointer;
}

.there_items_cart_cl {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* Товаров нет в корзине */

.there_items_cart_cl {
    width: 100%;
    height: 30vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 2px solid #BFBFBF;
    padding-top: 10px;
    margin-top: 10px;
}

.there_items_cart_cl>span:nth-child(1) {
    font-size: 2vh;
    color: black;
    font-family: 'Impact_load_font';
}

.there_items_cart_cl>span:nth-child(2) {
    font-size: 1.75vh;
    color: #939393;
    font-family: 'Inter_load_font';
}

.there_items_cart_cl>div {
    width: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.there_items_cart_cl>div:hover {
    cursor: pointer;
}

.there_items_cart_cl>div>span {
    padding: 7.5px;
    font-size: 2vh;
    font-weight: bold;
    color: white;
    font-family: 'Inter_load_font';
}

/* Сами товары в корзине */

.items_themselves_basket_cl {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.items_themselves_basket_cl>section:nth-child(1) {
    width: 100%;
    height: 40vh;
    overflow-y: scroll;
}

.items_themselves_basket_cl>section:nth-child(1)>section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.items_themselves_basket_cl>div {
    width: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.items_themselves_basket_cl>div:hover {
    cursor: pointer;
}

.items_themselves_basket_cl>div>span {
    padding: 7.5px;
    font-size: 2vh;
    font-weight: bold;
    color: white;
    font-family: 'Inter_load_font';
}

.items_themselves_basket_cl>section:nth-child(3) {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.items_themselves_basket_cl>section:nth-child(3)>span:nth-child(1) {
    font-size: 2vh;
    color: #BFBFBF;
    font-family: 'Inter_load_font';
}

.items_themselves_basket_cl>section:nth-child(3)>span:nth-child(2) {
    font-size: 2.5vh;
    font-style: italic;
    color: black;
    font-family: 'DM_Serif_Display';
}

.card_header_basket_cl {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    transition: 300ms all;
}

.card_header_basket_cl>img {
    width: 30%;
    height: 15vh;
    object-fit: contain;
    object-position: 50% 50%;
}

.card_header_basket_cl>section {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.card_header_basket_cl>section>article {
    width: 95%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.card_header_basket_cl>section>article>span {
    font-size: 2vh;
    color: black;
    font-family: 'Impact_load_font';
}

.card_header_basket_cl>section>article>svg {
    width: 2.5vh;
    height: 2.5vh;
    color: #BFBFBF;
}

.card_header_basket_cl>section>article>svg:hover {
    cursor: pointer;
}

.card_header_basket_cl>section>div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 5px;
}

.card_header_basket_cl>section>div>span {
    font-size: 1.75vh;
    color: #939393;
    font-family: 'Inter_load_font';
}

.card_header_basket_cl>section>section {
    width: 95%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.card_header_basket_cl>section>section>div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.card_header_basket_cl>section>section>div>span {
    font-size: 2vh;
    color: black;
    font-family: 'Inter_load_font';
}

.card_header_basket_cl>section>section>div>span:hover {
    cursor: pointer;
}

.card_header_basket_cl>section>section>span {
    font-size: 2vh;
    font-style: italic;
    color: black;
    font-family: 'DM_Serif_Display';
}

/* VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV */
/* ================ АДАПТИВНАЯ ВЕРСТКА ================ */
/* VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV */

@media (max-width: 1000px) {
    #product_basket_card_id>section {
        width: 40vw;
    }

    #product_basket_card_id {
        top: calc(5vh + 60px);
        height: calc(100vh - 5vh - 60px);
    }
}

@media (max-width: 600px) {

    #product_basket_card_id {
        top: calc(5vh + 65px);
        height: calc(100vh - 5vh - 65px);
    }

    .bur_me_header_cl>div {
        width: 45%;
    }

    .bur_me_header_cl>div:nth-child(1)>svg {
        width: 1.75vh;
        height: 1.75vh;
    }

    .bur_me_header_cl>div:nth-child(1)>svg:hover {
        cursor: pointer;
        transform: rotateZ(0deg);
    }

    .bur_me_header_cl>div:nth-child(2)>svg {
        width: 14vh;
        height: 7vh;
    }

    .bur_me_row_cl {
        height: 7.5vh;
        align-items: start;
        text-align: center;
        justify-content: start;
    }

    .bur_me_row_cl>div:nth-child(1) {
        width: 25%;
    }

    .bur_me_row_cl>div:nth-child(2) {
        width: 50%;
        margin-top: 1.0625vh;
        justify-content: center;
    }

    .bur_me_row_cl>div:nth-child(1)>span {
        font-size: 2.25vh;
    }

    .sub_bm_row_cl  {
        height: 3.5vh;
    }

    .sub_bm_row_cl>div:nth-child(2)>span {
        font-size: 2vh;
    }

    .bur_me_row_cl>div:nth-child(2)>span {
        font-size: 3.25vh;
    }

    #product_basket_card_id {
        top: calc(5vh + 40px);
        height: calc(100vh - 5vh - 40px);
    }

    #product_basket_card_id>section {
        width: 100vw;
    }

}

/* =============== СОГЛАСИЕ НА КУКИ =============== */

#consent_to_cookies_id {
    position: fixed;
    left: 7.5vh;
    width: 25vw;
    height: fit-content;
    padding: 20px;
    padding-left: 40px;
    padding-right: 40px;
    border: 2px solid black;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 11;
    opacity: 0;
    visibility: collapse;
}

#consent_to_cookies_id>span {
    font-size: 2.5vh;
    color: black;
    font-family: 'Times New Roman', Times, serif;
}

#consent_to_cookies_id>section {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter_load_font';
}

#consent_to_cookies_id>section>div {
    padding: 5px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: black;
    font-size: 2vh;
    color: white;
    font-family: 'Inter_load_font';
}

#consent_to_cookies_id>section>div:hover {
    cursor: pointer;
}

@media (max-width: 600px) {
    #consent_to_cookies_id {
        width: calc(90vw - 40px);
        padding-left: 20px;
        padding-right: 20px;
        left: 5vw;
    }
}