/* ─────────────────────────────────────────
   LOYALTY — The Stacciolla Circle
   ───────────────────────────────────────── */

/* ═══ 1. HERO ═════════════════════════ */

.fe-loyalty-hero {
  background: var(--fe-cream);
  border-bottom: 1px solid var(--fe-border);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 5% 80px;
}

.fe-loyalty-hero__signature {
  width: 200px;
  height: auto;
  opacity: 0.75;
  margin-bottom: 18px;
  display: block;
}

.fe-loyalty-hero__eyebrow {
  font-family: var(--fe-font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--fe-gold);
  margin-bottom: 24px;
}

.fe-loyalty-hero__title {
  font-family: var(--fe-font-display);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--fe-black);
  margin: 0 0 24px;
  line-height: 1.1;
}

.fe-loyalty-hero__subtitle {
  font-family: var(--fe-font-body);
  font-size: 1rem;
  color: var(--fe-warm-gray);
  margin: 0 0 48px;
  max-width: 460px;
  line-height: 1.7;
}

.fe-loyalty-hero__cta {
  display: inline-block;
  font-family: var(--fe-font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fe-black);
  background: transparent;
  border: 1px solid var(--fe-black);
  padding: 14px 40px;
  text-decoration: none;
  border-radius: 0;
  transition: background var(--fe-transition), color var(--fe-transition), border-color var(--fe-transition);
}

.fe-loyalty-hero__cta:hover {
  background: var(--fe-black);
  border-color: var(--fe-black);
  color: var(--fe-white);
}

/* ═══ 2. TIERS — white background, cream cards ═════ */

.fe-loyalty-tiers {
  background: var(--fe-white);
  padding: 100px 5%;
}

.fe-loyalty-tiers__inner {
  max-width: var(--fe-container-max);
  margin: 0 auto;
}

.fe-loyalty-tiers__heading {
  font-family: var(--fe-font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--fe-black);
  text-align: center;
  margin: 0 0 60px;
}

.fe-loyalty-tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fe-loyalty-tier {
  border: 1px solid var(--fe-border);
  padding: 48px 36px;
  position: relative;
  background: var(--fe-cream);
  transition: border-color var(--fe-transition);
}

.fe-loyalty-tier--active {
  border-color: var(--fe-gold);
}

.fe-loyalty-tier__current {
  position: absolute;
  top: 0;
  left: 36px;
  transform: translateY(-50%);
  font-family: var(--fe-font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fe-gold);
  background: var(--fe-cream);
  padding: 4px 12px;
}

.fe-loyalty-tier__name {
  font-family: var(--fe-font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--fe-black);
  margin: 0 0 8px;
}

.fe-loyalty-tier__req {
  font-family: var(--fe-font-body);
  font-size: 0.75rem;
  color: var(--fe-warm-gray);
  margin: 0 0 32px;
  letter-spacing: 0.05em;
}

.fe-loyalty-tier__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fe-loyalty-tier__benefits li {
  font-family: var(--fe-font-body);
  font-size: 0.85rem;
  color: var(--fe-black);
  line-height: 1.6;
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid var(--fe-border);
  position: relative;
}

.fe-loyalty-tier__benefits li:last-child {
  border-bottom: none;
}

.fe-loyalty-tier__benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--fe-gold);
}

/* ═══ 3. EARN CREDITS ══════════════════ */

.fe-loyalty-earn {
  background: var(--fe-cream-dark);
  padding: 100px 5%;
}

.fe-loyalty-earn__inner {
  max-width: var(--fe-container-max);
  margin: 0 auto;
}

.fe-loyalty-earn__heading {
  font-family: var(--fe-font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--fe-black);
  text-align: center;
  margin: 0 0 48px;
}

/* ── Formula card ──────────────────── */

.fe-loyalty-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--fe-cream-dark);
  border: 1px solid var(--fe-border);
  margin-bottom: 56px;
  padding: 0;
  overflow: hidden;
}

.fe-loyalty-formula__rule {
  flex: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  padding: 36px 40px;
  text-align: center;
}

.fe-loyalty-formula__divider {
  width: 1px;
  align-self: stretch;
  background: var(--fe-border);
  flex-shrink: 0;
}

.fe-loyalty-formula__num {
  font-family: var(--fe-font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--fe-black);
  line-height: 1;
}

.fe-loyalty-formula__text {
  font-family: var(--fe-font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fe-warm-gray);
  align-self: center;
}

.fe-loyalty-formula__eq {
  font-family: var(--fe-font-body);
  font-size: 1rem;
  color: var(--fe-gold);
  align-self: center;
  opacity: 0.8;
}

.fe-loyalty-formula__val {
  font-family: var(--fe-font-display);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 400;
  color: var(--fe-black);
  line-height: 1.2;
}

.fe-loyalty-earn__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fe-loyalty-earn__item {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--fe-border);
  background: var(--fe-cream);
}

.fe-loyalty-earn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--fe-gold);
}

.fe-loyalty-earn__title {
  font-family: var(--fe-font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--fe-black);
  margin: 0 0 8px;
}

.fe-loyalty-earn__desc {
  font-family: var(--fe-font-body);
  font-size: 0.8rem;
  color: var(--fe-warm-gray);
  line-height: 1.6;
  margin: 0;
}

/* ═══ 4. JOIN / MEMBER STATUS ══════════ */

.fe-loyalty-join {
  background: var(--fe-cream);
  padding: 100px 5%;
}

.fe-loyalty-join__inner {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.fe-loyalty-join__heading {
  font-family: var(--fe-font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--fe-black);
  margin: 0 0 16px;
}

.fe-loyalty-join__text {
  font-family: var(--fe-font-body);
  font-size: 0.9rem;
  color: var(--fe-warm-gray);
  line-height: 1.7;
  margin: 0 0 40px;
}

.fe-loyalty-join__error {
  font-family: var(--fe-font-body);
  font-size: 0.85rem;
  color: var(--fe-error);
  margin-bottom: 24px;
}

.fe-loyalty-join__success {
  padding: 40px 0;
}

/* Form */
.fe-loyalty-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.fe-loyalty-form__label {
  display: block;
  font-family: var(--fe-font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fe-warm-gray);
  margin-bottom: 8px;
}

.fe-loyalty-form__input {
  width: 100%;
  font-family: var(--fe-font-body);
  font-size: 0.9rem;
  color: var(--fe-black);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--fe-border);
  padding: 12px 0;
  outline: none;
  transition: border-color var(--fe-transition);
}

.fe-loyalty-form__input::placeholder {
  color: var(--fe-warm-gray);
  opacity: 0.5;
}

.fe-loyalty-form__input:focus {
  border-bottom-color: var(--fe-gold);
}

.fe-loyalty-form__btn {
  align-self: flex-start;
  font-family: var(--fe-font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fe-white);
  background: var(--fe-black);
  border: 1px solid var(--fe-black);
  border-radius: 0;
  padding: 14px 40px;
  cursor: pointer;
  transition: background var(--fe-transition);
  margin-top: 8px;
}

.fe-loyalty-form__btn:hover {
  background: var(--fe-gold);
  border-color: var(--fe-gold);
  color: var(--fe-black);
}

/* Member status (logged in) */
.fe-loyalty-member {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: left;
  border: 1px solid var(--fe-border);
  padding: 40px;
  margin-top: 40px;
}

.fe-loyalty-member__stat:last-child {
  grid-column: 1 / -1;
}

.fe-loyalty-member__label {
  display: block;
  font-family: var(--fe-font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fe-warm-gray);
  margin-bottom: 8px;
}

.fe-loyalty-member__value {
  display: block;
  font-family: var(--fe-font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--fe-black);
}

.fe-loyalty-member__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fe-loyalty-member__benefits li {
  font-family: var(--fe-font-body);
  font-size: 0.75rem;
  color: var(--fe-black);
  padding: 6px 16px;
  border: 1px solid var(--fe-border);
}

/* ═══ 5. REDEEM POINTS ═════════════════ */

.fe-loyalty-redeem {
  background: var(--fe-black);
  padding: 100px 5%;
}

.fe-loyalty-redeem__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.fe-loyalty-redeem__heading {
  font-family: var(--fe-font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--fe-white);
  margin: 0 0 40px;
}

.fe-loyalty-redeem__balance {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.fe-loyalty-redeem__balance-pts {
  font-family: var(--fe-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--fe-white);
  line-height: 1;
}

.fe-loyalty-redeem__balance-eq {
  font-family: var(--fe-font-body);
  font-size: 0.85rem;
  color: var(--fe-gold);
  letter-spacing: 0.06em;
}

.fe-loyalty-redeem__ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.fe-loyalty-redeem__label {
  font-family: var(--fe-font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

.fe-loyalty-redeem__input-row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.fe-loyalty-redeem__input {
  font-family: var(--fe-font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--fe-white);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 0;
  text-align: center;
  width: 140px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s;
  -moz-appearance: textfield;
}

.fe-loyalty-redeem__input::-webkit-outer-spin-button,
.fe-loyalty-redeem__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.fe-loyalty-redeem__input:focus {
  border-bottom-color: var(--fe-gold);
}

.fe-loyalty-redeem__equiv {
  font-family: var(--fe-font-body);
  font-size: 0.8rem;
  color: var(--fe-gold);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.fe-loyalty-redeem__btn {
  font-family: var(--fe-font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fe-black);
  background: var(--fe-gold);
  border: 1px solid var(--fe-gold);
  border-radius: 0;
  padding: 15px 44px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}

.fe-loyalty-redeem__btn:hover:not(:disabled) {
  background: var(--fe-white);
  border-color: var(--fe-white);
}

.fe-loyalty-redeem__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Result state */
.fe-loyalty-redeem__result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.fe-loyalty-redeem__result-label {
  font-family: var(--fe-font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fe-gold);
  margin: 0;
}

.fe-loyalty-redeem__result-code {
  font-family: var(--fe-font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--fe-white);
  letter-spacing: 0.12em;
  border: 1px solid var(--fe-gold);
  padding: 18px 40px;
  margin: 4px 0;
  word-break: break-all;
  line-height: 1.2;
}

.fe-loyalty-redeem__result-note {
  font-family: var(--fe-font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  letter-spacing: 0.04em;
}

.fe-loyalty-redeem__copy {
  font-family: var(--fe-font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fe-white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  padding: 11px 28px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.fe-loyalty-redeem__copy:hover {
  border-color: var(--fe-white);
}

/* Low points notice */
.fe-loyalty-redeem__low {
  font-family: var(--fe-font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
}

/* Error message */
.fe-loyalty-redeem__error {
  font-family: var(--fe-font-body);
  font-size: 0.82rem;
  color: #e07070;
  margin: 8px 0 0;
}

/* ═══ 6. TESTIMONIAL ═══════════════════ */

.fe-loyalty-quote {
  background: var(--fe-white);
  padding: 100px 5%;
  text-align: center;
}

.fe-loyalty-quote__text {
  font-family: var(--fe-font-display);
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--fe-black);
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto 24px;
  border: none;
  padding: 0;
}

.fe-loyalty-quote__cite {
  font-family: var(--fe-font-body);
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fe-warm-gray);
}

/* ═══ RESPONSIVE ═══════════════════════ */

@media (max-width: 1024px) {
  .fe-loyalty-earn__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fe-loyalty-formula {
    flex-direction: column;
  }

  .fe-loyalty-formula__divider {
    width: 40px;
    height: 1px;
    align-self: auto;
  }
}

@media (max-width: 768px) {
  .fe-loyalty-hero {
    padding: 120px 5% 60px;
    min-height: 60vh;
  }

  .fe-loyalty-hero__title {
    font-size: 3rem;
  }

  .fe-loyalty-tiers,
  .fe-loyalty-earn,
  .fe-loyalty-join,
  .fe-loyalty-redeem,
  .fe-loyalty-quote,
  .fe-loyalty-dashboard-section {
    padding: 60px 5%;
  }

  .fe-loyalty-tiers__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fe-loyalty-tier {
    padding: 36px 28px;
  }

  .fe-loyalty-earn__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fe-loyalty-tiers__heading,
  .fe-loyalty-earn__heading,
  .fe-loyalty-join__heading,
  .fe-loyalty-redeem__heading {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .fe-loyalty-quote__text {
    font-size: 1.6rem;
  }

  .fe-loyalty-member {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .fe-loyalty-redeem__result-code {
    padding: 14px 24px;
  }

  .fe-loyalty-donate__grid {
    grid-template-columns: 1fr;
  }

  .fe-loyalty-donate {
    padding: 60px 5%;
  }
}


/* ═══ 6. GIVE YOUR POINTS (DONATE) ════════════════ */

.fe-loyalty-donate {
  background: var(--fe-cream);
  padding: 100px 5%;
  border-top: 1px solid var(--fe-border);
}

.fe-loyalty-donate__inner {
  max-width: 880px;
  margin: 0 auto;
}

.fe-loyalty-donate__eyebrow {
  display: block;
  font-family: var(--fe-font-body);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fe-gold);
  text-align: center;
  margin-bottom: 18px;
}

.fe-loyalty-donate__heading {
  font-family: var(--fe-font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--fe-black);
  text-align: center;
  margin: 0 0 14px;
  line-height: 1.15;
}

.fe-loyalty-donate__sub {
  font-family: var(--fe-font-body);
  font-size: 0.88rem;
  color: var(--fe-warm-gray);
  text-align: center;
  margin: 0 0 12px;
  line-height: 1.72;
}

.fe-loyalty-donate__available {
  font-family: var(--fe-font-body);
  font-size: 0.82rem;
  color: var(--fe-warm-gray);
  text-align: center;
  margin: 0 0 48px;
}

.fe-loyalty-donate__available strong {
  color: var(--fe-black);
  font-weight: 600;
}

/* ── Guest gate ─────────────────────────────────────────────── */

.fe-loyalty-donate__gate {
  text-align: center;
  padding: 48px 24px;
  border: 1px solid var(--fe-border);
  background: var(--fe-white);
  margin-bottom: 48px;
}

.fe-loyalty-donate__gate-msg {
  font-family: var(--fe-font-body), sans-serif;
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--fe-warm-gray);
  margin: 0 0 24px;
}

.fe-loyalty-donate__gate-btn {
  display: inline-block;
  font-family: var(--fe-font-body), sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fe-white);
  background: var(--fe-black);
  border: 1px solid var(--fe-black);
  border-radius: 0;
  padding: 14px 36px;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s;
}

.fe-loyalty-donate__gate-btn:hover {
  background: var(--fe-gold);
  border-color: var(--fe-gold);
}

/* ── Status message (no-points / below-min) ─────────────────── */

.fe-loyalty-donate__status {
  margin-bottom: 32px;
  padding: 18px 22px;
  border-left: 2px solid var(--fe-gold);
  background: var(--fe-cream-dark);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .fe-loyalty-donate__status {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

.fe-loyalty-donate__status-msg {
  font-family: var(--fe-font-body), sans-serif;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--fe-warm-gray);
  margin: 0;
  flex: 1;
}

.fe-loyalty-donate__status-msg strong {
  color: var(--fe-black);
  font-weight: 600;
}

.fe-loyalty-donate__status-btn {
  display: inline-block;
  font-family: var(--fe-font-body), sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fe-black);
  background: transparent;
  border: 1px solid var(--fe-black);
  border-radius: 0;
  padding: 10px 22px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.fe-loyalty-donate__status-btn:hover {
  background: var(--fe-black);
  color: var(--fe-white);
}

/* ── Locked grid state ──────────────────────────────────────── */

.fe-loyalty-donate__grid--locked {
  opacity: 0.6;
  pointer-events: none;
}

/* 2×2 grid of cause cards */
.fe-loyalty-donate__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* ── Cause card ── */

.fe-loyalty-donate__card {
  background: var(--fe-white);
  border: 1px solid var(--fe-border);
  border-radius: 0;
  display: flex;
  flex-direction: column;
}

/* Top color stripe — 4px, color set inline */
.fe-loyalty-donate__card-bar {
  height: 4px;
  flex-shrink: 0;
}

.fe-loyalty-donate__card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fe-loyalty-donate__card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}

.fe-loyalty-donate__card-title {
  font-family: var(--fe-font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fe-black);
  margin: 0 0 8px;
}

.fe-loyalty-donate__card-desc {
  font-family: var(--fe-font-body);
  font-size: 0.8125rem;
  line-height: 1.72;
  color: var(--fe-warm-gray);
  margin: 0 0 12px;
}

/* Community total counter */
.fe-loyalty-donate__community {
  font-family: var(--fe-font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fe-gold);
  margin: 0 0 20px;
  line-height: 1.5;
}

/* Label */
.fe-loyalty-donate__label {
  display: block;
  font-family: var(--fe-font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fe-warm-gray);
  margin-bottom: 8px;
}

/* Input row */
.fe-loyalty-donate__input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.fe-loyalty-donate__input {
  width: 100px;
  background: var(--fe-white);
  border: 1px solid var(--fe-border);
  border-radius: 0;
  padding: 0.6rem 0.75rem;
  font-family: var(--fe-font-body);
  font-size: 0.875rem;
  color: var(--fe-black);
  outline: none;
  box-shadow: none;
  appearance: none;
  -moz-appearance: textfield;
  transition: border-color 0.15s;
}

.fe-loyalty-donate__input:focus {
  border-color: var(--fe-black);
  box-shadow: none;
}

.fe-loyalty-donate__input::-webkit-inner-spin-button,
.fe-loyalty-donate__input::-webkit-outer-spin-button {
  opacity: 1;
}

.fe-loyalty-donate__equiv {
  font-family: var(--fe-font-body);
  font-size: 0.75rem;
  color: var(--fe-warm-gray);
  white-space: nowrap;
}

/* Donate button + brand match — side by side */
.fe-loyalty-donate__action-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 4px;
}

.fe-loyalty-donate__btn {
  display: inline-block;
  font-family: var(--fe-font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fe-gold);
  background: transparent;
  border: 1px solid var(--fe-gold);
  border-radius: 0;
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s;
  flex-shrink: 0;
}

/* Brand match preview — beside the button */
.fe-loyalty-donate__match-preview {
  font-family: var(--fe-font-body);
  font-size: 0.72rem;
  color: var(--fe-warm-gray);
  margin: 0;
  line-height: 1.5;
}

.fe-loyalty-donate__match-brand {
  color: var(--fe-gold);
  font-weight: 500;
}

.fe-loyalty-donate__btn:hover:not(:disabled) {
  background: var(--fe-gold);
  color: var(--fe-white);
}

.fe-loyalty-donate__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Inline confirmation */
.fe-loyalty-donate__confirm {
  margin-top: 14px;
  background: var(--fe-cream-dark);
  border-left: 2px solid var(--fe-gold);
  padding: 12px 16px;
}

.fe-loyalty-donate__confirm-text {
  font-family: var(--fe-font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--fe-black);
  margin: 0;
  line-height: 1.6;
}

/* Inline error */
.fe-loyalty-donate__error {
  margin-top: 10px;
  font-family: var(--fe-font-body);
  font-size: 0.78rem;
  color: var(--fe-gold);
  line-height: 1.5;
}

/* ── Dashboard — two-column Membership & Impact ───────────── */

.fe-loyalty-dashboard-section {
  background: var(--fe-cream);
  padding: 100px 5%;
}

.fe-loyalty-dashboard {
  max-width: var(--fe-container-max);
  width: 100%;
  margin: 0 auto;
  border: 1px solid var(--fe-border);
  background: var(--fe-white);
  overflow: hidden; /* clip any child that accidentally overflows */
}

.fe-loyalty-dashboard__header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--fe-border);
}

.fe-loyalty-dashboard__eyebrow {
  font-family: var(--fe-font-body), sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fe-gold);
  margin: 0 0 0.5rem;
}

.fe-loyalty-dashboard__title {
  font-family: var(--fe-font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--fe-black);
  margin: 0;
  line-height: 1.1;
}

.fe-loyalty-dashboard__cols {
  display: grid;
  grid-template-columns: 3fr 7fr;
}

.fe-loyalty-dashboard__col {
  padding: 3rem;
  min-width: 0; /* prevent grid blowout — grid items default to min-width:auto */
}

.fe-loyalty-dashboard__col:first-child {
  border-right: 1px solid var(--fe-border);
}

/* ── Tablet + mobile: stack columns ──────────────────────── */
@media (max-width: 1024px) {
  .fe-loyalty-dashboard__cols {
    grid-template-columns: 1fr;
  }

  .fe-loyalty-dashboard__col:first-child {
    border-right: none;
    border-bottom: 1px solid var(--fe-border);
  }

  /* Donate cause cards: 2-col → 1-col once the column is full-width */
  .fe-loyalty-dashboard__col .fe-loyalty-donate__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .fe-loyalty-dashboard__col {
    padding: 2rem 1.5rem;
  }

  .fe-loyalty-dashboard__col .fe-loyalty-donate__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .fe-loyalty-dashboard__col {
    padding: 1.5rem 1.25rem;
  }
}
