.ts-popular {
  margin-top: 36px;
  width: 100%;
}

.ts-popular__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #3D4090;
  margin-bottom: 14px;
}

.ts-popular__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ts-popular--left   .ts-popular__chips,
.ts-popular--left   .ts-popular__label { justify-content: flex-start; text-align: left; }
.ts-popular--center .ts-popular__chips { justify-content: center; }
.ts-popular--center .ts-popular__label { text-align: center; }
.ts-popular--right  .ts-popular__chips { justify-content: flex-end; }
.ts-popular--right  .ts-popular__label { text-align: right; }

.ts-popular__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(86, 91, 215, 0.18);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #1A1F2E;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  line-height: 1.3;
}

.ts-popular__chip:hover,
.ts-popular__chip:focus-visible {
  background: #ffffff;
  border-color: #565BD7;
  box-shadow: 0 6px 16px -4px rgba(86, 91, 215, 0.25);
  transform: translateY(-1px);
  text-decoration: none;
  color: #1A1F2E;
}

.ts-popular__chip-arrow {
  color: #565BD7;
  font-weight: 700;
  font-size: 1.05em;
  line-height: 1;
  flex-shrink: 0;
}

.ts-popular__chip-text {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .ts-popular__chips { gap: 6px; }
  .ts-popular__chip {
    font-size: 13px;
    padding: 7px 12px 7px 10px;
  }
  .ts-popular__chip-text {
    white-space: normal;
  }
}