body {
    /*background: #553232; !* todo; remove later *!*/
    /*padding-bottom: 50vh;*/


    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

main {
    min-height: calc(100vh - 207px);
    padding-top: 50px;
}

h1 {
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
}

input[type=text] {
    width: 260px;
    height: 40px;
    font-size: 14px;
    border: #d9d9d9 1px solid;
    padding: 0 .25rem;
    text-align: center;
}
input[type=text]::placeholder {
    color: #b9b9b9;
    font-size: 13px;
}
input[type=checkbox]:disabled + label::before,
input[type=checkbox]:disabled + label::after {
    opacity: .5;
    cursor: not-allowed;
}

button {
    color: #000;
    background-color: #ffcc00;
    width: 260px;
    height: 40px;
    font-size: 15px;
    font-weight: 600;
    padding: 0;
    border: none;
    cursor: pointer;
    transition: all .2s ease-in-out;
}
button:hover {
    color: #fff;
    background-color: #1E1E1E;
}
button:disabled {
    color: #cdcdcd;
    background-color: #ebebeb;
}

@media (min-width: 768px) {
    body {
        font-size: 16px;
    }

    main {
        min-height: calc(100vh - 120px);
        padding-top: 0;
    }

    h1 {
        font-size: 2rem;
    }

    button {
        font-size: 16px;
    }
    input[type=text]::placeholder {
        font-size: 16px;
    }
}

.header-mobile {
    background-color: #000;
    color: #fff;
    height: 50px;
    display: flex;
    position: fixed;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    z-index: 9001;
}
.header-mobile img {
    height: 26px;
}
.header-mobile .menu-cart {
    position: relative;
    margin-right: 1.5rem;
}
.header-mobile .menu-cart span {
    position: absolute;
    top: -5px;
    right: -5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #ffcc00;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    width: 20px;
    height: 20px;
}

.mobile-menu-container {
    padding: 5px 0;
    cursor: pointer;
}
.mobile-menu-toggle {
    z-index: 1001;
}
.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    border-radius: 5px;
    transition: 0.3s;
    transform-origin: center;
}
.mobile-menu-toggle.active .hamburger-line:first-child {
    transform: rotate(45deg) translate(2px, 4px);
}
.mobile-menu-toggle.active .hamburger-line:last-child {
    transform: rotate(-45deg) translate(2px, -4px);
}
.mobile-menu {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    background-color: #000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-menu li {
    border-bottom: 1px solid #0E0E0E;
}
.mobile-menu li:last-child {
    border-bottom: none;
}
.mobile-menu a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s;
}


.header-desktop {
    display: none;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color: #000;
}
.header-desktop-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    color: #fff;
    font-size: 16px;
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.header-desktop-content a {
    color: #fff;
    text-decoration: none;
}
.header-desktop-content a:visited {
    color: #fff;
}
.header-desktop-content .logo img {
    height: 45px;
}
.header-desktop-content .header-socials {
    display: flex;
    gap: 1rem;
}
.header-desktop-content .header-socials a {
    filter: grayscale(1);
    opacity: .5;
    transition: all .2s ease;
}
.header-desktop-content .header-socials a:first-child {
    display: flex;
    align-items: center;
}
.header-desktop-content .header-socials a:hover {
    filter: grayscale(0);
    opacity: 1;
}
.header-desktop-content .header-text-link {
    color: #fff;
    opacity: .3;
    transition: all .2s ease;
    padding: .5rem 0;
}
.header-desktop-content .header-text-link:hover {
    opacity: 1;
}

@media (min-width: 768px) {
    .header-mobile {
        display: none !important;
    }
    .header-desktop {
        display: flex;
        background-color: rgba(0,0,0,0.75);
        backdrop-filter: saturate(175%) blur(20px);
        position: fixed;
        left: 0;
        right: 0;
        z-index: 9001;
    }
}


.footer-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #404040;
    height: 50px;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    z-index: 9001;
}
.footer-mobile a {
    height: 24px;
    width: 24px;
}
.footer-cart {
    position: relative;
}
.footer-cart span {
    position: absolute;
    top: -5px;
    right: -5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #ffcc00;
    color: #000;
    font-size: 11px;
    font-weight: 600;
    width: 18px;
    height: 18px;
}

.footer-content {
    color: #868686;
    background-color: #0E0E0E;
    padding: 3rem 2rem 100px;
    text-align: center;
    font-weight: 500;
    line-height: 1.5;
}
.footer-phone {
    display: block;
    color: #868686;
    text-decoration: none;
    margin-bottom: 1.5rem;
}
.footer-phone:visited {
    color: #868686;
}
.footer-social-link {
    display: flex;
    justify-content: center;
    gap: .5rem;
    color: #4c4c4c;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .footer-mobile {
        display: none;
    }

    .footer-content-inner {
        max-width: 1330px;
        width: 100%;
        margin: 0 auto;
        font-size: 14px;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }
    .footer-content {
        display: flex;
        justify-content: space-between;
        height: 72px;
        padding: 0 2rem;
    }
    .footer-copyright {
        order: 1;
        flex-grow: 1;
    }
    .footer-phone {
        order: 3;
        margin-bottom: 0;
    }
    .footer-social-link {
        order: 2;
    }
}



.mobile-block {
    display: block;
}
.desktop-block {
    display: none;
}
@media (min-width: 768px) {
    .mobile-block {
        display: none;
    }
    .desktop-block {
        display: block;
    }
}

.flex-grow {
    flex-grow: 1;
}

.text-right {
    text-align: right !important;
}
