.hero {
  padding: calc(0.75rem + 52px + 3rem) 1rem 3rem;
  background: linear-gradient(135deg, #1E293B 0%, #334155 50%, #475569 100%);
  color: #F1F5F9;
  text-align: center;
}

.hero--listing {
  padding: calc(0.75rem + 52px + 1.5rem) 0 0;
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
  color: #F1F5F9;
  text-align: left;
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.5rem;
}

.hero__title span {
  color: var(--cta);
}

.hero__subtitle {
  font-size: 1.125rem;
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero__search {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.hero__search-bar {
  display: flex;
}

.hero__search-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius) 0 0 var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.15s;
}

.hero__search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hero__search-input:focus {
  border-color: var(--cta);
}

.hero__search-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #F97316; /* Fixed color, not var(--cta) — hero is always dark bg */
  color: #fff !important;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.15s;
}

.hero__search-btn:hover {
  background: #EA580C;
}

.hero__search-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hero__trending {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hero__trending-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-right: 0.25rem;
}

.hero__trending-tag {
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.15s;
}

.hero__trending-tag:hover {
  border-color: var(--cta);
  color: #fff;
}
