.biosca-menu-catalog {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    max-width: 800px; /* Limitar el ancho máximo del catálogo */
    margin: 0 auto; /* Centrar el catálogo */
    gap: 0.5rem;
}


.biosca-menu-catalog .menu-item {
    box-sizing: border-box;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    flex: 0 0 100%;
    border-bottom: 1px solid #ddd; /* Línea divisoria entre ítems */
   
  }
/* Header del ítem */
.biosca-menu-catalog .menu-item-header {
    display: flex;
    justify-content: space-between; /* Título a la izquierda, precio a la derecha */
    align-items: baseline; /* Alinear títulos y precios en la misma línea */
    width: 100%;
    margin-bottom: 0.25rem;
}


/* Header del ítem */
.biosca-menu-catalog .menu-item-header {
    display: flex;
    justify-content: space-between; /* Título izq, precio der */
    align-items: center;
    width: 100%;
    margin-bottom: 0.5rem;
}

/* Título */
.menu-item-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1; 
    text-align: left; /* Asegura que el título esté a la izquierda */
    line-height: 1.1;
}
/* Precio */
.menu-item-price {
    margin: 0;
    white-space: nowrap; /* Evita salto de línea */
    font-size: 1.1rem;
    font-weight: 500;
    text-align: right;
}
/* NUEVOOO */
.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item-prices {
    display: flex;
    gap: 40px; /* Espacio entre los precios */
}

.second-price {
    color: #999; /* Color más suave para el segundo precio */
}
/* NUEVOOO */




/* Descripción y alérgenos */
.menu-item-description {
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.25rem;
    line-height: 1.1;
}

.tabla-tapas .menu-item-title,
.tabla-tapas .menu-item-price,
.tabla-tapas h2 {
    color: #293133;
}

.tabla-tapas p,
.tabla-tapas .menu-item-description {
    color: #293133;
}

.menu-item-allergens {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.25rem;
}

/* Iconos de alérgenos */
.allergen-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.25rem;
    vertical-align: middle;
}

/* Estilos para móviles */
@media (max-width: 768px) {
    .biosca-menu-catalog .menu-item {
        padding: 0.5rem 0.25rem;
        /* flex: 0 0 100%;*/
       
    }
    .menu-item-title,
    .menu-item-price{
        font-size: 0.88rem;
        
    }
}
.menu-item[data-vegan="1"] .menu-item-title::after {
    content: "Ⓥ";
    color: #00A651;
    margin-left: 5px;
}
.vegan-symbol {
    color: #00A651;
    margin-left: 0.25rem;
}