/* ── Loyalty Card ── */
.plyalty-card {
  border-radius: 20px; padding: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 28px rgba(0,0,0,.3);
  margin-bottom: 16px; position: relative; overflow: hidden;
}
.plyalty-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--plyalty-color, rgba(205,127,50,.15));
  pointer-events: none;
}
.plyalty-card__top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 20px; gap: 12px;
}
.plyalty-card__tier {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px; border-radius: 999px; font-size: 13px; font-weight: 700;
  background: var(--plyalty-color-bg, rgba(205,127,50,.2));
  border: 1px solid var(--plyalty-color-border, rgba(205,127,50,.4));
  color: var(--plyalty-color, #cd7f32);
}
.plyalty-card__tier-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--plyalty-color, #cd7f32);
}
.plyalty-card__number {
  font-size: 11px; color: rgba(232,240,255,.5);
  font-family: monospace; letter-spacing: 1px;
}
.plyalty-card__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px;
}
.plyalty-stat {
  padding: 12px; border-radius: 12px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
}
.plyalty-stat__val   { font-size: 24px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.plyalty-stat__label { font-size: 12px; color: rgba(232,240,255,.6); }

/* Progress bar */
.plyalty-progress-wrap { margin-bottom: 8px; }
.plyalty-progress-label {
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(232,240,255,.65); margin-bottom: 8px;
}
.plyalty-progress-bar {
  height: 8px; border-radius: 4px; background: rgba(255,255,255,.1); overflow: hidden;
}
.plyalty-progress-fill {
  height: 100%; border-radius: 4px;
  background: var(--plyalty-color, #cd7f32);
  transition: width .6s cubic-bezier(.4,0,.2,1);
}

/* No card state */
.plyalty-no-card {
  padding: 32px; text-align: center; border-radius: 18px;
  border: 2px dashed rgba(255,255,255,.15);
  background: rgba(255,255,255,.03);
}
.plyalty-no-card__icon  { font-size: 40px; margin-bottom: 14px; opacity: .5; }
.plyalty-no-card__title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.plyalty-no-card__sub   { font-size: 14px; color: rgba(232,240,255,.6); margin-bottom: 20px; line-height: 1.6; }

/* Discount badge */
.plyalty-discount-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 700;
  background: rgba(52,211,153,.15); border: 1px solid rgba(52,211,153,.35);
  color: #34d399; margin-top: 12px;
}

/* History table */
.plyalty-history-row { font-size: 13px; }
.plyalty-discount-cell { color: #34d399; font-weight: 700; }

/* Tiers overview */
.plyalty-tiers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px;
}
@media (max-width: 600px) { .plyalty-tiers-grid { grid-template-columns: 1fr; } }
.plyalty-tier-item {
  padding: 14px; border-radius: 12px; text-align: center;
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04);
}
.plyalty-tier-item.active {
  border-color: var(--plyalty-color, #cd7f32);
  background: var(--plyalty-color-bg, rgba(205,127,50,.1));
}
.plyalty-tier-item__name  { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.plyalty-tier-item__visits { font-size: 12px; color: rgba(232,240,255,.6); margin-bottom: 6px; }
.plyalty-tier-item__disc  { font-size: 16px; font-weight: 800; }
