/* 특가 항공권 모아보기 - 보조 스타일 (레이아웃/색은 Tailwind 유틸 사용) */

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  word-break: keep-all;
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* 카드: hover 시 살짝 떠오르게 */
.card {
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -20px rgba(15, 23, 42, 0.5);
}

.variant-link {
  transition: background-color 0.15s ease;
}

/* 금액은 숫자 폭을 고정해 자릿수가 흔들리지 않게 */
.price {
  font-variant-numeric: tabular-nums;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .variant-link { transition: none; }
  .card:hover { transform: none; }
}
