/* EatOut AI onboarding funnel */
.eatout-funnel {
    --eo-green: #16a34a;
    --eo-green-dark: #15803d;
    --eo-green-soft: #ecfdf5;
    --eo-green-mid: #bbf7d0;
    --eo-text: #0f172a;
    --eo-muted: #64748b;
    --eo-border: #e2e8f0;
    --eo-card: #ffffff;
    --eo-radius: 16px;
    --eo-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, sans-serif;
    color: var(--eo-text);
    min-height: 100vh;
    background: linear-gradient(165deg, #f0fdf4 0%, #f8fafc 45%, #ffffff 100%);
    padding: 16px;
    box-sizing: border-box;
}

.eatout-funnel *,
.eatout-funnel *::before,
.eatout-funnel *::after {
    box-sizing: border-box;
}

/* Override theme button:hover (solid navy/blue) across signup + onboarding */
.eatout-funnel button:not(.eatout-funnel__btn-primary):not(.eatout-cta-primary):not([class*="--primary"]):hover,
.eatout-funnel button:not(.eatout-funnel__btn-primary):not(.eatout-cta-primary):not([class*="--primary"]):focus,
.eatout-funnel button:not(.eatout-funnel__btn-primary):not(.eatout-cta-primary):not([class*="--primary"]):focus-visible,
.eatout-funnel button:not(.eatout-funnel__btn-primary):not(.eatout-cta-primary):not([class*="--primary"]):active {
    background-color: #fff !important;
    background-image: none !important;
    color: var(--eo-text, #0f172a) !important;
}

.eatout-funnel__inner {
    max-width: 440px;
    margin: 0 auto;
}

.eatout-edit-goals-back {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
}

.eatout-edit-goals-back a {
    color: var(--eo-green, #16a34a);
    text-decoration: none;
}

.eatout-edit-goals-back a:hover {
    text-decoration: underline;
}

.eatout-funnel__header {
    margin-bottom: 20px;
}

.eatout-funnel__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.eatout-funnel__logo {
    font-size: 28px;
    line-height: 1;
}

.eatout-funnel__brand-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--eo-green-dark);
    letter-spacing: -0.02em;
}

.eatout-funnel__progress-track {
    height: 6px;
    background: var(--eo-border);
    border-radius: 999px;
    overflow: hidden;
}

.eatout-funnel__progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--eo-green), #4ade80);
    border-radius: 999px;
    transition: width 0.45s ease;
}

.eatout-funnel__progress-label {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--eo-muted);
}

.eatout-step {
    animation: eatoutFadeIn 0.35s ease;
}

@keyframes eatoutFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eatout-card {
    background: var(--eo-card);
    border-radius: var(--eo-radius);
    box-shadow: var(--eo-shadow);
    border: 1px solid var(--eo-border);
    padding: 24px 22px;
}

.eatout-card h1 {
    margin: 0 0 8px;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.eatout-card .eatout-lead {
    margin: 0 0 20px;
    font-size: 15px;
    color: var(--eo-muted);
    line-height: 1.5;
}

.eatout-benefits {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}

.eatout-benefits li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--eo-text);
}

.eatout-benefits li::before {
    content: "✓";
    color: var(--eo-green);
    font-weight: 700;
    flex-shrink: 0;
}

.eatout-field {
    margin-bottom: 14px;
}

.eatout-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #334155;
}

.eatout-field input[type="email"],
.eatout-field input[type="password"],
.eatout-field input[type="text"],
.eatout-field input[type="number"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--eo-border);
    border-radius: 10px;
    font-size: 16px;
}

.eatout-btn {
    display: block;
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.eatout-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.eatout-btn--primary {
    background: linear-gradient(145deg, var(--eo-green), var(--eo-green-dark));
    color: #fff;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
}

.eatout-btn--primary:not(:disabled):hover {
    transform: translateY(-1px);
}

.eatout-btn--ghost {
    background: transparent;
    color: var(--eo-green-dark);
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    display: none;
}

.eatout-link {
    color: var(--eo-green-dark);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.eatout-msg {
    margin-top: 10px;
    font-size: 13px;
    min-height: 18px;
    display: none;
}

.eatout-msg--error,
.eatout-msg--ok,
.eatout-msg:not(:empty) {
    display: block;
}

.eatout-msg--error {
    color: #dc2626;
}

.eatout-msg--ok {
    color: var(--eo-green-dark);
}

.eatout-slider-row {
    margin: 20px 0;
}

.eatout-slider-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--eo-green-dark);
    text-align: center;
    margin-bottom: 8px;
}

.eatout-slider-value small {
    font-size: 1rem;
    font-weight: 600;
    color: var(--eo-muted);
}

.eatout-slider {
    width: 100%;
    accent-color: var(--eo-green);
}

.eatout-unit-toggle {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 12px;
}

.eatout-unit-toggle button {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--eo-border);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.eatout-unit-toggle button.is-active {
    background: var(--eo-green-soft);
    border-color: var(--eo-green);
    color: var(--eo-green-dark);
}

.eatout-stat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
}

.eatout-stat-pill {
    padding: 6px 12px;
    background: var(--eo-green-soft);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--eo-green-dark);
}

.eatout-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.eatout-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid var(--eo-border);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    font-size: 15px;
}

.eatout-option:hover {
    border-color: var(--eo-green-mid);
}

.eatout-option.is-selected {
    border-color: var(--eo-green);
    background: var(--eo-green-soft);
}

.eatout-option input {
    accent-color: var(--eo-green);
    width: 18px;
    height: 18px;
}

.eatout-loading {
    text-align: center;
    padding: 28px 16px;
}

.eatout-loading__ring {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 4px solid var(--eo-border);
    border-top-color: var(--eo-green);
    animation: eatoutSpin 0.9s linear infinite;
}

@keyframes eatoutSpin {
    to {
        transform: rotate(360deg);
    }
}

.eatout-loading__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.eatout-loading__sub {
    font-size: 14px;
    color: var(--eo-muted);
    margin-bottom: 20px;
}

.eatout-testimonial {
    background: var(--eo-green-soft);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    font-style: italic;
    color: #334155;
    line-height: 1.45;
}

.eatout-testimonial cite {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 12px;
    font-weight: 600;
    color: var(--eo-muted);
}

.eatout-restaurant-card {
    border: 1px solid var(--eo-border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
    background: #fff;
}

.eatout-restaurant-card__img {
    height: 100px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.eatout-restaurant-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eatout-restaurant-card__body {
    padding: 14px 16px;
}

.eatout-restaurant-card__name {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 2px;
}

.eatout-restaurant-card__meta {
    font-size: 12px;
    color: var(--eo-muted);
    margin-bottom: 10px;
}

.eatout-restaurant-card__meal {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 6px;
}

.eatout-restaurant-card__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #334155;
}

.eatout-score {
    margin-left: auto;
    background: var(--eo-green);
    color: #fff;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
}

.eatout-menu-picks-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
    color: var(--eo-text);
}

.eatout-pick-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
}

.eatout-pick-badge--rank-1 {
    background: var(--eo-green);
    color: #fff;
}

.eatout-pick-badge--rank-2 {
    background: #e0f2fe;
    color: #0369a1;
}

.eatout-pick-badge--rank-3 {
    background: #f1f5f9;
    color: #475569;
}

.eatout-pick-badge__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.25);
    font-weight: 800;
    font-size: 13px;
}

.eatout-pick-badge--rank-2 .eatout-pick-badge__num,
.eatout-pick-badge--rank-3 .eatout-pick-badge__num {
    background: rgba(255, 255, 255, 0.65);
    color: inherit;
}

.eatout-pick-badge__label {
    flex: 1;
    line-height: 1.3;
}

.eatout-menu-option {
    margin-bottom: 16px;
}

.eatout-menu-option--primary .eatout-featured-win__card {
    position: relative;
}

.eatout-menu-option--primary .eatout-pick-badge {
    margin: 0 0 0;
    border-radius: 12px 12px 0 0;
}

.eatout-menu-option--alt {
    border: 1px solid var(--eo-border);
    border-radius: 14px;
    padding: 14px;
    background: #fff;
}

.eatout-menu-option--alt .eatout-pick-badge {
    margin: 0 0 12px;
}

.eatout-menu-option__row {
    display: flex;
    gap: 12px;
}

.eatout-menu-option__thumb {
    flex: 0 0 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.eatout-menu-option__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eatout-menu-option__content {
    flex: 1;
    min-width: 0;
}

.eatout-menu-option__meta {
    margin-bottom: 8px;
}

.eatout-featured-win {
    margin-bottom: 20px;
}

.eatout-featured-win__eyebrow {
    font-size: 14px;
    font-weight: 800;
    color: var(--eo-green-dark);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.eatout-featured-win__card {
    border: 2px solid var(--eo-green-mid);
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, var(--eo-green-soft) 100%);
    box-shadow: 0 16px 48px rgba(22, 163, 74, 0.14), 0 4px 16px rgba(15, 23, 42, 0.06);
}

.eatout-featured-win__order-label {
    margin: 4px 0 2px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--eo-green-dark);
}

.eatout-featured-win__meal {
    font-size: 1.45rem;
    font-weight: 800;
    margin: 0 0 6px;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--eo-text);
}

.eatout-decision-relief {
    margin: 12px 0 10px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--eo-green-mid);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #1e3a2f;
    box-shadow: 0 2px 12px rgba(22, 163, 74, 0.08);
}

.eatout-decision-relief--detail {
    margin: 0 0 16px;
}

.eatout-coach-summary {
    margin: 0 0 16px;
    padding: 14px 16px;
    background: var(--eo-green-soft);
    border-radius: 14px;
    border: 1px solid var(--eo-green-mid);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--eo-green-dark);
}

.eatout-coach-summary--paywall {
    margin-bottom: 18px;
}

.eatout-menu-option__teaser {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.45;
    color: #475569;
    font-weight: 500;
}

.eatout-menu-option--primary .eatout-why-list {
    margin-top: 4px;
}

.eatout-menu-option--primary .eatout-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
}

.eatout-menu-option--primary .eatout-why-list__check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--eo-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

.eatout-menu-option--alt {
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
    display: none;
}

.eatout-featured-win__img {
    height: 120px;
    background: linear-gradient(135deg, #86efac, #22c55e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

#eo-restaurant-list .eatout-featured-win__img {
    height: 200px;
}

.eatout-featured-win__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eatout-featured-win__body {
    padding: 16px 18px 18px;
}

.eatout-featured-win__restaurant {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--eo-muted);
}

.eatout-featured-win__stats {
    margin-bottom: 10px;
}

.eatout-featured-win__impact {
    margin: 12px 0 0;
    padding: 12px 14px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--eo-green-mid);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--eo-green-dark);
}

.eatout-match-badge {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 8px;
    margin-bottom: 10px;
    font-size: 12px;
}

.eatout-match-badge__pct {
    font-weight: 800;
    color: var(--eo-green-dark);
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.eatout-match-badge__aligned {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--eo-green);
}

.eatout-match-badge__label {
    color: #334155;
    flex: 1 1 100%;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.eatout-why-list {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.eatout-why-list li {
    font-size: 13px;
    line-height: 1.4;
    color: #334155;
}

.eatout-more-nearby-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--eo-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 4px 0 12px;
}

.eatout-restaurant-card--compact .eatout-restaurant-card__img {
    height: 72px;
    font-size: 32px;
}

.eatout-restaurant-card--compact .eatout-restaurant-card__body {
    padding: 12px 14px;
}

.eatout-btn--cta {
    width: 100%;
    margin-top: 8px;
    font-size: 16px;
    padding: 16px 20px;
    letter-spacing: -0.01em;
}

.eatout-menu-option--alt .eatout-detail-pill {
    margin: 12px 0 0;
    width: 100%;
}

.eatout-menu-option--primary .eatout-featured-win__body .eatout-detail-pill {
    margin: 14px 0 0;
    width: 100%;
    background: #f8f9fa;
    color: #0f172a;
    border-color: var(--eo-green);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.28);
}

.eatout-menu-option--primary .eatout-featured-win__body .eatout-detail-pill .eatout-detail-pill__arrow {
    color: var(--eo-green-dark);
}

.eatout-menu-option--primary .eatout-featured-win__body .eatout-detail-pill:hover,
.eatout-menu-option--primary .eatout-featured-win__body .eatout-detail-pill:focus {
    background: #e2e8f0;
    border-color: var(--eo-green-dark);
    color: #0f172a;
}

.eatout-detail-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--eo-border);
    border-radius: 999px;
    background: #fff;
    color: var(--eo-text);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    text-decoration: none;
    box-sizing: border-box;
}

.eatout-detail-pill:hover,
.eatout-detail-pill:focus {
    border-color: var(--eo-green-mid);
    background: var(--eo-green-soft);
    outline: none;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.12);
}

.eatout-detail-pill__arrow {
    color: var(--eo-green-dark);
    font-weight: 800;
}

.eatout-detail-pill--menu {
    margin-bottom: 10px;
}

.eatout-detail-pill--order {
    background: var(--eo-green);
    border-color: var(--eo-green);
    color: #fff;
    font-size: 15px;
    padding: 14px 20px;
}

.eatout-detail-pill--order:hover,
.eatout-detail-pill--order:focus {
    background: var(--eo-green-dark);
    border-color: var(--eo-green-dark);
    color: #fff;
}

.eatout-detail-pill--order .eatout-detail-pill__arrow {
    color: #fff;
}

.eatout-meal-detail {
    position: fixed;
    inset: 0;
    z-index: 100020;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.eatout-meal-detail.is-open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

body.eatout-meal-detail-open {
    overflow: hidden;
}

.eatout-meal-detail__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
}

.eatout-meal-detail__panel {
    position: relative;
    width: 100%;
    max-width: 440px;
    max-height: 88vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 20px 18px 24px;
    box-shadow: 0 -12px 40px rgba(15, 23, 42, 0.15);
    transform: translateY(100%);
    transition: transform 0.28s ease;
}

.eatout-meal-detail.is-open .eatout-meal-detail__panel {
    transform: translateY(0);
}

.eatout-meal-detail__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #334155;
    z-index: 2;
}

.eatout-meal-detail__hero {
    height: 140px;
    margin: -4px -4px 14px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, #dcfce7, #86efac);
    display: flex;
    align-items: center;
    justify-content: center;
}

.eatout-meal-detail__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eatout-meal-detail__img-placeholder {
    font-size: 48px;
}

.eatout-meal-detail__section {
    margin-bottom: 16px;
}

.eatout-meal-detail__section-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--eo-muted);
    margin: 0 0 8px;
}

.eatout-macro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.eatout-macro-grid__cell {
    padding: 10px 12px;
    background: #f8fafc;
    border: 1px solid var(--eo-border);
    border-radius: 10px;
}

.eatout-macro-grid__cell span {
    display: block;
    font-size: 11px;
    color: var(--eo-muted);
    margin-bottom: 2px;
}

.eatout-macro-grid__cell strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--eo-text);
    letter-spacing: -0.02em;
}

.eatout-meal-detail__est {
    margin: 8px 0 0;
    font-size: 11px;
    color: var(--eo-muted);
}

.eatout-meal-detail__vs-line {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #334155;
}

.eatout-meal-detail__vs-impact {
    margin: 14px 0 0;
    padding: 12px 14px;
    background: var(--eo-green-soft);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--eo-green-dark);
}

.eatout-swap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.eatout-swap__row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.eatout-swap__row--bad {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #7f1d1d;
}

.eatout-swap__row--good {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: #14532d;
}

.eatout-swap__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.eatout-swap__row--bad .eatout-swap__icon {
    background: #fee2e2;
    color: #b91c1c;
}

.eatout-swap__row--good .eatout-swap__icon {
    background: #16a34a;
    color: #fff;
}

.eatout-swap__arrow {
    text-align: center;
    color: var(--eo-muted);
    font-size: 16px;
    line-height: 1;
}

.eatout-impact-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 14px;
}

.eatout-impact-strip__cell {
    text-align: center;
    padding: 10px 6px;
    background: #f8fafc;
    border: 1px solid var(--eo-border);
    border-radius: 12px;
}

.eatout-impact-strip__cell strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--eo-text);
    letter-spacing: -0.02em;
}

.eatout-impact-strip__cell span {
    display: block;
    margin-top: 2px;
    font-size: 10px;
    font-weight: 600;
    color: var(--eo-muted);
    line-height: 1.25;
}

.eatout-impact-strip__cell--highlight {
    background: var(--eo-green-soft);
    border-color: var(--eo-green-mid);
}

.eatout-impact-strip__cell--highlight strong {
    color: var(--eo-green-dark);
}

@media (max-width: 380px) {
    .eatout-impact-strip {
        grid-template-columns: 1fr;
    }
}

.eatout-why-list--detail {
    margin-top: 0;
}

.eatout-why-list--detail li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    list-style: none;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.45;
    color: #334155;
}

.eatout-why-list--detail .eatout-why-list__check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--eo-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.eatout-meal-detail__order-copy {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    color: var(--eo-text);
}

.eatout-meal-detail__tips {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.45;
    color: #334155;
}

.eatout-meal-detail__tips li {
    margin-bottom: 6px;
}

.eatout-meal-detail__done {
    width: 100%;
    margin-top: 4px;
}

.eatout-meal-detail__rank {
    font-size: 12px;
    font-weight: 800;
    color: var(--eo-green-dark);
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.eatout-meal-detail__meal {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 28px 4px 0;
    letter-spacing: -0.02em;
}

.eatout-meal-detail__restaurant {
    margin: 0 0 12px;
    color: var(--eo-muted);
    font-size: 14px;
}

.eatout-meal-detail__stats {
    margin-bottom: 12px;
}

.eatout-meal-detail__desc {
    font-size: 14px;
    line-height: 1.45;
    color: #334155;
    margin: 0 0 10px;
}

.eatout-meal-detail__order-tip {
    margin: 14px 0;
    padding: 12px 14px;
    background: var(--eo-green-soft);
    border-radius: 10px;
    border: 1px solid var(--eo-green-mid);
}

.eatout-meal-detail__order-tip strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--eo-green-dark);
    margin-bottom: 6px;
}

.eatout-meal-detail__order-tip p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
}

.eatout-meal-detail__menu-link {
    display: block;
    text-align: center;
    margin-bottom: 10px;
    text-decoration: none;
}

.eatout-paywall h1 {
    letter-spacing: -0.03em;
}

.eatout-paywall__lead {
    font-size: 16px;
    line-height: 1.55;
}

.eatout-paywall-benefits {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.eatout-paywall-benefits li {
    position: relative;
    padding-left: 26px;
    font-size: 14px;
    line-height: 1.45;
    color: #334155;
    font-weight: 500;
}

.eatout-paywall-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--eo-green);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eatout-paywall__fine {
    text-align: center;
    font-size: 12px;
    color: var(--eo-muted);
    margin: 14px 0 0;
    line-height: 1.45;
}

.eatout-paywall-price {
    text-align: center;
    margin: 16px 0;
}

.eatout-paywall-price strong {
    font-size: 2rem;
    color: var(--eo-green-dark);
}

.eatout-features-grid {
    display: grid;
    gap: 8px;
    margin: 16px 0;
    font-size: 14px;
}

.eatout-features-grid div::before {
    content: "✓ ";
    color: var(--eo-green);
    font-weight: 700;
}

.eatout-google-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 1px dashed var(--eo-border);
    border-radius: 10px;
    color: var(--eo-muted);
    font-size: 14px;
    margin-bottom: 14px;
}

@media (min-width: 480px) {
    .eatout-funnel {
        padding: 32px 20px;
    }
}

/* Signup / login landing (onboarding card) */
.eatout-funnel--landing {
    --eo-landing-green: #18a64a;
    --eo-landing-green-dark: #15913f;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0f172a;
    color: #111;
    padding: 0;
    align-items: stretch;
    display: flex;
    justify-content: stretch;
    min-height: 100vh;
    min-height: 100dvh;
}

.eatout-funnel--landing .eatout-funnel__inner {
    max-width: none;
    width: 100%;
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.eatout-funnel--landing .eatout-funnel__main {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

body.eatout-funnel-body--landing .ast-container,
body.eatout-funnel-body--landing .ast-container-fluid {
    max-width: none !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

body.eatout-funnel-body--landing {
    overflow: hidden;
}

/* Cinematic welcome hero */
.eatout-welcome {
    animation: eatoutFadeIn 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    flex: 1;
}

.eatout-welcome-card {
    position: relative;
    flex: 1;
    border-radius: 0;
    overflow: hidden;
    background: #0f172a;
    box-shadow: none;
    min-height: 100dvh;
}

.eatout-welcome-hero {
    position: relative;
    flex: 1;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    isolation: isolate;
}

.eatout-welcome-hero img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.eatout-welcome-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.55) 45%, rgba(15, 23, 42, 0.92) 100%);
    pointer-events: none;
}

.eatout-welcome-hero__grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.35;
    pointer-events: none;
}

.eatout-welcome-hero__scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4ade80, transparent);
    box-shadow: 0 0 18px rgba(74, 222, 128, 0.85);
    animation: eoWelcomeScan 3.2s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.eatout-welcome-hero__scan-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(74, 222, 128, 0.12), transparent 55%);
    pointer-events: none;
}

@keyframes eoWelcomeScan {
    0% {
        top: 18%;
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        top: 72%;
        opacity: 0;
    }
}

.eatout-welcome-logo {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
}

.eatout-welcome-logo__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16a34a;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2);
}

.eatout-welcome-panel {
    position: relative;
    z-index: 3;
    flex-shrink: 0;
    margin-top: auto;
    padding: 24px 22px 12px;
    color: #fff;
}

.eatout-welcome-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.eatout-welcome-chip__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    animation: eoPulse 1.4s ease-in-out infinite;
}

@keyframes eoPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.55;
        transform: scale(0.85);
    }
}

.eatout-welcome-headline {
    margin: 0 0 10px;
    font-size: 42px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
}

.eatout-welcome-headline span,
.eatout-welcome-headline-accent {
    color: #4ade80;
}

.eatout-welcome-sub {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
    max-width: 34ch;
}

.eatout-welcome-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.eatout-welcome-metric {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.eatout-welcome-metric__label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 4px;
}

.eatout-welcome-metric__value {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.eatout-welcome-metric__value--green {
    color: #4ade80;
}

.eatout-welcome-bottom {
    position: relative;
    z-index: 4;
    flex-shrink: 0;
    width: 100%;
    margin-top: 0;
    padding: 16px 20px max(20px, env(safe-area-inset-bottom));
    background: rgba(15, 23, 42, 0.98);
    box-sizing: border-box;
}

.eatout-welcome-footer {
    margin: 10px 0 0;
    text-align: center;
    font-size: 8.5px;
    color: #a8a8a8;
    line-height: 1.4;
}

.eatout-welcome-footer em {
    font-style: italic;
    font-weight: 400;
}

.eatout-welcome-footer__link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.eatout-welcome-footer__link:hover {
    color: #d1d5db;
}

/* "Become A Wellness Ambassador" rendered as a button — strip default chrome */
.eatout-welcome-footer__btn {
    background: transparent;
    border: 0;
    padding: 0;
    font: inherit;
    cursor: pointer;
    display: inline;
}
.eatout-welcome-footer__btn:focus { outline: 0; }
.eatout-welcome-footer__btn:focus-visible {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
    border-radius: 2px;
}

/* ─────────────────────────────────────────────
   Wellness Ambassador teaser modal (opened from
   the welcome footer link)
   ───────────────────────────────────────────── */
.eo-amb-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}
.eo-amb-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.eo-amb-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 14, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.eo-amb-modal__card {
    position: relative;
    width: 100%;
    max-width: 420px;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    padding: 28px 24px 22px;
    text-align: center;
    border-radius: 26px;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(34,197,94,0.22), transparent 60%),
        linear-gradient(180deg, #0a1422 0%, #060b14 100%);
    border: 1px solid rgba(34,197,94,0.3);
    box-shadow: 0 30px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.04);
    color: #f3f6fb;
    transform: translateY(12px) scale(0.97);
    transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: eo-amb-modal-in 0.36s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes eo-amb-modal-in {
    0%   { transform: translateY(20px) scale(0.92); opacity: 0; }
    100% { transform: translateY(0)    scale(1);    opacity: 1; }
}

.eo-amb-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 32px; height: 32px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #f3f6fb;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.eo-amb-modal__close:hover {
    background: rgba(255,255,255,0.18);
    transform: scale(1.06);
}

.eo-amb-modal__hero {
    position: relative;
    width: 84px; height: 84px;
    margin: 4px auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fde68a 0%, #f59e0b 60%, #b45309 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 4px rgba(245,158,11,0.18), 0 14px 36px rgba(245,158,11,0.45);
    animation: eo-amb-modal-pulse 2.4s ease-in-out infinite;
}
@keyframes eo-amb-modal-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(245,158,11,0.18), 0 14px 36px rgba(245,158,11,0.45); }
    50%      { box-shadow: 0 0 0 8px rgba(245,158,11,0.10), 0 18px 44px rgba(245,158,11,0.55); }
}
.eo-amb-modal__badge {
    font-size: 38px;
    line-height: 1;
}

.eo-amb-modal__eyebrow {
    display: inline-block;
    padding: 5px 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(34,197,94,0.18), rgba(14,165,233,0.18));
    border: 1px solid rgba(34,197,94,0.4);
    color: #86efac;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.eo-amb-modal__title {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.015em;
}

.eo-amb-modal__sub {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.5;
    color: #cbd5e1;
}

.eo-amb-modal__perks {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    text-align: left;
    display: grid;
    gap: 10px;
}
.eo-amb-modal__perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    font-size: 13px;
    line-height: 1.4;
    color: #e2e8f0;
}
.eo-amb-modal__perks li span {
    flex: 0 0 28px;
    width: 28px; height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(34,197,94,0.25), rgba(14,165,233,0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.eo-amb-modal__cta {
    display: block;
    width: 100%;
    margin: 0 0 8px;
    padding: 14px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 60%, #0ea5e9 130%);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
    text-align: center;
    box-shadow: 0 12px 28px rgba(22,163,74,0.5), inset 0 1px 0 rgba(255,255,255,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.eo-amb-modal__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(22,163,74,0.6);
}

.eo-amb-modal__later {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    color: #94a3b8;
    font-size: 13px;
    padding: 10px;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.eo-amb-modal__later:hover { color: #cbd5e1; }

/* Prevent body scroll under modal */
body:has(.eo-amb-modal.is-open) {
    overflow: hidden;
}

.eatout-welcome-cta {
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 16px 20px;
    font-family: inherit;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 0 10px 28px rgba(22, 163, 74, 0.35);
    cursor: pointer;
}

.eatout-welcome-cta:hover,
.eatout-welcome-cta:focus {
    filter: brightness(1.05);
    outline: none;
}

.eatout-welcome-signin {
    margin: 14px 0 0;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
}

.eatout-welcome-signin__link {
    border: none;
    background: none;
    padding: 0;
    font: inherit;
    font-weight: 700;
    color: #4ade80;
    cursor: pointer;
    text-decoration: underline;
}

.eatout-motivation-quote {
    font-size: 20px;
    line-height: 1.45;
    font-weight: 600;
    color: #334155;
    margin: 0 0 24px;
}

.eatout-testimonials {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.eatout-testimonial--card {
    font-style: normal;
}

.eatout-testimonial__stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.eatout-testimonial--card span {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--eo-muted);
}

.eatout-landing {
    animation: eatoutFadeIn 0.35s ease;
}

.eatout-landing-card {
    width: 100%;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.eatout-landing-hero {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.eatout-landing-hero--short {
    height: 200px;
}

.eatout-landing-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.eatout-landing-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
    pointer-events: none;
}

.eatout-hero-login-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    margin: 0;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
    transition: background 0.15s ease, transform 0.15s ease;
}

.eatout-hero-login-btn:hover,
.eatout-hero-login-btn:focus {
    background: #fff;
    transform: translateY(-1px);
    outline: none;
}

.eatout-landing-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.eatout-landing-content {
    padding: 28px;
}

.eatout-landing-title {
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.eatout-landing-highlight {
    color: var(--eo-landing-green);
}

.eatout-landing-sub {
    font-size: 17px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 26px;
}

.eatout-landing-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.eatout-landing-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #333;
    line-height: 1.4;
}

.eatout-landing-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--eo-landing-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    line-height: 1;
}

.eatout-landing-preview {
    background: #f7f9f7;
    border-radius: 20px;
    padding: 18px;
    margin-bottom: 28px;
    border: 1px solid #e9ece9;
}

.eatout-landing-preview-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
}

.eatout-landing-preview-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #ececec;
}

.eatout-landing-preview-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.eatout-landing-preview-info {
    padding: 14px;
}

.eatout-landing-preview-name {
    font-weight: 700;
    margin-bottom: 6px;
}

.eatout-landing-preview-meal {
    color: var(--eo-landing-green);
    font-weight: 600;
    margin-bottom: 4px;
}

.eatout-landing-preview-macros {
    color: #777;
    font-size: 14px;
}

.eatout-landing-field {
    margin-bottom: 16px;
}

.eatout-landing-field input {
    width: 100%;
    height: 56px;
    border-radius: 16px;
    border: 1px solid #ddd;
    padding: 0 18px;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
    color: #111;
}

.eatout-landing-field input:focus {
    border-color: var(--eo-landing-green);
    box-shadow: 0 0 0 4px rgba(24, 166, 74, 0.1);
}

.eatout-landing-cta {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 18px;
    background: var(--eo-landing-green);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.eatout-landing-cta:hover:not(:disabled) {
    transform: translateY(-1px);
    background: var(--eo-landing-green-dark);
}

.eatout-landing-cta:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.eatout-landing-social {
    margin-top: 18px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.eatout-landing-social p {
    margin: 0;
}

.eatout-landing-stars {
    color: #ffb400;
    margin-bottom: 6px;
    font-size: 18px;
    letter-spacing: 2px;
}

.eatout-landing-footer {
    text-align: center;
    margin: 18px 0 0;
    font-size: 14px;
    color: #666;
}

.eatout-landing-footer-link {
    border: none;
    background: none;
    padding: 0;
    color: var(--eo-landing-green);
    font-weight: 600;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
}

.eatout-landing-footer-link:hover {
    text-decoration: underline;
}

.eatout-msg--landing {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 480px) {
    .eatout-landing-content {
        padding: 22px;
    }

    .eatout-landing-title {
        font-size: 30px;
    }

    .eatout-landing-hero {
        height: 230px;
    }

    .eatout-landing-hero--short {
        height: 180px;
    }
}

/* Onboarding polish */
.eatout-landing-trust {
    text-align: center;
    font-size: 13px;
    color: var(--eo-muted);
    margin: -4px 0 16px;
    font-weight: 500;
}

.eatout-ai-chips {
    display: none;
    justify-content: center;
    padding: 0 16px 8px;
    min-height: 32px;
}

.eatout-ai-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: var(--eo-green-dark);
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.12);
    animation: eatout-chip-in 0.35s ease;
}

.eatout-ai-chip__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--eo-green);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
    animation: eatout-chip-pulse 1.4s ease infinite;
}

@keyframes eatout-chip-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes eatout-chip-pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.45;
    }
}

.eatout-card--onboarding h1 {
    font-size: 1.55rem;
    letter-spacing: -0.03em;
}

.eatout-options--tap {
    display: grid;
    gap: 10px;
}

.eatout-option--btn {
    width: 100%;
    text-align: left;
    cursor: pointer;
    border: 2px solid var(--eo-border);
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    font-family: inherit;
}

.eatout-funnel button.eatout-option--btn:hover,
.eatout-funnel button.eatout-option--btn:focus,
.eatout-funnel button.eatout-option--btn.is-selected {
    border-color: var(--eo-green);
    background: #f0fdf4;
    color: #0f172a !important;
    transform: translateY(-1px);
}

.eatout-empathy {
    margin: 16px 0 4px;
    padding: 14px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border-left: 4px solid var(--eo-green);
    animation: eatout-chip-in 0.4s ease;
}

.eatout-empathy__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #166534;
    font-weight: 600;
}

.eatout-paywall-reassurance {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid var(--eo-border);
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    text-align: center;
    line-height: 1.45;
}

.eatout-plan-cards {
    display: grid;
    gap: 12px;
    margin: 0 0 18px;
}

.eatout-plan-card {
    display: grid;
    gap: 4px;
    text-align: left;
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    border: 2px solid var(--eo-border);
    background: #fff;
    color: var(--eo-text);
    cursor: pointer;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s, background 0.2s;
}

/* Override theme button:hover (often solid blue) on plan toggles */
.eatout-funnel .eatout-plan-card:hover,
.eatout-funnel .eatout-plan-card:focus,
.eatout-funnel .eatout-plan-card:active {
    background: #fff !important;
    color: var(--eo-text);
    border-color: var(--eo-green-mid);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    transform: none;
}

.eatout-funnel .eatout-plan-card:focus-visible {
    outline: 2px solid var(--eo-green);
    outline-offset: 2px;
}

.eatout-funnel .eatout-plan-card.is-selected,
.eatout-funnel .eatout-plan-card.is-selected:hover,
.eatout-funnel .eatout-plan-card.is-selected:focus,
.eatout-funnel .eatout-plan-card.is-selected:active {
    border-color: var(--eo-green);
    box-shadow: 0 0 0 1px var(--eo-green), 0 8px 28px rgba(34, 197, 94, 0.18);
    transform: translateY(-1px);
}

.eatout-plan-card--yearly {
    padding-top: 20px;
    position: relative;
}

.eatout-plan-card--yearly.is-selected,
.eatout-plan-card--yearly.is-selected:hover,
.eatout-plan-card--yearly.is-selected:focus,
.eatout-plan-card--yearly.is-selected:active {
    background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
}

.eatout-plan-card--monthly.is-selected,
.eatout-plan-card--monthly.is-selected:hover,
.eatout-plan-card--monthly.is-selected:focus,
.eatout-plan-card--monthly.is-selected:active {
    background: #fff;
}

.eatout-plan-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #fff;
    background: var(--eo-green);
    padding: 4px 8px;
    border-radius: 6px;
}

.eatout-plan-card__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--eo-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.eatout-plan-card__price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
}

.eatout-plan-card__sub {
    font-size: 13px;
    color: var(--eo-muted);
    line-height: 1.4;
}

.eatout-funnel .eatout-plan-card:hover .eatout-plan-card__title,
.eatout-funnel .eatout-plan-card:focus .eatout-plan-card__title,
.eatout-funnel .eatout-plan-card:active .eatout-plan-card__title {
    color: var(--eo-muted);
}

.eatout-funnel .eatout-plan-card:hover .eatout-plan-card__price,
.eatout-funnel .eatout-plan-card:focus .eatout-plan-card__price,
.eatout-funnel .eatout-plan-card:active .eatout-plan-card__price {
    color: #0f172a;
}

.eatout-funnel .eatout-plan-card:hover .eatout-plan-card__sub,
.eatout-funnel .eatout-plan-card:focus .eatout-plan-card__sub,
.eatout-funnel .eatout-plan-card:active .eatout-plan-card__sub {
    color: var(--eo-muted);
}

/* Onboarding visuals */
.eatout-onboard-visual {
    position: relative;
    height: 140px;
    border-radius: 14px;
    overflow: hidden;
    margin: -4px 0 18px;
}

.eatout-onboard-visual__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.eatout-onboard-visual__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.45) 100%);
}

.eatout-onboard-visual__emoji {
    position: absolute;
    left: 14px;
    bottom: 12px;
    font-size: 2rem;
    line-height: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.eatout-card--onboarding {
    overflow: hidden;
}

.eatout-height-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: var(--eo-muted);
    margin: 8px 0 4px;
}

.eatout-height-sliders {
    margin-bottom: 8px;
}

.eatout-dob-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 10px;
    margin: 16px 0 10px;
}

.eatout-dob-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--eo-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.eatout-dob-select {
    width: 100%;
    padding: 12px 10px;
    border-radius: 12px;
    border: 2px solid var(--eo-border);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    background: #fff;
    color: #0f172a;
}

.eatout-dob-hint {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--eo-green-dark);
    margin: 0 0 16px;
    min-height: 1.25em;
}

/* Checkout / paywall hero */
.eatout-funnel--checkout .eatout-funnel__inner {
    max-width: 460px;
}

.eatout-funnel--checkout {
    padding-top: 8px;
}

.eatout-checkout-hero {
    height: 200px;
}

.eatout-checkout-hero__copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 20px;
    z-index: 2;
}

.eatout-checkout-hero__badge {
    display: inline-block;
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--eo-green-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.eatout-checkout-hero__title {
    margin: 0;
    font-size: 1.65rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.eatout-checkout__body {
    padding-top: 20px;
}

.eatout-checkout .eatout-plan-card--yearly.is-selected {
    box-shadow: 0 0 0 2px var(--eo-green), 0 10px 32px rgba(34, 197, 94, 0.22);
}

@media (max-width: 380px) {
    .eatout-dob-grid {
        grid-template-columns: 1fr;
    }
}

.eatout-paywall-card {
    margin: 16px 0 12px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--eo-border);
    background: #f8fafc;
}

.eatout-paywall-card__hint {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    line-height: 1.4;
}

.eatout-paywall-card__status {
    margin: 8px 0 0;
    font-size: 12px;
    color: #64748b;
    min-height: 1em;
}

.eatout-square-card {
    min-height: 120px;
}

.eatout-square-card iframe {
    max-width: 100%;
}

.eatout-paywall-sandbox {
    margin: 0 0 12px;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.45;
    color: #92400e;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
}

.eatout-paywall-sandbox strong {
    font-weight: 700;
}

.eatout-paywall-disclosure {
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 1.45;
    color: #475569;
}

.eatout-paywall-secure {
    margin: 6px 0 0;
    font-size: 12px;
    color: #64748b;
}

.eatout-paywall-card__status {
    color: #b91c1c;
    font-weight: 600;
}

/* Today’s calories (onboarding) */
.eatout-calorie-chips {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 18px 0 12px;
}

.eatout-calorie-chip {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    border-radius: 14px;
    border: 2px solid var(--eo-border, #e5e7eb);
    background: #fff;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
}

.eatout-calorie-chip:hover,
.eatout-calorie-chip.is-selected {
    border-color: var(--eo-green, #22c55e);
    background: #f0fdf4;
}

.eatout-calorie-encourage {
    margin: 0 0 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f0fdf4;
    color: #166534;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}

.eatout-calorie-skip {
    display: block;
    width: 100%;
    margin-top: 4px;
}

.eatout-calorie-banner {
    margin: 0 0 18px;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 1px solid #bbf7d0;
}

.eatout-calorie-banner strong {
    display: block;
    font-size: 17px;
    line-height: 1.3;
    color: #14532d;
    margin-bottom: 6px;
}

.eatout-calorie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #41604e;
}

.eatout-sparse-banner {
    margin: 0 0 16px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    display: none;
}

.eatout-sparse-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #92400e;
}

/* ~10s sparse-market menu scan demo (step 19) */
.eo-scan-demo {
    padding: 4px 0 8px;
}

.eo-scan-demo__eyebrow {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--eo-green-dark);
}

.eo-scan-demo__status {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
    color: var(--eo-text);
}

.eo-scan-demo__progress {
    height: 6px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
    margin-bottom: 16px;
}

.eo-scan-demo__progress-bar {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--eo-green), #22c55e);
}

.eo-scan-demo__menu {
    position: relative;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--eo-border);
    box-shadow: var(--eo-shadow);
    padding: 14px 14px 18px;
    overflow: hidden;
    min-height: 168px;
}

.eo-scan-demo__line {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
    line-height: 1.5;
    padding: 6px 0;
    opacity: 0.45;
    animation: eo-scan-line-in 0.5s ease forwards;
}

.eo-scan-demo.is-revealed .eo-scan-demo__line:nth-child(3) {
    opacity: 1;
    color: var(--eo-green-dark);
    font-weight: 700;
}

.eo-scan-demo__line-name {
    flex: 1;
    min-width: 0;
}

.eo-scan-demo__line-dots {
    flex: 0 0 48px;
    border-bottom: 1px dotted #cbd5e1;
    height: 0.65em;
}

.eo-scan-demo__scanline {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--eo-green), transparent);
    box-shadow: 0 0 12px rgba(22, 163, 74, 0.55);
    animation: eo-scan-sweep 2.2s ease-in-out infinite;
    pointer-events: none;
}

.eo-scan-demo.is-revealed .eo-scan-demo__scanline {
    animation: none;
    opacity: 0;
}

.eo-scan-demo__hint {
    margin: 10px 0 0;
    font-size: 12px;
    color: var(--eo-muted);
    text-align: center;
}

.eo-scan-demo__reveal {
    margin-top: 14px;
    padding: 14px;
    border-radius: 14px;
    background: var(--eo-green-soft);
    border: 1px solid var(--eo-green-mid);
}

.eo-scan-demo__reveal[hidden] {
    display: none !important;
}

.eo-scan-demo__reveal-label {
    margin: 0 0 4px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--eo-green-dark);
}

.eo-scan-demo__reveal-meal {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.25;
    color: var(--eo-text);
}

.eo-scan-demo__reveal-meta {
    margin: 0;
    font-size: 13px;
    color: #166534;
}

.eo-scan-demo__skip {
    width: 100%;
    margin-top: 12px;
}

@keyframes eo-scan-sweep {
    0% {
        top: 8%;
        opacity: 0.2;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        top: 92%;
        opacity: 0.2;
    }
}

@keyframes eo-scan-line-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 0.45;
        transform: translateY(0);
    }
}

/* —— EatOut paywall (eo-paywall) —— */
.eatout-funnel--eo-paywall {
    background: #f4f7f5;
    padding-bottom: 32px;
}

.eatout-step--paywall {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
}

.eo-paywall {
    max-width: 460px;
    margin: 0 auto;
    padding: 12px 4px 48px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.eo-paywall .scan-preview {
    position: relative;
    height: 260px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.eo-paywall .scan-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.eo-paywall .dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1));
    pointer-events: none;
}

.eo-paywall .scanner-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #3bff7c, transparent);
    box-shadow: 0 0 20px #3bff7c;
    animation: eo-paywall-scan 3s infinite ease-in-out;
    z-index: 3;
}

@keyframes eo-paywall-scan {
    0% {
        top: 15%;
    }
    50% {
        top: 85%;
    }
    100% {
        top: 15%;
    }
}

.eo-paywall .ai-status {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
}

.eo-paywall .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3bff7c;
    box-shadow: 0 0 12px #3bff7c;
    flex-shrink: 0;
}

.eo-paywall .analysis-card {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 24px;
    padding: 22px;
    color: #fff;
}

.eo-paywall .analysis-number {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}

.eo-paywall .analysis-label {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
}

.eo-paywall .match-score {
    margin-top: 18px;
    font-weight: 700;
    font-size: 18px;
}

.eo-paywall .headline {
    text-align: center;
    margin-top: 30px;
}

.eo-paywall .headline h1 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.08;
    margin: 0 0 14px;
    color: #111827;
    font-weight: 800;
}

.eo-paywall .headline p {
    display: none;
    margin: 0;
    color: #64748b;
    line-height: 1.7;
    font-size: 17px;
}

.eo-paywall .benefits {
    margin-top: 32px;
}

.eo-paywall .benefits.fade-up {
    animation-delay: 0.14s;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
}

.eo-paywall .benefit {
    padding: 14px 0;
    font-size: 17px;
    color: #111827;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.eo-paywall .eo-benefit-text {
    flex: 1;
    min-width: 0;
    line-height: 1.45;
}

/* Green box + white check (wrapper beats theme img.emoji rules) */
.eo-paywall .eo-benefit-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    background: #22c55e;
    border-radius: 5px;
    flex-shrink: 0;
    margin-top: 1px;
    box-shadow: none;
}

.eo-paywall .eo-benefit-check .emoji,
.eo-paywall .eo-benefit-check img.emoji {
    display: block !important;
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    vertical-align: middle !important;
    filter: brightness(0) invert(1);
}

.eo-paywall .headline h1 img.emoji {
    display: inline !important;
    width: 1.1em !important;
    height: 1.1em !important;
    margin: 0 0.06em 0 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    filter: none !important;
    vertical-align: -0.12em !important;
}

.eo-paywall .timeline {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
}

.eo-paywall .timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 12px;
    bottom: 12px;
    width: 3px;
    background: #e5e7eb;
}

.eo-paywall .timeline-item {
    display: flex;
    gap: 18px;
    position: relative;
}

.eo-paywall .timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #d1d5db;
    z-index: 2;
    flex-shrink: 0;
}

.eo-paywall .timeline-dot.green {
    background: #22c55e;
}

.eo-paywall .timeline-dot.dark {
    background: #111827;
}

.eo-paywall .timeline-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.eo-paywall .timeline-text {
    margin-top: 6px;
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
}

/* Give the row breathing room above for the "5 DAYS FREE" badge that sits
   above the yearly card, and let cards span the full container width. */
.eo-paywall .plans {
    margin: 40px 0 0;
    padding-top: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.eo-paywall .plan {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    border: 2px solid #d1d5db;
    border-radius: 20px;
    padding: 16px 12px 18px;
    background: #fff;
    min-height: 120px;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    /* No overflow:hidden — the .best-value badge sits above the card edge. */
}

.eo-paywall .plan.active-plan {
    border: 3px solid #22c55e;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.eo-paywall .best-value {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 999px;
    white-space: nowrap;
    text-align: center;
    z-index: 2;
    letter-spacing: 0.02em;
}

/* Monthly trial badge appears only while the Monthly plan is selected.
   Yearly's badge stays always-on (handled by the bare .best-value rule above). */
.eo-paywall .plan[data-plan="monthly"] .best-value--monthly {
    display: none;
}

.eo-paywall .plan[data-plan="monthly"].active-plan .best-value--monthly {
    display: block;
    animation: eo-paywall-fade-up 0.35s ease both;
}

.eo-paywall .plan-name {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

/* One-line price — never wrap mid-number. Shrink font instead. */
.eo-paywall .plan-price {
    margin-top: 8px;
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    line-height: 1.05;
    white-space: nowrap;
    letter-spacing: -0.01em;
    overflow: visible;
}

.eo-paywall .plan-price span {
    font-size: 13px;
    color: #64748b;
    font-weight: 700;
    letter-spacing: 0;
    margin-left: 1px;
}

.eo-paywall .small-save {
    margin-top: 6px;
    color: #16a34a;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.3;
    white-space: nowrap;
}

/* Hide the small bottom-right black checkmark on tight mobile so the price
   gets the whole card width. It re-appears at 380px+ where there's room. */
.eo-paywall .checkmark {
    display: none;
}

/* Small/medium phones — bump price size back up once there's room */
@media (min-width: 360px) {
    .eo-paywall .plan { padding: 18px 14px 20px; }
    .eo-paywall .plan-name { font-size: 17px; }
    .eo-paywall .plan-price { font-size: 28px; margin-top: 10px; }
    .eo-paywall .plan-price span { font-size: 14px; }
}

@media (min-width: 400px) {
    .eo-paywall .plans { gap: 12px; }
    .eo-paywall .plan { padding: 20px 16px 22px; }
    .eo-paywall .plan-name { font-size: 18px; }
    .eo-paywall .plan-price { font-size: 32px; }
    .eo-paywall .plan-price span { font-size: 15px; }
    .eo-paywall .small-save { font-size: 13px; }
    .eo-paywall .checkmark { display: flex; }
}

/* Tablet and up — original generous sizing */
@media (min-width: 640px) {
    .eo-paywall .plans { gap: 14px; padding-top: 20px; }
    .eo-paywall .plan { padding: 24px; border-radius: 26px; min-height: 150px; }
    .eo-paywall .plan-name { font-size: 20px; }
    .eo-paywall .plan-price { margin-top: 14px; font-size: 42px; }
    .eo-paywall .plan-price span { font-size: 18px; }
    .eo-paywall .small-save { font-size: 14px; }
    .eo-paywall .best-value { font-size: 11px; padding: 8px 14px; top: -14px; }
}

/* Mobile + small tablet override — must come after the 640px rule so it wins
   on screens ≤ 768px regardless of equal specificity. */
@media (max-width: 768px) {
    .eo-paywall .plan-price {
        font-size: 30px !important;
    }
}

.eo-paywall .checkmark {
    position: absolute;
    right: 5px;
    bottom: -17px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #111827;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.eo-paywall .nopayment {
    margin-top: 30px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.eo-paywall .payment-card {
    margin-top: 28px;
    background: #fff;
    border-radius: 28px;
    padding: 24px !important;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #edf2f7;
}

.eo-paywall .payment-title {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
}

.eo-paywall .payment-sub {
    margin-top: 8px;
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 22px;
}

.eo-paywall .square-field,
.eo-paywall .eatout-square-card {
    width: 100%;
    min-height: 62px;
    border: 2px solid #e5e7eb;
    border-radius: 18px;
    background: #fff;
    padding: 0px !important;
    margin-bottom: 36px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

/* Square SDK injects .sq-card-wrapper inside the container. Style scoped to
   .eo-paywall so we don't disturb other Square integrations. */
.eo-paywall .sq-card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 auto;
    min-width: 250px;
    width: 100%;
    padding: 12px !important;
    box-sizing: border-box;
}

.eo-paywall .square-field:focus-within,
.eo-paywall .eatout-square-card:focus-within {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.eo-paywall .eatout-square-card iframe {
    width: 100% !important;
}

.eo-paywall .eo-paywall-card__status {
    margin: -8px 0 12px;
    font-size: 13px;
    color: #64748b;
    text-align: center;
}

.eo-paywall .eo-paywall-sandbox {
    margin: 0 0 12px;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.45;
    color: #92400e;
    background: #fffbeb;
    border-radius: 12px;
    border: 1px solid #fde68a;
}

.eo-paywall .secure-note {
    margin-top: 4px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    text-align: center;
}

/* High-specificity + !important so theme button styles don't repaint
   this in white. The trial CTA must always look like a primary action. */
.eo-paywall button.cta-button,
.eo-paywall .cta-button,
.eo-paywall button#eo-start-trial,
button.cta-button.fade-up {
    width: 100%;
    margin-top: 26px;
    border: none !important;
    border-radius: 22px;
    background: #22c55e !important;
    background-color: #22c55e !important;
    background-image: none !important;
    color: #ffffff !important;
    padding: 22px 18px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.25;
    text-shadow: none;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.28);
    -webkit-appearance: none;
    appearance: none;
    transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.eo-paywall button.cta-button:hover,
.eo-paywall button.cta-button:focus,
.eo-paywall .cta-button:hover,
.eo-paywall .cta-button:focus {
    background: #16a34a !important;
    background-color: #16a34a !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(34, 197, 94, 0.38);
}

.eo-paywall button.cta-button:disabled,
.eo-paywall .cta-button:disabled,
.eo-paywall .cta-button[disabled] {
    background: #22c55e !important;
    background-color: #22c55e !important;
    color: #ffffff !important;
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.18);
}

@media (min-width: 640px) {
    .eo-paywall button.cta-button,
    .eo-paywall .cta-button {
        padding: 24px;
        font-size: 22px;
    }
}

.eo-paywall .footer-text {
    margin-top: 22px;
    text-align: center;
    color: #9ca3af;
    line-height: 1.6;
    font-size: 15px;
}

.eo-paywall #eo-paywall-msg.eatout-msg--error,
.eo-paywall #eo-paywall-msg.eatout-msg--ok {
    display: block;
    margin-top: 16px;
    text-align: center;
}

.eo-paywall .fade-up {
    animation: eo-paywall-fade-up 0.7s ease both;
}

.eo-paywall .hero-section.fade-up {
    animation-delay: 0s;
}
.eo-paywall .headline.fade-up {
    animation-delay: 0.08s;
}
.eo-paywall .timeline.fade-up {
    animation-delay: 0.2s;
    background-color: white;
    padding: 20px;
    border-radius: 20px;
}
.eo-paywall .plans.fade-up {
    animation-delay: 0.26s;
    background-color: #d5eecd;
    padding: 40px 20px;
    border-radius: 20px;
}
.eo-paywall .nopayment.fade-up {
    animation-delay: 0.32s;
}
.eo-paywall .payment-card.fade-up {
    animation-delay: 0.36s;
}
.eo-paywall .cta-button.fade-up {
    animation-delay: 0.4s;
}
.eo-paywall .footer-text.fade-up {
    animation-delay: 0.44s;
}

@keyframes eo-paywall-fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eo-paywall .pulse {
    animation: eo-paywall-pulse 2s infinite;
}

@keyframes eo-paywall-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .eo-paywall .plan-price {
        font-size: 34px;
    }
}

/* Post-login workspace picker (multi-role accounts) */
.eatout-workspace-step .eatout-landing-overlay--workspace {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(255, 255, 255, 0.92) 88%);
}

.eatout-workspace-content {
    padding-bottom: 28px;
}

.eo-workspace-eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00c853;
}

.eo-workspace-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
}

.eo-workspace-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    text-align: left;
    padding: 18px 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    box-shadow:
        0 12px 32px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-family: inherit;
    overflow: hidden;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.eo-workspace-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--eo-ws-accent, #00d563), transparent 55%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.55;
    pointer-events: none;
}

.eo-workspace-card__shine {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 55%;
    height: 140%;
    background: radial-gradient(circle, color-mix(in srgb, var(--eo-ws-accent, #00d563) 22%, transparent) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.9;
}

.eo-workspace-card:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: color-mix(in srgb, var(--eo-ws-accent, #00d563) 35%, #e5e7eb);
}

.eo-workspace-card:active:not(:disabled) {
    transform: translateY(0);
}

.eo-workspace-card:disabled {
    opacity: 0.65;
    cursor: wait;
}

.eo-workspace-card.is-suggested {
    border-color: color-mix(in srgb, var(--eo-ws-accent, #00d563) 45%, #e5e7eb);
    box-shadow:
        0 16px 36px color-mix(in srgb, var(--eo-ws-accent, #00d563) 18%, transparent),
        0 12px 32px rgba(15, 23, 42, 0.08);
}

.eo-workspace-card__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eo-ws-accent, #00d563);
    background: color-mix(in srgb, var(--eo-ws-accent, #00d563) 12%, #fff);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.eo-workspace-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.eo-workspace-card__title {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
}

.eo-workspace-card__sub {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.45;
}

.eo-workspace-card__badge {
    display: inline-block;
    margin-top: 6px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: var(--eo-ws-accent, #00d563);
    background: color-mix(in srgb, var(--eo-ws-accent, #00d563) 14%, #fff);
}

.eo-workspace-card__chev {
    flex-shrink: 0;
    color: #9ca3af;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease, color 0.2s ease;
}

.eo-workspace-card:hover:not(:disabled) .eo-workspace-card__chev {
    color: var(--eo-ws-accent, #00d563);
    transform: translateX(3px);
}

@media (max-width: 480px) {
    .eo-workspace-card {
        padding: 16px 14px;
    }

    .eo-workspace-card__icon {
        width: 46px;
        height: 46px;
    }
}
