﻿/* ============================================================
   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; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   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;
    }
}
