body {
    background-color: black;
    font-family: "Anton", sans-serif;
    margin: 0;
}

header{
    background-color: #FAC710;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav{
    display: flex;
    align-items: center;
    flex-basis: 90%;
}

.lang{
    display: flex;
    gap: 10px;
    align-items: center;
}


header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Asegura que el header esté por encima de otros elementos */
}

.bodyContent_tittle {
    width: 100%;
    height: 100%;
    color: black;
    font-size: 28px;
}

.bodyContent {
    margin-top: 70px;
}

.selectorVentana {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 70px;
    flex-basis: 100%;
    font-size: 16px;
    justify-content: space-between;
    background-color: unset;
    border-radius: 7px;
    margin: 10px;
    overflow: auto;
    margin-inline: 10px;
}


.tablinks {
    background-color: unset;
    color: #FAC710;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 19px;
    font-family: "Anton", sans-serif;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 30px;
}

.tablinks:hover {
    color: white;
}

.tablinks.active {
    color: white;
}

.tabcontent {
    display: none;
    border-top: none;
}

.tabcontent.active {
    display: block;
}


.bodyContent_items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin: 20px;
}

.bodyContent_item {
    display: flex;
    flex-direction: column;
    background-color: #161616;
    color: white;
    border-radius: 8px;
    overflow: hidden;
    width: 308px;
    max-width: 100%;
}

.bodyContent_item_drinks {
    display: flex;
    flex-direction: column;
    background-color: #161616;
    color: white;
    border-radius: 8px;
    overflow: hidden;
    width: 325px;
    height: 300px;
    max-width: 100%;
}

.bodyContent_item_img{
    display: flex;
    justify-content: center;
}

.bodyContent_item_img img {
    object-fit: cover;
}

.bodyContent_item_tittle {
    display: flex;
    justify-content: center;
    align-items: center;
}


.bodyContent_text {
    padding: 15px;
}

.bodyContent_item_tittle span {
    font-size: 24px;
    color: white;
    /* Color amarillo */
    text-align: center;
    display: block;
}
.bodyContent_item_tittle_drinks span {
    font-size: 24px;
    color: white;
    /* Color amarillo */
    text-align: center;
    display: block;
    margin: 10px;
}

.bodyContent_item_desc span {
    font-size: 16px;
    line-height: 1.6;
}

.bodyContent_item_desc {
    border-top: 2px solid #FFC107;
    padding: 10px;
}

.bodyContent_item_price {
    display: flex;
    flex-basis: 100%;
    justify-content: space-between;
    height: 100%;
    align-items: end;
}
.bodyContent_item_price_empty {
    display: flex;
    flex-basis: 100%;
    justify-content: end;
    height: 100%;
    align-items: end;
    border-top: 2px solid #FFC107;
}

.priceBox{
    display: flex;
    flex-basis: 100%;
    justify-content: end;
    height: 100%;
    align-items: end;
}

.bodyContent_item_price span {
    font-size: 18px;
    color: #FFC107;
    /* Color amarillo */
    text-align: right;
    display: block;
    margin-top: 10px;
    padding: 10px;
}
.bodyContent_item_price_empty span {
    font-size: 18px;
    color: #FFC107;
    /* Color amarillo */
    font-weight: bold;
    text-align: right;
    display: block;
    margin-top: 10px;
    padding: 10px;
}

 /* Estilos básicos del modal */
 .modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }
  .modal-content {
    background: white;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
    position: relative;
  }
  .close-btn {
    position: absolute;
    top: 50px;
    right: 50px;
    cursor: pointer;
  }

  .modal-button{
    text-decoration: none;
    font-size: 17px;
    font-family: anton;
    background-color: unset;
    color: white;
    border: none;
    padding: 10px;
  }

  .bodyContent_item_topping {
    display: flex;
    flex-direction: column;
    background-color: #161616;
    color: white;
    border-radius: 8px;
    overflow: hidden;
    width: 325px;
    height: 55px;
    max-width: 100%;
}

.bodyContent_item_tittle_topping span {
    font-size: 24px;
    color: white;
    /* Color amarillo */
    text-align: center;
    display: block;
    margin: 10px;
}

.initialTextContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FAC710;
    font-size: 19px;
}
@media (min-width: 768px) {
    .bodyContent_item {
        height: 605px;
    }
}