/* Gift Finder quiz */

.finder-page {
  padding-top: 100px;
  padding-bottom: 80px;
}

.finder-hero {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.finder-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 12px;
}

.finder-hero p {
  color: var(--text-secondary);
}

.finder-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.finder-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.finder-progress span {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--bg-elevated);
  transition: background 0.3s;
}

.finder-progress span.done {
  background: var(--accent-gold);
}

.finder-progress span.active {
  background: rgba(201, 169, 98, 0.5);
}

.finder-step h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.finder-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.finder-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.finder-option:hover {
  border-color: rgba(201, 169, 98, 0.4);
  background: rgba(201, 169, 98, 0.06);
}

.finder-option strong {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
}

.finder-option span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.finder-result {
  text-align: center;
}

.finder-result .result-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.finder-result h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.finder-result p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.finder-result-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.finder-result-links a {
  display: block;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  text-decoration: none;
  transition: border-color 0.2s;
}

.finder-result-links a:hover {
  border-color: rgba(201, 169, 98, 0.45);
}

.finder-result-links a em {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.finder-tools {
  margin-top: 48px;
  text-align: center;
}

.finder-tools p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.finder-tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hub-tools {
  margin-top: 0;
}

.hub-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.hub-tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.hub-tool-card:hover {
  border-color: rgba(201, 169, 98, 0.35);
  transform: translateY(-2px);
}

.hub-tool-card .tool-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.hub-tool-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.hub-tool-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.hub-tool-card .tool-cta {
  font-size: 0.85rem;
  color: var(--accent-gold);
}

@media (max-width: 700px) {
  .hub-tools-grid {
    grid-template-columns: 1fr;
  }
}
