/* Athenian Gift Cards — frontend UI (token-friendly) */
.ath-gc-box{
  display:flex;
  flex-direction:column;
  gap:10px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  --ath-gc-accent: var(--awcai-accent, var(--ctl-c1, #fe841b));
  --ath-gc-surface: var(--surface-2, rgba(0,0,0,.04));
  --ath-gc-text: var(--text-high, #1f2328);
}
.ath-gc-form{
  display:flex;
  gap:8px;
  align-items:center;
}
.ath-gc-form input[type="text"]{
  flex:1;
  min-width: 180px;
  padding: 10px 12px;
  border-radius: 12px;
  border:1px solid rgba(0,0,0,.12);
  background: var(--ath-gc-surface);
}
.ath-gc-applied{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.ath-gc-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius: 999px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.7);
}
.ath-gc-code{font-weight:600}
.ath-gc-amt{color: var(--ath-gc-accent); font-weight:700}
.ath-gc-remove{
  text-decoration:none;
  font-size: 18px;
  line-height: 1;
  opacity:.7;
}
.ath-gc-remove:hover{opacity:1}
.ath-gc-msg{
  font-size: 12px;
  opacity:.9;
}
.ath-gc-msg[data-ok="1"]{color: #0a7a2a}
.ath-gc-msg[data-ok="0"]{color: #b42318}
