@media screen and (max-width: 800px) {
    .burger-menu {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 2rem;
        color: white;
        cursor: pointer;
    }
    
    nav ul {
        flex-direction: column;
        background: rgba(0, 0, 0, 0.87);
        position: fixed;
        top: 0;
        right: 0;
        width: 60%;
        height: 100vh;
        border-bottom-left-radius: 0.6em;
        border-bottom-right-radius: 0.6em;
        padding-top: 7em;
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%);
    }

    #menu-toggle:checked ~ nav ul {
        transform: translateX(0);
        display: block;
    }

    #menu-toggle:not(:checked) ~ nav ul {
        transform: translateX(100%);
        display: block;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 2rem;
        color: white;
        cursor: pointer;
    }

    nav ul li a {
        display: block;
        padding: 1em;
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: bold;
    }

    nav ul li:nth-child(4) .special {
        display: none;
    }

    section.banner header {
        margin: 0 auto;
        padding: 1em;
    }

    header h2 {
        font-size: 2rem;
    }

    header p {
        font-size: 16px;
        padding-bottom: 2rem;
    }

    div.gallery ul {
        flex-direction: column;
        gap: 1.5em;
        align-items: center;
    }

    div.gallery ul li img {
        max-width: 100%;
        height: auto;
    }

    div.main-content {
        flex-direction: column;
        max-width: 90%;
    }

    div.info {
        max-width: 100%;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    div.info a {
        margin: 0em auto;
    }

    section.contacts {
        padding: 2em;
    }

    div.contacts-content {
        width: 90%;
    }

    div.contacts-content p {
        font-size: 18px;
    }

    div.contacts-content a {
        display: block;
        text-align: center;
        margin: 1em auto;
    }

    .new-products .gallery ul {
        flex-direction: column;
        align-items: center;
    }

    .new-products .gallery ul li img {
        width: 100%;
    }

    .site-footer {
        padding: 3em 1em;
        border-top-left-radius: 20%;
        border-top-right-radius: 20%;
    }

    .footer-info {
        flex-direction: column;
        gap: 2em;
        text-align: center;
    }

    .footer-buttons {
        gap: 1em;
    }

    .copyright {
        width: 100%;
        padding-top: 2em;
    }
}