.tag-picker-popular {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.tag-picker-more {
  width: 38px;
  height: 34px;
  border: 1px solid #5b8e26;
  border-radius: 10px;
  background: #111d07;
  color: var(--green);
  font-size: 20px;
  line-height: 1;
  transition: transform .18s, background .18s;
}

.tag-picker-more:hover {
  background: var(--green);
  color: #071000;
  transform: translateY(-1px);
}

.tag-picker-expand {
  display: grid;
  gap: 9px;
  width: 100%;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #292929;
}

.tag-picker-search {
  width: 100%;
  height: 40px;
  border: 1px solid #3a3a3a;
  border-radius: 10px;
  background: #050505;
  color: #fff;
  padding: 0 11px;
  outline: none;
}

.tag-picker-search:focus { border-color: var(--green); }
.tag-picker-options { display: flex; flex-wrap: wrap; gap: 7px; max-height: 152px; overflow: auto; padding-right: 4px; }

.viewer-stage { position: relative; }
.viewer-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 68px;
  border: 1px solid #353535;
  border-radius: 14px;
  background: #090909d9;
  color: #fff;
  font-size: 30px;
  transform: translateY(-50%);
  transition: background .18s, color .18s, transform .18s;
}

.viewer-nav:hover:not(:disabled) { background: var(--green); color: #071000; transform: translateY(-50%) scale(1.05); }
.viewer-nav:disabled { opacity: .22; cursor: not-allowed; }
.viewer-prev { left: 28px; }
.viewer-next { right: 28px; }
.viewer-actions { display: flex; align-items: center; gap: 13px; }
.viewer-count { color: #8c8c8c; font-size: 13px; }

@media (max-width: 700px) {
  .viewer-nav { width: 40px; height: 54px; font-size: 24px; }
  .viewer-prev { left: 10px; }
  .viewer-next { right: 10px; }
  .viewer-actions { margin-top: 14px; justify-content: space-between; }
}
