/* ============================================================
   NZCLUB - 오늘여행사 리뉴얼
   Design: Pure New Zealand (하이호주 스타일 적용)
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors */
  --nz-navy: #0f1b3d;
  --nz-blue: #3b5ccc;
  --nz-blue-light: #eef1fb;
  --nz-teal: #2d8a6e;
  --nz-gold: #c8952e;
  --nz-dark: #1a1f36;
  --nz-text: #2a2e45;
  --nz-text-muted: #6b7094;
  --nz-border: #e8eaf0;
  --nz-bg-light: #f6f7fb;
  --nz-white: #ffffff;

  /* Typography */
  --font-display: "DM Sans", sans-serif;
  --font-body:
    "Pretendard Variable", "Pretendard", -apple-system, BlinkMacSystemFont,
    sans-serif;

  /* Spacing */
  --section-py: 4rem;
  --section-py-lg: 5rem;

  --hd-primary: #1a1a2e;
  --hd-accent: #3b5ccc;
  --hd-accent-hover: #1badff;
  --hd-white: #ffffff;
  --hd-gray-50: #f8f9fa;
  --hd-gray-100: #f1f3f5;
  --hd-gray-200: #e9ecef;
  --hd-gray-300: #dee2e6;
  --hd-gray-400: #ced4da;
  --hd-gray-500: #adb5bd;
  --hd-gray-600: #868e96;
  --hd-gray-700: #495057;
  --hd-gray-800: #343a40;
  --hd-gray-900: #212529;
  --hd-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  --hd-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --hd-radius: 12px;
  --hd-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --hd-font:
    "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --hd-max-width: 1280px;
  --hd-height: 72px;
  --hd-nav-height: 52px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--nz-text);
  background: var(--nz-white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.text-center {
  text-align: center;
}

.text-blue {
  color: var(--nz-blue);
}

.text-teal {
  color: var(--nz-teal);
}

.text-gold {
  color: var(--nz-gold);
}

.text-white {
  color: #fff;
}

.fw-600 {
  font-weight: 600;
}

.mt-10 {
  margin-top: 2.5rem;
}

.bg-white {
  background: var(--nz-white);
}

.bg-light {
  background: var(--nz-bg-light);
}

.icon-xs {
  width: 14px;
  height: 14px;
}

.icon-sm {
  width: 18px;
  height: 18px;
}

.icon-md {
  width: 24px;
  height: 24px;
}

.icon-lg {
  width: 40px;
  height: 40px;
}

.icon-promo1 {
  width: auto;
  height: auto;
}

.icon-promo2 {
  width: auto;
  height: auto;
}

/* ── Section ──────────────────────────────────────────────── */
.section {
  padding: var(--section-py) 0;
}

.section--compact {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--section-py-lg) 0;
  }

  .section--compact {
    padding: 4rem 0;
  }
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: var(--nz-blue-light);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--nz-blue);
  margin-bottom: 1rem;
}

.section__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--nz-dark);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .section__title {
    font-size: 1.875rem;
  }
}

.section__subtitle {
  font-size: 0.9375rem;
  color: var(--nz-text-muted);
  margin-top: 0.75rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid transparent;
  width: unset;
}

.btn:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn--blue {
  background: var(--nz-blue);
  color: #fff;
}

.btn--kakao {
  background: #fee500;
  color: #3b1e00;
}

.btn--outline-blue {
  border-color: var(--nz-blue);
  color: var(--nz-blue);
  background: transparent;
}

.btn--outline-white {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ── Header (TRENML Style) ────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

/* ── 상단 바: 로고 + 검색 + 유틸리티 ── */
.header__topbar {
  background: #fff;
  border-bottom: 1px solid var(--nz-border);
}

.header__topbar-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: 70px;
  justify-content: space-between;
}

/* 로고 */
.header__logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.header__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.header__logo-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.header__logo-name {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--nz-navy);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.header__logo-sub {
  font-size: 0.625rem;
  color: var(--nz-text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header__logo-txt-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .header__logo-txt-img {
    display: none;
  }
}

/* 검색창 */
.header__search-wrap {
  flex: 1;
  max-width: 520px;
}

.header__search-form {
  display: flex;
  align-items: center;
  background: #f4f5f8;
  border-radius: 9999px;
  overflow: hidden;
  border: 1.5px solid transparent;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.header__search-form:focus-within {
  border-color: var(--nz-blue);
  box-shadow: 0 0 0 3px rgba(59, 92, 204, 0.1);
  background: #fff;
}

.header__search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  color: var(--nz-text);
  font-family: var(--font-body);
  outline: none;
}

.header__search-input::placeholder {
  color: var(--nz-text-muted);
}

.header__search-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--nz-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.header__search-btn:hover {
  background: #2d4ab0;
}

.header__search-btn svg {
  width: 17px;
  height: 17px;
}

/* 유틸리티 버튼 영역 */
.header__utils {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

.header__util-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.35rem 0.6rem;
  border-radius: 0.5rem;
  color: var(--nz-text);
  font-size: 0.7rem;
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.header__util-btn .badge {
  position: absolute;
  top: -8px;
  left: 25px;
  min-width: 15px;
  height: 15px;
  padding: 0 5px;
  border-radius: 50%;
  background-color: red;
  color: #fff;
  font-size: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__util-btn svg {
  width: 20px;
  height: 20px;
}

.header__util-btn:hover {
  background: var(--nz-bg-light);
  color: var(--nz-blue);
}

.header__util-btn--join {
  color: var(--nz-blue);
  font-weight: 600;
}

.header__util-welcome {
  font-size: 0.8rem;
  color: var(--nz-text-muted);
  white-space: nowrap;
  padding: 0 0.25rem;
}

.header__util-name {
  color: var(--nz-blue);
  font-weight: 600;
}

.header__util-label {
  font-size: 0.68rem;
  line-height: 1;
}

/* 모바일 토글 */
.header__mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  color: var(--nz-text);
  transition: background 0.2s;
  flex-shrink: 0;
}

.header__mobile-toggle:hover {
  background: var(--nz-bg-light);
}

.header__mobile-toggle svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1023px) {
  .header__mobile-toggle {
    display: flex;
  }

  .header__search-wrap {
    max-width: 260px;
  }

  .header__util-btn .header__util-label {
    display: none;
  }

  .container {
    max-width: 100%;
    margin: 0 auto;
  }

  .header__nav-inner {
    display: none !important;
  }

  main {
    padding-top: unset !important;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 640px) {
  /* .header__search-wrap {
    display: none;
  }
  .header__util-welcome {
    display: none;
  } */
}

/* ── 하단 바: 카테고리 메뉴 + 카트/마이페이지 ── */
.header__nav {
  background: #fff;
  border-bottom: 1px solid var(--nz-border);
  transition: box-shadow 0.3s;
  padding: 5px 0px 5px 0px;
}

.header__nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header__nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}

/* 카테고리 메뉴 */
.header__menu {
  display: none;
  align-items: center;
  gap: 0;
  height: 100%;
}

.header__menu .active_ {
  color: var(--nz-blue);
  border-bottom-color: var(--nz-blue);
}

@media (min-width: 1024px) {
  .header__menu {
    display: flex;
  }
}

.header__menu-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.header__menu-link {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 0.85rem;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--nz-text);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
  position: relative;
}

.header__menu-link:hover {
  color: var(--nz-blue);
  border-bottom-color: var(--nz-blue);
}

.header__menu-item.active .header__menu-link {
  color: var(--nz-blue);
  font-weight: 700;
  border-bottom-color: var(--nz-blue);
}

.header__menu-item.spe:hover .trenvl-hd-dropdown.sub_nav_menu {
  display: flex;
}

.header__menu-item .trenvl-hd-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--hd-white);
  border-radius: var(--hd-radius);
  box-shadow: var(--hd-shadow-lg);
  padding: 16px 20px;
  min-width: 300px;
  display: none;
  flex-wrap: wrap;
  column-gap: 0;
  row-gap: 0;
  z-index: 1000;
  border: 1px solid var(--hd-gray-200);
}

.header__menu-item .trenvl-hd-dropdown a {
  display: block;
  width: 48%;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--hd-gray-700);
  text-decoration: none;
  border-bottom: 1px solid var(--hd-gray-100);
  border-radius: 0;
  transition: var(--hd-transition);
  box-sizing: border-box;
}

/* Dropdown */
.header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--nz-border);
  border-radius: 0.75rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s;
  z-index: 200;
}

.header__menu-item:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__dropdown-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  color: var(--nz-text-muted);
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.header__dropdown-link:hover {
  background: var(--nz-blue-light);
  color: var(--nz-blue);
}

/* 하단 nav-right: 로그인/회원가입 + 카트/마이페이지 */
.header__nav-welcome {
  font-size: 0.8rem;
  color: var(--nz-text-muted);
  white-space: nowrap;
  padding: 0 0.25rem;
}

.header__nav-welcome-name {
  color: var(--nz-blue);
  font-weight: 600;
}

.header__nav-icon-btn--join {
  color: var(--nz-blue);
  font-weight: 600;
}

.header__nav-right {
  display: none;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .header__nav-right {
    display: flex;
  }
}

@media (max-width: 640px) {
  .header__logo-text-wrap {
    display: none;
  }
}

.header__nav-icon-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.3rem 0.6rem;
  border-radius: 0.5rem;
  color: var(--nz-text);
  font-size: 0.68rem;
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}

.header__nav-icon-btn .cart_count {
  position: absolute;
  top: -8px;
  left: 25px;
  min-width: 15px;
  height: 15px;
  padding: 0 5px;
  border-radius: 50%;
  background-color: red;
  color: #fff;
  font-size: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__nav-icon-btn svg {
  width: 18px;
  height: 18px;
}

.header__nav-icon-btn:hover {
  background: var(--nz-bg-light);
  color: var(--nz-blue);
}

.header__nav-icon-label {
  font-size: 0.68rem;
  line-height: 1;
}

.header__mystore-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.1rem;
  background: var(--nz-blue);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 9999px;
  transition:
    background 0.2s,
    transform 0.2s;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 0.25rem;
}

.header__mystore-btn:hover {
  background: #2d4ab0;
  transform: scale(1.03);
}

/* ── 모바일 메뉴 ── */
.header__mobile-menu {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--nz-border);
  padding: 0.75rem 0 1rem;
  max-height: 80vh;
  overflow-y: auto;
}

.header__mobile-menu.open {
  display: block;
}

/* 모바일 유틸 */
.header__mobile-utils {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem 0 0.75rem;
}

.header__mobile-util-link {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  background: var(--nz-bg-light);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--nz-text);
  transition:
    background 0.2s,
    color 0.2s;
  text-decoration: none;
}

.header__mobile-util-link:hover {
  background: var(--nz-blue-light);
  color: var(--nz-blue);
}

.header__mobile-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--nz-text);
  border-bottom: 1px solid #f0f0f5;
  text-decoration: none;
}

.header__mobile-link:hover {
  color: var(--nz-blue);
}

.header__mobile-divider {
  height: 1px;
  background: var(--nz-border);
  margin: 0.5rem 0;
}

/* ── Hero Slider ──────────────────────────────────────────── */
.hero {
  position: relative;
  height: 540px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    height: 620px;
  }
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero__slide--active {
  opacity: 1;
}

.hero__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 27, 61, 0.75) 0%,
    rgba(15, 27, 61, 0.35) 0%
  );
}

.hero__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero__text {
  position: absolute;
  /* padding-left: 15rem; */
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s,
    transform 0.6s;
  pointer-events: none;
}

.hero__text--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nz-gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero__title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.25rem;
  }
}

.hero__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.hero_price {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
}

/* @media (max-width: 768px) {
  .hero__text {
    padding-left: 15rem;
  }
  .hero__subtitle {
    font-size: 1.125rem;
  }
  .hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(0.3077rem);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }

  .icon-md {
    width: 2rem;
    height: 2rem;
  }

  .category-icon {
    display: none !important;
  }
  .category-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem;
  }
  .category-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid #f0f0f5;
    margin-bottom: 1rem;
    transition: all 0.3s;
  }
  .category-card__image {
    width: 100% !important;
    height: auto !important;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
  }
  .category-card__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--nz-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    height: unset !important;
  }
  .category-card__features {
    line-height: 1rem;
    height: unset !important;
  }
  .category-card {
    height: 21.65rem;
    display: flex;
    gap: 1rem;
    background: #fff;
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid #f0f0f5;
    margin-bottom: 1rem;
    transition: all 0.3s;
  }
  .reason-grid {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem;
  }
  .review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem;
  }
} */

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--nz-blue);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s;
}

.hero__cta:hover {
  background: #2d4ab0;
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(59, 92, 204, 0.3);
}

/* Hero arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}

.hero__arrow--prev {
  left: 1rem;
}

.hero__arrow--next {
  right: 1rem;
}

@media (min-width: 1024px) {
  .hero__arrow--prev {
    left: 2rem;
  }

  .hero__arrow--next {
    right: 2rem;
  }
}

/* Hero dots */
.hero__dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.5rem;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.hero__dot--active {
  background: #fff;
  width: 28px;
  border-radius: 5px;
}

/* ── Product Cards ────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-section__buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.product-card {
  display: block;
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #f0f0f5;
  transition: all 0.3s;
}

.product-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.product-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.bg-red-500 {
  background: #ef4444;
}

.bg-blue-600 {
  background: var(--nz-blue);
}

.bg-teal-600 {
  background: var(--nz-teal);
}

.bg-amber-600 {
  background: var(--nz-gold);
}

.product-card__body {
  padding: 1rem 1.25rem;
}

.product-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--nz-dark);
  margin-bottom: 0.75rem;

  line-height: 1.4;
  height: calc(1.4rem * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__features {
  margin-bottom: 1rem;
}

.product-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--nz-text-muted);
  margin-bottom: 0.375rem;
}

.product-card__features li i {
  margin-top: 2px;
  flex-shrink: 0;
}

.product-card__price {
  padding-top: 0.75rem;
  border-top: 1px solid #f0f0f5;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.product-card__price-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--nz-blue);
}

.product-card__price-unit {
  font-size: 0.75rem;
  color: var(--nz-text-muted);
}

/* ── Category Section ─────────────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.category-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon i {
  width: 20px;
  height: 20px;
}

.category-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--nz-dark);
}

.category-card {
  display: flex;
  gap: 1rem;
  background: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid #f0f0f5;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.category-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.category-card__image {
  width: 112px;
  height: 96px;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.category-card:hover .category-card__image img {
  transform: scale(1.05);
}

.category-card__body {
  flex: 1;
  min-width: 0;
}

.category-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--nz-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  height: calc(1.4rem * 2);
}

.category-card__features {
  line-height: 1rem;
  /* height: calc(1rem * 1); */
}

.category-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  font-size: 0.6875rem;
  color: var(--nz-text-muted);
  margin-bottom: 0.25rem;
}

.category-card__features li span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.category-card__features li i {
  flex-shrink: 0;
}

.category-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.category-card__price span:first-child {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.category-card__price-unit {
  font-size: 0.625rem;
  color: var(--nz-text-muted);
}

/* ── Promo Banners ────────────────────────────────────────── */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: end;
  gap: 1.5rem;
  color: #fff;
}

.promo-card--navy {
  /* background: linear-gradient(135deg, #0f1b3d, #2a3f7a); */
  background: #b7e0e0;
}

.promo-card--teal {
  /* background: linear-gradient(135deg, #1a6b5a, #2d9a8a); */
  background: #fceee5;
}

.promo-card__body {
  flex: 1;
  position: relative;
  z-index: 1;
}

.promo-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  color: #212529;
}

@media (min-width: 1024px) {
  .promo-card__title {
    font-size: 1.375rem;
  }
}

.promo-card__text {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.3);
  font-weight: 600;
  margin-bottom: 1rem;
}

.promo-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: #212529;
  transition: color 0.2s;
}

.promo-card:hover .promo-card__link {
  color: #fff;
}

.promo-card:hover .promo-card__link i {
  transform: translateX(4px);
}

.promo-card__link i {
  transition: transform 0.3s;
}

.promo-card__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  /* background: rgba(255, 255, 255, 0.1); */
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .promo-card__icon {
    width: 260px;
    height: 80px;
  }

  .promocard_icon {
    width: 180px;
    height: 80px;
  }
}

.promo-card__deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.promo-card__deco--1 {
  width: 160px;
  height: 160px;
  right: -32px;
  bottom: -32px;
}

.promo-card__deco--2 {
  width: 96px;
  height: 96px;
  right: -16px;
  top: -16px;
}

/* ── Why NZClub ───────────────────────────────────────────── */
.why-section {
  position: relative;
  overflow: hidden;
}

.why-section__deco {
  position: absolute;
  border-radius: 50%;
  opacity: 0.03;
}

.why-section__deco--1 {
  width: 384px;
  height: 384px;
  top: 0;
  right: 0;
  background: var(--nz-blue);
}

.why-section__deco--2 {
  width: 288px;
  height: 288px;
  bottom: 0;
  left: 0;
  background: var(--nz-teal);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-item__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--nz-blue);
}

@media (min-width: 1024px) {
  .stat-item__value {
    font-size: 1.875rem;
  }
}

.stat-item__label {
  font-size: 0.75rem;
  color: var(--nz-text-muted);
  margin-top: 0.375rem;
}

.reason-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .reason-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.reason-card {
  text-align: center;
}

.reason-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: var(--nz-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: transform 0.3s;
}

.reason-card:hover .reason-card__icon {
  transform: scale(1.1);
}

.reason-card__icon i {
  width: 28px;
  height: 28px;
  color: var(--nz-blue);
}

.reason-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--nz-dark);
  margin-bottom: 0.5rem;
}

.reason-card__desc {
  font-size: 0.875rem;
  color: var(--nz-text-muted);
  line-height: 1.6;
}

/* ── Review Section ───────────────────────────────────────── */
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .review-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.review-card {
  display: block;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #f0f0f5;
  padding: 1.25rem;
  transition: all 0.3s;
  max-width: 245px;
}

/* .review-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
} */

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.review-card__type {
  font-size: 0.625rem;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: var(--nz-blue-light);
  color: var(--nz-blue);
}

.review-card__stars {
  display: flex;
  gap: 2px;
}

.star-filled {
  color: var(--nz-gold);
  fill: var(--nz-gold);
}

.review-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--nz-dark);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
  line-height: 1.5;
  height: calc(1.5em * 2);
}

/* .review-card:hover .review-card__title {
  color: var(--nz-blue);
} */

.review-card__excerpt {
  font-size: 0.75rem;
  color: var(--nz-text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid #f8f8fa;
}

.review-card__author {
  font-size: 0.6875rem;
  color: #999;
}

.review-card__more {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--nz-blue);
  opacity: 0;
  transition: opacity 0.3s;
}

/* .review-card:hover .review-card__more {
  opacity: 1;
} */

/* ── Keyword Travel ───────────────────────────────────────── */
.keyword-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  /* 4 cột */
  gap: 1.5rem 2rem;
  /* khoảng cách: row / column */
  max-width: 720px;
  /* rộng hơn chút */
  margin: 0 auto;
  justify-items: center;
  /* canh giữa từng item */
}

@media (max-width: 767px) {
  .keyword-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    max-width: 520px;
  }
}

.keyword-item {
  width: 100%;
  max-width: 160px;
  padding: 1.25rem 1rem;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
}

.keyword-item:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.keyword-item__icon {
  width: 68px;
  height: 68px;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.keyword-item:hover .keyword-item__icon {
  transform: scale(1.08);
}

.keyword-item__icon i {
  width: 50px;
  height: 50px;
}

.keyword-item__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--nz-text);
}

/* ── Event Banner ─────────────────────────────────────────── */
.event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 768px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.event-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  transition: transform 0.3s;
}

.event-card:hover {
  transform: translateY(-2px);
}

.event-card__emoji {
  font-size: 2.5rem;
}

@media (min-width: 1024px) {
  .event-card__emoji {
    font-size: 3rem;
  }
}

.event-card__body {
  flex: 1;
}

.event-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

@media (min-width: 1024px) {
  .event-card__title {
    font-size: 1.25rem;
  }
}

.event-card__subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.event-card__arrow {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}

.event-card:hover .event-card__arrow {
  color: #fff;
  transform: translateX(4px);
}

.event-card__deco {
  position: absolute;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  right: -24px;
  bottom: -24px;
}

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 5rem 0;
  }
}

.cta-section__bg {
  position: absolute;
  inset: 0;
}

.cta-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 27, 61, 0.92),
    rgba(30, 60, 120, 0.85)
  );
}

.cta-section__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .cta-section__title {
    font-size: 1.875rem;
  }
}

.cta-section__subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .cta-section__subtitle {
    font-size: 1rem;
  }
}

.cta-section__buttons {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  gap: 1rem;
}

/* ── Board Section ────────────────────────────────────────── */
.board-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .board-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.board-panel {
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #f0f0f5;
  overflow: hidden;
}

.board-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f0f0f5;
}

.board-panel__header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.board-panel__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--nz-dark);
}

.board-panel__more {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--nz-blue);
}

.board-panel__more:hover {
  text-decoration: underline;
}

.board-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid #fafafa;
  transition: background 0.2s;
  cursor: pointer;
}

.board-item:hover {
  background: var(--nz-blue-light);
}

.board-item:last-child {
  border-bottom: none;
}

.board-item__left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex: 1;
}

.board-item__badge {
  flex-shrink: 0;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}

.board-item__badge--answer {
  background: rgba(45, 138, 110, 0.1);
  color: var(--nz-teal);
}

.board-item__text {
  font-size: 0.875rem;
  color: var(--nz-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.board-item__text--answer {
  color: var(--nz-text-muted);
}

.board-item__new {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
}

.board-item__date {
  flex-shrink: 0;
  font-size: 0.6875rem;
  color: #999;
  margin-left: 0.75rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #141833;
  color: rgba(255, 255, 255, 0.6);
}

.footer__main {
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .footer__main {
    padding: 4rem 0;
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
    gap: 2.5rem;
  }
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f0f0f5;
}

.footer__logo-accent {
  color: #7b93e0;
}

.footer__logo-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 1rem 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.footer__social-link i {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: #e0e0e8;
  margin-bottom: 1rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

.footer__contact-item i {
  margin-top: 2px;
  flex-shrink: 0;
  color: #7b93e0;
}

.footer__phone {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #f0f0f5;
}

.footer__phone--sm {
  font-size: 0.9375rem;
}

.footer__small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.footer__small--muted {
  color: rgba(255, 255, 255, 0.35);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__link {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer__link:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
}

@media (min-width: 768px) {
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.footer__partner-badge {
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

.footer__copyright {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── Floating Buttons ─────────────────────────────────────── */
.floating-btns {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.floating-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}

.floating-btn:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.floating-btn i {
  width: 20px;
  height: 20px;
}

.floating-btn--top {
  background: #fff;
  border: 1px solid #e0e0e8;
  color: var(--nz-text-muted);
}

.floating-btn--top i {
  color: var(--nz-text-muted);
}

.floating-btn--kakao {
  background: #fee500;
}

.floating-btn--kakao i {
  color: #3b1e00;
}

.floating-btn--phone {
  background: var(--nz-blue);
}

.floating-btn--phone i {
  color: #fff;
}

/* ── AOS overrides ────────────────────────────────────────── */
[data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.answer_box_main div * {
  line-height: 1.5 !important;
  font-family: inherit !important;
  font-size: 0.875rem;
  padding: 1rem;
}

.board-item__date .arrow {
  display: block;
  width: 1rem;
  height: 0.5rem;
  background: no-repeat center / cover;
  background-image: url(/images/ico/question_box_arrow.png);
}

.trenvl-search-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.trenvl-search-popup.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}

.trenvl-search-popup-inner {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  animation: searchPopupIn 0.3s ease;
}

@keyframes searchPopupIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trenvl-search-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.trenvl-search-popup-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #212529;
  margin: 0;
}

.trenvl-search-popup-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f1f3f5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #868e96;
}

.trenvl-search-popup-close:hover {
  background: #e9ecef;
}

.trenvl-search-popup-close svg {
  width: 18px;
  height: 18px;
}

.trenvl-search-popup-input {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 14px;
  padding: 0 8px 0 16px;
  height: 52px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.trenvl-search-popup-input:focus-within {
  border-color: var(--hd-accent);
  background: #ffffff;
}

.trenvl-search-popup-input input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: var(--hd-gray-800);
  font-family: var(--hd-font);
}

.trenvl-search-popup-input input::placeholder {
  color: var(--hd-gray-400);
}

.trenvl-search-popup-input .sp-search-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--hd-accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--hd-transition);
  flex-shrink: 0;
}

.trenvl-search-popup-input .sp-search-btn:hover {
  background: var(--hd-accent-hover);
}

.trenvl-search-popup-input .sp-search-btn svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

.trenvl-search-suggest {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  max-height: 300px;
  overflow-y: auto;
  display: none;
}

.trenvl-search-suggest li a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--hd-gray-700);
  text-decoration: none;
  border-radius: 10px;
  transition: var(--hd-transition);
}

.trenvl-search-suggest li a:hover {
  background: var(--hd-gray-50);
  color: var(--hd-accent);
}

.header__mobile-menu .container {
  max-width: 90%;
  margin: 0;
  padding: 0;
  background: white;
  min-height: 100%;
  height: auto;
  position: relative;
  box-shadow: -0.3rem 0 1.5rem rgba(0, 0, 0, 0.12);
}

.header__mobile-top {
  display: flex;
  padding: 3.9143rem 3rem;
  /* gap: 32rem; */
  justify-content: space-between;
}

.header__mobile-top a {
  all: unset;
}

.header__mobile-top .header__logo-wrap {
  font-size: 2.4rem;
  letter-spacing: -1px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #252525;
  font-weight: bold;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1.3714rem;
  text-decoration: none;
}

.header__mobile-top .header__nav-icon-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2857rem;
  padding: 0rem 1.3714rem;
  border-radius: 1.1429rem;
  color: var(--nz-text);
  font-size: 1.5543rem;
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}

@media screen and (max-width: 850px) {
  .btn-close-menu {
    position: absolute;
    right: 5%;
    top: 2%;
    font-size: 3rem;
  }

  .hero__arrow {
    width: 3rem;
    height: 3rem;
  }

  .hero__text {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .icon-xs {
    width: 2rem;
    height: 2rem;
  }

  .icon-sm {
    width: 2.5714rem !important;
    height: 2.5714rem !important;
  }

  .icon-md {
    width: 3.4286rem;
    height: 3.4286rem;
  }

  .icon-lg {
    width: 5.7143rem;
    height: 5.7143rem;
  }

  .icon-promo1 {
    width: auto;
    height: auto;
  }

  .icon-promo2 {
    width: auto;
    height: auto;
  }

  .section {
    padding: var(--section-py) 0;
  }

  .section--compact {
    padding: 6.8571rem 0;
  }

  .section__header {
    text-align: center;
    margin-bottom: 6.8571rem;
  }

  .section__badge {
    display: inline-flex;
    align-items: center;
    gap: 1.1429rem;
    padding: 0.8571rem 2.2857rem;
    border-radius: 4374.5625px;
    background: var(--nz-blue-light);
    font-size: 2rem;
    font-weight: 500;
    color: var(--nz-blue);
    margin-bottom: 2.2857rem;
  }

  .section__title {
    font-size: 3.4286rem;
    font-weight: 800;
    color: var(--nz-dark);
    line-height: 1.3;
  }

  .section__subtitle {
    font-size: 2.1429rem;
    color: var(--nz-text-muted);
    margin-top: 1.7143rem;
  }

  /* ── Buttons ──────────────────────────────────────────────── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 1.1429rem;
    padding: 1.7143rem 4rem;
    border-radius: 1428.4286rem;
    font-size: 2rem;
    font-weight: 600;
    transition: all 0.3s;
    border: 0.2857rem solid #dbdbdb;
    width: unset;
  }

  .header__topbar-inner {
    display: flex;
    align-items: center;
    gap: 2.8571rem;
    height: 12rem;
    justify-content: space-between;
  }

  /* 로고 */
  .header__logo-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 1.3714rem;
    text-decoration: none;
  }

  .header__logo-img {
    height: 5.7143rem;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
  }

  .header__logo-text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
  }

  .header__logo-name {
    font-size: 2.4286rem;
    font-weight: 800;
    color: var(--nz-navy);
    white-space: nowrap;
  }

  .header__logo-sub {
    font-size: 1.4286rem;
    color: var(--nz-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .header__logo-txt-img {
    display: flex;
  }

  .header__search-wrap {
    max-width: 40rem;
  }

  .header__search-form {
    display: flex;
    align-items: center;
    /* background: #f4f5f8; */
    background: none;
    border-radius: 1428.4286rem;
    overflow: hidden;
    border: 0.2143rem solid transparent;
    transition:
      border-color 0.2s,
      box-shadow 0.2s;
  }

  .header__search-form:focus-within {
    border-color: var(--nz-blue);
    box-shadow: 0 0 0 0.4286rem rgba(59, 92, 204, 0.1);
    background: #fff;
  }

  .header__search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 1.3714rem 2.8571rem;
    font-size: 1.3rem;
    color: var(--nz-text);
    font-family: var(--font-body);
    outline: none;
  }

  .header__search-input::placeholder {
    color: var(--nz-text-muted);
  }

  .header__search-btn {
    flex-shrink: 0;
    width: 5.4rem;
    height: 5.4rem;
    border-radius: 50%;
    /* background: var(--nz-blue);
    color: #fff; */
    background: none;
    color: var(--nz-text);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.4286rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
  }

  .header__search-btn:hover {
    background: #2d4ab0;
  }

  /* .header__search-btn svg {
    width: 4.4rem;
    height: 4.4rem;
  } */
  .header__search-btn svg {
    width: 5.4rem;
    height: 5.4rem;
  }

  /* 유틸리티 버튼 영역 */
  .header__utils {
    display: flex;
    align-items: center;
    gap: 0.5714rem;
    flex-shrink: 0;
  }

  .header__util-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2857rem;
    padding: 0.8rem 1.3714rem;
    border-radius: 1.1429rem;
    color: var(--nz-text);
    font-size: 1.6rem;
    font-weight: 500;
    transition:
      background 0.2s,
      color 0.2s;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    position: relative;
  }

  .header__util-btn .badge {
    position: absolute;
    top: -1.1429rem;
    left: 3.5714rem;
    min-width: 2.1429rem;
    height: 2.1429rem;
    padding: 0 0.7143rem;
    border-radius: 50%;
    background-color: red;
    color: #fff;
    font-size: 1.1429rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* .header__util-btn svg {
    width: 3.6rem;
    height: 3.6rem;
  } */
  .header__util-btn svg {
    width: 4.6rem;
    height: 6.6rem;
  }

  .header__util-btn:hover {
    background: var(--nz-bg-light);
    color: var(--nz-blue);
  }

  .header__util-btn--join {
    color: var(--nz-blue);
    font-weight: 600;
  }

  .header__util-welcome {
    font-size: 1.8286rem;
    color: var(--nz-text-muted);
    white-space: nowrap;
    padding: 0 0.5714rem;
  }

  .header__util-name {
    color: var(--nz-blue);
    font-weight: 600;
  }

  .header__util-label {
    font-size: 1.5543rem;
    line-height: 1;
  }

  /* 모바일 토글 */
  .header__mobile-toggle {
    align-items: center;
    justify-content: center;
    width: 5.7143rem;
    height: 5.7143rem;
    border-radius: 1.1429rem;
    color: var(--nz-text);
    transition: background 0.2s;
    flex-shrink: 0;
  }

  .header__mobile-toggle:hover {
    background: var(--nz-bg-light);
  }

  .header__mobile-toggle svg {
    width: 3.4286rem;
    height: 3.4286rem;
  }

  /* ── 하단 바: 카테고리 메뉴 + 카트/마이페이지 ── */
  .header__nav {
    background: #fff;
    border-bottom: 0.1429rem solid var(--nz-border);
    transition: box-shadow 0.3s;
    /* padding: 0.7143rem 0rem 0.7143rem 0rem; */
    padding: 0;
  }

  .header__nav.scrolled {
    box-shadow: 0 0.2857rem 2.8571rem rgba(0, 0, 0, 0.08);
  }

  .header__nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 6.8571rem;
  }

  /* 카테고리 메뉴 */
  .header__menu {
    display: none;
    align-items: center;
    gap: 0;
    height: 100%;
  }

  .header__menu-item {
    position: relative;
    /* height: 100%; */
    height: fit-content;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    align-items: revert;
  }

  .header__menu-item a {
    display: block;
    padding: 1.7143rem 3rem;
    font-size: 3.3rem;
    font-weight: 600;
    color: var(--nz-text);
    /* border-bottom: 0.1429rem solid #f0f0f5; */
    border-bottom: 0.1429rem solid #fff;
    text-decoration: none;
    width: 100%;
  }

  .header__menu-link {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0 1.9429rem;
    font-size: 2.2286rem;
    font-weight: 500;
    color: var(--nz-text);
    white-space: nowrap;
    border-bottom: 0.2857rem solid transparent;
    transition:
      color 0.2s,
      border-color 0.2s;
    position: relative;
  }

  .header__menu-link:hover {
    color: var(--nz-blue);
    border-bottom-color: var(--nz-blue);
  }

  .header__menu-item.active .header__menu-link {
    color: var(--nz-blue);
    font-weight: 700;
    border-bottom-color: var(--nz-blue);
  }

  .header__menu-item.spe:hover .trenvl-hd-dropdown.sub_nav_menu {
    display: flex;
  }

  .header__menu-item .trenvl-hd-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--hd-white);
    border-radius: var(--hd-radius);
    box-shadow: var(--hd-shadow-lg);
    padding: 2.2857rem 2.8571rem;
    min-width: 28.5714rem;
    display: none;
    flex-wrap: wrap;
    column-gap: 0;
    row-gap: 0;
    z-index: 1000;
    border: 0.1429rem solid var(--hd-gray-200);
  }

  .header__menu-item .trenvl-hd-dropdown a {
    display: block;
    width: 48%;
    padding: 1.4286rem 1.7143rem;
    font-size: 1.8571rem;
    font-weight: 500;
    color: var(--hd-gray-700);
    text-decoration: none;
    border-bottom: 0.1429rem solid var(--hd-gray-100);
    border-radius: 0;
    transition: var(--hd-transition);
    box-sizing: border-box;
  }

  /* Dropdown */
  .header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 28.5714rem;
    background: #fff;
    border: 0.1429rem solid var(--nz-border);
    border-radius: 1.7143rem;
    box-shadow: 0 1.7143rem 5.7143rem rgba(0, 0, 0, 0.1);
    padding: 1.1429rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1.1429rem);
    transition: all 0.25s;
    z-index: 200;
  }

  .header__menu-item:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header__dropdown-link {
    display: block;
    padding: 1.1429rem 1.7143rem;
    font-size: 1.8571rem;
    color: var(--nz-text-muted);
    border-radius: 1.1429rem;
    transition: all 0.2s;
  }

  .header__dropdown-link:hover {
    background: var(--nz-blue-light);
    color: var(--nz-blue);
  }

  /* 하단 nav-right: 로그인/회원가입 + 카트/마이페이지 */
  .header__nav-welcome {
    font-size: 1.8286rem;
    color: var(--nz-text-muted);
    white-space: nowrap;
    padding: 0 0.5714rem;
  }

  .header__nav-welcome-name {
    color: var(--nz-blue);
    font-weight: 600;
  }

  .header__nav-icon-btn--join {
    color: var(--nz-blue);
    font-weight: 600;
  }

  .header__nav-right {
    display: none;
    align-items: center;
    gap: 1.1429rem;
    flex-shrink: 0;
  }

  .header__nav-icon-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2857rem;
    padding: 0.6857rem 1.3714rem;
    border-radius: 1.1429rem;
    color: var(--nz-text);
    font-size: 1.5543rem;
    font-weight: 500;
    transition:
      background 0.2s,
      color 0.2s;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
  }

  .header__nav-icon-btn .cart_count {
    position: absolute;
    top: -1.1429rem;
    left: 3.5714rem;
    min-width: 2.1429rem;
    height: 2.1429rem;
    padding: 0 0.7143rem;
    border-radius: 50%;
    background-color: red;
    color: #fff;
    font-size: 1.1429rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__nav-icon-btn svg {
    width: 4.5rem;
    height: 4.5rem;
  }

  .header__nav-icon-btn:hover {
    background: var(--nz-bg-light);
    color: var(--nz-blue);
  }

  .header__nav-icon-label {
    font-size: 2.2rem;
    line-height: 1;
  }

  .header__mystore-btn {
    display: inline-flex;
    align-items: center;
    padding: 1.0286rem 2.5143rem;
    background: var(--nz-blue);
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 1428.4286rem;
    transition:
      background 0.2s,
      transform 0.2s;
    text-decoration: none;
    white-space: nowrap;
    margin-left: 0.5714rem;
  }

  .header__mystore-btn:hover {
    background: #2d4ab0;
    transform: scale(1.03);
  }

  /* ── 모바일 메뉴 ── */
  .header__mobile-menu {
    display: none;
    background: transparent;
    /* border-bottom: 0.1429rem solid var(--nz-border); */
    border-bottom: none;
    padding: 1.7143rem 0 2.2857rem;
    /* max-height: 80vh; */
    max-height: 100vh;
    overflow-y: auto;
    position: fixed;
    left: 0;
    top: 0;
    /* bottom: 8rem; */
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .header__mobile-menu.open {
    display: block;
  }

  /* 모바일 유틸 */
  .header__mobile-utils {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1429rem;
    padding: 1.1429rem 0 1.7143rem;
  }

  .header__mobile-util-link {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.9429rem;
    background: var(--nz-bg-light);
    border-radius: 1428.4286rem;
    font-size: 1.8571rem;
    font-weight: 500;
    color: var(--nz-text);
    transition:
      background 0.2s,
      color 0.2s;
    text-decoration: none;
  }

  .header__mobile-util-link:hover {
    background: var(--nz-blue-light);
    color: var(--nz-blue);
  }

  .header__mobile-link {
    display: block;
    padding: 1.7143rem 0;
    font-size: 2.1429rem;
    font-weight: 600;
    color: var(--nz-text);
    border-bottom: 0.1429rem solid #f0f0f5;
    text-decoration: none;
  }

  .header__mobile-link:hover {
    color: var(--nz-blue);
  }

  .header__mobile-divider {
    height: 0.1429rem;
    background: var(--nz-border);
    margin: 1.1429rem 0;
  }

  .hero {
    position: relative;
    height: 77.1429rem;
    overflow: hidden;
  }

  .hero__slides {
    position: absolute;
    inset: 0;
  }

  .hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
  }

  .hero__slide--active {
    opacity: 1;
  }

  .hero__slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(15, 27, 61, 0.75) 0%,
      rgba(15, 27, 61, 0.35) 100%
    );
  }

  .hero__content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .hero__text {
    position: absolute;
    opacity: 0;
    transform: translateY(2.8571rem);
    transition:
      opacity 0.6s,
      transform 0.6s;
    pointer-events: none;
  }

  .hero__text--active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 1.1429rem;
    padding: 0.8571rem 2.2857rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(1.1429rem);
    border: 0.1429rem solid rgba(255, 255, 255, 0.2);
    border-radius: 1428.4286rem;
    font-size: 1.7143rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.8571rem;
    margin-top: 5rem;
  }

  .hero__badge-dot {
    width: 0.8571rem;
    height: 0.8571rem;
    border-radius: 50%;
    background: var(--nz-gold);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%,
    100% {
      opacity: 1;
    }

    50% {
      opacity: 0.4;
    }
  }

  .hero__title {
    font-size: 4.5714rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 2.2857rem;
  }

  .hero__subtitle {
    font-size: 2.2857rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5714rem;
  }

  .hero_price {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 1.1429rem;
    padding: 1.3rem 3.5rem;
    background: var(--nz-blue);
    color: #fff;
    font-size: 2.1429rem;
    font-weight: 600;
    border-radius: 1428.4286rem;
    transition: all 0.3s;
  }

  .hero__cta:hover {
    background: #2d4ab0;
    transform: scale(1.03);
    box-shadow: 0 1.1429rem 3.4286rem rgba(59, 92, 204, 0.3);
  }

  /* Hero arrows */
  .hero__arrow {
    width: 6.1429rem;
    height: 6.1429rem;
  }

  .hero__arrow:hover {
    background: rgba(255, 255, 255, 0.25);
  }

  .hero__arrow--prev {
    left: 2.2857rem;
  }

  .hero__arrow--next {
    right: 2.2857rem;
  }

  /* Hero dots */
  .hero__dots {
    position: absolute;
    bottom: 4.5714rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 1.1429rem;
  }

  .hero__dot {
    width: 1.4286rem;
    height: 1.4286rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
  }

  .hero__dot--active {
    background: #fff;
    width: 4rem;
    border-radius: 0.7143rem;
  }

  /* ── Product Cards ────────────────────────────────────────── */
  .product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.8571rem;
  }

  .product-card {
    display: block;
    background: #fff;
    border-radius: 1.7143rem;
    overflow: hidden;
    border: 0.1429rem solid #f0f0f5;
    transition: all 0.3s;
  }

  .product-card:hover {
    box-shadow: 0 1.7143rem 5.7143rem rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5714rem);
  }

  .product-card__image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
  }

  .product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }

  .product-card:hover .product-card__image img {
    transform: scale(1.05);
  }

  .product-card__badge {
    position: absolute;
    top: 1.7143rem;
    left: 1.7143rem;
    padding: 0.5714rem 1.7143rem;
    border-radius: 1428.4286rem;
    font-size: 1.7143rem;
    font-weight: 700;
    color: #fff;
  }

  .bg-red-500 {
    background: #ef4444;
  }

  .bg-blue-600 {
    background: var(--nz-blue);
  }

  .bg-teal-600 {
    background: var(--nz-teal);
  }

  .bg-amber-600 {
    background: var(--nz-gold);
  }

  .product-card__body {
    padding: 2.2857rem 2.8571rem;
  }

  .product-card__title {
    font-size: 2.2857rem;
    font-weight: 700;
    color: var(--nz-dark);
    margin-bottom: 1.7143rem;

    line-height: 1.4;
    height: calc(3.2rem * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-card__features {
    margin-bottom: 2.2857rem;
  }

  .product-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 1.1429rem;
    font-size: 1.7143rem;
    color: var(--nz-text-muted);
    margin-bottom: 0.8571rem;
  }

  .product-card__features li i {
    margin-top: 0.2857rem;
    flex-shrink: 0;
  }

  .product-card__features li span {
    font-size: 1.8rem;
  }

  .product-card__price {
    padding-top: 1.7143rem;
    border-top: 0.1429rem solid #f0f0f5;
    display: flex;
    align-items: baseline;
    gap: 0.5714rem;
  }

  .product-card__price-value {
    font-family: var(--font-display);
    font-size: 2.8571rem;
    font-weight: 700;
    color: var(--nz-blue);
  }

  .product-card__price-unit {
    font-size: 1.7143rem;
    color: var(--nz-text-muted);
  }

  /* ── Category Section ─────────────────────────────────────── */
  .category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.4286rem;
  }

  .category-header {
    display: flex;
    align-items: center;
    gap: 1.7143rem;
    margin-bottom: 2.2857rem;
  }

  .category-icon {
    width: 5.7143rem;
    height: 5.7143rem;
    border-radius: 1.7143rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .category-icon i {
    width: 2.8571rem;
    height: 2.8571rem;
  }

  .category-label {
    font-size: 2.5714rem;
    font-weight: 700;
    color: var(--nz-dark);
  }

  .category-card {
    display: flex;
    gap: 2.2857rem;
    background: #fff;
    border-radius: 1.7143rem;
    padding: 2.2857rem;
    border: 0.1429rem solid #f0f0f5;
    margin-bottom: 2.2857rem;
    transition: all 0.3s;
  }

  .category-card:hover {
    box-shadow: 0 1.1429rem 3.4286rem rgba(0, 0, 0, 0.08);
    transform: translateY(-0.2857rem);
  }

  .category-card__image {
    width: 16rem;
    height: 13.7143rem;
    border-radius: 1.1429rem;
    overflow: hidden;
    flex-shrink: 0;
  }

  .category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }

  .category-card:hover .category-card__image img {
    transform: scale(1.05);
  }

  .category-card__body {
    flex: 1;
    min-width: 0;
  }

  .category-card__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--nz-dark);
    margin-bottom: 1.1429rem;
    line-height: 1.4;
    height: unset;
  }

  .category-card__features {
    line-height: 2.2857rem;
    height: unset;
  }

  .category-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8571rem;
    font-size: 1.5714rem;
    color: var(--nz-text-muted);
    margin-bottom: 0.5714rem;
  }

  .category-card__features li i {
    flex-shrink: 0;
  }

  .category-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.5714rem;
    margin-top: 1.1429rem;
  }

  .category-card__price span:first-child {
    font-family: var(--font-display);
    font-size: 2.2857rem;
    font-weight: 700;
  }

  .category-card__price-unit {
    font-size: 1.4286rem;
    color: var(--nz-text-muted);
  }

  /* ── Promo Banners ────────────────────────────────────────── */
  .promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.8571rem;
  }

  .promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 2.2857rem;
    padding: 4.5714rem 2.5rzem;
    display: flex;
    align-items: end;
    gap: 3.4286rem;
    color: #fff;
  }

  .promo-card--navy {
    /* background: linear-gradient(135deg, #0f1b3d, #2a3f7a); */
    background: #b7e0e0;
  }

  .promo-card--teal {
    /* background: linear-gradient(135deg, #1a6b5a, #2d9a8a); */
    background: #fceee5;
  }

  .promo-card__body {
    flex: 1;
    position: relative;
    z-index: 1;
  }

  .promo-card__title {
    font-size: 2.8571rem;
    font-weight: 800;
    margin-bottom: 1.1429rem;
    line-height: 1.4;
    color: #212529;
  }

  .promo-card__text {
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.3);
    font-weight: 600;
    margin-bottom: 2.2857rem;
  }

  .promo-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.8571rem;
    font-size: 2rem;
    font-weight: 800;
    color: #212529;
    transition: color 0.2s;
  }

  .promo-card:hover .promo-card__link {
    color: #fff;
  }

  .promo-card:hover .promo-card__link i {
    transform: translateX(0.5714rem);
  }

  .promo-card__link i {
    transition: transform 0.3s;
  }

  .promo-card__icon {
    flex-shrink: 0;
    width: 9.1429rem;
    height: 9.1429rem;
    border-radius: 2.2857rem;
    /* background: rgba(255, 255, 255, 0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .promo-card__deco {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
  }

  .promo-card__deco--1 {
    width: 22.8571rem;
    height: 22.8571rem;
    right: -4.5714rem;
    bottom: -4.5714rem;
  }

  .promo-card__deco--2 {
    width: 13.7143rem;
    height: 13.7143rem;
    right: -2.2857rem;
    top: -2.2857rem;
  }

  /* ── Why NZClub ───────────────────────────────────────────── */
  .why-section {
    position: relative;
    overflow: hidden;
  }

  .why-section__deco {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
  }

  .why-section__deco--1 {
    width: 54.8571rem;
    height: 54.8571rem;
    top: 0;
    right: 0;
    background: var(--nz-blue);
  }

  .why-section__deco--2 {
    width: 41.1429rem;
    height: 41.1429rem;
    bottom: 0;
    left: 0;
    background: var(--nz-teal);
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.4286rem;
    margin-bottom: 8rem;
  }

  .stat-item {
    text-align: center;
  }

  .stat-item__value {
    font-family: var(--font-display);
    font-size: 3.4286rem;
    font-weight: 700;
    color: var(--nz-blue);
  }

  .stat-item__label {
    font-size: 1.7143rem;
    color: var(--nz-text-muted);
    margin-top: 0.8571rem;
  }

  .reason-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.4286rem;
  }

  .reason-card {
    text-align: center;
  }

  .reason-card__icon {
    width: 9.1429rem;
    height: 9.1429rem;
    border-radius: 2.2857rem;
    background: var(--nz-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.8571rem;
    transition: transform 0.3s;
  }

  .reason-card:hover .reason-card__icon {
    transform: scale(1.1);
  }

  .reason-card__icon i {
    width: 4rem;
    height: 4rem;
    color: var(--nz-blue);
  }

  .reason-card__title {
    font-size: 2.2857rem;
    font-weight: 700;
    color: var(--nz-dark);
    margin-bottom: 1.1429rem;
  }

  .reason-card__desc {
    font-size: 2rem;
    color: var(--nz-text-muted);
    line-height: 1.6;
  }

  /* ── Review Section ───────────────────────────────────────── */
  .review-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.2857rem;
  }

  .review-card {
    display: block;
    background: #fff;
    border-radius: 1.7143rem;
    border: 0.1429rem solid #f0f0f5;
    padding: 2.8571rem;
    transition: all 0.3s;
    max-width: 100%;
  }

  /* .review-card:hover {
    box-shadow: 0 1.1429rem 3.4286rem rgba(0, 0, 0, 0.08);
    transform: translateY(-0.5714rem);
  } */

  .review-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.7143rem;
  }

  .review-card__type {
    font-size: 1.4286rem;
    font-weight: 500;
    padding: 0.5714rem 1.4286rem;
    border-radius: 1428.4286rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: var(--nz-blue-light);
    color: var(--nz-blue);
  }

  .review-card__stars {
    display: flex;
    gap: 0.2857rem;
  }

  .star-filled {
    color: var(--nz-gold);
    fill: var(--nz-gold);
  }

  .review-card__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--nz-dark);
    margin-bottom: 1.1429rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
  }

  /* .review-card:hover .review-card__title {
    color: var(--nz-blue);
  } */

  .review-card__excerpt {
    font-size: 1.7143rem;
    color: var(--nz-text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 2.2857rem;
  }

  .review-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.7143rem;
    border-top: 0.1429rem solid #f8f8fa;
  }

  .review-card__author {
    font-size: 1.5714rem;
    color: #999;
  }

  .review-card__more {
    display: inline-flex;
    align-items: center;
    gap: 0.2857rem;
    font-size: 1.5714rem;
    font-weight: 500;
    color: var(--nz-blue);
    opacity: 0;
    transition: opacity 0.3s;
  }

  /* .review-card:hover .review-card__more {
    opacity: 1;
  } */

  /* ── Keyword Travel ───────────────────────────────────────── */
  .keyword-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    /* 4 cột */
    gap: 3.4286rem 4.5714rem;
    /* khoảng cách: row / column */
    max-width: 102.8571rem;
    /* rộng hơn chút */
    margin: 0 auto;
    justify-items: center;
    /* canh giữa từng item */
  }

  .keyword-item {
    width: 100%;
    max-width: 22.8571rem;
    padding: 2.8571rem 2.2857rem;
    border-radius: 2.8571rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.7143rem;
    transition: all 0.3s;
  }

  .keyword-item:hover {
    background: #fff;
    box-shadow: 0 0.8571rem 2.8571rem rgba(0, 0, 0, 0.08);
  }

  .keyword-item__icon {
    width: 9.7143rem;
    height: 9.7143rem;
    border-radius: 2.8571rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
  }

  .keyword-item:hover .keyword-item__icon {
    transform: scale(1.08);
  }

  .keyword-item__icon i {
    width: 7.1429rem;
    height: 7.1429rem;
  }

  .keyword-item__label {
    font-size: 2.1714rem;
    font-weight: 600;
    color: var(--nz-text);
  }

  .event-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.8571rem;
    max-width: 109.7143rem;
    margin: 0 auto;
  }

  .event-card {
    position: relative;
    overflow: hidden;
    border-radius: 2.2857rem;
    padding: 3.4286rem 4.5714rem;
    display: flex;
    align-items: center;
    gap: 2.2857rem;
    color: #fff;
    transition: transform 0.3s;
  }

  .event-card:hover {
    transform: translateY(-0.2857rem);
  }

  .event-card__emoji {
    font-size: 5.7143rem;
  }

  .event-card__body {
    flex: 1;
  }

  .event-card__title {
    font-size: 2.5714rem;
    font-weight: 700;
    margin-bottom: 0.5714rem;
  }

  .event-card__subtitle {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
  }

  .event-card__arrow {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
  }

  .event-card:hover .event-card__arrow {
    color: #fff;
    transform: translateX(0.5714rem);
  }

  .event-card__deco {
    position: absolute;
    width: 18.2857rem;
    height: 18.2857rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    right: -3.4286rem;
    bottom: -3.4286rem;
  }

  .cta-section {
    position: relative;
    padding: 9.1429rem 0;
    overflow: hidden;
  }

  .cta-section__bg {
    position: absolute;
    inset: 0;
  }

  .cta-section__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cta-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(15, 27, 61, 0.92),
      rgba(30, 60, 120, 0.85)
    );
  }

  .cta-section__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 91.4286rem;
    margin: 0 auto;
  }

  .cta-section__title {
    font-size: 3.4286rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.7143rem;
  }

  .cta-section__subtitle {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4.5714rem;
  }

  .cta-section__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.2857rem;
  }

  /* ── Board Section ────────────────────────────────────────── */
  .board-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.4286rem;
    overflow: hidden;
  }

  .board-panel {
    background: #fff;
    border-radius: 1.7143rem;
    border: 0.1429rem solid #f0f0f5;
    overflow: hidden;
  }

  .board-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.2857rem 2.8571rem;
    border-bottom: 0.1429rem solid #f0f0f5;
  }

  .board-panel__header-left {
    display: flex;
    align-items: center;
    gap: 1.1429rem;
  }

  .board-panel__title {
    font-size: 2.2857rem;
    font-weight: 700;
    color: var(--nz-dark);
  }

  .board-panel__more {
    display: inline-flex;
    align-items: center;
    gap: 0.2857rem;
    font-size: 1.7143rem;
    font-weight: 500;
    color: var(--nz-blue);
  }

  .board-panel__more:hover {
    text-decoration: underline;
  }

  .board-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.7143rem 2.8571rem;
    border-bottom: 0.1429rem solid #fafafa;
    transition: background 0.2s;
    cursor: pointer;
  }

  .board-item:hover {
    background: var(--nz-blue-light);
  }

  .board-item:last-child {
    border-bottom: none;
  }

  .board-item__left {
    display: flex;
    align-items: center;
    gap: 1.1429rem;
    min-width: 0;
    flex: 1;
  }

  .board-item__badge {
    flex-shrink: 0;
    font-size: 1.4286rem;
    font-weight: 700;
    padding: 0.2857rem 0.8571rem;
    border-radius: 0.5714rem;
  }

  .board-item__badge--answer {
    background: rgba(45, 138, 110, 0.1);
    color: var(--nz-teal);
  }

  .board-item__text {
    font-size: 2rem;
    color: var(--nz-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .board-item__text--answer {
    color: var(--nz-text-muted);
  }

  .board-item__new {
    flex-shrink: 0;
    width: 0.8571rem;
    height: 0.8571rem;
    border-radius: 50%;
    background: #ef4444;
  }

  .board-item__date {
    flex-shrink: 0;
    font-size: 1.5714rem;
    color: #999;
    margin-left: 1.7143rem;
  }

  .footer {
    background: #141833;
    color: rgba(255, 255, 255, 0.6);
  }

  .footer__main {
    padding: 6.8571rem 0;
  }

  .footer__logo-text {
    font-family: var(--font-display);
    font-size: 2.8571rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #f0f0f5;
  }

  .footer__logo-accent {
    color: #7b93e0;
  }

  .footer__logo-sub {
    font-size: 1.7143rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.2857rem;
  }

  .footer__desc {
    font-size: 2rem;
    line-height: 1.6;
    margin: 7px 0;
    color: rgba(255, 255, 255, 0.5);
  }

  .footer__social {
    display: flex;
    gap: 1.7143rem;
  }

  .footer__social-link {
    width: 4.1429rem !important;
    height: 4.1429rem !important;
    border-radius: 1.1429rem;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }

  .footer__social-link:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .footer__social-link i {
    width: 2.2857rem;
    height: 2.2857rem;
    color: rgba(255, 255, 255, 0.6);
  }

  .footer__heading {
    font-size: 2rem;
    font-weight: 700;
    color: #e0e0e8;
    margin-bottom: 2.2857rem;
  }

  .footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.4286rem;
    margin-bottom: 1.7143rem;
  }

  .footer__contact-item i {
    margin-top: 0.2857rem;
    flex-shrink: 0;
    color: #7b93e0;
  }

  .footer__phone {
    font-family: var(--font-display);
    font-size: 2.5714rem;
    font-weight: 700;
    color: #f0f0f5;
  }

  .footer__phone--sm {
    font-size: 2.1429rem;
  }

  .footer__small {
    font-size: 1.7143rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
  }

  .footer__small--muted {
    color: rgba(255, 255, 255, 0.35);
  }

  .footer__links {
    display: flex;
    flex-direction: column;
    gap: 1.4286rem;
  }

  .footer__link {
    font-size: 1.7143rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
  }

  .footer__link:hover {
    color: #fff;
  }

  .footer__bottom {
    border-top: 0.1429rem solid rgba(255, 255, 255, 0.06);
  }

  .footer__bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.2857rem;
    padding: 3.4286rem 0 15rem;
  }

  .logo_footer {
    margin-bottom: 3rem !important;
    width: 30.5rem !important;
  }

  .footer__partners {
    display: flex;
    flex-wrap: wrap;
    gap: 5.25px;
    justify-content: center;
  }

  .footer__partner-badge {
    font-size: 1.4286rem;
    font-weight: 600;
    padding: 0.8571rem 1.7143rem;
    border-radius: 0.5714rem;
    border: 0.1429rem solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
  }

  .footer__copyright {
    font-size: 1.5714rem;
    color: rgba(255, 255, 255, 0.3);
  }

  /* ── Floating Buttons ─────────────────────────────────────── */
  .floating-btns {
    position: fixed;
    bottom: 13.4286rem;
    right: 3.4286rem;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.7143rem;
  }

  .floating-btn {
    width: 6.2857rem;
    height: 6.2857rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5714rem 2.2857rem rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
  }

  .floating-btn:hover {
    box-shadow: 0 1.1429rem 3.4286rem rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
  }

  .floating-btn i {
    width: 2.8571rem;
    height: 2.8571rem;
  }

  .floating-btn--top {
    background: #fff;
    border: 0.1429rem solid #e0e0e8;
    color: var(--nz-text-muted);
  }

  .floating-btn--top i {
    color: var(--nz-text-muted);
  }

  .floating-btn--kakao {
    background: #fee500;
  }

  .floating-btn--kakao i {
    color: #3b1e00;
  }

  .floating-btn--phone {
    background: var(--nz-blue);
  }

  .floating-btn--phone i {
    color: #fff;
  }

  [data-aos] {
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .answer_box_main div * {
    line-height: 1.5 !important;
    font-family: inherit !important;
    font-size: 2rem;
    padding: 2.2857rem;
  }

  .board-item__date .arrow {
    display: block;
    width: 2.2857rem;
    height: 1.1429rem;
    background: no-repeat center / cover;
    background-image: url(/images/ico/question_box_arrow.png);
  }

  .trenvl-search-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(0.5714rem);
    -webkit-backdrop-filter: blur(0.5714rem);
  }

  .trenvl-search-popup.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 11.4286rem;
  }

  .trenvl-search-popup-inner {
    background: #ffffff;
    border-radius: 2.8571rem;
    padding: 3.4286rem;
    width: 90%;
    max-width: 85.7143rem;
    box-shadow: 0 1.1429rem 4.2857rem rgba(0, 0, 0, 0.12);
    animation: searchPopupIn 0.3s ease;
  }

  @keyframes searchPopupIn {
    from {
      opacity: 0;
      transform: translateY(-2.8571rem);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .trenvl-search-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.2857rem;
  }

  .trenvl-search-popup-header h3 {
    font-size: 2.5714rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
  }

  .trenvl-search-popup-close {
    width: 5.1429rem;
    height: 5.1429rem;
    border-radius: 50%;
    border: none;
    background: #f1f3f5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #868e96;
  }

  .trenvl-search-popup-close:hover {
    background: #e9ecef;
  }

  .trenvl-search-popup-close svg {
    width: 2.5714rem;
    height: 2.5714rem;
  }

  .trenvl-search-popup-input {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 0.2857rem solid #e9ecef;
    border-radius: 2rem;
    padding: 0 1.1429rem 0 2.2857rem;
    height: 7.4286rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }

  .trenvl-search-popup-input:focus-within {
    border-color: var(--hd-accent);
    background: #ffffff;
  }

  .trenvl-search-popup-input input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 2.1429rem;
    color: var(--hd-gray-800);
    font-family: var(--hd-font);
  }

  .trenvl-search-popup-input input::placeholder {
    color: var(--hd-gray-400);
  }

  .trenvl-search-popup-input .sp-search-btn {
    width: 5.4286rem;
    height: 5.4286rem;
    border-radius: 1.4286rem;
    background: var(--hd-accent);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--hd-transition);
    flex-shrink: 0;
  }

  .trenvl-search-popup-input .sp-search-btn:hover {
    background: var(--hd-accent-hover);
  }

  .trenvl-search-popup-input .sp-search-btn svg {
    width: 2.5714rem;
    height: 2.5714rem;
    color: #ffffff;
  }

  .trenvl-search-suggest {
    list-style: none;
    padding: 0;
    margin: 1.7143rem 0 0 0;
    max-height: 42.8571rem;
    overflow-y: auto;
    display: none;
  }

  .trenvl-search-suggest li a {
    display: block;
    padding: 1.7143rem 2.2857rem;
    font-size: 2rem;
    color: var(--hd-gray-700);
    text-decoration: none;
    border-radius: 1.4286rem;
    transition: var(--hd-transition);
  }

  .trenvl-search-suggest li a:hover {
    background: var(--hd-gray-50);
    color: var(--hd-accent);
  }

  .trenvl-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--hd-white);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.06);
    padding: 6px 0;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .trenvl-bottom-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 0 auto;
  }

  .trenvl-bn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 12px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--hd-transition);
    border: none;
    background: none;
    font-family: var(--hd-font);
  }

  .trenvl-bn-item svg {
    width: 22px;
    height: 22px;
    color: var(--hd-gray-500);
    transition: var(--hd-transition);
  }

  .trenvl-bn-item span {
    font-size: 10px;
    font-weight: 600;
    color: var(--hd-gray-500);
    transition: var(--hd-transition);
  }

  .mo-order-1 {
    order: 1;
  }

  .mo-order-2 {
    order: 2;
  }
}
