@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--gradient-page);
  color: var(--color-text-heading);
  min-height: 100dvh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  display: block;
}

/* App Shell */
.app {
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 100dvh;
  position: relative;
  background: var(--gradient-page);
}

.page-content {
  padding-bottom: calc(var(--bottom-nav-height) + var(--space-10));
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--gradient-header);
  box-shadow: var(--shadow-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-4);
}

.header__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text-heading);
  transition: background 0.2s;
}

.header__btn:hover {
  background: linear-gradient(135deg, #f1f5f9 0%, #e8eef5 100%);
}

.header__btn svg {
  width: 22px;
  height: 22px;
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo-images {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo-icon-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.header__logo-text-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.8;
  margin-left: -8px;
}

.header__logo-icon-img--compact {
  height: 40px;
}

.header__logo-text-img--compact {
  height: 34px;
  margin-left: -6px;
}

/* Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 340px;
  height: 100dvh;
  background: var(--gradient-card);
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-5) var(--space-4);
}

.sidebar__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
}

.sidebar__profile {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0 var(--space-5) var(--space-5);
  border-bottom: 1px solid var(--color-bg-gray);
}

.sidebar__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--gradient-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-primary);
  overflow: hidden;
  flex-shrink: 0;
}

.sidebar__avatar svg {
  width: 24px;
  height: 24px;
}

.sidebar__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar__name {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-base);
  color: var(--color-text-dark);
}

.sidebar__email {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar__nav {
  flex: 1;
  padding: var(--space-4) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.sidebar__link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-dark);
  transition: background 0.2s, color 0.2s;
}

.sidebar__link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sidebar__link.active {
  background: var(--gradient-primary);
  color: var(--color-bg-white);
}

.sidebar__link:hover:not(.active) {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.sidebar__balances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
}

.sidebar__balance-card {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
}

.sidebar__balance-card--robux {
  background: var(--gradient-blue-soft);
}

.sidebar__balance-card--reais {
  background: var(--gradient-green-soft);
}

.sidebar__balance-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.sidebar__balance-value {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
}

.sidebar__balance-card--robux .sidebar__balance-value {
  color: var(--color-bg-primary);
}

.sidebar__balance-card--reais .sidebar__balance-value {
  color: var(--color-text-green);
}

.sidebar__logout {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-5);
  color: var(--color-text-danger);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-base);
  border-top: 1px solid var(--color-bg-gray);
}

.sidebar__logout svg {
  width: 20px;
  height: 20px;
}

/* Bottom Nav */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width);
  height: var(--bottom-nav-height);
  background: var(--gradient-header);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 100;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  color: var(--color-text-gray-light);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  transition: color 0.2s;
}

.bottom-nav__item svg {
  width: 22px;
  height: 22px;
}

.bottom-nav__item.active {
  color: var(--color-bg-primary);
}

/* Hero Welcome Card */
.hero-card {
  margin: var(--space-4);
  margin-bottom: var(--space-14);
  padding: var(--space-6) var(--space-5) var(--space-4);
  background: var(--gradient-hero);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-hero);
  position: relative;
  overflow: visible;
}

.hero-card__top {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  position: relative;
  min-height: 88px;
  overflow: visible;
}

.hero-card__character {
  width: 140px;
  height: 168px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: top left;
  margin-left: -20px;
  margin-top: -20px;
  margin-bottom: -12px;
  position: relative;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.hero-card__top > div {
  flex: 1;
  padding-bottom: var(--space-2);
  z-index: 2;
}

.hero-card__greeting {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}

.hero-card__name {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  color: white;
  line-height: 1.2;
}

.hero-card__balances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.balance-mini {
  background: var(--gradient-balance);
  border-radius: var(--radius-xl);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-balance);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.balance-mini__header {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-1);
}

.balance-mini__label {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
}

.balance-mini__label svg {
  width: 14px;
  height: 14px;
}

.balance-mini__value {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
}

.hero-card__footer {
  text-align: center;
  margin-top: var(--space-4);
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.7);
}

/* Banner */
.promo-banner {
  margin: 0 var(--space-4) var(--space-4);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.promo-banner__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
}

/* Alert Bar */
.alert-bar {
  margin: 0 var(--space-4) var(--space-5);
  padding: var(--space-3) var(--space-4);
  background: var(--gradient-alert);
  border: 1px solid rgba(251, 146, 60, 0.35);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
  transition: opacity 0.2s;
}

.alert-bar:hover {
  opacity: 0.9;
}

.alert-bar__icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-sm);
}

.alert-bar__text {
  flex: 1;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-orange-dark);
  line-height: 1.3;
}

.alert-bar__arrow {
  color: var(--color-text-orange);
  flex-shrink: 0;
}

/* Section */
.section {
  padding: 0 var(--space-4);
  margin-bottom: var(--space-6);
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.section__title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.section__link {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-bg-primary);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

/* Quick Access */
.quick-access {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.quick-access__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.quick-access__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.2s;
}

.quick-access__icon:hover {
  transform: scale(1.05);
}

.quick-access__icon--blue { background: var(--gradient-quick-blue); }
.quick-access__icon--orange { background: var(--gradient-quick-orange); }
.quick-access__icon--green { background: var(--gradient-quick-green); }

.quick-access__icon svg {
  width: 28px;
  height: 28px;
}

.quick-access__label {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-muted);
}

/* Product Carousel */
.product-carousel {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-2);
  scrollbar-width: none;
}

.product-carousel::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 160px;
  scroll-snap-align: start;
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(241, 245, 249, 0.9);
}

.product-card__image {
  height: 120px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  position: relative;
}

.product-card__image svg {
  width: 48px;
  height: 48px;
}

.product-card__body {
  padding: var(--space-3);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__name {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  line-height: 1.3;
  margin-bottom: var(--space-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-bg-primary);
  margin-bottom: var(--space-3);
}

.icon-coin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-card__btn {
  width: 100%;
  padding: var(--space-2) var(--space-3);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: var(--color-bg-primary);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  text-align: center;
  transition: background 0.2s;
  margin-top: auto;
}

.product-card__btn:hover {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

/* Summary Card */
.summary-card {
  position: relative;
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: var(--space-5);
  display: flex;
  gap: var(--space-4);
  border: 1px solid rgba(241, 245, 249, 0.9);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  color: inherit;
}

.summary-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover, var(--shadow-card));
}

.summary-card__arrow {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--gradient-input);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  pointer-events: none;
}

.summary-card__arrow svg {
  width: 18px;
  height: 18px;
}

.summary-card__content {
  flex: 1;
}

.summary-card__label {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.summary-card__metric {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.summary-card__percent {
  font-size: var(--font-size-6xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
}

.summary-card__metric-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.summary-card__progress {
  height: 8px;
  background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  overflow: hidden;
}

.summary-card__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.summary-card__stats {
  display: flex;
  gap: var(--space-8);
}

.summary-card__stat-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.summary-card__stat-value {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
}

.summary-card__stat-value--green {
  color: var(--color-text-green);
}

.summary-card__illustration {
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}

.summary-card__illustration svg {
  width: 64px;
  height: 64px;
  color: var(--color-bg-primary);
}

/* ===== LOJA PAGE ===== */
.page-hero {
  padding: var(--space-4) var(--space-4) var(--space-5);
}

.breadcrumb {
  font-size: var(--font-size-sm);
  color: var(--color-bg-primary);
  margin-bottom: var(--space-2);
}

.breadcrumb span {
  color: var(--color-text-muted);
}

.page-hero__title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-2);
}

.page-hero__subtitle {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.user-balance-bar {
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.user-balance-bar__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #fde68a 0%, #f5c16c 50%, #eab308 100%);
  position: relative;
}

.user-balance-bar__avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: var(--color-text-green);
  border: 2px solid white;
  border-radius: var(--radius-full);
}

.user-balance-bar__name {
  flex: 1;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-base);
}

.user-balance-bar__balance {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-weight: var(--font-weight-bold);
  color: var(--color-bg-primary);
  font-size: var(--font-size-base);
}

/* Search & Filters */
.filters {
  padding: 0 var(--space-4) var(--space-4);
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--gradient-card);
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--space-3);
}

.search-bar svg {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: var(--font-size-base);
  color: var(--color-text-heading);
  background: transparent;
}

.search-bar input::placeholder {
  color: var(--color-text-gray-light);
}

.price-filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  width: 100%;
  min-width: 0;
}

.price-filters input {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: var(--gradient-card);
  border: 1px solid var(--color-bg-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  font-family: inherit;
  font-size: var(--font-size-base);
  outline: none;
}

.price-filters input:focus {
  border-color: var(--color-bg-primary);
}

.btn-filter {
  width: 100%;
  padding: var(--space-3);
  background: var(--gradient-btn);
  color: white;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  transition: opacity 0.2s;
}

.btn-filter:hover {
  opacity: 0.9;
}

/* Item Grid */
.item-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  padding: 0 var(--space-4) var(--space-4);
  align-items: stretch;
}

.item-card {
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.item-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.item-card--revealed .item-card__overlay {
  opacity: 1;
  visibility: visible;
}

.item-card__buy-now {
  width: calc(100% - var(--space-4));
  max-width: 150px;
  min-height: 44px;
  padding: 0 var(--space-4);
  border-radius: var(--radius-full);
  background: var(--gradient-btn);
  color: white;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  box-shadow: 0 10px 28px rgba(70, 120, 192, 0.4);
  transform: scale(0.88);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  cursor: pointer;
}

.item-card--revealed .item-card__buy-now {
  transform: scale(1);
  opacity: 1;
}

.item-card__tag {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  background: var(--gradient-input);
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-full);
  z-index: 1;
}

.item-card__image {
  height: 130px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e8eef5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}

.item-card__image svg {
  width: 56px;
  height: 56px;
}

.item-card__body {
  padding: var(--space-3);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.item-card__name {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-1);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.item-card__seller {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.item-card__seller svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.item-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.item-card__price {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-bg-primary);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.item-card__buy {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--gradient-btn);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.item-card__buy:hover {
  opacity: 0.85;
}

.item-card__buy svg {
  width: 18px;
  height: 18px;
}

/* ===== ITENS PAGE ===== */
.seller-banner {
  margin: var(--space-4);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.seller-banner__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
}

.inventory-card {
  margin: 0 var(--space-4) var(--space-4);
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: var(--space-5);
}

.inventory-card__title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-2);
}

.inventory-card__subtitle {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.inventory-card__skin-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-4);
}

.inventory-card__counter {
  background: var(--gradient-input);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.inventory-card__counter-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}

.inventory-card__counter-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
}

.inventory-card__counter-value {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-heading);
}

.empty-state {
  margin: 0 var(--space-4) var(--space-4);
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: var(--space-10) var(--space-5);
  text-align: center;
}

.empty-state__icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: var(--gradient-input);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: var(--color-text-gray-light);
}

.empty-state__icon svg {
  width: 40px;
  height: 40px;
}

.empty-state__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-2);
}

.empty-state__text {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-5);
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-8);
  background: var(--gradient-btn);
  color: white;
  border-radius: var(--radius-full);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* ===== PERFIL PAGE ===== */
.profile-header-bg {
  height: 80px;
  background: var(--gradient-profile);
}

.profile-card {
  margin: -40px var(--space-4) var(--space-4);
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: var(--space-5);
  text-align: center;
  position: relative;
  z-index: 1;
}

.profile-card__avatar-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-3);
}

.profile-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: var(--gradient-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-bg-primary);
}

.profile-card__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-full);
}

.profile-card__avatar svg {
  width: 40px;
  height: 40px;
}

.profile-card__edit {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--gradient-btn);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.profile-card__edit svg {
  width: 14px;
  height: 14px;
}

.profile-card__name {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-2);
}

.profile-card__email-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--gradient-input);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.profile-balances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  padding: 0 var(--space-4);
  margin-bottom: var(--space-4);
}

.profile-balance {
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: var(--space-4);
  text-align: center;
}

.profile-balance__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2);
}

.profile-balance__icon--robux {
  background: var(--gradient-blue-soft);
  color: var(--color-bg-primary);
}

.profile-balance__icon--reais {
  background: var(--gradient-green-soft);
  color: var(--color-text-green);
}

.profile-balance__value {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-1);
}

.profile-balance__label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.seller-pass {
  margin: 0 var(--space-4) var(--space-4);
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.seller-pass__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: var(--gradient-input);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.seller-pass__content {
  flex: 1;
}

.seller-pass__title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
}

.seller-pass__subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.seller-pass__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) var(--space-4);
  background: var(--gradient-btn);
  color: white;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  flex-shrink: 0;
  text-decoration: none;
}

.form-section {
  margin: 0 var(--space-4) var(--space-4);
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: var(--space-5);
}

.form-section__header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-5);
}

.form-section__header svg {
  width: 20px;
  height: 20px;
  color: var(--color-bg-primary);
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-group label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.form-input {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--gradient-input);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
}

.form-input svg {
  width: 18px;
  height: 18px;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.form-input input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: var(--font-size-base);
  color: var(--color-text-heading);
}

.form-section .form-input input[readonly] {
  cursor: default;
  color: var(--color-text-muted);
  user-select: none;
  -webkit-user-select: none;
}

.form-input input::placeholder {
  color: var(--color-text-gray-light);
}

.profile-footer {
  padding: var(--space-4) var(--space-4) var(--space-8);
  text-align: center;
}

.profile-footer__date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.profile-footer__logout {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-danger);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
}

.profile-footer__logout svg {
  width: 18px;
  height: 18px;
}

.section__title-icon {
  display: inline-flex;
  align-items: center;
  color: var(--color-bg-primary);
}

.section__title-icon svg {
  width: 20px;
  height: 20px;
}

.balance-mini__label .icon-coin {
  color: var(--color-bg-primary);
}

.product-card__price .icon-coin,
.user-balance-bar__balance .icon-coin {
  color: var(--color-bg-primary);
}

.quick-access__icon .icon-coin {
  color: white;
}

/* ===== MODAL CONFIRMAR COMPRA ===== */
.purchase-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.purchase-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.purchase-modal__dialog {
  width: 100%;
  max-width: 28rem;
  background: var(--gradient-card);
  border-radius: var(--radius-2xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: scale(0.96) translateY(8px);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.purchase-modal.active .purchase-modal__dialog {
  transform: scale(1) translateY(0);
}

.purchase-modal__body {
  padding: var(--space-6);
}

.purchase-modal__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-4);
}

.purchase-modal__product {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding: var(--space-3);
  background: var(--gradient-input);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.purchase-modal__thumb {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: var(--space-1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.purchase-modal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.purchase-modal__thumb svg {
  color: var(--color-text-muted);
}

.purchase-modal__info {
  min-width: 0;
  flex: 1;
}

.purchase-modal__name {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.purchase-modal__price {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-1);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-bg-primary);
}

.purchase-modal__price .icon-coin {
  color: var(--color-bg-primary);
  display: inline-flex;
}

.purchase-modal__text {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-6);
}

.purchase-modal__error {
  display: none;
  margin-bottom: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}

.purchase-modal__error.visible {
  display: block;
}

.purchase-modal__actions {
  display: flex;
  gap: var(--space-3);
  justify-content: flex-end;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-heading);
  background: var(--gradient-input);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: opacity 0.2s, background 0.2s;
}

.btn-ghost:hover {
  opacity: 0.85;
}

.purchase-modal__confirm {
  min-width: 120px;
  min-height: 52px;
  padding: 0 var(--space-6);
  border-radius: var(--radius-full);
}

/* ===== TOAST ===== */
.vault-toast {
  position: fixed;
  top: calc(var(--header-height) + var(--space-3));
  left: 50%;
  z-index: 250;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: calc(100% - var(--space-8));
  max-width: calc(var(--max-width) - var(--space-8));
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(22, 163, 74, 0.2);
  box-shadow: 0 16px 40px -8px rgba(22, 163, 74, 0.25), 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateX(-50%) translateY(calc(-100% - var(--space-6)));
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}

.vault-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.vault-toast__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: var(--color-text-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
}

.vault-toast__text {
  flex: 1;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-heading);
  line-height: 1.4;
}

/* ===== SELLER PASS PAGE ===== */
.seller-pass-page {
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.seller-pass-page__back {
  display: none;
  align-items: center;
  gap: var(--space-1);
  margin-bottom: var(--space-5);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.seller-pass-page__back:hover {
  color: var(--color-text-heading);
}

.seller-pass-page__back svg {
  width: 18px;
  height: 18px;
}

.seller-pass-page__hero {
  text-align: center;
  margin-bottom: var(--space-6);
}

.seller-pass-page__badge {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-5);
  padding: var(--space-2);
  border-radius: var(--radius-full);
  object-fit: contain;
  background: linear-gradient(145deg, #fef3c7 0%, #fde68a 40%, #fbbf24 100%);
  border: 4px solid #f59e0b;
  box-shadow: 0 12px 24px rgba(234, 179, 8, 0.25);
}

.seller-pass-page__title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}

.seller-pass-page__subtitle {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 320px;
  margin: 0 auto;
}

.seller-pass-page__pricing {
  background: var(--gradient-seller-dark);
  border-radius: var(--radius-2xl);
  padding: var(--space-6) var(--space-5);
  text-align: center;
  margin-bottom: var(--space-5);
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.35);
}

.seller-pass-page__pricing-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-2);
}

.seller-pass-page__price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  color: white;
  margin-bottom: var(--space-4);
}

.seller-pass-page__price-currency {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin-top: 8px;
}

.seller-pass-page__price-value {
  font-size: 56px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.seller-pass-page__price-cents {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin-top: 8px;
}

.seller-pass-page__pricing-tag {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.85);
}

.seller-pass-page__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.seller-pass-page__buy {
  width: 100%;
  min-height: 56px;
  border: none;
  border-radius: var(--radius-full);
  background: var(--gradient-seller-cta);
  color: white;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-extrabold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px -6px rgba(234, 88, 12, 0.45);
  transition: transform 0.2s, opacity 0.2s;
}

.seller-pass-page__buy:hover {
  opacity: 0.95;
}

.seller-pass-page__buy:active {
  transform: scale(0.98);
}

.seller-pass-page__pix {
  font-size: var(--font-size-sm);
  color: var(--color-text-gray-light);
}

.seller-pass-page__benefits-title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-4);
}

.seller-pass-page__benefits-title svg {
  width: 18px;
  height: 18px;
  color: #eab308;
}

.seller-pass-page__benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.seller-pass-benefit {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-card);
}

.seller-pass-benefit__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background: var(--gradient-orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-orange);
}

.seller-pass-benefit__icon svg {
  width: 20px;
  height: 20px;
}

.seller-pass-benefit__title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-1);
}

.seller-pass-benefit__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.45;
}

/* ===== COMPRAR ROBUX PAGE ===== */
.robux-page {
  padding: var(--space-4);
  padding-bottom: calc(var(--bottom-nav-height) + var(--space-10));
}

.robux-page__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.robux-page__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-top: 2px;
  border-radius: var(--radius-full);
  color: var(--color-text-heading);
  flex-shrink: 0;
  transition: background 0.2s;
}

.robux-page__back:hover {
  background: rgba(0, 0, 0, 0.05);
}

.robux-page__back svg {
  width: 22px;
  height: 22px;
}

.robux-page__title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-heading);
  line-height: 1.2;
  margin-bottom: var(--space-1);
}

.robux-page__subtitle {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
}

.robux-page__banner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  margin-bottom: var(--space-5);
  border-radius: var(--radius-2xl);
  background: var(--gradient-robux-banner);
  box-shadow: 0 16px 32px -8px rgba(70, 120, 192, 0.35);
}

.robux-page__banner-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.robux-page__banner-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: white;
  margin-bottom: var(--space-1);
}

.robux-page__banner-text {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.85);
}

.robux-page__packages {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.robux-package {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: var(--gradient-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}

.robux-package:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.robux-package:active {
  transform: scale(0.98);
}

.robux-package__badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-4);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: var(--gradient-seller-cta);
  color: white;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
}

.robux-package__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background: var(--gradient-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-primary);
}

.robux-package__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.robux-package__amount {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
}

.robux-package__price {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
}

/* ===== PIX BOTTOM SHEET ===== */
.pix-sheet {
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
  visibility: hidden;
}

.pix-sheet.active {
  pointer-events: auto;
  visibility: visible;
}

.pix-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.pix-sheet.active .pix-sheet__backdrop {
  opacity: 1;
}

.pix-sheet__panel {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  width: 100%;
  max-width: var(--max-width);
  max-height: 92dvh;
  overflow-y: auto;
  background: var(--gradient-card);
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  padding: var(--space-4) var(--space-5) calc(var(--space-6) + env(safe-area-inset-bottom));
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.pix-sheet.active .pix-sheet__panel {
  transform: translate(-50%, 0);
}

.pix-sheet__handle {
  width: 40px;
  height: 4px;
  border-radius: var(--radius-full);
  background: #cbd5e1;
  margin: 0 auto var(--space-4);
}

.pix-sheet__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}

.pix-sheet__close svg {
  width: 20px;
  height: 20px;
}

.pix-sheet__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-1);
  padding-right: var(--space-8);
}

.pix-sheet__subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.pix-sheet__error {
  display: none;
  margin-bottom: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  color: var(--color-text-danger);
  font-size: var(--font-size-sm);
}

.pix-sheet__error.visible {
  display: block;
}

.pix-sheet__loading {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  color: var(--color-text-muted);
}

.pix-sheet__card-progress {
  margin-bottom: var(--space-6);
}

.pix-sheet__progress-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-align: left;
  max-width: 280px;
  margin: 0 auto var(--space-5);
}

.pix-sheet__progress-step {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid rgba(0, 0, 0, 0.04);
  opacity: 0.45;
  transform: translateX(0);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.pix-sheet__progress-step.is-active {
  opacity: 1;
  transform: translateX(4px);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: rgba(70, 120, 192, 0.2);
}

.pix-sheet__progress-step.is-done {
  opacity: 1;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-color: rgba(22, 163, 74, 0.15);
}

.pix-sheet__progress-step-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pix-sheet__progress-step.is-active .pix-sheet__progress-step-icon {
  color: var(--color-bg-primary);
  animation: pulse-soft 1.2s ease-in-out infinite;
}

.pix-sheet__progress-step.is-done .pix-sheet__progress-step-icon {
  color: var(--color-text-green);
}

.pix-sheet__progress-step-label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-heading);
}

.pix-sheet__loading-text {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-heading);
  animation: fade-pulse 1.5s ease-in-out infinite;
}

.pix-sheet__field input.is-invalid {
  border-color: rgba(220, 38, 38, 0.55);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

@keyframes pulse-soft {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes fade-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.pix-sheet__spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-3);
  border: 3px solid #e2e8f0;
  border-top-color: var(--color-bg-primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.pix-sheet__amount {
  text-align: center;
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-bg-primary);
  margin-bottom: var(--space-4);
}

.pix-sheet__qr-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.pix-sheet__qr,
.pix-sheet__qr-img {
  width: 220px;
  height: 220px;
  border-radius: var(--radius-lg);
  padding: var(--space-2);
  background: white;
  box-shadow: var(--shadow-card);
  object-fit: contain;
}

.pix-sheet__code-label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-2);
}

.pix-sheet__code-row {
  display: flex;
  gap: var(--space-2);
}

.pix-sheet__code-input {
  flex: 1;
  min-width: 0;
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--gradient-input);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.pix-sheet__copy {
  flex-shrink: 0;
  padding: 0 var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--gradient-btn);
  color: white;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}

.pix-sheet__status {
  text-align: center;
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.pix-sheet__contact-hint {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.pix-sheet__field {
  margin-bottom: var(--space-3);
}

.pix-sheet__field label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-1);
}

.pix-sheet__field input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--gradient-input);
  font-family: inherit;
  font-size: var(--font-size-base);
}

.pix-sheet__btn {
  width: 100%;
  min-height: 48px;
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-bold);
  margin-top: var(--space-2);
}

.pix-sheet__btn--primary {
  background: var(--gradient-btn);
  color: white;
}

.pix-sheet__success {
  text-align: center;
  padding: var(--space-6) var(--space-4);
}

.pix-sheet__success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  border-radius: var(--radius-full);
  background: var(--gradient-green-soft);
  color: var(--color-text-green);
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pix-sheet__success-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-2);
}

.pix-sheet__success-text {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
}

.pix-sheet__method-label {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-4);
}

.pix-sheet__methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pix-sheet__method-btn {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-4);
  border-radius: var(--radius-xl);
  background: var(--gradient-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: border-color 0.2s, transform 0.2s;
}

.pix-sheet__method-btn:hover {
  border-color: var(--color-bg-primary);
  transform: translateY(-1px);
}

.pix-sheet__method-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pix-sheet__method-icon svg {
  width: 24px;
  height: 24px;
}

.pix-sheet__method-icon--pix {
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
}

.pix-sheet__method-icon--card {
  background: rgba(59, 130, 246, 0.15);
  color: #2563eb;
}

.pix-sheet__method-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pix-sheet__method-info strong {
  font-size: var(--font-size-base);
  color: var(--color-text-heading);
}

.pix-sheet__method-info small {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.pix-sheet__card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

/* ===== OWNED ITEMS (INVENTORY) ===== */
.user-inventory {
  padding-top: 0;
}

.owned-item-card {
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.owned-item-card__tag {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  background: var(--gradient-input);
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-full);
  z-index: 1;
}

.owned-item-card__image {
  height: 120px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e8eef5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.owned-item-card__img {
  max-width: 80%;
  max-height: 90px;
  object-fit: contain;
}

.owned-item-card__body {
  padding: var(--space-3);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.owned-item-card__name {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-2);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.owned-item-card__price {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-bg-primary);
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
}

.owned-item-card__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: auto;
}

.owned-item-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  min-height: 38px;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  transition: opacity 0.2s;
  box-sizing: border-box;
}

.owned-item-card__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.owned-item-card__btn--transfer {
  background: var(--gradient-btn);
  color: white;
}

.owned-item-card__btn--sell {
  background: var(--gradient-input);
  color: var(--color-text-heading);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.owned-item-card__btn:hover {
  opacity: 0.9;
}

/* ===== SELLER PASS MODAL ===== */
.seller-pass-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.seller-pass-modal.active {
  opacity: 1;
  visibility: visible;
}

.seller-pass-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.seller-pass-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: var(--gradient-card);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  padding: var(--space-6) var(--space-5);
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s;
}

.seller-pass-modal.active .seller-pass-modal__dialog {
  transform: translateY(0) scale(1);
}

.seller-pass-modal__logo {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  object-fit: contain;
}

.seller-pass-modal__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.seller-pass-modal__subtitle {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.seller-pass-modal__disclaimer {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-6);
}

.seller-pass-modal__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-bottom: var(--space-3);
  border-radius: var(--radius-full);
  background: var(--gradient-btn);
  color: white;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.seller-pass-modal__dismiss {
  width: 100%;
  padding: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  background: transparent;
}

.seller-pass-modal__dismiss:hover {
  color: var(--color-text-heading);
}

/* ===== CARTEIRA PAGE ===== */
.carteira-page {
  padding: var(--space-4);
}

.carteira-license {
  margin-top: var(--space-6);
  padding: var(--space-8) var(--space-5);
  background: var(--gradient-card);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.carteira-license__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-5);
  border-radius: var(--radius-full);
  background: var(--gradient-green-soft);
  color: var(--color-text-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carteira-license__icon svg {
  width: 36px;
  height: 36px;
}

.carteira-license__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-3);
}

.carteira-license__text {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.carteira-license__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 var(--space-8);
  border-radius: var(--radius-full);
  background: var(--gradient-btn);
  color: white;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}

.carteira-license__btn:hover {
  opacity: 0.92;
}

/* ===== CONTA ROBLOX PAGE ===== */
.roblox-connect-page {
  padding: var(--space-4);
}

.roblox-connect-page__header {
  margin-bottom: var(--space-5);
}

.roblox-connect-page__title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-2);
}

.roblox-connect-page__subtitle {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.roblox-connect-banner {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-5);
  margin-bottom: var(--space-4);
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid rgba(70, 120, 192, 0.12);
}

.roblox-connect-banner__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.roblox-connect-banner__icon svg {
  width: 24px;
  height: 24px;
}

.roblox-connect-banner__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-2);
}

.roblox-connect-banner__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}

.roblox-connect-card,
.roblox-connect-faq {
  background: var(--gradient-card);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  padding: var(--space-5);
  margin-bottom: var(--space-4);
  border: 1px solid rgba(241, 245, 249, 0.9);
}

.roblox-connect-card__head {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.roblox-connect-card__head-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--gradient-btn);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roblox-connect-card__head-icon svg {
  width: 22px;
  height: 22px;
}

.roblox-connect-card__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-1);
}

.roblox-connect-card__subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.roblox-connect-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.roblox-connect-field label {
  display: block;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-2);
}

.roblox-connect-input {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0 var(--space-4);
  min-height: 52px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.roblox-connect-input:focus-within {
  border-color: rgba(70, 120, 192, 0.45);
  box-shadow: 0 0 0 3px rgba(70, 120, 192, 0.12);
}

.roblox-connect-input svg {
  width: 18px;
  height: 18px;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.roblox-connect-input input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-size: var(--font-size-base);
  color: var(--color-text-heading);
  outline: none;
}

.roblox-connect-input input::placeholder {
  color: var(--color-text-muted);
}

.roblox-connect-hint {
  margin-top: var(--space-2);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.roblox-connect-notice {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding: var(--space-4);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.roblox-connect-notice svg {
  width: 18px;
  height: 18px;
  color: var(--color-bg-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.roblox-connect-notice p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}

.roblox-connect-notice strong {
  color: var(--color-text-heading);
}

.roblox-connect-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  min-height: 52px;
  margin-top: var(--space-2);
  border-radius: var(--radius-full);
  background: var(--gradient-btn);
  color: white;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  transition: opacity 0.2s;
}

.roblox-connect-submit svg {
  width: 18px;
  height: 18px;
}

.roblox-connect-submit:hover:not(:disabled) {
  opacity: 0.92;
}

.roblox-connect-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.roblox-connect-faq__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-4);
}

.roblox-connect-faq__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.roblox-connect-faq__list li {
  position: relative;
  padding-left: var(--space-5);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.roblox-connect-faq__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-bg-primary);
}

/* ===== SUPORTE PAGE ===== */
.support-page {
  padding: var(--space-4);
}

.support-page__header {
  margin-bottom: var(--space-6);
}

.support-page__title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-2);
}

.support-page__subtitle {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.support-section {
  margin-bottom: var(--space-6);
}

.support-section__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-4);
}

.support-contact-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--gradient-card);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(241, 245, 249, 0.9);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.support-contact-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-card-hover, var(--shadow-card));
}

.support-contact-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: var(--color-bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-contact-card__icon svg {
  width: 22px;
  height: 22px;
}

.support-contact-card__content {
  flex: 1;
  min-width: 0;
}

.support-contact-card__label {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-1);
}

.support-contact-card__value {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  word-break: break-all;
}

.support-contact-card__external {
  flex-shrink: 0;
  color: var(--color-text-muted);
}

.support-contact-card__external svg {
  width: 18px;
  height: 18px;
}

.support-faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.support-faq-card {
  background: var(--gradient-card);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  padding: var(--space-5);
  border: 1px solid rgba(241, 245, 249, 0.9);
}

.support-faq-card__question {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-2);
  line-height: 1.4;
}

.support-faq-card__answer {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}
