/* Lunch Menu Engine — scoped front-end styles */

.lme-lunch-menu {
    margin: 2rem auto;
    font-family: inherit;
    color: inherit;
}

.lme-lunch-menu__header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid currentColor;
}

.lme-lunch-menu__title {
    margin: 0;
    font-size: 1.75rem;
}

.lme-lunch-menu__days {
    list-style: none !important;
    padding: 0 !important;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.lme-lunch-menu__day {
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 6px;
    background: rgba(0,0,0,.02);
}

.lme-lunch-menu__day-title {
    margin: 0 0 .75rem;
    display: flex;
    align-items: baseline;
    gap: .75rem;
    font-size: 1.15rem;
    border-bottom: 1px dashed rgba(0,0,0,.15);
    padding-bottom: .5rem;
}

.lme-lunch-menu__day-name { font-weight: 600; }

.lme-lunch-menu__day-date {
    opacity: .65;
    font-size: .9rem;
    font-weight: 400;
}

.lme-lunch-menu__items {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid;
    gap: .75rem;
}

.lme-lunch-menu__item { padding: .5rem 0; }

.lme-lunch-menu__item + .lme-lunch-menu__item {
    border-top: 1px solid rgba(0,0,0,.06);
    padding-top: .75rem;
}

.lme-lunch-menu__item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.lme-lunch-menu__item-title { font-weight: 600; }
.lme-lunch-menu__item-price { white-space: nowrap; opacity: .8; }

.lme-lunch-menu__item-desc {
    margin-top: .25rem;
    opacity: .8;
    font-size: .95rem;
    line-height: 1.4;
}

.lme-lunch-menu__empty {
    margin: 0;
    opacity: .6;
    font-style: italic;
}

@media (max-width: 600px) {
    .lme-lunch-menu__item-head {
        flex-direction: column;
        gap: .15rem;
    }
}
