@media screen and (max-width: 800px) {
    .burger-menu {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 2rem;
        color: white;
        cursor: pointer;
        z-index: 300 !important;
    }

    /* Hide burger menu when menu is open */
    #menu-toggle:checked ~ .burger-menu {
        display: none;
    }
    
    /* Backdrop overlay when menu is open */
    #menu-toggle:checked ~ nav::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 240;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    nav ul {
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        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%);
        z-index: 250;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }

    #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;
        z-index: 300;
    }

    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;
    }

    .language-selector {
        position: static;
        margin: 1em auto;
        margin-right: 5em;
        display: flex;
        justify-content: end;
        text-align: center;
    }

    .language-selector .select2-container {
        max-width: 80px;
        min-width: 40px;
    }

    .language-selector .select2-selection__rendered {
        font-size: 0;
    }

    .language-selector .select2-selection__rendered img {
        width: 24px;
        height: auto;
        margin-top: 5px;
    }

    .select2-results__option {
        font-size: 0px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    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;
    }

    .testimonials-carousel {
        padding: 2em 1em 3em 1em;
        margin-bottom: 4em;
    }

    .testimonials-carousel::after {
        font-size: 8rem;
        left: 50%;
        transform: translateX(-50%);
        top: 10%;
    }

    .testimonials-carousel h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .carousel {
        max-width: 100%;
        min-height: 200px;
        padding: 0 1em;
    }

    .testimonial {
        padding: 15px;
    }

    .testimonial p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .testimonial h4 {
        font-size: 0.95rem;
    }
}