/* === COMPARE SHORTCUT ===
 * Hero-bar widget on the landing page that lets visitors pick two
 * destinations and jumps straight to /compare?dest=slug1,slug2.
 */
.compare-shortcut {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  padding: 32px 60px 40px;
}

.compare-shortcut-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.compare-shortcut-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.compare-shortcut-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}

.compare-shortcut-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 4px;
}

.compare-shortcut-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.compare-shortcut-form {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.compare-shortcut-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.compare-shortcut-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.compare-shortcut-tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  min-width: 88px;
}

.compare-shortcut-select {
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--fg);
  min-width: 200px;
  cursor: pointer;
}

.compare-shortcut-select:focus {
  outline: none;
  border-color: var(--accent);
}

.compare-shortcut-submit {
  white-space: nowrap;
  padding: 14px 22px;
  font-size: 0.92rem;
  align-self: stretch;
}

.compare-shortcut-submit[disabled] {
  background: rgba(168, 213, 186, 0.4);
  color: rgba(28, 61, 40, 0.55);
  cursor: not-allowed;
  transform: none;
}

.compare-shortcut-submit[disabled]:hover {
  background: rgba(168, 213, 186, 0.4);
  transform: none;
}

@media (max-width: 900px) {
  .compare-shortcut { padding: 28px 32px; }
  .compare-shortcut-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .compare-shortcut-form {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .compare-shortcut-field {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .compare-shortcut-tag { min-width: 0; }
  .compare-shortcut-select { min-width: 0; width: 100%; }
  .compare-shortcut-submit { width: 100%; align-self: auto; }
}

@media (max-width: 600px) {
  .compare-shortcut { padding: 24px; }
}
