/* eatbase Treueprogramm — Storefront-Styles (self-hosted, CSP-konform).
   Nutzt die globalen Markenfarben --eb-blue* (von StorefrontTheme injiziert),
   mit Fallback auf das eatbase-Blau. */
:root {
    --eb-loyalty-blue: var(--eb-blue, #299fd1);
    --eb-loyalty-dark: var(--eb-blue-dark, #217ea6);
    --eb-loyalty-tint: rgba(41, 159, 209, 0.08);
}

/* ── Checkout-Einlöse-Schalter ───────────────────────────────────────── */
.eb-loyalty-redeem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 12px 14px;
    margin-top: 12px;
    border: 1px solid var(--eb-loyalty-blue);
    border-radius: 12px;
    background: var(--eb-loyalty-tint);
}
.eb-loyalty-redeem__info { display: flex; align-items: center; gap: 10px; }
.eb-loyalty-redeem__icon { font-size: 1.4rem; line-height: 1; }
.eb-loyalty-redeem__title { font-weight: 600; color: var(--eb-loyalty-dark); }
.eb-loyalty-redeem__balance { font-size: 0.85rem; color: #4b5563; }
.eb-loyalty-redeem__btn {
    border: 0;
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 600;
    color: #fff;
    background: var(--eb-loyalty-blue);
    cursor: pointer;
    transition: background 0.15s ease;
}
.eb-loyalty-redeem__btn:hover { background: var(--eb-loyalty-dark); }
.eb-loyalty-redeem__btn--remove { background: #6b7280; }
.eb-loyalty-redeem__btn--remove:hover { background: #4b5563; }

/* ── Konto-Dashboard-Karte ───────────────────────────────────────────── */
.eb-loyalty-dash {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--eb-loyalty-dark) 0%, var(--eb-loyalty-blue) 100%);
    color: #fff;
    margin-bottom: 16px;
}
.eb-loyalty-dash__label { font-size: 0.8rem; opacity: 0.9; }
.eb-loyalty-dash__value { font-size: 1.5rem; font-weight: 700; }
.eb-loyalty-dash__link { color: #fff; font-weight: 600; text-decoration: underline; }

/* ── Guthaben-Seite ──────────────────────────────────────────────────── */
.eb-loyalty-page__title { font-size: 1.5rem; font-weight: 700; margin-bottom: 18px; }
.eb-loyalty-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 18px;
    background: #fff;
}
.eb-loyalty-card__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.eb-loyalty-card__loc { font-weight: 600; font-size: 1.05rem; color: #1f1f1f; }
.eb-loyalty-card__balance { font-weight: 700; font-size: 1.6rem; color: var(--eb-loyalty-dark); }
.eb-loyalty-card__terms { font-size: 0.85rem; color: #6b7280; margin: 8px 0 0; }
.eb-loyalty-card__empty { font-size: 0.9rem; color: #6b7280; margin: 8px 0 0; }

.eb-loyalty-stamps { margin: 10px 0; }
.eb-loyalty-stamps__label { font-size: 0.85rem; color: #4b5563; margin-bottom: 8px; }
.eb-loyalty-stamps__reward { color: var(--eb-loyalty-dark); font-weight: 600; }
.eb-loyalty-stamps__dots { display: flex; flex-wrap: wrap; gap: 8px; }
.eb-loyalty-stamps__dot {
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 2px solid var(--eb-loyalty-blue);
    background: transparent;
}
.eb-loyalty-stamps__dot.is-filled { background: var(--eb-loyalty-blue); }

.eb-loyalty-ledger { margin-top: 12px; border-top: 1px solid #f0f0f0; }
.eb-loyalty-ledger__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}
.eb-loyalty-ledger__meta { display: flex; flex-direction: column; }
.eb-loyalty-ledger__type { font-size: 0.9rem; color: #1f1f1f; }
.eb-loyalty-ledger__date { font-size: 0.75rem; color: #9ca3af; }
.eb-loyalty-ledger__amount { font-weight: 600; }
.eb-loyalty-ledger__amount.is-pos { color: #16a34a; }
.eb-loyalty-ledger__amount.is-neg { color: #6b7280; }

.eb-loyalty-empty { text-align: center; padding: 40px 16px; color: #6b7280; }
.eb-loyalty-empty__hint { font-size: 0.85rem; }
