
.pu__topics-pick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pu__topic-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 20px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  color: var(--c-muted);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s var(--ease-out);
}

.pu__topic-chip i {
  font-size: 11px;
  opacity: 0.6;
}

.pu__topic-chip:hover {
  background: var(--c-surface3);
  color: var(--c-text);
  border-color: var(--c-border2);
}

.pu__topic-chip.is-selected {
  background: var(--c-accent);
  color: #080808;
  border-color: var(--c-accent);
  font-weight: 600;
}

.pu__topic-chip.is-selected i {
  opacity: 1;
}

.tp-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.tp {
  width: 100%;
  max-width: 500px;
  max-height: 80vh;
  background: var(--c-surface);
  border-radius: 24px 24px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

.tp__header {
  padding: 24px 20px 16px;
  text-align: center;
  border-bottom: 1px solid var(--c-border);
}

.tp__title {
  display: block;
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 4px;
}

.tp__sub {
  font-size: 13px;
  color: var(--c-muted);
}

.tp__topics {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
}

.tp__topic {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 20px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  color: var(--c-muted);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s var(--ease-out);
}

.tp__topic i {
  font-size: 14px;
  opacity: 0.6;
}

.tp__topic:hover {
  background: var(--c-surface3);
  color: var(--c-text);
}

.tp__topic.is-selected {
  background: var(--c-accent);
  color: #080808;
  border-color: var(--c-accent);
  font-weight: 600;
}

.tp__topic.is-selected i {
  opacity: 1;
}

.tp__btn {
  margin: 16px 20px;
  padding: 16px;
  border-radius: 14px;
  background: var(--c-accent);
  color: #080808;
  border: none;
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}

.tp__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.tp__btn:not(:disabled):hover {
  transform: translateY(-1px);
}.tp-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.tp {
  width: 90%;
  max-width: 500px;
  max-height: 70vh;
  background: var(--c-surface);
  border-radius: 24px;
  border: 1px solid var(--c-border2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.tp__topics {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
  scrollbar-width: none;
  -ms-overflow-style: none;
}