/* HNW privilege — navy / champagne; no bargain-orange gamification */
:root {
  --wr-navy: #0b1325;
  --wr-navy-soft: #121a2e;
  --wr-gold: #d4af37;
  --wr-gold-deep: #aa7c11;
  --wr-silver: #e2e8f0;
  --wr-muted: #94a3b8;
  --wr-ink: #0f172a;
  --wr-radius: 10px;
  --wr-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --wr-sans: Inter, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --wr-gold-border: rgba(212, 175, 55, 0.25);
  --wr-cta: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
}

.wr-dock {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  max-width: min(360px, calc(100vw - 32px));
}
.wr-dock-entry {
  background: var(--wr-cta);
  color: var(--wr-ink);
  border: 1px solid var(--wr-gold-border);
  border-radius: 8px;
  padding: 12px 18px;
  cursor: pointer;
  font-family: var(--wr-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), 0 0 20px rgba(212, 175, 55, 0.12);
}
.wr-dock-entry:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.wr-dock-slots {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.wr-host {
  display: none;
}

.wr-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.wr-game {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}
.wr-game-hint {
  margin: 14px 0 0;
  font-family: var(--wr-sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--wr-muted);
  text-align: center;
}
.wr-btn {
  margin-top: 14px;
  background: var(--wr-cta);
  color: var(--wr-ink);
  border: 1px solid var(--wr-gold-border);
  border-radius: 6px;
  padding: 12px 24px;
  cursor: pointer;
  font-family: var(--wr-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wr-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

.wr-wheel-wrap {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}
.wr-wheel-wrap #wr-lucky {
  width: 300px;
  height: 300px;
}
.wr-wheel-needle {
  position: absolute;
  top: 6px;
  left: 50%;
  z-index: 3;
  width: 14px;
  height: 22px;
  margin-left: -7px;
  pointer-events: none;
  background: linear-gradient(180deg, #f5e6a8 0%, #d4af37 45%, #aa7c11 100%);
  clip-path: polygon(50% 0%, 100% 62%, 50% 100%, 0% 62%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}
.wr-wheel-needle::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: #0b1325;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.7);
}

.wr-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 19, 37, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}
.wr-card {
  background: var(--wr-navy);
  padding: 32px 28px 28px;
  border-radius: 12px;
  width: min(400px, 92vw);
  text-align: center;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 28px rgba(212, 175, 55, 0.12);
  color: var(--wr-silver);
  font-family: var(--wr-sans);
}
.wr-card-game {
  width: min(420px, 94vw);
  background: var(--wr-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wr-modal-title {
  margin: 0 28px 8px;
  font-family: var(--wr-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--wr-gold);
  line-height: 1.3;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.wr-modal-sub {
  margin: 0 12px 20px;
  font-family: var(--wr-sans);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.03em;
  color: var(--wr-muted);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.wr-modal-x {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--wr-muted);
}
.wr-modal-x:hover {
  color: var(--wr-gold);
}
.wr-email {
  width: 100%;
  padding: 14px 16px;
  margin: 12px 0;
  border: 1px solid var(--wr-gold-border);
  border-radius: 8px;
  box-sizing: border-box;
  background: var(--wr-navy-soft);
  color: var(--wr-silver);
  font-family: var(--wr-sans);
  font-size: 16px;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.wr-email::placeholder {
  color: #cbd5e1;
  opacity: 1;
}
.wr-email:focus {
  border: 1px solid #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.22), 0 0 14px rgba(212, 175, 55, 0.18);
}
.wr-prize {
  font-family: var(--wr-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--wr-gold);
  padding: 40px 0;
}
.wr-toast {
  position: fixed;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  background: var(--wr-navy);
  color: var(--wr-silver);
  border: 1px solid var(--wr-gold-border);
  padding: 12px 18px;
  border-radius: 8px;
  z-index: 100000;
  font-family: var(--wr-sans);
  font-size: 13px;
  letter-spacing: 0.03em;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.wr-gate h3 {
  margin-top: 0;
  font-family: var(--wr-serif);
  color: var(--wr-gold);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.wr-gate p {
  color: var(--wr-muted);
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
.wr-gate strong {
  color: var(--wr-silver);
}
.wr-err {
  color: #f87171 !important;
  font-size: 13px;
}
#wr-scratch,
.wr-scratch,
.wr-wax {
  position: relative;
  display: block;
  width: 320px;
  max-width: 100%;
  height: 180px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--wr-gold-border);
  background: #0b1325;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2), 0 8px 24px rgba(0, 0, 0, 0.35);
}
.wr-wax-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(212, 175, 55, 0.14), transparent 55%),
    linear-gradient(160deg, #121a2e 0%, #0b1325 48%, #0a1020 100%);
}
.wr-wax-bg::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 4px;
  pointer-events: none;
  box-shadow: inset 0 0 24px rgba(212, 175, 55, 0.06);
}
.wr-wax-bg-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 12px;
}
.wr-wax-kicker {
  font-family: var(--wr-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 10px;
}
.wr-wax-amount {
  font-family: var(--wr-serif);
  font-size: 36px;
  font-weight: 600;
  color: #d4af37;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
  letter-spacing: 0.02em;
}
.wr-wax-cover {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: block;
  /* size set in JS (HiDPI); never stretch with % — avoids blur + off-center seal */
  border-radius: 8px;
  cursor: crosshair;
  transition: opacity 0.35s ease;
}
.wr-wax-open .wr-wax-cover {
  opacity: 0;
  pointer-events: none;
}

/* Gate success */
.wr-gate-success h3 {
  margin: 8px 0 12px;
  font-family: var(--wr-serif);
  color: var(--wr-gold);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}
.wr-gate-success p {
  margin: 0 0 8px;
  color: var(--wr-silver);
  font-size: 15px;
  line-height: 1.5;
}

/* Floating VIP Pass badge */
.wr-dock.has-sticky .wr-dock-entry {
  display: none !important;
}
.wr-dock.wr-dock-drawer-open {
  pointer-events: none;
}
.wr-sticky-badge,
.wr-vip-pass {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #0f172a 0%, #0b1325 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.12);
  border-radius: 40px;
  padding: 10px 20px;
  cursor: pointer;
  color: inherit;
  font: inherit;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease,
    box-shadow 0.3s ease, opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
}
.wr-sticky-badge.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.wr-sticky-badge:hover:not(.is-hidden) {
  transform: translateY(-2px);
  border-color: #d4af37;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7), 0 0 22px rgba(212, 175, 55, 0.25);
}
.wr-pass-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #d4af37 0%, #aa7c11 100%);
  color: #0b1325;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.wr-pass-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  min-width: 0;
}
.wr-pass-title {
  font-family: var(--wr-serif);
  font-size: 12px;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.wr-pass-sub {
  font-family: var(--wr-sans);
  font-size: 11px;
  color: #94a3b8;
  white-space: nowrap;
}
.wr-pass-amount {
  font-family: var(--wr-serif);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}
.wr-badge-divider {
  width: 1px;
  height: 16px;
  background: rgba(212, 175, 55, 0.25);
  flex-shrink: 0;
}
.wr-badge-tip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  width: max-content;
  max-width: 260px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #0b1325;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #e2e8f0;
  font-family: var(--wr-sans);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-align: left;
  white-space: normal;
}
.wr-sticky-badge:hover:not(.is-hidden) .wr-badge-tip,
.wr-sticky-badge:focus:not(.is-hidden) .wr-badge-tip {
  opacity: 1;
  transform: translateY(0);
}

/* Privilege drawer — frosted, no badge collision */
.wr-courtesy-drawer {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  width: min(360px, calc(100vw - 32px));
  padding: 24px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--wr-silver);
  font-family: var(--wr-sans);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}
.wr-courtesy-drawer.wr-drawer-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.wr-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.wr-drawer-x {
  position: static;
  border: 0;
  background: transparent;
  color: #94a3b8;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
}
.wr-drawer-x:hover {
  color: #fff;
}
.wr-drawer-cta,
.wr-btn-apply {
  display: block;
  text-align: center;
  text-decoration: none;
  margin-top: 4px;
  box-sizing: border-box;
  width: 100%;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.wr-btn-apply:hover {
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  transform: translateY(-1px);
}

.wr-sticky-badge.wr-theme-gold-executive {
  border-color: rgba(232, 196, 88, 0.75);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), 0 0 22px rgba(232, 196, 88, 0.35);
}
.wr-sticky-badge.wr-theme-titanium-black {
  background: #080a0e;
  border-color: rgba(196, 164, 90, 0.55);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.65), inset 0 0 0 1px rgba(196, 164, 90, 0.12);
}
.wr-privilege-hub {
  width: min(360px, calc(100vw - 32px));
  padding: 24px;
}
.wr-privilege-hub.wr-theme-gold-executive {
  border-color: rgba(232, 196, 88, 0.55);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6), 0 0 28px rgba(232, 196, 88, 0.18);
  background: linear-gradient(165deg, rgba(18, 26, 46, 0.96) 0%, rgba(11, 19, 37, 0.97) 100%);
}
.wr-privilege-hub.wr-theme-titanium-black {
  background: rgba(8, 10, 14, 0.96);
  border-color: rgba(196, 164, 90, 0.45);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(196, 164, 90, 0.1);
}
.wr-hub-header {
  margin: 0;
  font-family: var(--wr-serif);
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #d4af37;
  font-weight: 600;
}
.wr-drawer-identity {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex-wrap: wrap;
}
.wr-tier-badge {
  position: relative;
  font-size: 9px;
  font-weight: 700;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  cursor: default;
  outline: none;
}
.wr-tier-tip {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 2;
  width: max-content;
  max-width: 220px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #0b1325;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #e2e8f0;
  font-family: var(--wr-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.45;
  text-transform: none;
  white-space: normal;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.wr-tier-badge:hover .wr-tier-tip,
.wr-tier-badge:focus .wr-tier-tip {
  opacity: 1;
  transform: translateY(0);
}
.wr-asset-card {
  background: #0b1325;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 14px;
  text-align: center;
}
.wr-asset-label {
  margin: 0 0 4px;
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.wr-asset-value {
  margin: 0 0 4px;
  font-family: var(--wr-serif);
  font-size: 28px;
  font-weight: 700;
  color: #d4af37;
  line-height: 1.15;
}
.wr-asset-expiry {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #f0e6c8;
  letter-spacing: 0.02em;
  line-height: 1.45;
}
.wr-asset-expiry-list {
  list-style: none;
  margin: 6px 0 8px;
  padding: 0;
  font-size: 12px;
  color: #cbd5e1;
  line-height: 1.5;
}
.wr-asset-expiry-list li + li {
  margin-top: 6px;
}
.wr-asset-expiry + .wr-asset-expiry-list {
  margin-top: 6px;
}
.wr-asset-note {
  margin: 0;
  font-size: 12px;
  color: #cbd5e1;
  line-height: 1.4;
}

.wr-hub-swap {
  margin-bottom: 14px;
  min-height: 0;
}
.wr-progress-block {
  background: rgba(11, 19, 37, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  padding: 12px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.wr-endorse-mode .wr-progress-block {
  display: none;
}
.wr-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.wr-progress-pct {
  color: #d4af37;
  flex-shrink: 0;
}
.wr-progress-bar-bg {
  width: 100%;
  height: 4px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}
.wr-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #aa7c11 0%, #d4af37 100%);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
  border-radius: 2px;
}
.wr-progress-perks {
  margin: 0;
  font-size: 11px;
  color: #cbd5e1;
  line-height: 1.35;
}
.wr-progress-perks strong {
  color: #d4af37;
  font-weight: 600;
}

.wr-endorse-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin-bottom: 14px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px dashed rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  font-family: var(--wr-sans);
  font-size: 12px;
  color: #e2e8f0;
  text-align: left;
  transition: background 0.2s, border-color 0.2s;
}
.wr-endorse-toggle:hover,
.wr-endorse-toggle.is-open {
  background: rgba(212, 175, 55, 0.1);
  border-color: #d4af37;
}
.wr-endorse-chevron {
  color: #d4af37;
  font-weight: 700;
  flex-shrink: 0;
}
.wr-endorse-panel {
  display: none;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(11, 19, 37, 0.65);
}
.wr-endorse-mode .wr-endorse-panel {
  display: block;
}
.wr-endorse-panel[hidden] {
  display: none !important;
}
.wr-endorse-mode .wr-endorse-panel:not([hidden]) {
  display: block;
}
.wr-endorse-body {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.5;
  color: #94a3b8;
}
.wr-endorse-cta {
  width: 100%;
  margin: 0;
}
.wr-endorse-share {
  margin-top: 12px;
}
.wr-endorse-share-url {
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 8px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--wr-gold-border);
  background: #0a1020;
  color: #e2e8f0;
  font-size: 12px;
}
.wr-endorse-copy {
  width: 100%;
}
.wr-endorse-share-hint {
  margin: 8px 0 0;
  min-height: 16px;
  font-size: 11px;
  color: #94a3b8;
}

.wr-endorse-modal {
  z-index: 100050;
}
.wr-endorse-sheet {
  position: relative;
  width: min(420px, calc(100vw - 32px));
  margin: auto;
  padding: 36px 28px 28px;
  border-radius: 14px;
  background: #0b1325;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  color: #e2e8f0;
}
.wr-endorse-mark {
  margin: 0 0 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  letter-spacing: 0.22em;
  color: var(--wr-gold);
  text-align: center;
}
.wr-endorse-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  color: #f8fafc;
}
.wr-endorse-lead {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
  color: #e2e8f0;
}
.wr-endorse-sub {
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  color: #94a3b8;
}
.wr-endorse-label {
  display: block;
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #e2e8f0;
}
.wr-endorse-email {
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 10px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: #0a1020;
  color: #f1f5f9;
  font-size: 16px;
  outline: none;
}
.wr-endorse-email:focus {
  border-color: var(--wr-gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}
.wr-endorse-err {
  min-height: 18px;
  margin: 0 0 10px;
  font-size: 13px;
  color: #f87171;
  text-align: center;
}
.wr-endorse-activate {
  width: 100%;
}

/* Cart / checkout courtesy credit tip — privilege unlock card */
.wr-credit-tip {
  margin: 0 0 14px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: #0b1325;
  color: #e2e8f0;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.wr-credit-tip-eyebrow {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4af37;
}
.wr-credit-tip-title {
  margin: 0 0 6px;
  font-family: var(--wr-serif, Georgia, 'Times New Roman', serif);
  font-size: 16px;
  font-weight: 600;
  color: #f8fafc;
  line-height: 1.3;
}
.wr-credit-tip-body {
  margin: 0 0 14px;
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.45;
}
.wr-credit-tip-bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.12);
  overflow: hidden;
  margin: 0 0 6px;
}
.wr-credit-tip-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #b8962e, #d4af37 55%, #f0e6c8);
}
.wr-credit-tip-meta {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #94a3b8;
}
.wr-credit-tip-foot {
  margin: 0;
  font-size: 11px;
  color: #94a3b8;
  letter-spacing: 0.02em;
}
.wp-block-woocommerce-cart-order-summary-block > .wr-credit-tip,
.wp-block-woocommerce-cart-totals-block > .wr-credit-tip,
.wp-block-woocommerce-checkout-order-summary-block > .wr-credit-tip {
  margin: 12px 16px 8px;
}
/* wc-cart-page-beautify Order Summary */
.cart-summary-content > .wr-credit-tip,
.cart-summary-section > .wr-credit-tip,
.cart_totals.cart-summary-section > .wr-credit-tip {
  margin: 0 0 16px;
}
.wr-credit-anchor {
  margin: 12px 0;
  padding: 12px 14px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 8px;
}
