body {
    background: #F9D94E;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #000;
    margin: 0;
    padding: 0;
}

header {
    background: #000;
    color: white;
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 100px;
}

.lang-switch {
    display: flex;
    justify-content: center;
}

.lang-switch button {
    background: transparent;
    border: 1px solid #fff;
    color: white;
    padding: 5px 10px;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 13px;
}

.lang-switch button.active {
    background: #c20000;
    border-color: #c20000;
}

main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    padding: 50px 10%;
    align-items: flex-start;
}

.menu-section {
    background: #FFF2C6;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 30px 25px 20px 25px;
    position: relative;
}

.menu-section h2 {
    position: absolute;
    top: -20px;
    left: 25px;
    background: #e53935;
    color: white;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 1em;
    margin: 0;
    text-transform: capitalize;
    transform: rotate(-4deg);
    font-weight: bold;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-info {
    flex-grow: 1;
    margin-right: 15px;
}

.item-info h3 {
    margin: 0 0 3px 0;
    font-size: 1em;
    font-weight: bold;
}

.item-info p {
    margin: 0;
    padding: 0;
    font-size: 0.85em;
    color: #333;
    line-height: 1.3;
}

.precio {
    font-weight: bold;
    align-self: flex-start;
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 1em;
}

@media (max-width: 768px) {
    main {
        grid-template-columns: 1fr;
        padding: 30px 5%;
        gap: 25px;
    }
}