﻿/* ============================================================
   LSFM Orders v3.1 â€” Frontend
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&display=swap');

:root {
    --lsfm-green:   #1A4D2E;
    --lsfm-green-d: #122D1C;
    --lsfm-orange:  #C4620A;
    --lsfm-text:    #1A2520;
    --lsfm-muted:   #596760;
    --lsfm-border:  rgba(26,77,46,.14);
    --lsfm-bg:      #F4F0E6;
    --lsfm-radius:  16px;
    --lsfm-shadow:  0 8px 30px rgba(18,45,28,.04), 0 1px 3px rgba(0,0,0,.02);
    --lsfm-shadow-hover: 0 16px 40px rgba(18,45,28,.09), 0 2px 8px rgba(0,0,0,.04);
}

/* â”€â”€ Wrapper â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lsfm-wrap   { font-family: inherit; max-width: 780px; margin: 0 auto; }
.lsfm-hidden { display: none !important; }
.lsfm-empty  { text-align: center; padding: 30px; color: var(--lsfm-muted); }

/* â”€â”€ Step nav â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lsfm-steps-nav {
    display: flex; align-items: center; margin-bottom: 32px;
}
.lsfm-step-dot {
    display: flex; align-items: center; gap: 8px;
    font-size: .85rem; color: var(--lsfm-muted); font-weight: 600; white-space: nowrap;
    transition: color .3s ease;
}
.lsfm-step-dot span {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: #e3e2df; color: #6d746f;
    font-size: .82rem; font-weight: 700; flex-shrink: 0;
    transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
}
.lsfm-step-dot.active       { color: var(--lsfm-text); }
.lsfm-step-dot.active span {
    background: var(--lsfm-green); color: #fff;
    box-shadow: 0 0 0 4px rgba(26,77,46,.15);
    transform: scale(1.1);
}
.lsfm-step-dot.done span    { background: var(--lsfm-green); color: #fff; }
.lsfm-step-line              { flex: 1; height: 2px; background: #dedbd5; margin: 0 12px; transition: background .35s; }
.lsfm-step-dot.done + .lsfm-step-line { background: var(--lsfm-green); }
@media (max-width: 500px) {
    .lsfm-step-dot { font-size: 0; }
    .lsfm-step-dot span { font-size: .78rem; }
}

/* â”€â”€ Step title â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lsfm-step-title { font-size: 1.3rem; font-weight: 700; margin: 0 0 18px; color: var(--lsfm-text); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MEAL LIST
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lsfm-meal-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

/* Grid modes */
.lsfm-meal-list.lsfm-cols-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.lsfm-meal-list.lsfm-cols-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.lsfm-meal-list.lsfm-cols-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
@media (max-width: 780px) {
    .lsfm-meal-list.lsfm-cols-3,
    .lsfm-meal-list.lsfm-cols-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 500px) {
    .lsfm-meal-list.lsfm-cols-2,
    .lsfm-meal-list.lsfm-cols-3,
    .lsfm-meal-list.lsfm-cols-4 { grid-template-columns: 1fr; }
}

/* â”€â”€ Meal card â€” matches original exactly â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lsfm-card {
    background: #fff;
    border: 1px solid rgba(26,77,46,.15);
    border-radius: 12px;
    padding: 16px 18px;
    margin: 0 0 10px;
    transition: box-shadow .2s;
}
.lsfm-meal-list .lsfm-card,
.elementor .lsfm-loop-card {
    margin-bottom: 0;
}
.lsfm-card:hover     { box-shadow: 0 4px 16px rgba(26,77,46,.1); }
.lsfm-card.lsfm-sold-out { opacity: .55; pointer-events: none; }
.lsfm-card.lsfm-special  { border-color: rgba(196,98,10,.35); background: rgba(196,98,10,.03); }
.lsfm-card.lsfm-has-qty  { border-color: var(--lsfm-green); box-shadow: 0 0 0 3px rgba(26,77,46,.08); }

/* Grid-only thumbnail */
.lsfm-card-img {
    width: 100%; padding-top: 58%;
    background-size: cover; background-position: center;
    border-radius: 8px; margin-bottom: 12px;
}

/* â”€â”€ Card top: info block LEFT, price RIGHT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lsfm-card-top {
    display: flex; align-items: flex-start;
    justify-content: space-between; gap: 12px; margin-bottom: 10px;
}
.lsfm-meal-info { flex: 1; }

/* Badges */
.lsfm-card-badges  { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 7px; }
.lsfm-badge-special {
    background: var(--lsfm-orange); color: #fff;
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
    padding: 2px 8px; border-radius: 100px;
}
.lsfm-badge-soldout {
    background: #888; color: #fff;
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    padding: 2px 8px; border-radius: 100px;
}

/* Meal name â€” Oswald, uppercase, original style */
.lsfm-meal-name {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--lsfm-green);
    text-transform: uppercase;
    letter-spacing: .02em;
    line-height: 1.2;
    margin: 0 0 6px;
}

/* Description */
.lsfm-meal-desc {
    font-size: 13px; color: var(--lsfm-muted);
    line-height: 1.5; margin: 0 0 8px;
}

/* Macros */
.lsfm-macros { display: flex; gap: 6px; flex-wrap: wrap; }
.lsfm-macro {
    background: var(--lsfm-bg);
    border: 1px solid rgba(26,77,46,.15);
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 11px; font-weight: 600; color: #3a3a3a;
}
.lsfm-macro-cal,
.lsfm-macro.cal {
    background: rgba(26,77,46,.08);
    border-color: rgba(26,77,46,.2);
    color: var(--lsfm-green);
}

/* Price â€” right side of top row */
.lsfm-meal-price,
.lsfm-price {
    font-family: 'Oswald', sans-serif;
    font-size: 22px; font-weight: 700;
    color: var(--lsfm-orange);
    white-space: nowrap; flex-shrink: 0;
}

/* â”€â”€ Qty row: subtotal LEFT, controls RIGHT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lsfm-qty-row {
    display: flex; align-items: center;
    justify-content: space-between; gap: 12px;
    margin-top: 12px; padding-top: 12px;
    border-top: 1px solid rgba(26,77,46,.08);
}
.lsfm-subtotal    { font-size: 13px; color: var(--lsfm-muted); }
.lsfm-sub-val     { font-weight: 700; color: var(--lsfm-green); }
.lsfm-soldout-msg { font-size: 12px; color: #888; font-style: italic; }

/* Qty controls â€” circular, matches original */
.lsfm-qty-ctrl { display: flex; align-items: center; gap: 12px; }
.lsfm-qty-btn {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1.5px solid rgba(26,77,46,.3);
    background: #fff; color: var(--lsfm-green);
    font-size: 18px; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .15s; line-height: 1;
    padding: 0;
}
.lsfm-qty-btn:hover { background: var(--lsfm-green); color: #fff; border-color: var(--lsfm-green); }
.lsfm-qty-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(26,77,46,.12);
}
.lsfm-qty-val {
    font-size: 18px; font-weight: 700; color: var(--lsfm-green);
    min-width: 24px; text-align: center;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TOTAL BAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lsfm-total-bar {
    border-top: 1px solid rgba(26,77,46,.12);
    padding-top: 14px; margin-bottom: 16px;
}
.lsfm-total-breakdown { display: flex; flex-direction: column; gap: 6px; }
.lsfm-total-row-item {
    display: flex; justify-content: space-between; align-items: center;
    font-size: .9rem; color: var(--lsfm-muted);
}
.lsfm-total-row-item span:last-child { font-weight: 600; color: var(--lsfm-text); }
.lsfm-total-final {
    border-top: 1px solid rgba(26,77,46,.12);
    padding-top: 10px; margin-top: 4px;
}
.lsfm-total-final span:first-child {
    font-size: 1rem; font-weight: 600; color: var(--lsfm-text);
}
.lsfm-total-final span:last-child {
    font-family: 'Oswald', sans-serif;
    font-size: 26px; font-weight: 700; color: var(--lsfm-green);
}
.lsfm-min-note { font-size: 12px; color: var(--lsfm-muted); text-align: right; margin: -4px 0 10px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BUTTONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lsfm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 22px;
    border: 1.5px solid transparent;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase; cursor: pointer;
    transition: background .2s, border-color .2s, color .2s, transform .15s, box-shadow .2s;
    text-decoration: none;
    line-height: 1.1;
}
.lsfm-btn-primary          { background: var(--lsfm-green); color: #fff; border-color: var(--lsfm-green); }
.lsfm-btn-primary:hover    { background: var(--lsfm-green-d); border-color: var(--lsfm-green-d); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(26,77,46,.16); }
.lsfm-btn-primary:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.lsfm-btn-ghost {
    background: #fff; color: var(--lsfm-green);
    border: 1.5px solid rgba(26,77,46,.3);
}
.lsfm-btn-ghost:hover      { background: var(--lsfm-bg); border-color: var(--lsfm-green); }
.lsfm-btn-pay.lsfm-loading { opacity: .7; pointer-events: none; }
.lsfm-w100                 { width: 100%; text-align: center; margin-top: 8px; }
.lsfm-form-actions         { display: flex; gap: 12px; align-items: center; margin-top: 20px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STEP 2 â€” DETAILS FORM
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lsfm-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 600px) { .lsfm-field-row { grid-template-columns: 1fr; } }

.lsfm-field       { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.lsfm-field label {
    font-size: 12px; font-weight: 600; color: #3a3a3a;
    text-transform: uppercase; letter-spacing: .06em;
}
.lsfm-field input,
.lsfm-field textarea {
    padding: 13px 18px;
    background: rgba(244,240,230,.5);
    border: 1.5px solid rgba(26,77,46,.12);
    border-radius: 10px; font-size: 15px;
    font-family: inherit; color: #1A2520;
    outline: none; transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box; width: 100%;
    backdrop-filter: blur(4px);
}
.lsfm-field input:focus,
.lsfm-field textarea:focus {
    border-color: var(--lsfm-green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(26,77,46,.06), var(--lsfm-shadow);
}
.lsfm-field textarea { resize: vertical; min-height: 90px; }
.req { color: var(--lsfm-orange); }

/* Radio cards */
.lsfm-radio-group { display: flex; gap: 12px; flex-wrap: wrap; }
.lsfm-radio-card  { flex: 1; min-width: 140px; cursor: pointer; }
.lsfm-radio-card input { display: none; }
.lsfm-radio-card span {
    display: block; padding: 14px 18px;
    border: 1.5px solid rgba(26,77,46,.15);
    border-radius: 10px; font-size: 14px; font-weight: 600;
    color: var(--lsfm-muted); text-align: center;
    transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(244,240,230,.35);
}
.lsfm-radio-card input:checked + span {
    background: var(--lsfm-green); border-color: var(--lsfm-green); color: #fff;
    box-shadow: var(--lsfm-shadow);
}
.lsfm-radio-card:hover span {
    border-color: var(--lsfm-green);
    color: var(--lsfm-green);
    transform: translateY(-1px);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STEP 3 â€” PAYMENT
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lsfm-recap {
    background: var(--lsfm-bg); border: 1px solid var(--lsfm-border);
    border-radius: 10px; padding: 14px 18px; margin-bottom: 20px;
    font-size: .88rem; color: var(--lsfm-muted); line-height: 1.6;
}
.lsfm-recap strong { color: var(--lsfm-green); font-size: 1rem; }

.lsfm-gw-heading   { font-size: 1rem; font-weight: 600; margin: 0 0 12px; }
.lsfm-gateway-opts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.lsfm-gw-opt       { cursor: pointer; }
.lsfm-gw-opt input { display: none; }
.lsfm-gw-card {
    display: flex; align-items: center; gap: 14px;
    border: 1.5px solid rgba(26,77,46,.2); border-radius: 10px;
    padding: 14px 18px; background: #fff; transition: border-color .2s, box-shadow .2s;
}
.lsfm-gw-opt input:checked + .lsfm-gw-card {
    border-color: var(--lsfm-green); box-shadow: 0 0 0 3px rgba(26,77,46,.08);
}
.lsfm-gw-icon  { font-size: 1.35rem; flex-shrink: 0; }
.lsfm-gw-label { font-weight: 700; font-size: .9rem; display: block; }
.lsfm-gw-sub   { font-size: .78rem; color: var(--lsfm-muted); display: block; }

.lsfm-stripe-field {
    padding: 13px 16px; border: 1.5px solid rgba(26,77,46,.2);
    border-radius: 8px; background: #fff; min-height: 46px; margin-bottom: 6px;
}
.lsfm-field-error { color: #d63638; font-size: .83rem; margin-top: 4px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NOTICES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lsfm-notice { padding: 12px 16px; border-radius: 8px; font-size: .88rem; margin: 12px 0; }
.lsfm-notice-error   { background: rgba(226,75,74,.08); border-left: 4px solid #d63638; color: #a32d2d; }
.lsfm-notice-success { background: rgba(26,77,46,.07); border-left: 4px solid var(--lsfm-green); color: #1e5c1e; }
.lsfm-secure-note { font-size: .78rem; color: var(--lsfm-muted); margin-top: 10px; }
.lsfm-ingredient-notice { margin: 18px 0 22px; padding: 15px 17px; border: 1px solid rgba(196,98,10,.25); border-left: 4px solid var(--lsfm-orange); border-radius: 8px; background: rgba(196,98,10,.07); color: var(--lsfm-text); font-size: .9rem; line-height: 1.55; }
.lsfm-ingredient-notice strong { display: block; margin-bottom: 2px; color: var(--lsfm-orange); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SUCCESS + LOOKUP
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lsfm-success-wrap   { text-align: center; padding: 50px 20px; }
.lsfm-success-icon   { font-size: 3.5rem; color: var(--lsfm-green); line-height: 1; margin-bottom: 16px; }
.lsfm-success-wrap h2 { margin-bottom: 10px; }
.lsfm-lookup-wrap    { max-width: 480px; margin: 0 auto; }
.lsfm-lookup-wrap h3 { margin-bottom: 20px; }
.lsfm-lookup-result  {
    background: var(--lsfm-bg); border-radius: 10px;
    padding: 16px; margin-bottom: 20px;
}

/* ============================================================
   Professional order form polish
   Scoped strongly to survive Elementor/theme button overrides.
   ============================================================ */
.lsfm-wrap,
.lsfm-wrap * {
    box-sizing: border-box;
}

.lsfm-wrap {
    max-width: 760px;
    color: #18221c;
}

.lsfm-wrap .lsfm-steps-nav {
    margin-bottom: 26px;
    gap: 12px;
}

.lsfm-wrap .lsfm-step-dot {
    gap: 9px;
    color: #59645d;
    font-size: 13px;
}

.lsfm-wrap .lsfm-step-dot span {
    width: 26px;
    height: 26px;
    background: #e3e2df;
    color: #6d746f;
}

.lsfm-wrap .lsfm-step-dot.active {
    color: #0f1f17;
}

.lsfm-wrap .lsfm-step-dot.active span,
.lsfm-wrap .lsfm-step-dot.done span {
    background: #06452a;
    color: #fff;
}

.lsfm-wrap .lsfm-step-line {
    background: #dedbd5;
}

.lsfm-wrap .lsfm-step-title {
    margin-bottom: 18px;
    font-size: 23px;
    line-height: 1.15;
    color: #0e1a14;
}

.lsfm-wrap .lsfm-meal-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lsfm-wrap .lsfm-card,
.elementor .lsfm-loop-card {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    margin: 0 !important;
    padding: 18px 20px 16px;
    background: #fff;
    border: 1px solid rgba(26,77,46,.16);
    border-radius: 10px;
    box-shadow: 0 8px 26px rgba(18,45,28,.06);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.lsfm-wrap .lsfm-card:hover,
.elementor .lsfm-loop-card:hover {
    border-color: rgba(26,77,46,.32);
    box-shadow: 0 12px 34px rgba(18,45,28,.1);
}

.lsfm-wrap .lsfm-card.lsfm-has-qty,
.elementor .lsfm-loop-card.lsfm-has-qty {
    border-color: #1A4D2E;
    box-shadow: 0 0 0 1px rgba(26,77,46,.22), 0 12px 34px rgba(18,45,28,.1);
}

.lsfm-wrap .lsfm-card.lsfm-special,
.elementor .lsfm-loop-card.lsfm-special {
    border-color: rgba(196,98,10,.36);
    background: linear-gradient(180deg, rgba(196,98,10,.035), #fff 34%);
}

.lsfm-wrap .lsfm-card-top,
.elementor .lsfm-loop-card .lsfm-card-top {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 16px;
    margin-bottom: 13px;
}

.lsfm-wrap .lsfm-meal-info,
.elementor .lsfm-loop-card .lsfm-meal-info {
    min-width: 0;
}

.lsfm-wrap .lsfm-meal-name,
.elementor .lsfm-loop-card .lsfm-meal-name {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1A4D2E;
    text-transform: uppercase;
    letter-spacing: .02em;
    line-height: 1.2;
    margin: 0 0 7px;
}

.lsfm-wrap .lsfm-meal-desc,
.elementor .lsfm-loop-card .lsfm-meal-desc {
    max-width: 610px;
    margin: 0 0 10px;
    color: #59645d;
    font-size: 13px;
    line-height: 1.55;
}

.lsfm-wrap .lsfm-macros,
.elementor .lsfm-loop-card .lsfm-macros {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.lsfm-wrap .lsfm-macro,
.elementor .lsfm-loop-card .lsfm-macro {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 3px 9px;
    border: 1px solid rgba(26,77,46,.15);
    border-radius: 999px;
    background: #faf7ef;
    color: #3d463f;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

.lsfm-wrap .lsfm-macro.cal,
.elementor .lsfm-loop-card .lsfm-macro.cal {
    background: rgba(26,77,46,.08);
    color: #1A4D2E;
}

.lsfm-wrap .lsfm-card-badges,
.elementor .lsfm-loop-card .lsfm-card-badges {
    margin: 0 0 8px;
}

.lsfm-wrap .lsfm-badge-special,
.elementor .lsfm-loop-card .lsfm-badge-special {
    background: #C4620A;
    color: #fff;
    font-size: 10px;
    letter-spacing: .05em;
    padding: 3px 8px;
    border-radius: 999px;
}

.lsfm-wrap .lsfm-meal-price,
.lsfm-wrap .lsfm-price,
.elementor .lsfm-loop-card .lsfm-meal-price,
.elementor .lsfm-loop-card .lsfm-price {
    font-family: 'Oswald', sans-serif;
    color: #C4620A;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.lsfm-wrap .lsfm-qty-row,
.elementor .lsfm-loop-card .lsfm-qty-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(26,77,46,.1);
}

.lsfm-wrap .lsfm-subtotal,
.elementor .lsfm-loop-card .lsfm-subtotal {
    color: #6a716d;
    font-size: 13px;
}

.lsfm-wrap .lsfm-sub-val,
.elementor .lsfm-loop-card .lsfm-sub-val {
    color: #06452a;
    font-weight: 800;
}

.lsfm-wrap .lsfm-qty-ctrl,
.elementor .lsfm-loop-card .lsfm-qty-ctrl {
    display: inline-grid;
    grid-template-columns: 34px 30px 34px;
    align-items: center;
    gap: 9px;
}

.lsfm-wrap button.lsfm-qty-btn,
.elementor .lsfm-loop-card button.lsfm-qty-btn {
    appearance: none;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    padding: 0 !important;
    border: 1.5px solid rgba(26,77,46,.34) !important;
    border-radius: 50% !important;
    background: #fff !important;
    color: #1A4D2E !important;
    box-shadow: none !important;
    font-family: Arial, sans-serif !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-align: center !important;
}

.lsfm-wrap button.lsfm-qty-btn:hover,
.elementor .lsfm-loop-card button.lsfm-qty-btn:hover {
    background: #1A4D2E !important;
    border-color: #1A4D2E !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.lsfm-wrap .lsfm-qty-val,
.elementor .lsfm-loop-card .lsfm-qty-val {
    color: #06452a;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.lsfm-wrap .lsfm-total-bar {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(26,77,46,.14);
}

.lsfm-wrap .lsfm-total-row-item {
    font-size: 14px;
}

.lsfm-wrap .lsfm-total-final span:first-child {
    color: #4b554f;
    font-size: 17px;
    font-weight: 400;
}

.lsfm-wrap .lsfm-total-final span:last-child {
    color: #06452a;
    font-size: 28px;
}

.lsfm-wrap button.lsfm-btn,
.lsfm-wrap .lsfm-btn {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 22px !important;
    border-radius: 6px !important;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    text-decoration: none !important;
}

.lsfm-wrap button.lsfm-btn-primary,
.lsfm-wrap .lsfm-btn-primary {
    border: 1.5px solid #1A4D2E !important;
    background: #1A4D2E !important;
    color: #fff !important;
}

.lsfm-wrap button.lsfm-btn-primary:hover,
.lsfm-wrap .lsfm-btn-primary:hover {
    border-color: #122D1C !important;
    background: #122D1C !important;
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(18,45,28,.16);
}

.lsfm-wrap button.lsfm-btn-primary:disabled,
.lsfm-wrap .lsfm-btn-primary:disabled {
    opacity: .45;
    box-shadow: none;
}

.lsfm-wrap button.lsfm-btn-ghost,
.lsfm-wrap .lsfm-btn-ghost {
    border: 1.5px solid rgba(26,77,46,.28) !important;
    background: #fff !important;
    color: #1A4D2E !important;
}

.lsfm-wrap button.lsfm-btn-ghost:hover,
.lsfm-wrap .lsfm-btn-ghost:hover {
    border-color: #1A4D2E !important;
    background: #f7f2e8 !important;
}

@media (max-width: 560px) {
    .lsfm-wrap .lsfm-card,
    .elementor .lsfm-loop-card {
        padding: 16px;
    }

    .lsfm-wrap .lsfm-card-top,
    .elementor .lsfm-loop-card .lsfm-card-top {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .lsfm-wrap .lsfm-meal-price,
    .lsfm-wrap .lsfm-price,
    .elementor .lsfm-loop-card .lsfm-meal-price,
    .elementor .lsfm-loop-card .lsfm-price {
        justify-self: start;
    }

    .lsfm-wrap .lsfm-qty-row,
    .elementor .lsfm-loop-card .lsfm-qty-row {
        grid-template-columns: 1fr;
    }

    .lsfm-wrap .lsfm-qty-ctrl,
    .elementor .lsfm-loop-card .lsfm-qty-ctrl {
        justify-self: start;
    }
}

/* Thank-you receipt */
.lsfm-receipt-wrap { max-width: 720px; margin: 0 auto; }
.lsfm-receipt-wrap .lsfm-success-wrap { padding: 44px 24px 26px; }
.lsfm-success-kicker { margin: 0 0 8px; color: var(--lsfm-green); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.lsfm-confirmation-email { color: var(--lsfm-muted); font-size: .9rem; }
.lsfm-order-summary { margin: 0 24px 32px; overflow: hidden; border: 1px solid var(--lsfm-border); border-radius: 12px; background: #fff; text-align: left; }
.lsfm-order-summary-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; border-bottom: 1px solid var(--lsfm-border); background: var(--lsfm-bg); }
.lsfm-order-summary-head h3 { margin: 0; font-size: 1.15rem; }
.lsfm-order-summary-head > span { color: var(--lsfm-muted); font-weight: 600; }
.lsfm-receipt-items { padding: 4px 20px; }
.lsfm-receipt-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--lsfm-border); }
.lsfm-receipt-row:last-child { border-bottom: 0; }
.lsfm-receipt-row div { display: flex; flex-direction: column; gap: 3px; }
.lsfm-receipt-row div span { color: var(--lsfm-muted); font-size: .82rem; }
.lsfm-receipt-totals { padding: 14px 20px; border-top: 1px solid var(--lsfm-border); background: var(--lsfm-bg); }
.lsfm-receipt-totals > div { display: flex; justify-content: space-between; gap: 20px; padding: 5px 0; }
.lsfm-receipt-total { margin-top: 7px; padding-top: 12px !important; border-top: 1px solid var(--lsfm-border); color: var(--lsfm-green); font-size: 1.08rem; }
.lsfm-order-meta { margin: 0; padding: 8px 20px 16px; }
.lsfm-order-meta > div { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 8px 0; }
.lsfm-order-meta dt { color: var(--lsfm-muted); font-weight: 600; }
.lsfm-order-meta dd { margin: 0; }
.lsfm-payment-status { display: inline-block; margin-left: 7px; padding: 3px 8px; border-radius: 999px; font-size: .72rem; font-weight: 700; }
.lsfm-payment-status.is-paid { color: #176b32; background: #e6f6eb; }
.lsfm-payment-status.is-pending { color: #8a5a00; background: #fff4d6; }

@media (max-width: 560px) {
    .lsfm-order-summary { margin-right: 12px; margin-left: 12px; }
    .lsfm-order-summary-head { align-items: flex-start; flex-direction: column; }
    .lsfm-order-meta > div { grid-template-columns: 1fr; gap: 3px; }
}

/* Branded thank-you page */
.lsfm-receipt-wrap { overflow: hidden; border: 1px solid var(--lsfm-border); border-radius: 20px; background: #fff; box-shadow: var(--lsfm-shadow); }
.lsfm-thanks-hero { position: relative; overflow: hidden; padding: 44px 36px 38px; background: var(--lsfm-green); color: #fff; text-align: center; }
.lsfm-thanks-hero::after { content: ''; position: absolute; top: -70px; right: -50px; width: 210px; height: 210px; border-radius: 50%; background: rgba(196,98,10,.16); }
.lsfm-thanks-check { position: relative; z-index: 1; display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 18px; border: 2px solid rgba(255,255,255,.32); border-radius: 50%; background: rgba(255,255,255,.11); }
.lsfm-thanks-check svg { width: 38px; fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.lsfm-thanks-hero .lsfm-success-kicker { position: relative; z-index: 1; color: #f3a35a; }
.lsfm-thanks-hero h1 { position: relative; z-index: 1; margin: 0 0 12px; color: #fff; font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 6vw, 2.7rem); line-height: 1.1; text-transform: uppercase; }
.lsfm-thanks-hero > p:not(.lsfm-success-kicker) { position: relative; z-index: 1; max-width: 560px; margin: 7px auto; color: rgba(255,255,255,.82); }
.lsfm-thanks-hero .lsfm-confirmation-email strong { color: #fff; }
.lsfm-thanks-body { padding: 32px; }
.lsfm-thanks-body .lsfm-order-summary { margin: 0 0 30px; }
.lsfm-section-label { margin: 0 0 7px; color: var(--lsfm-orange); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.lsfm-next-steps { padding: 4px 2px 26px; }
.lsfm-next-steps h2 { margin: 0 0 20px; color: var(--lsfm-green); font-family: 'Oswald', sans-serif; font-size: 1.55rem; text-transform: uppercase; }
.lsfm-next-step-list { display: grid; gap: 14px; }
.lsfm-next-step-list > div { display: grid; grid-template-columns: 34px 1fr; gap: 13px; align-items: start; }
.lsfm-next-step-list > div > span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--lsfm-green); color: #fff; font-weight: 800; }
.lsfm-next-step-list p { margin: 0; color: var(--lsfm-muted); font-size: .9rem; line-height: 1.55; }
.lsfm-next-step-list p strong { display: block; margin-bottom: 2px; color: var(--lsfm-text); }
.lsfm-important-note { padding: 17px 19px; border-left: 4px solid var(--lsfm-orange); border-radius: 8px; background: var(--lsfm-bg); }
.lsfm-important-note strong { display: block; margin-bottom: 6px; color: var(--lsfm-orange); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
.lsfm-important-note p { margin: 0; color: var(--lsfm-text); font-size: .88rem; line-height: 1.55; }
.lsfm-thanks-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--lsfm-border); }
.lsfm-social-links { display: flex; gap: 16px; }
.lsfm-social-links a, .lsfm-home-link { color: var(--lsfm-green); font-size: .86rem; font-weight: 700; text-decoration: none; }
.lsfm-social-links a:hover, .lsfm-home-link:hover { color: var(--lsfm-orange); }

/* Order lookup and tracking */
.lsfm-lookup-wrap { max-width: 500px; margin: 40px auto; padding: 30px; border: 1px solid var(--lsfm-border); border-radius: 16px; background: #fff; box-shadow: var(--lsfm-shadow); }
.lsfm-lookup-header { padding: 0 0 22px; text-align: center; }
.lsfm-lookup-header h2 { margin: 0 0 8px; color: var(--lsfm-green); font-family: 'Oswald', sans-serif; font-size: 1.55rem; text-transform: uppercase; }
.lsfm-lookup-header h2 span { color: var(--lsfm-orange); }
.lsfm-lookup-header > p:last-child { margin: 0; color: var(--lsfm-muted); font-size: .88rem; line-height: 1.5; }
.lsfm-lookup-form { display: grid; grid-template-columns: 1fr; gap: 16px; padding: 0; }
.lsfm-lookup-form .lsfm-btn { grid-column: 1 / -1; width: 100%; margin-top: 2px; }
.lsfm-lookup-wrap > .lsfm-notice { margin: 0 0 20px; }
.lsfm-lookup-result { margin: 0; padding: 0; background: #fff; }
.lsfm-tracking-summary { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--lsfm-bg); }
.lsfm-tracking-summary > div { padding: 16px 18px; border-right: 1px solid var(--lsfm-border); }
.lsfm-tracking-summary > div:last-child { border-right: 0; }
.lsfm-tracking-summary span, .lsfm-current-status span { display: block; margin-bottom: 4px; color: var(--lsfm-muted); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.lsfm-current-status { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; padding: 20px; border-left: 4px solid var(--lsfm-green); border-radius: 8px; background: var(--lsfm-bg); }
.lsfm-current-status h3 { margin: 0; color: var(--lsfm-green); font-size: 1.35rem; }
.lsfm-status-timeline { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 22px; padding: 2px 4px 0; }
.lsfm-status-timeline > div { position: relative; display: grid; justify-items: center; gap: 7px; color: #929a95; font-size: .78rem; text-align: center; }
.lsfm-status-timeline > div::before { content: ''; position: absolute; top: 14px; right: 50%; width: 100%; height: 2px; background: #dfe4e1; z-index: 0; }
.lsfm-status-timeline > div:first-child::before { display: none; }
.lsfm-status-timeline span { position: relative; z-index: 1; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: #e7ebe8; color: #737c76; font-weight: 800; }
.lsfm-status-timeline .is-complete { color: var(--lsfm-green); }
.lsfm-status-timeline .is-complete::before, .lsfm-status-timeline .is-complete span { background: var(--lsfm-green); }
.lsfm-status-timeline .is-complete span { color: #fff; }
.lsfm-status-timeline .is-current span { box-shadow: 0 0 0 5px rgba(26,77,46,.12); }
.lsfm-tracking-items { padding: 0; }
.lsfm-tracking-items h3 { margin: 0 0 12px; font-size: 1rem; }
.lsfm-tracking-items > div { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; border-bottom: 1px solid var(--lsfm-border); }
.lsfm-tracking-items small { color: var(--lsfm-muted); }
.lsfm-tracking-items p { margin: 15px 0 0; color: var(--lsfm-muted); font-size: .86rem; }
.lsfm-tracking-items .lsfm-tracking-total { margin-top: 8px; padding-top: 12px; border-top: 2px solid var(--lsfm-green); border-bottom: 0; color: var(--lsfm-green); font-size: 1rem; }
.lsfm-tracking-fulfillment { display: flex; flex-direction: column; gap: 3px; margin-top: 20px; padding: 15px; border-radius: 8px; background: var(--lsfm-bg); }
.lsfm-tracking-fulfillment span { color: var(--lsfm-muted); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.lsfm-tracking-fulfillment small { color: var(--lsfm-muted); }
.lsfm-tracking-date { margin: 18px 0 0; color: var(--lsfm-muted); font-size: .8rem; }
.lsfm-check-another { display: block; margin-top: 22px; color: var(--lsfm-green); font-size: .82rem; font-weight: 700; text-align: center; text-decoration: underline; }
.lsfm-check-another:hover { color: var(--lsfm-orange); }

@media (max-width: 600px) {
    .lsfm-thanks-hero { padding: 36px 22px 30px; }
    .lsfm-thanks-body { padding: 22px 16px; }
    .lsfm-thanks-footer { align-items: flex-start; flex-direction: column; }
    .lsfm-lookup-wrap { margin: 24px auto; padding: 22px 18px; }
    .lsfm-tracking-summary { grid-template-columns: 1fr; }
    .lsfm-tracking-summary > div { border-right: 0; border-bottom: 1px solid var(--lsfm-border); }
    .lsfm-tracking-summary > div:last-child { border-bottom: 0; }
    .lsfm-current-status { align-items: flex-start; flex-direction: column; }
    .lsfm-status-timeline strong { font-size: .68rem; }
}

/* Final presentation layer for shortcode pages */
.elementor .lsfm-receipt-wrap,
.elementor .lsfm-lookup-wrap,
.entry-content .lsfm-receipt-wrap,
.entry-content .lsfm-lookup-wrap {
    color: #17221b;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.lsfm-receipt-wrap {
    max-width: 760px;
    margin: 48px auto;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(18,45,28,.16), 0 3px 12px rgba(18,45,28,.08);
}
.lsfm-thanks-hero { padding: 52px 40px 44px; background: linear-gradient(145deg, #122d1c 0%, #1a4d2e 72%, #25663f 100%); }
.lsfm-thanks-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 12% 15%, rgba(255,255,255,.09), transparent 28%); pointer-events: none; }
.lsfm-thanks-check { width: 78px; height: 78px; border-color: rgba(255,255,255,.5); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.lsfm-thanks-hero h1 { letter-spacing: .025em; text-shadow: 0 2px 12px rgba(0,0,0,.18); }
.lsfm-thanks-body { padding: 38px 42px 40px; background: linear-gradient(#fff, #fffdf9); }
.lsfm-order-summary { border-color: rgba(26,77,46,.16); border-radius: 16px; box-shadow: 0 10px 28px rgba(18,45,28,.07); }
.lsfm-order-summary-head { padding: 20px 22px; background: linear-gradient(135deg, #f7f2e8, #fbf9f4); }
.lsfm-order-summary-head h3 { color: var(--lsfm-green); font-family: 'Oswald', sans-serif; font-size: 1.35rem; text-transform: uppercase; }
.lsfm-receipt-row { padding: 16px 2px; }
.lsfm-receipt-row > span { color: var(--lsfm-green); font-weight: 750; }
.lsfm-receipt-total { font-size: 1.2rem; }
.lsfm-order-meta { padding: 13px 22px 20px; border-top: 1px solid var(--lsfm-border); }
.lsfm-order-meta > div { border-bottom: 1px dashed rgba(26,77,46,.12); }
.lsfm-order-meta > div:last-child { border-bottom: 0; }
.lsfm-next-steps { padding: 6px 4px 30px; }
.lsfm-next-step-list { grid-template-columns: repeat(3, 1fr); gap: 14px; }
.lsfm-next-step-list > div { display: block; padding: 18px; border: 1px solid var(--lsfm-border); border-radius: 12px; background: #fff; box-shadow: 0 6px 18px rgba(18,45,28,.045); }
.lsfm-next-step-list > div > span { margin-bottom: 12px; background: linear-gradient(145deg, var(--lsfm-green), #287047); }
.lsfm-important-note { padding: 19px 21px; box-shadow: inset 0 0 0 1px rgba(196,98,10,.13); }
.lsfm-thanks-footer { margin-top: 30px; }

.lsfm-lookup-wrap {
    max-width: 560px;
    margin: 48px auto;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 22px 60px rgba(18,45,28,.14), 0 3px 10px rgba(18,45,28,.07);
}
.lsfm-lookup-header { position: relative; padding: 34px 32px 28px; background: linear-gradient(145deg, #122d1c, #1a4d2e); }
.lsfm-lookup-header::after { content: ''; position: absolute; top: -55px; right: -45px; width: 150px; height: 150px; border-radius: 50%; background: rgba(196,98,10,.18); }
.lsfm-lookup-header h2 { position: relative; z-index: 1; color: #fff; font-size: 1.9rem; letter-spacing: .035em; }
.lsfm-lookup-header h2 span { color: #f2a45f; }
.lsfm-lookup-header > p:last-child { position: relative; z-index: 1; color: rgba(255,255,255,.72); }
.lsfm-lookup-form { padding: 30px 32px 34px; background: #fff; }
.lsfm-lookup-form .lsfm-field { margin: 0; }
.lsfm-lookup-form .lsfm-field label { color: var(--lsfm-green); font-size: .76rem; letter-spacing: .07em; text-transform: uppercase; }
.lsfm-lookup-form .lsfm-field input { min-height: 50px; border: 1.5px solid rgba(26,77,46,.2); border-radius: 9px; background: #fcfdfc; transition: border-color .2s, box-shadow .2s, background .2s; }
.lsfm-lookup-form .lsfm-field input:focus { border-color: var(--lsfm-green); outline: 0; background: #fff; box-shadow: 0 0 0 4px rgba(26,77,46,.1); }
.lsfm-lookup-form .lsfm-btn { min-height: 50px; border-radius: 9px !important; box-shadow: 0 10px 22px rgba(26,77,46,.18); }
.lsfm-lookup-result { padding: 30px 32px 34px; }
.lsfm-current-status { padding: 21px 22px; border-left-width: 5px; box-shadow: inset 0 0 0 1px rgba(26,77,46,.08); }
.lsfm-current-status h3 { font-size: 1.5rem; }
.lsfm-status-timeline { margin: 4px 0 26px; padding: 5px 2px 0; }
.lsfm-tracking-items h3 { color: var(--lsfm-green); font-family: 'Oswald', sans-serif; letter-spacing: .04em; text-transform: uppercase; }
.lsfm-tracking-items > div { padding: 11px 2px; }
.lsfm-tracking-items > div strong { color: var(--lsfm-green); }
.lsfm-tracking-fulfillment { padding: 17px 18px; box-shadow: inset 0 0 0 1px rgba(26,77,46,.08); }
.lsfm-check-another { padding-top: 20px; border-top: 1px solid var(--lsfm-border); text-decoration: none; }

@media (max-width: 640px) {
    .lsfm-receipt-wrap, .lsfm-lookup-wrap { margin: 20px auto; border-radius: 16px; }
    .lsfm-thanks-body { padding: 26px 18px 28px; }
    .lsfm-next-step-list { grid-template-columns: 1fr; }
    .lsfm-lookup-form, .lsfm-lookup-result { padding: 24px 20px 28px; }
}
