/* Jashn Restaurant Menu */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Open+Sans:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* ── Wrapper ── */
.jm-wrap {
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
}

/* ── Section (one per category) ── */
.jm-section {
    margin-bottom: 40px;
}

/* ── Category heading ── */
.jm-cat-title {
    font-family: 'Abril Fatface', cursive !important;
    color: #c7961c !important;
    font-size: 36px !important;
    font-weight: 400 !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    border: none !important;
    line-height: 1.2 !important;
}

/* ── Category description ── */
.jm-cat-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-style: italic;
    color: #cccccc;
    margin: 0 0 14px 0;
    padding: 0;
}

/* ── Items grid – 2 columns by default ── */
.jm-cols-2 .jm-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

.jm-cols-1 .jm-items {
    display: block;
}

/* ── Individual item ── */
.jm-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.jm-item:last-child {
    border-bottom: none;
}

/* ── Item name + price row ── */
.jm-item-main {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

/* ── Item name ── */
.jm-item-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #c7961c;
    line-height: 1.3;
    flex: 1;
}

/* ── Price – white and bold to stand out ── */
.jm-item-price {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Item description ── */
.jm-item-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    color: #cccccc;
    margin: 3px 0 0 0;
    padding: 0;
    line-height: 1.5;
}

/* ── Second price line (e.g. sharing price) ── */
.jm-item-price2 {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 2px;
}
.jm-item-price2-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    color: #c7961c;
    flex: 1;
}

/* ── Notice about allergens (shown at bottom of section) ── */
.jm-notice {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-style: italic;
    color: #999999;
    margin-top: 24px;
    text-align: center;
}

/* ── Empty state ── */
.jm-empty {
    font-family: 'Open Sans', sans-serif;
    color: #999;
    font-style: italic;
}

/* ── Responsive: single column on mobile ── */
@media (max-width: 680px) {
    .jm-cols-2 .jm-items {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ── Inline menu note – sits inside the item, same column ── */
.jm-item-note {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    color: #cccccc;
    border-left: 3px solid #c7961c;
    padding: 6px 10px;
    margin: 40px 0 0 0;
    line-height: 1.6;
}
