a,
a:visited {
    text-decoration: none;
    cursor: pointer;
    color: #242424;
}

header {
    padding: 17.5px 24px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    color: #242424;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(43, 43, 43, 0.1);
}

.header-container {
    max-width: 1530px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.header-center {
    display: none;
}

.header-center-page {
    list-style-type: none;
}

.header-email a {
    display: flex;
    flex-direction: row;
    gap: 6px;
    color: rgba(43, 43, 43, 0.25);
    line-height: 16px;
    text-decoration: none;
}

.header-right-desktop {
    display: none;
}

@media (min-width: 768px) {
    header {
        padding: 20px 43px;
    }


    .header-left-part {
        display: flex;
        flex-direction: row;
        gap: 40px;
    }

    .header-center {
        display: flex;
    }

    .header-center-pages {
        padding: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 40px;
        margin: 0;
    }

    .header-center-page {
        text-align: center;
        line-height: 20px;
    }

    .header-email {
        display: none;
    }

    .header-right-mobile {
        display: none;
    }

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

    .header-right-desktop-cart {
        padding: 16px;
    }

    .header-right-desktop-button {
        padding: 16px 19px;
        border-radius: 20px;
        background: #926A54;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        line-height: 20px;
    }

    .header-right-desktop-button:visited {
        color: #fff;
    }

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

@media (min-width: 1200px) {
    header {
        padding: 20px 60px;
    }

    .header-container {
        justify-content: space-between;
    }

    .header-left-part {
        gap: 88px;
    }

    .header-center-pages {
        gap: 73px;
    }

    .header-email {
        display: flex;
    }

    .header-right, .header-center {
        margin-left: 0;
    }

    .header-right-desktop {
        gap: 30px;
    }

    .header-right-desktop-button {
        padding: 16px 75px;
    }
}

@media (min-width: 1730px) {
    header {
        padding: 20px 99px;
    }
}