/* -------------header--------------- */

header {
    background-color: #050505;
}

.catalog-button-header {
    position: relative;
    list-style: none;
}

.header__top {
    display: flex;
    padding: 18px 25px;

    justify-content: space-between;
    align-items: center;
    max-width: 1730px;
    margin: 0 auto;
}

.header__top-left {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
}

.header__top-left-only-mobile span {
    color: #FAFAFA;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.notification-dot {
    color: #FFF;
    text-align: center;
    font-family: "Source Sans Pro Bold", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    position: absolute;
    top: 0;
    right: 0;
    background-color: red;
    border-radius: 50%;
    padding: 0.5px 9px;
    box-sizing: border-box;
    pointer-events: none;
    user-select: none;
    transform: translate(50%, -50%);
}

.header-right-cart-button {
    background: none;
    border: none;
}

.header__top-left-desktop {
    display: none;
}


.header__top-center {
    display: none;
}

.header__top-right {
    display: flex;
    gap: 20px;
}

.header__top-right button, .header__top-right a {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
    background: none;
    border: none;
}

.header__top-right_name {
    color: #FAFAFA;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 22px;

    max-width: 1730px;
    margin: 0 auto;
}

nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #050505;
}


.header-main-section-left {
    display: flex;
    gap: 24px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    width: 60px;
}

.section-center {
    display: none;
}


.section-left {
    display: flex;
    gap: 20px;
}

.basket {
    position: relative;
}

.basket a {
    position: relative;
    display: inline-block;
}

.favourite {
    position: relative;
}

.favourite a {
    position: relative;
    display: inline-block;
}

#about-us {
    scroll-margin-top: 100px;
}

/* -------------end header--------------- */


/* media 576 */
@media (min-width: 576px) {
    .header__top-left-only-mobile {
        display: none;
    }

    .header__top-left-desktop {
        display: block;
        color: #FAFAFA;
        font-family: "Source Sans Pro", sans-serif;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

}

@media (min-width: 768px) {
    .header__top {
        padding: 18px 43px;
    }

    .header-main {
        padding: 30px 43px;
    }
}

@media (min-width: 992px) {
    .header__top {
        padding: 18px 40px;
    }

    .header-main {
        padding: 9px 40px;
    }


    .header__top-center {
        display: flex;
        justify-content: center;
    }

    .header__top-center ul {
        padding: 0;
    }

    .header__top-number-phone {
        font-family: "Source Sans Pro Bold", sans-serif;
        font-size: 24px;
        font-style: normal;
        line-height: normal;
        color: rgba(250, 250, 250, 0.36);
        list-style-type: none;
    }

    .header__top-email {
        display: none;
    }

    .section-center {
        display: flex;
        gap: 30px;
    }

    .section-center li {
        /* H6(24) */
        color: #FAFAFA;
        font-family: "Source Sans Pro Bold", sans-serif;
        font-size: 24px;
        font-style: normal;
        line-height: normal;
        list-style-type: none;
    }
}

@media (min-width: 1200px) {
    .header__top-center ul {
        display: flex;
        flex-direction: row;
        gap: 30px;
    }

    .header__top-email {
        display: flex;
        font-family: "Source Sans Pro Bold", sans-serif;
        font-size: 24px;
        font-style: normal;
        line-height: normal;
        color: rgba(250, 250, 250, 0.36);
        list-style-type: none;
    }
}

@media (min-width: 1730px) {
    .header__top {
        padding: 22px 100px;
    }

    .header-main {
        padding: 22px 100px;
    }
}

/* -------------fonts--------------- */
@font-face {
    font-family: "Source Sans Pro Bold";
    src: url("../../fonts/SourceSansPro-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "Source Sans Pro";
    src: url("../../fonts/SourceSansPro-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
}


@font-face {
    font-family: "Fixel Display-Bold";
    src: url("../../fonts/FixelDisplay-Bold.otf") format("truetype");
    font-style: normal;
    font-weight: 800;
}