body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;    
    overflow: hidden;
}

.menus {
    margin-top: -15px;
    display: flex;
}

ol {
    list-style-type: none;
}

li {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 5px;
}

span {
    color: lightgrey;
}

span.nuevo {
    color: red;
}


.precio {
    /* background-color: aqua; */
    width: 25%;
    padding: 0 0px 0 0;
    text-align: center;
}

.menu-section {
    position: relative;
    width: 59vw;
    top: 100px;
}

.section-separator {
    /* background-color: blueviolet; */
    margin: -20px 0 -20px 0;
}

/* Generic menu item styling */
.menu-items {
    list-style-type: none;
}

/* Menu items container */
.menu-item {
    cursor: pointer;
}

/* Arrow styling - generic for all orientations */
.menu-arrow {
    position: absolute;
    background-color: #fdb82f;
    border-radius: 0 0 50px 0;
    z-index: -1;
    transition: top 0.5s ease-in-out, left 0.5s ease-in-out;
    display: none;
}

.arrow-horizontal {
    width: 560px;
    height: 45px;
}

.arrow-vertical {
    width: 650px;
    height: 55px;
}

/* Image container */
.image-container {
    position: relative;
}

/* Generic menu image styling - works for all images */
.menu-image {
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease;
}

/* Position variants for different menu sections - configurable via image class */
/* Section 1: Desserts (menu-image-1) */
.menu-section .menu-image-1 {
    top: -100px;
    left: 1150px;
    transform: scale(150%);
}

.coke-fries-image {
    position: fixed;
    top: 600px;
    left: 800px;
    z-index: -1;
    transform: scale(150%);
}

/* Visible state for images */
.menu-image.visible {
    opacity: 1;
}


@media only screen and (max-width: 1100px) {

    body {
        overflow-y: auto;
    }

    .menus {
        flex-direction: column;
    }


    /* MENU SECTIONS */

    .menu-section {
        padding-top: 15px;
    }

    .menu-section {
        width: 100%;
        height: 870px;
        /* background-color: rgba(255, 0, 0, 0.644); */
    }

    /* Target the vertical arrow of the first section (Clasicos) */
    .menu-arrow.arrow-vertical:nth-of-type(3) {
        left: 0 !important;
    }

    .uPaddingRight {
        padding: 0 60px 0 0;
    }
    

    /* MENU SECTIONS END*/

    /* Position variants for different menu sections - configurable via image class */
    /* Section 1: Desserts (menu-image-1) */
    .menu-section:nth-of-type(1) .menu-image-1 {
        position: fixed;
        top: 1200px;
        left: 150px;
        transform: scale(150%);
    }

    .coke-fries-image {
        top: 1200px;
        left: 750px;
        transform: scale(120%);
    }

}
