.shop-header {
  padding: 4px 4px 4px 4px;
}
.shop-header .title {
  font-size: 20px;
  font-weight: 700;
}
.shop-header .sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 3px;
}

.filter-pills {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  margin: 14px 0;
}
.filter-pills .pill {
  flex: 1;
  padding: 9px 4px;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  text-align: center;
  font-weight: 400;
}
.filter-pills .pill.active {
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
}

.plans { display: flex; flex-direction: column; gap: 10px; }
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-card.featured { border: 2px solid var(--accent); }
.plan-card .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.plan-card .name {
  font-size: 15px;
  font-weight: 700;
}
.plan-card .badge {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: var(--accent-soft);
  color: var(--accent);
}
.plan-card .stats {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  /* Align with the name above (start = right in rtl); flex-end split the card
     with the name on the right and the stats on the left. */
  justify-content: flex-start;
}
.plan-card .stats span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.plan-card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 4px;
}
.plan-card .price {
  font-size: 16px;
  font-weight: 700;
}
.plan-card .price small {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-inline-end: 4px;
}
.plan-card .buy {
  background: var(--accent);
  color: var(--on-accent);
  border-radius: var(--radius-lg);
  padding: 8px 14px;
  font-weight: 600;
  font-size: 13px;
}

.wallet-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 12px;
  padding: 16px 0;
}
.wallet-note svg { width: 15px; height: 15px; }
