.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;
}

/* 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-filter { padding: 9px 16px; font-size: 13px; }
    .mrm-layout-cards .mrm-dish-image img { height: 210px; }
}
