/* WRM — Public menu styles */

/* ── variants under menu item ── */
.menu-variants {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.menu-variant {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
    padding: 3px 0;
    border-bottom: 1px dashed #eee;
}
.menu-variant:last-child { border-bottom: none; }
.menu-variant-name { flex: 1; }
.menu-variant-price {
    font-weight: 600;
    color: #222;
    margin-left: 12px;
    white-space: nowrap;
}
