.mrm-menu-wrapper {
    width: 100%;
    font-family: inherit;
}
.mrm-menu-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 0 0 28px;
}
.mrm-filter {
    border: 1px solid #e3e3e3;
    background: #fff;
    color: #555;
    padding: 10px 24px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    line-height: 1;
    transition: all .2s ease;
}
.mrm-filter:hover,
.mrm-filter.active {
    background: #9b752e;
    color: #fff;
    border-color: #9b752e;
    box-shadow: 0 8px 18px rgba(155,117,46,.18);
}
.mrm-menu-grid {
    display: grid;
    gap: 0;
}
.mrm-columns-1 { grid-template-columns: 1fr; }
.mrm-columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 34px; }
.mrm-columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 34px; }
.mrm-columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: 34px; }

/* Diseño tipo lista, como menú de restaurante */
.mrm-layout-list .mrm-dish-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 10px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px dashed rgba(0,0,0,.24);
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}
.mrm-layout-list .mrm-dish-image {
    width: 72px;
    height: 72px;
}
.mrm-layout-list .mrm-dish-image img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    display: block;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,.12);
}
.mrm-layout-list .mrm-dish-content {
    padding: 0;
    min-width: 0;
}
.mrm-layout-list .mrm-dish-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 5px;
}
.mrm-layout-list .mrm-dish-heading h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 700;
    color: #111;
}
.mrm-layout-list .mrm-dish-price {
    white-space: nowrap;
    font-weight: 800;
    color: #111;
    font-size: 20px;
    line-height: 1.2;
    text-align: right;
}
.mrm-layout-list .mrm-dish-description,
.mrm-layout-list .mrm-dish-description p {
    color: #111;
    font-size: 16px;
    line-height: 1.35;
    margin: 0;
}

/* Ajuste cuando un plato no tiene imagen: mantiene alineación normal */
.mrm-layout-list .mrm-dish-card.mrm-no-image {
    grid-template-columns: minmax(0, 1fr);
    padding-left: 0;
}
.mrm-layout-list .mrm-dish-card.mrm-no-image .mrm-dish-content {
    grid-column: 1 / -1;
}
.mrm-layout-cards .mrm-dish-card.mrm-no-image .mrm-dish-content {
    padding-top: 20px;
}

/* Diseño de tarjetas anterior, por si lo necesitas en Elementor */
.mrm-layout-cards .mrm-menu-grid {
    gap: 24px;
}
.mrm-layout-cards .mrm-dish-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border: 1px solid rgba(0,0,0,.06);
}
.mrm-layout-cards .mrm-dish-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}
.mrm-layout-cards .mrm-dish-content {
    padding: 20px;
}
.mrm-layout-cards .mrm-dish-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}
.mrm-layout-cards .mrm-dish-heading h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
}
.mrm-layout-cards .mrm-dish-price {
    white-space: nowrap;
    font-weight: 800;
    color: #8a6a2f;
    font-size: 18px;
}
.mrm-layout-cards .mrm-dish-description,
.mrm-layout-cards .mrm-dish-description p {
    color: #555;
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 0;
}
.mrm-empty {
    text-align: center;
}
@media (max-width: 1024px) {
    .mrm-columns-3,
    .mrm-columns-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
    .mrm-columns-2,
    .mrm-columns-3,
    .mrm-columns-4 { grid-template-columns: 1fr; }
    .mrm-layout-list .mrm-dish-card {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 12px;
        padding: 12px 0;
    }
    .mrm-layout-list .mrm-dish-image,
    .mrm-layout-list .mrm-dish-image img {
        width: 58px;
        height: 58px;
    }
    .mrm-layout-list .mrm-dish-heading h3 { font-size: 18px; }
    .mrm-layout-list .mrm-dish-price { font-size: 17px; }
    .mrm-layout-list .mrm-dish-description,
    .mrm-layout-list .mrm-dish-description p { font-size: 14px; }
    .mrm-menu-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin-bottom: 22px;
    }
    .mrm-filter {
        width: 100%;
        padding: 11px 16px;
        font-size: 13px;
        text-align: center;
    }
    .mrm-layout-cards .mrm-dish-image img { height: 210px; }
}


/* Lightbox para abrir la foto en tamaño real */
.mrm-lightbox-trigger {
    display: block;
    cursor: zoom-in;
}
.mrm-lightbox-trigger img {
    transition: transform .2s ease, opacity .2s ease;
}
.mrm-lightbox-trigger:hover img {
    opacity: .9;
    transform: scale(1.02);
}
body.mrm-lightbox-open {
    overflow: hidden;
}
.mrm-lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0,0,0,.82);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    cursor: zoom-out;
}
.mrm-lightbox-content {
    position: relative;
    max-width: min(96vw, 1400px);
    max-height: 92vh;
    cursor: default;
}
.mrm-lightbox-content img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 92vh;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.mrm-lightbox-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0,0,0,.25);
}
.mrm-lightbox-close:hover {
    background: #9b752e;
    color: #fff;
}
@media (max-width: 767px) {
    .mrm-lightbox-overlay { padding: 16px; }
    .mrm-lightbox-close {
        top: 8px;
        right: 8px;
    }
}

/* Tabla especial para bebidas/licores */
.mrm-table-sections {
    width: 100%;
    margin-top: 18px;
}
.mrm-price-table-section {
    width: 100%;
    margin: 0 0 28px;
}
/* Titulo interno oculto: el titulo de la seccion lo puedes manejar desde Elementor */
.mrm-price-table-title {
    display: none;
}
.mrm-price-table {
    width: 100%;
    display: block;
    border-top: 1px solid rgba(0,0,0,.14);
}
.mrm-price-row {
    display: grid;
    grid-template-columns: minmax(180px, 1.8fr) minmax(85px, .7fr) minmax(100px, .8fr) minmax(95px, .8fr);
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,.12);
}
.mrm-price-row > div:not(.mrm-price-product) {
    text-align: right;
    font-weight: 700;
    white-space: nowrap;
}
.mrm-price-head {
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 400;
    font-size: 14px;
    text-transform: none;
}
.mrm-price-head > div {
    font-weight: 400 !important;
}
.mrm-price-product strong {
    display: block;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
}
.mrm-price-product span {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.35;
    opacity: .78;
}
@media (max-width: 767px) {
    .mrm-table-sections,
    .mrm-price-table-section,
    .mrm-price-table {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    .mrm-price-table {
        border-top: 1px solid rgba(0,0,0,.14);
    }
    .mrm-price-row {
        width: 100%;
        min-width: 0;
        grid-template-columns: minmax(72px, 1.15fr) minmax(54px, .8fr) minmax(64px, .85fr) minmax(58px, .85fr);
        gap: 5px;
        padding: 10px 0;
    }
    .mrm-price-head {
        font-size: 11px;
        line-height: 1.15;
    }
    .mrm-price-row > div:not(.mrm-price-product) {
        font-size: 12px;
        line-height: 1.2;
        white-space: normal;
        overflow-wrap: anywhere;
    }
    .mrm-price-product strong {
        font-size: 13px;
        line-height: 1.2;
        overflow-wrap: anywhere;
    }
    .mrm-price-product span {
        font-size: 12px;
    }
}
@media (max-width: 390px) {
    .mrm-price-row {
        grid-template-columns: minmax(64px, 1fr) minmax(50px, .75fr) minmax(58px, .8fr) minmax(54px, .8fr);
        gap: 4px;
    }
    .mrm-price-head,
    .mrm-price-row > div:not(.mrm-price-product) {
        font-size: 10.5px;
    }
    .mrm-price-product strong {
        font-size: 12px;
    }
}
