/* ── Account / Pedidos: arquivo orbital ── */
.account-orbit {
  --acc-ink: #f4f0ff;
  --acc-muted: rgba(214, 201, 255, 0.7);
  --acc-line: rgba(196, 168, 255, 0.18);
  --acc-surface: rgba(14, 9, 28, 0.78);
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 6rem);
  padding: 2rem 0 4rem;
  overflow: hidden;
}

.account-orbit__sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 12% 8%, rgba(124, 58, 237, 0.22), transparent 60%),
    radial-gradient(ellipse 45% 35% at 88% 18%, rgba(88, 28, 135, 0.18), transparent 65%),
    linear-gradient(180deg, rgba(7, 5, 15, 0.2) 0%, transparent 40%);
}

.account-orbit__glow {
  position: absolute;
  width: 28rem;
  height: 28rem;
  left: -8rem;
  top: 4rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.16), transparent 68%);
  filter: blur(8px);
}

.account-orbit__grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(196, 168, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 168, 255, 0.35) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 75%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 75%);
}

.account-orbit__shell {
  position: relative;
  z-index: 1;
}

.account-orbit__layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .account-orbit__layout {
    grid-template-columns: 17.5rem minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
  }
}

.account-orbit__main {
  min-width: 0;
  animation: account-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.account-orbit__aside {
  animation: account-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.account-panel {
  --acc-ink: #f4f0ff;
  --acc-muted: rgba(214, 201, 255, 0.7);
  --acc-line: rgba(196, 168, 255, 0.18);
  position: sticky;
  top: 6rem;
  padding: 1.25rem;
  border-radius: 1.15rem;
  border: 1px solid var(--acc-line);
  background:
    linear-gradient(165deg, rgba(42, 24, 72, 0.55) 0%, rgba(12, 8, 24, 0.88) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 18px 40px rgba(0, 0, 0, 0.28);
}

.account-panel__profile {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 1.1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--acc-line);
}

.account-panel__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  object-fit: cover;
  border: 1px solid rgba(196, 168, 255, 0.28);
  flex-shrink: 0;
}

.account-panel__avatar--fallback {
  display: grid;
  place-items: center;
  background: rgba(147, 51, 234, 0.18);
  color: #e9d5ff;
}

.account-panel__avatar--fallback i {
  width: 1.5rem;
  height: 1.5rem;
}

.account-panel__label {
  margin: 0;
  font-family: Kanit, Geist, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c084fc;
}

.account-panel__name {
  margin: 0.1rem 0 0;
  font-family: Kanit, Geist, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--acc-ink);
}

.account-panel__hint {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: var(--acc-muted);
}

.account-panel__points {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.45rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 168, 255, 0.28);
  background: rgba(124, 58, 237, 0.18);
  color: #f3e8ff;
  font-family: Kanit, Geist, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.account-panel__points [data-points-value] {
  font-size: 0.82rem;
}

.account-panel__nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.account-panel__link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 2.65rem;
  padding: 0.55rem 0.8rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(237, 233, 254, 0.88);
  font-family: Kanit, Geist, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.account-panel__link i {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  opacity: 0.85;
}

.account-panel__link:hover {
  background: rgba(147, 51, 234, 0.12);
  border-color: rgba(196, 168, 255, 0.22);
  color: #fff;
}

.account-panel__link.is-active {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.95), rgba(124, 58, 237, 0.95));
  border-color: rgba(216, 180, 254, 0.4);
  color: #fff;
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.3);
}

.account-panel__link--muted {
  color: var(--acc-muted);
  font-weight: 500;
}

.account-panel__divider {
  height: 1px;
  margin: 0.35rem 0;
  background: linear-gradient(90deg, transparent, var(--acc-line), transparent);
}

.orders-hero {
  margin-bottom: 1.5rem;
}

.orders-hero__crumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 1.15rem;
  padding: 0.22rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 168, 255, 0.18);
  background: rgba(8, 5, 18, 0.72);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  font-size: 0.78rem;
  line-height: 1;
  color: rgba(237, 233, 254, 0.55);
}

.orders-hero__crumb a,
.orders-hero__crumb span:not([aria-hidden]) {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  text-decoration: none;
}

.orders-hero__crumb a {
  color: rgba(244, 240, 255, 0.82);
  transition: color 0.15s ease, background 0.15s ease;
}

.orders-hero__crumb a:hover {
  color: #fff;
  background: rgba(168, 85, 247, 0.22);
}

.orders-hero__crumb > span[aria-hidden] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.85rem;
  color: rgba(196, 168, 255, 0.42);
  font-size: 0.72rem;
  font-weight: 600;
}

.orders-hero__crumb > span:not([aria-hidden]) {
  color: #f8f5ff;
  font-weight: 700;
  background: rgba(168, 85, 247, 0.28);
  border: 1px solid rgba(216, 180, 254, 0.18);
}

.orders-hero__eyebrow {
  margin: 0;
  font-family: Kanit, Geist, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c084fc;
}

.orders-hero__title {
  margin: 0.35rem 0 0;
  font-family: Kanit, Geist, sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--acc-ink);
}

.orders-hero__lead {
  margin: 0.55rem 0 0;
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--acc-muted);
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.order-ticket {
  position: relative;
  overflow: hidden;
  padding: 1.15rem 1.15rem 1.15rem 1.3rem;
  border-radius: 1.05rem;
  border: 1px solid var(--acc-line);
  background:
    linear-gradient(145deg, rgba(36, 22, 64, 0.5) 0%, rgba(10, 7, 20, 0.82) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.order-ticket:hover {
  border-color: rgba(196, 168, 255, 0.32);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 16px 36px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

.order-ticket__rail {
  position: absolute;
  left: 0;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 3px;
  border-radius: 999px;
  background: #f59e0b;
}

.order-ticket.is-approved .order-ticket__rail { background: #22c55e; }
.order-ticket.is-rejected .order-ticket__rail,
.order-ticket.is-canceled .order-ticket__rail { background: #ef4444; }
.order-ticket.is-refunded .order-ticket__rail { background: #eab308; }
.order-ticket.is-chargeback .order-ticket__rail { background: #a855f7; }
.order-ticket.is-pending .order-ticket__rail { background: #f59e0b; }

.order-ticket__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.order-ticket__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: Kanit, Geist, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--acc-ink);
}

.order-ticket__badge-icon {
  width: 1rem;
  height: 1rem;
  color: #fbbf24;
}

.order-ticket.is-approved .order-ticket__badge-icon { color: #4ade80; }
.order-ticket.is-rejected .order-ticket__badge-icon,
.order-ticket.is-canceled .order-ticket__badge-icon { color: #f87171; }
.order-ticket.is-refunded .order-ticket__badge-icon { color: #facc15; }
.order-ticket.is-chargeback .order-ticket__badge-icon { color: #c084fc; }

.order-ticket__id {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: var(--acc-muted);
  font-variant-numeric: tabular-nums;
}

.order-ticket__price {
  text-align: right;
  flex-shrink: 0;
}

.order-ticket__amount {
  margin: 0;
  font-family: Kanit, Geist, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--acc-ink);
  letter-spacing: 0.01em;
}

.order-ticket__date {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  color: var(--acc-muted);
}

.order-ticket__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .order-ticket {
    padding: 1.25rem 1.35rem 1.25rem 1.45rem;
  }

  .order-ticket__meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

.order-ticket__chip {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(196, 168, 255, 0.12);
  background: rgba(6, 4, 14, 0.45);
}

.order-ticket__chip > i {
  width: 1rem;
  height: 1rem;
  color: #c084fc;
  flex-shrink: 0;
}

.order-ticket__chip span {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.order-ticket__chip small {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--acc-muted);
}

.order-ticket__chip strong {
  font-size: 0.85rem;
  font-weight: 650;
  color: rgba(244, 240, 255, 0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.order-ticket__coupon {
  color: #e9d5ff !important;
}

.order-help-hint {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 0.95rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(168, 85, 247, 0.35);
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.22) 0%, rgba(14, 9, 28, 0.55) 100%);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.order-help-hint:hover {
  border-color: rgba(196, 168, 255, 0.55);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.32) 0%, rgba(14, 9, 28, 0.7) 100%);
}

.order-help-hint__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.7rem;
  color: #f5d0fe;
  background: rgba(168, 85, 247, 0.22);
  border: 1px solid rgba(216, 180, 254, 0.25);
}

.order-help-hint__icon i {
  width: 1.15rem;
  height: 1.15rem;
}

.order-help-hint__copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  flex: 1;
}

.order-help-hint__copy strong {
  font-family: Kanit, Geist, sans-serif;
  font-size: 0.92rem;
  font-weight: 750;
  color: #f4f0ff;
}

.order-help-hint__copy span {
  font-size: 0.78rem;
  color: rgba(214, 201, 255, 0.75);
}

.order-help-hint__go {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: #e9d5ff;
  white-space: nowrap;
}

@media (max-width: 639px) {
  .order-help-hint {
    flex-wrap: wrap;
  }

  .order-help-hint__go {
    width: 100%;
    padding-left: 3.1rem;
  }
}

.order-ticket__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.order-ticket__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.55rem;
  padding: 0.55rem 1rem;
  border-radius: 0.75rem;
  font-family: Kanit, Geist, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.order-ticket__cta i {
  width: 1.05rem;
  height: 1.05rem;
}

.order-ticket__cta:active {
  transform: scale(0.98);
}

.order-ticket__cta--primary {
  width: 100%;
  color: #fff;
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.32);
}

.order-ticket__cta--primary:hover {
  filter: brightness(1.06);
}

.order-ticket__cta--ghost {
  width: 100%;
  color: #ede9fe;
  border: 1px solid rgba(196, 168, 255, 0.28);
  background: rgba(255, 255, 255, 0.03);
}

.order-ticket__cta--ghost:hover {
  background: rgba(147, 51, 234, 0.14);
  border-color: rgba(196, 168, 255, 0.45);
}

@media (min-width: 640px) {
  .order-ticket__cta--primary,
  .order-ticket__cta--ghost {
    width: auto;
  }
}

.orders-pagination {
  margin-top: 1.5rem;
}

.orders-empty {
  text-align: center;
  padding: 3rem 1.25rem;
  border-radius: 1.15rem;
  border: 1px dashed rgba(196, 168, 255, 0.28);
  background:
    radial-gradient(ellipse 60% 50% at 50% 20%, rgba(124, 58, 237, 0.16), transparent 70%),
    rgba(12, 8, 24, 0.55);
}

.orders-empty__icon {
  display: grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 1.1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(196, 168, 255, 0.25);
  background: rgba(147, 51, 234, 0.14);
  color: #e9d5ff;
}

.orders-empty__icon i {
  width: 1.75rem;
  height: 1.75rem;
}

.orders-empty__title {
  margin: 0;
  font-family: Kanit, Geist, sans-serif;
  font-size: 1.35rem;
  font-weight: 750;
  color: var(--acc-ink);
}

.orders-empty__text {
  margin: 0.55rem auto 0;
  max-width: 24rem;
  font-size: 0.925rem;
  line-height: 1.5;
  color: var(--acc-muted);
}

.orders-empty__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
  min-height: 2.7rem;
  padding: 0.6rem 1.2rem;
  border: 0;
  border-radius: 0.8rem;
  color: #fff;
  font-family: Kanit, Geist, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.32);
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease;
}

.orders-empty__cta i {
  width: 1.05rem;
  height: 1.05rem;
}

.orders-empty__cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.account-orbit__glow--right {
  left: auto;
  right: -10rem;
  top: 8rem;
}

/* ── Affiliate ── */
.affiliate-stack {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.affiliate-card {
  padding: 1.2rem 1.2rem 1.25rem;
  border-radius: 1.05rem;
  border: 1px solid var(--acc-line);
  background:
    linear-gradient(145deg, rgba(36, 22, 64, 0.5) 0%, rgba(10, 7, 20, 0.82) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.affiliate-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.affiliate-card__title {
  margin: 0;
  font-family: Kanit, Geist, sans-serif;
  font-size: 1.05rem;
  font-weight: 750;
  color: var(--acc-ink);
}

.affiliate-card__desc {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--acc-muted);
}

.affiliate-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .affiliate-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

.affiliate-stat {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 5.5rem;
  padding: 0.9rem 0.95rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(196, 168, 255, 0.12);
  background: rgba(6, 4, 14, 0.45);
}

.affiliate-stat__label {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--acc-muted);
}

.affiliate-stat__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
}

.affiliate-stat__value {
  margin: 0;
  font-family: Kanit, Geist, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: var(--acc-ink);
}

.affiliate-stat__hint {
  margin: 0;
  font-size: 0.72rem;
  color: var(--acc-muted);
}

.affiliate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 0.7rem;
  border: 0;
  font-family: Kanit, Geist, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.affiliate-btn i {
  width: 0.95rem;
  height: 0.95rem;
}

.affiliate-btn:active {
  transform: scale(0.98);
}

.affiliate-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.affiliate-btn--primary:hover {
  filter: brightness(1.06);
}

.affiliate-btn--ghost {
  color: #ede9fe;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 168, 255, 0.22);
}

.affiliate-btn--ghost:hover {
  background: rgba(147, 51, 234, 0.14);
  border-color: rgba(196, 168, 255, 0.4);
}

.affiliate-btn--outline {
  color: #e9d5ff;
  background: transparent;
  border: 1px solid rgba(196, 168, 255, 0.3);
  min-height: 2.1rem;
  padding: 0.35rem 0.75rem;
}

.affiliate-btn--outline:hover {
  background: rgba(147, 51, 234, 0.16);
}

.affiliate-link {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .affiliate-link {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 1.25rem;
  }
}

.affiliate-link__panel {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.affiliate-link__row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .affiliate-link__row {
    flex-direction: row;
    align-items: stretch;
  }
}

.affiliate-link__input {
  width: 100%;
  min-height: 2.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px dashed rgba(196, 168, 255, 0.28);
  background: rgba(6, 4, 14, 0.55);
  color: #e9d5ff;
  font-size: 0.8rem;
  outline: none;
}

.affiliate-link__visits {
  margin: 0;
  font-size: 0.78rem;
  color: var(--acc-muted);
  text-align: left;
}

@media (min-width: 768px) {
  .affiliate-link__visits {
    text-align: right;
  }
}

.affiliate-link__visits strong {
  color: #c084fc;
  font-weight: 750;
}

.affiliate-tx-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.affiliate-tx {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.9rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(196, 168, 255, 0.12);
  background: rgba(6, 4, 14, 0.4);
}

.affiliate-tx__icon {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.7rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--acc-muted);
}

.affiliate-tx__icon i {
  width: 1.05rem;
  height: 1.05rem;
}

.affiliate-tx.is-pending .affiliate-tx__icon { color: #fbbf24; background: rgba(245, 158, 11, 0.12); }
.affiliate-tx.is-success .affiliate-tx__icon,
.affiliate-tx.is-commission .affiliate-tx__icon { color: #4ade80; background: rgba(34, 197, 94, 0.12); }
.affiliate-tx.is-failed .affiliate-tx__icon { color: #f87171; background: rgba(239, 68, 68, 0.12); }

.affiliate-tx__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.affiliate-tx__badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.15rem 0.5rem;
  border-radius: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ede9fe;
  background: rgba(147, 51, 234, 0.16);
}

.affiliate-tx.is-pending .affiliate-tx__badge { color: #fde68a; background: rgba(245, 158, 11, 0.14); }
.affiliate-tx.is-success .affiliate-tx__badge,
.affiliate-tx.is-commission .affiliate-tx__badge { color: #bbf7d0; background: rgba(34, 197, 94, 0.14); }
.affiliate-tx.is-failed .affiliate-tx__badge { color: #fecaca; background: rgba(239, 68, 68, 0.14); }

.affiliate-tx__note {
  margin: 0;
  font-size: 0.75rem;
  color: var(--acc-muted);
  line-height: 1.35;
}

.affiliate-tx__note--action {
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--acc-muted);
  font-size: 0.75rem;
}

.affiliate-tx__note--action:hover {
  color: #e9d5ff;
}

.affiliate-tx__side {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.affiliate-tx__info {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(196, 168, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: #c084fc;
  cursor: pointer;
}

.affiliate-tx__info i {
  width: 0.95rem;
  height: 0.95rem;
}

.affiliate-tx__amount {
  text-align: right;
}

.affiliate-tx__value {
  margin: 0;
  font-family: Kanit, Geist, sans-serif;
  font-size: 0.95rem;
  font-weight: 750;
}

.affiliate-tx__amount.is-in .affiliate-tx__value { color: #4ade80; }
.affiliate-tx__amount.is-out .affiliate-tx__value { color: #f87171; }
.affiliate-tx__amount.is-muted .affiliate-tx__value {
  color: var(--acc-muted);
  text-decoration: line-through;
}

.affiliate-tx__date {
  margin: 0.15rem 0 0;
  font-size: 0.7rem;
  color: var(--acc-muted);
}

.affiliate-empty-inline {
  padding: 1.5rem 0.5rem;
  text-align: center;
  color: var(--acc-muted);
  font-size: 0.875rem;
}

@keyframes account-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .account-orbit__main,
  .account-orbit__aside,
  .order-ticket {
    animation: none;
    transition: none;
  }
}

/* ── Pontos Saturno ── */
.points-stack {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.points-dialog .points-stack {
  margin-bottom: 0;
}

.points-hero,
.points-widget {
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: 1.05rem;
  border: 1px solid rgba(196, 168, 255, 0.22);
  background:
    linear-gradient(145deg, rgba(88, 28, 180, 0.28) 0%, rgba(10, 7, 20, 0.9) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.points-hero__top,
.points-widget__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.points-hero__label,
.points-widget__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c4b5fd;
}

.points-hero__value {
  margin: 0.2rem 0 0;
  font-family: Kanit, Geist, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: #f8f4ff;
}

.points-hero__value small {
  margin-left: 0.35rem;
  font-size: 0.95rem;
  font-weight: 650;
  color: rgba(214, 201, 255, 0.7);
}

.points-widget__value {
  margin: 0.15rem 0 0;
  font-family: Kanit, Geist, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #f8f4ff;
}

.points-hero__badge,
.points-widget__link,
[data-points-cta] {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 168, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #ede9fe;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

[data-points-cta].is-ready {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.points-progress {
  margin-top: 0.85rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.points-progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #c084fc, #7c3aed);
  transition: width 0.4s ease;
}

.points-hero__hint,
.points-widget__hint {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(214, 201, 255, 0.78);
}

.points-earn {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.85rem;
}

@media (min-width: 720px) {
  .points-earn {
    grid-template-columns: 1fr 1fr;
  }
}

.points-earn__item {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(196, 168, 255, 0.16);
  background: rgba(6, 4, 14, 0.35);
}

.points-earn__pts {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  min-width: 3rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  font-family: Kanit, Geist, sans-serif;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.points-earn__item strong {
  display: block;
  color: #f8f4ff;
  font-size: 0.92rem;
}

.points-earn__item p {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(214, 201, 255, 0.72);
}

.points-earn__id,
.points-event__id {
  display: inline-block;
  margin-top: 0.15rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(196, 181, 253, 0.7);
}

.points-form[hidden],
.points-redeem-done[hidden],
[data-points-locked][hidden] {
  display: none !important;
}

.points-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.points-form .affiliate-btn {
  width: 100%;
  min-height: 2.6rem;
}

.points-locked {
  margin: 0.85rem 0 0;
  padding: 0.85rem 0.95rem;
  border-radius: 0.8rem;
  border: 1px dashed rgba(196, 168, 255, 0.28);
  color: rgba(214, 201, 255, 0.78);
  font-size: 0.85rem;
  line-height: 1.45;
}

.points-redeem-done {
  margin-top: 0.9rem;
  padding: 0.95rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(34, 197, 94, 0.28);
  background: rgba(34, 197, 94, 0.08);
  color: #d1fae5;
  font-size: 0.88rem;
  line-height: 1.45;
}

.points-redeem-done__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.points-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.points-stat__label {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--acc-muted);
}

.points-stat__value {
  margin: 0.25rem 0 0;
  font-family: Kanit, Geist, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--acc-ink);
}

.points-history {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.points-event {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(196, 168, 255, 0.14);
  background: rgba(6, 4, 14, 0.35);
}

.points-event__icon {
  width: 2rem;
  text-align: center;
  font-size: 1.1rem;
}

.points-event__body {
  flex: 1;
  min-width: 0;
}

.points-event__body strong {
  display: block;
  font-size: 0.84rem;
  color: #f4f0ff;
}

.points-event__body span {
  font-size: 0.7rem;
  color: var(--acc-muted);
}

.points-event__pts {
  font-family: Kanit, Geist, sans-serif;
  font-size: 0.9rem;
}

.points-event__pts.is-plus {
  color: #4ade80;
}

.points-event__pts.is-minus {
  color: #f9a8d4;
}

.points-empty {
  margin: 0.5rem 0 0;
  color: var(--acc-muted);
  font-size: 0.85rem;
}

.order-discord-feedback.is-claimed .order-discord-feedback__kicker::after {
  content: " · pontuação já creditada";
}
