.carta-option {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 0 15px grey;
    border: none;
    outline: none;
}

.carta-option__black {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: black;
    opacity: 60%;
}
.carta-option__button {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}
.carta-option__button p {
    margin: 0;
    font-size: 20px;
}
.carta__categoria--productos{
    background-color: rgba(255, 255, 255, 70%);
    box-shadow: 0 0 15px grey;
    padding-top: 15px;
    margin-top: -35px;
    margin-bottom: 25px;
    border-radius: 15px;
}

.carta__producto {
    position: relative;
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    border-radius: 20px;
    overflow: hidden;
}
.producto__nombre h2 {
    font-weight: bold;
    color: var(--green);
}
.producto__nombre h5 { margin-bottom: 15px; }
.producto__descripcion--esp {font-style: italic;}
.producto__descripcion--eng{
    font-style: italic;
    margin-bottom: 20px;
    color: var(--green);
}
.producto__precios { 
    display: flex;
    justify-content: center;
}
.precio-item{ 
    padding: 0 20px;
    text-align: center;
    margin: 0 10px 15px 10px;
    border: 2px solid var(--green);
    border-radius: 15px;
}
.precio-item p { margin: 0; }
.producto__alergenos {
    display: flex;
    justify-content: center;
}
.hide-carta{display: none;}