@charset "utf-8";

html {
  scroll-behavior: smooth;
}

.wrap {
  min-height: 100vh;
}

header .inner h1 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: "Outfit", sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kia-white1);
}

.list_page {
  padding: 170px 120px 120px;
}

.list_intro {
  margin-top: 32px;
  margin-bottom: 64px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.list_intro h2 {
  line-height: 1;
}

.list_intro p {
  font-size: 18px;
  font-weight: 500;
  align-self: flex-end;
  color: var(--kia-white2);
}

.list_intro_meta,
.list_summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  row-gap: 6px;
  color: var(--kia-white2);
}

.list_intro_meta span,
.list_summary span {
  display: inline-flex;
  align-items: center;
}

.list_intro_meta span+span::before,
.list_summary span+span::before {
  content: "•";
  margin: 0 10px 0 12px;
  color: rgba(221, 216, 209, 0.82);
}

.list_summary {
  display: none;
  width: 100%;
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 500;
  text-align: right;
}

.list_layout {
  display: grid;
  grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.list_sidebar {
  position: sticky;
  top: 156px;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filter_nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.filter_nav button {
  all: unset;
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--kia-white2);
  cursor: pointer;
}

.filter_nav button.on {
  color: var(--kia-white1);
}

.compare_tray {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(251, 246, 239, 0.16);
  border-radius: 24px;
  padding: 28px 24px;
  background: rgba(12, 17, 21, 0.45);
}

.compare_tray strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  color: var(--kia-white2);
}

.compare_tray .compare_hint {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(251, 246, 239, 0.72);
}

.compare_tray ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 152px;
  margin-bottom: 24px;
}

.compare_tray.is-empty ul {
  justify-content: center;
}

.compare_tray.is-empty .compare_list::before {
  content: "No vehicles added yet.";
  display: block;
  padding: 18px 16px;
  border: 1px dashed rgba(251, 246, 239, 0.18);
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(251, 246, 239, 0.6);
}

.compare_tray li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(251, 246, 239, 0.12);
  font-size: 24px;
  font-family: "Cormorant Garamond", serif;
  color: var(--kia-white1);
}

.compare_tray li:last-child {
  border-bottom: none;
}

.compare_tray li span {
  flex: 1;
  min-width: 0;
  line-height: 1.1;
  word-break: keep-all;
  overflow-wrap: anywhere;
  color: inherit;
}

.compare_tray .btn_remove_compare {
  width: 32px;
  height: 32px;
  padding: 0;
  flex-shrink: 0;
  border: 1px solid rgba(251, 246, 239, 0.24);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background: transparent;
  font-size: 0;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.compare_tray .btn_remove_compare::before {
  content: "";
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--kia-white1);
}

.compare_tray .btn_remove_compare:hover,
.compare_tray .btn_remove_compare:focus-visible {
  border-color: rgba(251, 246, 239, 0.48);
  background: rgba(251, 246, 239, 0.08);
}

.compare_tray .open_compare {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  font-size: 16px;
  color: #121212;
  background: rgba(251, 246, 239, 0.45);
}

.list_content {
  overflow: hidden;
}

.vehicle_group {
  margin-bottom: 32px;
  padding-bottom: 16px;
}

.vehicle_group h3 {
  display: inline-block;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(221, 216, 209, 0.8);
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--kia-white1);
}

.vehicle_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.vehicle_card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

article.ev9 {
  isolation: isolate;
}

article.ev9 .ev9_trace_svg {
  display: none;
}

article.ev9::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 30px;
  border: 2px solid rgba(199, 255, 238, 0.95);
  box-shadow:
    0 0 14px rgba(172, 255, 235, 0.28),
    0 0 30px rgba(125, 224, 208, 0.18);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  animation: ev9-border-flicker 1.15s ease-in-out infinite alternate;
}

article.ev9 > * {
  position: relative;
  z-index: 2;
}

article.ev9 .btn_compare {
  z-index: 5;
}

@keyframes ev9-border-flicker {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.vehicle_card .thumb {
  display: block;
  width: 100%;
  height: 220px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--kia-white2);
  position: relative;
}

.vehicle_card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.vehicle_card .thumb::before,
.vehicle_card .thumb::after {
  content: none;
}

.vehicle_card .btn_compare {
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  height: 220px;
  border: 0;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  background: rgba(18, 18, 18, 0.5);
  color: var(--kia-white1);
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background-color 0.25s ease;
  pointer-events: none;
  cursor: pointer;
}

.vehicle_card .btn_compare span {
  pointer-events: none;
}

.vehicle_card .btn_compare::after {
  content: "+";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Outfit", sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  background: rgba(251, 246, 239, 0.45);
}

.vehicle_card .btn_compare.is-selected {
  background: rgba(18, 18, 18, 0.62);
}

.vehicle_card .btn_compare.is-selected::after {
  content: "\2713";
  font-size: 26px;
}

.vehicle_card .btn_compare.is-full {
  background: rgba(18, 18, 18, 0.62);
}

.vehicle_card .btn_compare.is-full::after {
  content: "!";
  font-size: 28px;
}

.vehicle_card:hover .thumb img {
  transform: scale(1.04);
}

.vehicle_card:hover .btn_compare,
.vehicle_card:focus-within .btn_compare,
.vehicle_card .btn_compare:focus-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.vehicle_card .meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vehicle_card h4 {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--kia-white1);
  line-height: 1;
}

.vehicle_card p {
  font-size: 16px;
  color: var(--kia-white2);
}

.vehicle_card p b {
  color: var(--kia-white1);
  font-weight: 600;
}

.vehicle_card .actions {
  display: flex;
  gap: 8px;
}

.vehicle_card .actions a {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 0;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  white-space: nowrap;
  color: var(--kia-white1);
}

.vehicle_card .actions .btn_build {
  flex: 0.96 1 0;
}

.vehicle_card .actions .btn_detail {
  flex: 1.04 1 0;
  min-width: 126px;
}

.assistant_banner {
  margin-top: 12px;
  margin-bottom: 24px;
  padding: 64px 32px;
  border-radius: 32px;
  border: 1px solid rgba(251, 246, 239, 0.14);
  background: rgba(251, 246, 239, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.assistant_banner .copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.assistant_banner .copy p {
  font-size: 16px;
  color: var(--kia-white2);
}

.assistant_banner .copy h4 {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--kia-white1);
}

.assistant_banner .cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 16px 32px;
  border-radius: 999px;
  /* background: rgba(251, 246, 239, 0.45); */
  color: var(--kia-white1);
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
}

.assistant_banner .cta i {
  color: var(--kia-white1);
  /* font-size: 20px; */
  font-size: 1.5rem;
}

.assistant_banner .white_origin:hover{
  border: 1px solid #ABF4F6;
  border-color: rgba(160, 247, 255, 0.92);
  color: var(--kia-white1);
  box-shadow:
    inset 0 5px 10px rgba(255, 255, 255, 0.5),
    inset 0 -3px 5px rgba(0, 0, 0, 0.05),
    0px 0px 11px 8px rgba(172, 255, 235, 0.26);
}