/* Loyalty Wallet — My Account panel + checkout toggle */

.gtc-wallet-panel {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px;
  margin: 20px 0;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.gtc-wallet-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.gtc-wallet-panel__header h2 {
  margin: 0;
  font-size: 20px;
}

.gtc-wallet-tier {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gtc-wallet-tier--standard {
  background: #eef2f7;
  color: #374151;
}

.gtc-wallet-tier--gold {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
}

.gtc-wallet-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.gtc-wallet-stat {
  border: 1px solid #eceff3;
  border-radius: 12px;
  padding: 14px 16px;
  background: #f9fafb;
}

.gtc-wallet-stat--primary {
  background: linear-gradient(135deg, #e8f6f4, #f7fcfb);
  border-color: #cde9e6;
}

.gtc-wallet-stat__label {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.gtc-wallet-stat__value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
}

.gtc-wallet-stat__value--code {
  font-family: monospace;
  letter-spacing: 0.08em;
  font-size: 18px;
}

.gtc-wallet-tier-hint {
  margin: 0 0 16px;
  font-size: 13px;
  color: #6b7280;
}

.gtc-wallet-empty {
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  color: #6b7280;
}

.gtc-wallet-empty p {
  margin: 0 0 4px;
}

.gtc-wallet-empty__hint {
  font-size: 13px;
}

.gtc-wallet-entries {
  margin-top: 4px;
}

.gtc-wallet-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  vertical-align: middle;
}

.gtc-wallet-badge--warning {
  background: #fef3c7;
  color: #92400e;
}

/* Checkout toggle */

.gtc-wallet-toggle {
  margin: 12px 0;
  padding: 14px 16px;
  border: 1px solid #cde9e6;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8f6f4, #f7fcfb);
}

.gtc-wallet-toggle__label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin: 0;
}

.gtc-wallet-toggle__label input[type="checkbox"] {
  margin-top: 3px;
}

.gtc-wallet-toggle__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gtc-wallet-toggle__balance {
  font-size: 13px;
  color: #374151;
}

.gtc-wallet-toggle__hint {
  margin: 8px 0 0 28px;
  font-size: 13px;
  color: #0a7a73;
}

.gtc-wallet-toggle__hint--muted {
  color: #6b7280;
}

/* RTL */

[dir="rtl"] .gtc-wallet-badge {
  margin-left: 0;
  margin-right: 6px;
}

[dir="rtl"] .gtc-wallet-toggle__hint {
  margin-left: 0;
  margin-right: 28px;
}
