.productosData {
    position: relative; /* Arrow will now be positioned relative to this table */
}

.productosData td {
    padding: 10px 0px;
}

.productosCafes {
    position: relative; /* Arrow will now be positioned relative to this table */
}

.productosCafes td {
    padding: 10px 10px;
    top: 300px;
}

table.productosCafes,tr {
    justify-content: right;
}

table.productosData,tr {
    justify-content: left;
    top: -20px;
}

table.productosData tr td:last-child {
    text-align: center;
}

.productosData td.col3{
    padding-right: 10px;
    padding-left: 20px;  
}

.tituloCafe {
    position: relative;
    color: #ffffff;
    font-size: 70px;
    top: 280px;
    white-space: nowrap;
    padding-top: 200px;
    padding-left: 145px;
}


/* CAFE FRIO */

.tituloCafeFrio {
    position: relative;
    color: #ffffff;
    left: 665px;
    top: 230px;
    font-size: 40px;
    padding-top: 15px;
    padding-bottom: 250px;
    justify-content: right;
}

.cafeFrio td {
    padding: 10px 0px;
    top: 10px;
}

table.cafeFrio,tr {
    position: relative;
    justify-content: right;
    padding-right: 110px;
}

.comboFrios {
    position: absolute;
    top: 1100px;
    left: 30px;
    transform: scale(90%)
}

/* CAFE FRIO FINAL*/

.col1 td {
    white-space: nowrap;
}

.col1 {
    font-size: 30px;
}

.tituloBebidas{
    position: relative;
    color: #ffffff;
    font-size: 70px;
    white-space: nowrap;
    padding-top: 140px;
    padding-left: 140px;
    padding-bottom: 50px;
    top: 0px;
}


/* Arrow Styling */
#arrow {
    position: absolute;
    width: 380px;
    height: 56px;
    border-radius: 0 0 0px 56px;
    background-color: #fdb82f;
    pointer-events: none; /* To prevent interfering with clicks */
    transition: top 0.5s ease-in-out, left 0.5s ease-in-out; /* Smooth movement */
}

#arrow2 {
    position: absolute;
    width: 500px;
    height: 56px;
    border-radius: 0 0 56px 0;
    background-color: #fdb82f;
    pointer-events: none; /* To prevent interfering with clicks */
    transition: top 0.5s ease-in-out, left 0.5s ease-in-out; /* Smooth movement */
}

#arrow3 {
    position: absolute;
    width: 390px;
    height: 56px;
    border-radius: 0 0 56px 0;
    background-color: #fdb82f;
    pointer-events: none; /* To prevent interfering with clicks */
    transition: top 0.5s ease-in-out, left 0.5s ease-in-out; /* Smooth movement */
}

/* Image Styling */
.menu-image {
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease;
}

.menu-image2 {
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease;
}

.combo {
    position: absolute;
    top: 1110px;
    left: 60px;
    transform: scale(120%)
}

.combo2 {
    align-items: end;
    position:absolute;
    top: 280px;
    left: 550px;
    transform: scale(120%)
}

.combo2.bebidas {
    align-items: end;
    position:absolute;
    top: 230px;
    left: 680px;
    transform: scale(90%)
}
.combo2.sprite {
    position: absolute;
    top: 230px;
    left: 680px;
    transform: scale(90%)
}

.combo2.mcFlurryC {
    position: absolute;
    top: 350px;
    left: 250px;
    transform: scale(100%)
}

.visible {
    opacity: 1;
}

#menuboard {
    width: 1080px;
    height: 1920px;
    background-image: url(../imagenes/Almuerzo/BackgoundPostresBG.png);
}

td {
    align-items: center;
    align-content: center;
    padding: 20px 0 0 0;
}

.on-top {
    position: relative;
    z-index: 9999;
}

table {
    display: flex;
    color: #ffffff;
}

.center {
    margin: auto;
    width: 50%;
}

.nuevo {
    color: red;
    font-weight: bold;
}



/* PARA PANTALLAS HORIZONTALES =============================================== */

@media only screen and (min-width: 1400px) {

    body {
        background-size: 1920px 1080px;
    }

    /* Set up horizontal dual menu */
    #menuboard {
        background-image: url(../imagenes/Almuerzo/Backgoundpostres_hz.png);
        color: black;
        width: 1920px;
        height: 1080px;
        display: flex;
        justify-content: space-between; /* Adds space between the two sections */
        align-items: flex-start;       /* Aligns both sections at the top */
        gap: 20px; 
    }

    /* Arrow Styling */

    #arrow {
        width: 400px;
        height: 56px;
    }
    
    #arrow2 {
        width: 500px;
        height: 56px;

    }
    
    #arrow3 {
        width: 280px;
        height: 56px;
    }


    table.productosData {
        table-layout: fixed; /* Ensures cells respect their width */
        width: 100%; /* Full width table */
    }

    .productosData td.col3{
        padding-left: 40px;  
    }   

    .productosCafes td {
        /* padding-left: -300px; */
        left: -40px;
        top: -10px;
    }

    #preciocDominicano::after,
    #precioExpreso::after,
    #precioCortado::after,
    #precioCafeConLeche::after,
    #precioCappuccino::after,
    #precioMokaccino::after,
    #precioChocolate::after {
        left: -60px;
    }

    
    table.productosData td.col3 {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; /* Optional: shows '...' if text overflows */
    }
    
    table.productosData, tr {
        justify-content: flex-start; /* Prevents spacing issues */
    }

    
    #seccionCafes {
        flex: 1; /* Takes up remaining space on the left */
    }
    
    #seccionBebidas {
        flex: 1; /* Takes up remaining space on the right */
    }
    /* Setup end */
    
    table.productosCafes,tr {
        justify-content: left;
        left: 0px;
    }
    
    table.productosData,tr {
        justify-content: left;
        top: 0px;
    }

    .tituloCafe {
        position: relative;
        color: #ffffff;
        font-size: 60px;
        top: 5px;
        left: 35px;
        white-space: nowrap;
        padding-top: 90px;
        padding-left: 50px;
        padding-bottom: 50px;
    }
    
    .tituloBebidas{
        position: relative;
        color: #ffffff;
        font-size: 60px;
        white-space: nowrap;
        padding-top: 35px;
        padding-left: 140px;
        padding-bottom: 95px;
        top: 50px;
    }


    /* CAFE FRIO */    

    .tituloCafeFrio {
        left: 53px;
        top: -15px;
        padding-top: 15px;
        padding-bottom: 10px;
    }

    .cafeFrio td {
        padding: 10px 0px;
        top: -20px;
    }

    table.cafeFrio,tr {
        position: relative;
        justify-content: left;
        left: -10px;
    }

    .comboFrios {
        position: absolute;
        top: 450px;
        left: 1240px;
        transform: scale(50%)
    }

/* CAFE FRIO FINAL*/
    
    .col1 td {
        white-space: nowrap;
    }

    .col3 td {
        white-space: nowrap;
    }

    span {
        white-space: nowrap;
    }
    


    #desayunoContent {
        height: 1080px;
        width: 1920px;
    }

        

    table {
        width: 100%;
    }


    .combo {
        position: absolute;
        top: 450px;
        left: 1350px;
        transform: scale(100%)
    }
    
    .combo2 {
        position: absolute;
        top: 480px;
        left: 210px;
        transform: scale(100%)
    }

    .combo2.bebidas {
        position: absolute;
        top: 425px;
        left: 280px;
        transform: scale(85%)
    }

    .combo2.sprite {
        position: absolute;
        top: 425px;
        left: 280px;
        transform: scale(85%)
    }

    .combo2.mcFlurryC {
        position: absolute;
        top: 450px;
        left: 210px;
        transform: scale(120%)
    }

}