:root {
  /* Primary Colors - 메인 브랜드 컬러 */
  --primary-color: #3b82f6;
  --primary-light: #60a5fa;
  --primary-lighter: #93c5fd;
  --primary-dark: #2563eb;

  /* Accent Colors - 강조 컬러 */
  --accent-color: #60a5fa;
  --accent-light: #93c5fd;
  --accent-lighter: #dbeafe;

  /* Neutral Colors - 중립 컬러 */
  --white: #ffffff;
  --black: #000000;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #f0f0f0;
  --gray-300: #e5e5e5;
  --gray-400: #ddd;
  --gray-500: #999;
  --gray-600: #666;
  --gray-700: #555;
  --gray-800: #333;
  --gray-900: #2c2c2c;

  /* Dark Colors - 다크 배경 */
  --dark-bg: #1a1a1a;
  --dark-bg-light: #2a2a2a;
  --dark-bg-lighter: #404040;
  --dark-gradient-start: #1a1a1a;
  --dark-gradient-end: #0d0d0d;

  /* Status Colors - 상태 컬러 */
  --success: #27ae60;
  --warning: #ffc107;
  --error: #ff4757;
  --info: #4a90c4;

  /* Text Colors - 텍스트 컬러 */
  --text-primary: #2c2c2c;
  --text-secondary: #666;
  --text-tertiary: #999;
  --text-light: #b8b8b8;
  --text-lighter: #c5c5c5;
  --text-lightest: #d0d0d0;
  --text-dark: #333;
  --text-darker: #222;

  /* Border Colors - 보더 컬러 */
  --border-color: #e5e5e5;
  --border-light: #f0f0f0;
  --border-dark: #ddd;

  /* Shadow Colors - 그림자 */
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);

  /* Opacity Values - 투명도 값 */
  --primary-opacity-10: rgba(59, 130, 246, 0.1);
  --primary-opacity-20: rgba(59, 130, 246, 0.2);
  --primary-opacity-30: rgba(59, 130, 246, 0.3);
  --accent-opacity-10: rgba(96, 165, 250, 0.1);
  --accent-opacity-15: rgba(96, 165, 250, 0.15);

  /* Gradients - 그라디언트 */
  --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  --gradient-primary-reverse: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);

  /* Transitions - 애니메이션 */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius - 모서리 반경 */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 10px;
  --radius-round: 50%;

  /* Spacing - 간격 (rem 단위) */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "NanumBarunGothic", sans-serif;
  color: #2c2c2c;
  line-height: 1.6;
  overflow-x: hidden;
  background: #fff;
}

/* 헤더 */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: var(--gradient-dark);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--primary-opacity-20);
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4%;
  max-width: 1600px;
  margin: 0 auto;
  gap: 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo svg {
  height: 40px; /* 높이 조정 */
  width: auto;
  transition: all var(--transition-normal);
}

.logo img {
  height: 40px; /* 높이 조정 */
  width: auto;
  transition: all var(--transition-normal);
}

.logo svg:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  align-items: center;
  flex: 1;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-md);
  display: block;
  position: relative;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--accent-color);
  background: var(--accent-opacity-10);
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  transition: transform var(--transition-normal);
}

.nav-links a:not(.nav-cta):hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-auth-link {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--primary-opacity-30);
  transition: all var(--transition-normal);
}

.nav-auth-link:hover {
  color: var(--accent-color);
  background: var(--accent-opacity-10);
  border-color: var(--accent-light);
}

.nav-auth-btn {
  color: #1a1a1a !important;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  box-shadow: 0 2px 12px var(--primary-opacity-30);
  transition: all var(--transition-normal);
}

.nav-auth-btn:hover {
  transform: translateY(-2px);
  background: var(--gradient-primary-reverse);
  box-shadow: 0 4px 16px var(--primary-opacity-30);
}

.nav-external-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.nav-external-logo:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.external-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

.nav-external-logo:hover .external-logo-img {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(10deg);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #d4af37;
  transition: all 0.3s;
}

/* 배너 슬라이더 */
.hero-slider {
  margin-top: 65px;
  position: relative;
  height: 600px;
  overflow: hidden;
  z-index: 1;
}

.hero-slider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent 0%, #0f172a 100%);
  pointer-events: none;
  z-index: 2;
}

.slider-container {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  z-index: 3;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

.slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  color: var(--white);
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 4%;
  z-index: 4;
}

.slide-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.slide-content h1 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1.5px;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.6),
    0 4px 12px rgba(0, 0, 0, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.3);
}

.slide-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.7;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.7),
    0 4px 12px rgba(0, 0, 0, 0.5);
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--text-primary);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all var(--transition-normal);
  font-size: 0.95rem;
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(255, 255, 255, 0.1) inset;
  border: 2px solid rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}

.slide-cta:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow:
    0 8px 25px rgba(59, 130, 246, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.slide-cta::after {
  content: "→";
  transition: transform var(--transition-normal);
}

.slide-cta:hover::after {
  transform: translateX(5px);
}

/* 슬라이더 컨트롤 */
.slider-controls {
  position: absolute;
  bottom: 30px;
  right: 4%;
  display: flex;
  gap: 15px;
  z-index: 10;
  align-items: center;
}

.slider-progress {
  display: flex;
  gap: 8px;
}

.progress-bar {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.progress-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #fff;
  width: 0;
  transition: width 0.1s linear;
}

.progress-bar.active::before {
  animation: progress 5s linear;
}

@keyframes progress {
  to {
    width: 100%;
  }
}
.slider-arrow {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* 서비스 소개 */
.intro-section {
  margin-top: 0;
  padding-top: 20px;
  padding-bottom: 80px;
  background: #0f172a;
}

.intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100'%3E%3Cpath fill='%230f172a' d='M0,0 C300,80 600,80 900,0 L1200,0 L1200,100 L0,100 Z'/%3E%3C/svg%3E")
    no-repeat;
  background-size: cover;
  transform: translateY(-99px);
  z-index: 2;
}

.intro-section::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #d4a574 20%, #d4a574 80%, transparent 100%);
  box-shadow: 0 0 10px rgba(212, 165, 116, 0.3);
  z-index: 2;
}

.intro-header h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.intro-header .subtitle {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
}

.intro-card {
  background: linear-gradient(145deg, rgba(51, 65, 85, 0.6), rgba(30, 41, 59, 0.85));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.intro-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.intro-card:hover::before {
  width: 400px;
  height: 400px;
  opacity: 1;
}

.intro-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(255, 215, 0, 0.1);
}

.intro-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}

intro-card:hover .intro-icon {
  transform: scale(1.1);
}

.intro-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.2));
}

.intro-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.intro-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5e1;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* 그라데이션 모던 스타일용 CSS */
.intro-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.35);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

/* 반짝이는 효과 */
.intro-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgba(255, 255, 255, 0) 0deg,
    rgba(255, 255, 255, 0.15) 60deg,
    rgba(255, 255, 255, 0) 120deg,
    rgba(255, 255, 255, 0) 360deg
  );
  animation: rotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.intro-card:hover .intro-icon::before {
  opacity: 1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* 골드 요소 빛나는 효과 */
.intro-icon svg [fill*="#FFD700"],
.intro-icon svg [fill*="giftGrad"],
.intro-icon svg [fill*="hotelGrad"],
.intro-icon svg [fill*="serviceGrad"] {
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   엘레강트 골드 그라데이션 스타일 CSS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.luxury-intro {
  position: relative;
  text-align: center;
  padding: 3rem 2rem;
  overflow: hidden;
}

/* 럭셔리 배지 */
.luxury-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

/* 메인 타이틀 */
.luxury-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2px;
  line-height: 1.2;
}

.title-word {
  display: inline-block;
  margin: 0 8px;
  color: #e2e8f0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.title-word:nth-child(1) {
  animation-delay: 0s;
}
.title-word:nth-child(2) {
  animation-delay: 0.15s;
}
.title-word:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Luxury 단어 강조 */
.luxury-highlight {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  font-weight: 800;
  letter-spacing: 3px;
}

.luxury-highlight::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(10px);
  opacity: 0.5;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* 타이틀 언더라인 */
.title-underline {
  width: 120px;
  height: 4px;
  margin: 30px auto;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.underline-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

/* 서브타이틀 */
.luxury-subtitle {
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.subtitle-line {
  display: inline-block;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 반짝임 효과 */
.sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 10px #ffd700;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-20px) scale(1);
  }
}

/* 호텔 섹션 */
.hotels-section {
  padding: 3rem 4%;
  background: #fafafa;
}

.hotels-container {
  max-width: 1600px;
  margin: 0 auto;
}

.hotel-title {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 0.6rem;
}

.view-all {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  transition: gap 0.3s;
}

.view-all:hover {
  gap: 0.8rem;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
}

.hotel-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.hotel-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--gray-100);
  flex-shrink: 0;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-card:hover .hotel-image img {
  transform: scale(1.08);
}

.wish-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  z-index: 5;
  font-size: 1.1rem;
}

.wish-icon:hover {
  background: var(--white);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wish-icon.active {
  color: var(--error);
}

.promo-tags {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 3;
  max-width: calc(100% - 32px);
}

.promo-tag {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s ease;
}

/* 할인 — 레드 계열 */
.tag-discount {
  background: rgba(180, 50, 50, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

/* 스페셜 — 차분한 블루 */
.tag-special {
  background: rgba(50, 100, 160, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

/* 라스트미닛 — 앰버 */
.tag-lastminute {
  background: rgba(180, 120, 20, 0.65);
  border-color: rgba(255, 255, 255, 0.2);
}

/* 얼리버드 — 딥 골드 */
.tag-early {
  background: rgba(160, 110, 10, 0.65);
  border-color: rgba(255, 255, 255, 0.2);
}

/* 스테이 패키지 — 슬레이트 퍼플 */
.tag-stay {
  background: rgba(100, 80, 160, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

/* 웰니스 — 골드 */
.tag-wellness {
  background: rgba(150, 120, 40, 0.65);
  border-color: rgba(255, 255, 255, 0.2);
}

/* 미식 — 딥 퍼플 */
.tag-gastronomy {
  background: rgba(90, 50, 150, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

/* 헤리티지 — 로즈 */
.tag-heritage {
  background: rgba(170, 50, 100, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

/* 어반 — 틸 */
.tag-urban {
  background: rgba(20, 120, 110, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

/* 하이드어웨이 — 워밍 앰버 */
.tag-hideaway {
  background: rgba(160, 100, 20, 0.65);
  border-color: rgba(255, 255, 255, 0.2);
}

.hotel-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

/* 위치 */
.hotel-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-tertiary);
  font-size: 0.85rem;
  font-weight: 500;
}

.hotel-location i {
  color: var(--primary-color);
  font-size: 0.8rem;
}

/* 호텔명 */
.hotel-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hotel-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.price-none {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: -0.5px;
}

.price-currency {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.price-original {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
}

.discount-badge {
  background: var(--error);
  color: var(--white);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.hotel-facilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.facility-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.3rem 0.65rem;
  background: var(--gray-50);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.facility-item i {
  font-size: 0.7rem;
  color: var(--primary-color);
}

.facility-item:hover {
  background: var(--primary-opacity-10);
  border-color: var(--primary-light);
  color: var(--primary-color);
}

.hotel-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.hotel-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.btn-hotel-detail {
  width: 100%;
  padding: 0.8rem 1.5rem;
  background: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-lg);
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-hotel-detail:hover {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--primary-opacity-30);
}

.btn-hotel-detail i {
  font-size: 0.8rem;
  transition: transform var(--transition-normal);
}

.btn-hotel-detail:hover i {
  transform: translateX(3px);
}

/* 인기 지역 섹션 */
.destinations-section {
  padding: 6rem 4%;
  background: #fff;
}

.destinations-container {
  max-width: 1600px;
  margin: 0 auto;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.destination-card {
  position: relative;
  height: 350px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.destination-card:hover {
  transform: translateY(-8px);
}

.destination-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: #fff;
  z-index: 2;
}

.destination-name {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.destination-count {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* 멤버십 등급 섹션 */
.membership-section {
  padding: 8rem 4%;
  background: #000;
  color: #fff;
}

.membership-container {
  max-width: 1400px;
  margin: 0 auto;
}

.membership-header {
  text-align: center;
  margin-bottom: 5rem;
}

.membership-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.membership-description {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.membership-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tier-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  transition: all 0.3s;
}

.tier-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.tier-name {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #d4af37;
  font-weight: 800;
}

.tier-requirement {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  opacity: 0.7;
}

.tier-benefits {
  list-style: none;
}

.tier-benefits li {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
}

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

.tier-benefits li:before {
  content: "✓";
  color: #d4af37;
  font-weight: 700;
  font-size: 1.1rem;
}

/* 푸터 */
footer {
  background: var(--dark-bg-light);
  color: var(--text-light);
}

.footer-main {
  padding: 4rem 4% 3rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 4rem;
  align-items: start;
}

/* 로고 영역 */
.footer-brand-section {
  padding-right: 2rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.footer-tagline {
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-tagline-brand {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.3px;
}

.footer-description {
  color: #999;
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-takumians-logo {
  display: inline-block;
  width: 220px;
  border-radius: 5px;
}

/* 정보 영역 */
.footer-info-section {
  border-left: 1px solid #404040;
  padding-left: 4rem;
}

.footer-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 3rem;
}

.footer-column h4 {
  color: #e8e8e8;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

/* 회사정보 */
.footer-company-info p {
  color: #c5c5c5;
  margin-bottom: 0.7rem;
  font-size: 0.8rem;
  line-height: 1.7;
}

.info-label {
  color: #e0e0e0;
  font-weight: 600;
}

.footer-address {
  margin-top: 0.3rem;
  line-height: 1.7;
  color: #c5c5c5;
}

.address-detail {
  color: #aaa;
}

/* 고객센터 */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #999;
  font-size: 0.8rem;
  line-height: 1.6;
}

.contact-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-text {
  color: #c5c5c5;
}

.contact-sub {
  color: #999;
  font-size: 0.75rem;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fee500;
  color: #3c1e1e;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.footer-contact-btn:hover {
  background: #fada0a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(254, 229, 0, 0.3);
  color: #3c1e1e;
  text-decoration: none;
}

.kakao-icon {
  flex-shrink: 0;
}

/* 다크 배경용 대안 스타일 */
.footer-contact-btn-alt {
  background: transparent;
  color: #fee500;
  border: 2px solid #fee500;
}

.footer-contact-btn-alt:hover {
  background: #fee500;
  color: #3c1e1e;
}

.footer-contact-btn-alt .kakao-icon {
  fill: #fee500;
}

.footer-contact-btn-alt:hover .kakao-icon {
  fill: #3c1e1e;
}

/* 이용안내 */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #d4af37;
}

/* 개인정보취급방침 강조 */
.footer-links a[href*="privacy"],
.footer-links a[href*="개인정보"] {
  font-weight: 700;
  color: #c5c5c5;
}

.footer-links a[href*="privacy"]:hover,
.footer-links a[href*="개인정보"]:hover {
  color: #d4af37;
}

/* 저작권 */
.copyright {
  background: #222;
  padding: 2rem 4%;
  border-top: 1px solid #383838;
}

.copyright-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.copyright p {
  color: #888;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.6;
}

/* 약관 페이지 */
.terms-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 4% 4rem;
}

.terms-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e5e5e5;
}

.terms-header h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  color: #000;
}

.terms-header .subtitle {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.terms-content {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.serviceBox {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
}

.serviceBox:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.serviceBox h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #000;
  letter-spacing: -0.5px;
  padding-left: 1rem;
  border-left: 4px solid var(--primary-color);
}

.serviceBox h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: #222;
  letter-spacing: -0.3px;
}

.serviceBox h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.8rem;
  color: #333;
}

.txt {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

.txt strong {
  font-weight: 700;
  color: #000;
}

.txt a {
  text-decoration: underline;
  color: var(--primary-light);
  transition: color var(--transition-normal);
}

.txt a:hover {
  color: var(--accent-color);
}

.serviceBox ul,
.serviceBox ol {
  margin: 1rem 0 1rem 1.5rem;
  padding-left: 1rem;
}

.serviceBox ul li,
.serviceBox ol li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0.6rem;
  position: relative;
}

.serviceBox ul li::marker {
  color: #d4af37;
  font-weight: 700;
}

.serviceBox ol li::marker {
  color: #d4af37;
  font-weight: 700;
}

.serviceBox table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.serviceBox table th,
.serviceBox table td {
  padding: 0.8rem 1rem;
  border: 1px solid #e5e5e5;
  text-align: left;
}

.serviceBox table th {
  background: #f8f9fa;
  font-weight: 700;
  color: #333;
}

.serviceBox table td {
  color: #555;
  line-height: 1.6;
}

.terms-note {
  background: #fff9e6;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: var(--radius-sm);
}

.terms-note p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 0.5rem;
}

.terms-note p:last-child {
  margin-bottom: 0;
}

.terms-highlight {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.terms-highlight p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0.5rem;
}

.terms-highlight p:last-child {
  margin-bottom: 0;
}

/* 약관 네비게이션 (목차) */
.terms-nav {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  position: sticky;
  top: 85px;
}

.terms-nav h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #000;
}

.terms-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.terms-nav ul li {
  margin-bottom: 0.5rem;
}

.terms-nav ul li a {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.terms-nav ul li a:hover {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
}

.terms-nav ul li a.active {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.15);
  font-weight: 700;
}

/* 약관 2단 레이아웃 (선택사항) */
.terms-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

/* 개인정보 취급방침 추가 스타일 */
.terms-intro {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.terms-intro .txt {
  margin-bottom: 1rem;
}

.terms-intro .txt:last-of-type {
  margin-bottom: 1.5rem;
}

.terms-effective-date {
  background: #fff;
  border-left: 4px solid #d4af37;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  margin-top: 1.5rem;
}

.terms-effective-date p {
  margin: 0;
  color: #333;
  font-size: 0.95rem;
}

.terms-contact-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: var(--radius-lg);
}

.contact-section h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #d4af37;
}

.contact-section p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.contact-section p:last-child {
  margin-bottom: 0;
}

.contact-section a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-section a:hover {
  color: #c9a961;
  text-decoration: underline;
}

/* FAQ 페이지 */
.faq-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 4% 4rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

.faq-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  color: var(--text-primary);
}

.faq-header .subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

/* 왼쪽 카테고리 */
.faq-categories {
  position: sticky;
  top: 100px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
}

.faq-categories h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-list li {
  margin-bottom: 0.5rem;
}

.category-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: left;
  font-family: "Nanum Gothic", sans-serif;
}

.category-item:hover {
  background: var(--accent-lighter);
  border-color: var(--accent-opacity-10);
}

.category-item.active {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px var(--primary-opacity-20);
}

.category-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.category-name {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
}

.category-count {
  font-size: 0.8rem;
  background: var(--gray-200);
  color: var(--text-secondary);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
}

.category-item.active .category-count {
  background: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

/* 오른쪽 FAQ 컨텐츠 */
.faq-content {
  min-height: 600px;
}

.faq-category-section {
  display: none;
}

.faq-category-section.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-category-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
  color: var(--text-primary);
}

.title-icon {
  font-size: 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px var(--primary-opacity-10);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-normal);
  font-family: "Nanum Gothic", sans-serif;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-item.active .faq-question {
  background: var(--gray-50);
}

.question-text {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.6;
  padding-right: 1rem;
}

.question-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  background: var(--accent-lighter);
  border-radius: var(--radius-round);
  transition: all var(--transition-normal);
  font-weight: 300;
}

.faq-item.active .question-icon {
  background: var(--primary-color);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding-top: 20px;
}

.faq-answer > *:first-child {
  padding-top: 0;
}

.faq-answer p {
  padding: 0 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.faq-answer p:last-child {
  padding-bottom: 1.5rem;
}

.faq-answer ul,
.faq-answer ol {
  padding: 0 1.5rem 1rem 3rem;
  margin: 0;
}

.faq-answer li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.faq-answer strong {
  color: var(--text-primary);
  font-weight: 700;
}

.faq-answer a {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-normal);
}

.faq-answer a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* 로그인 페이지 전용 스타일 */
.login-page {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* 로그인 헤더 */
.login-header {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 100;
}

.login-nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.login-nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.login-logo-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.login-logo-left:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.login-logo-left img {
  height: 28px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-normal);
}

.login-logo-left:hover img {
}

.login-logo-left::after {
  content: "NSTYLE TOUR";
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.login-logo-right {
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all var(--transition-normal);
  position: relative;
  padding: 0.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

.login-logo-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(96, 165, 250, 0.1) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  opacity: 0;
  transition: all var(--transition-normal);
  border-radius: var(--radius-lg);
}

.login-logo-right:hover::before {
  opacity: 1;
}

.login-logo-right::after {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(59, 130, 246, 0.6);
  letter-spacing: 3px;
  white-space: nowrap;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-logo-right:hover {
  transform: translateY(-2px);
  letter-spacing: 2px;
}

/* 로그인 컨테이너 */
.login-container {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 4%;
}

.login-content {
  margin-bottom: 4rem;
}

.login-box-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

/* 로그인 박스 */
.login-box,
.signup-box {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 8px;
  padding: 3rem;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.08);
  position: relative;
  overflow: hidden;
}

.login-box::before,
.signup-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0.8;
}

.login-box:hover,
.signup-box:hover {
  box-shadow:
    0 20px 60px rgba(59, 130, 246, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-box-header,
.signup-box-header {
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1.5rem;
}

.login-box-header::after,
.signup-box-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.login-box-header h2,
.signup-box-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.login-box-header p,
.signup-box-header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 500;
}

/* 로그인 폼 */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}

/* 로그인 입력폼 라벨 정렬 */
.login-form .form-group label {
  display: inline-block;
  width: 80px; /* 라벨 폭 고정 (원하는 값으로 조정 가능) */
  text-align: left;
  vertical-align: middle;
}

.form-group input {
  padding: 1rem 1.5rem;
  border: 2px solid transparent;
  background: #f8f9fa;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: "Nanum Gothic", sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.form-group input:hover {
  background: #ffffff;
  border-color: rgba(59, 130, 246, 0.2);
}

.form-group input:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--primary-color);
  box-shadow:
    0 0 0 4px var(--primary-opacity-10),
    0 4px 12px rgba(59, 130, 246, 0.15);
  transform: translateY(-1px);
}

.form-group input::placeholder {
  color: #adb5bd;
  font-weight: 400;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.find-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.find-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.find-links a:hover {
  color: var(--primary-color);
}

.find-links .divider {
  color: var(--gray-400);
}

.btn-login {
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "Nanum Gothic", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 16px rgba(59, 130, 246, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-login::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.btn-login:hover::before {
  left: 100%;
}

.btn-login:hover {
  background: var(--gradient-primary-reverse);
  transform: translateY(-3px);
  box-shadow:
    0 8px 24px rgba(59, 130, 246, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.15);
  letter-spacing: 1px;
}

.btn-login:active {
  transform: translateY(-1px);
  box-shadow:
    0 4px 12px rgba(59, 130, 246, 0.3),
    0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-signup {
  width: 100%;
  padding: 1.1rem 2rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "Nanum Gothic", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-signup::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  transition: left 0.6s;
}

.btn-signup:hover::before {
  left: 100%;
}

.btn-signup:hover {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-3px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  letter-spacing: 1px;
}

.btn-signup:active {
  transform: translateY(-1px);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition-normal);
}

.checkbox-label:hover {
  color: var(--text-primary);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary-color);
  border-radius: 4px;
}

.find-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-normal);
  position: relative;
}

.find-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-normal);
}

.find-links a:hover {
  color: var(--primary-color);
}

.find-links a:hover::after {
  width: 100%;
}

/* 회원가입 박스 */
.signup-benefits {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
}

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.btn-signup {
  width: 100%;
  padding: 1rem;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-family: "Nanum Gothic", sans-serif;
}

.btn-signup:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* 서비스 소개 */
.login-intro {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.intro-header {
  text-align: center;
  margin-bottom: 2rem;
}

.intro-header h3 {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.intro-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.intro-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.intro-section h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.intro-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.intro-section strong {
  color: var(--primary-color);
  font-weight: 700;
}

.intro-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.feature-card:hover {
  background: var(--accent-lighter);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.intro-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-list li {
  padding: 1.2rem;
  background: var(--gray-50);
  border-left: 4px solid var(--primary-color);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.intro-list strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* 로그인 푸터 */
.login-footer {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 2rem 4%;
  margin-top: auto;
}

.login-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.login-footer p {
  font-size: 0.85rem;
  margin: 0;
}

.login-footer .footer-links {
  display: flex;
  gap: 1.5rem;
}

.login-footer .footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition-normal);
}

.login-footer .footer-links a:hover {
  color: var(--white);
}

.login-footer .footer-links a.emphasis {
  font-weight: 700;
  color: var(--text-lightest);
}

/* 검색 히어로 섹션 */
.search-hero {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f1419 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible !important;
}

.search-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.08) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

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

.search-hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(59,130,246,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.search-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 4%;
  width: 100%;
}

.search-hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -1px;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.search-hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  font-weight: 400;
}

/* 검색 컨테이너 */
.search-container {
  max-width: 700px;
  margin: 0 auto;
}

.search-wrapper {
  position: relative;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  padding: 0.5rem 0.8rem;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.search-input-wrapper:focus-within {
  box-shadow:
    0 15px 50px rgba(59, 130, 246, 0.3),
    0 0 0 2px var(--primary-color);
  transform: translateY(-2px);
}

.search-icon {
  font-size: 1.1rem;
  color: var(--text-tertiary);
  margin: 0 0.75rem 0 0.5rem;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  padding: 1rem 0.5rem;
  color: var(--text-primary);
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 500;
}

.search-input:focus {
  outline: none;
}

.search-input::placeholder {
  color: var(--text-tertiary);
  font-weight: 400;
}

.search-clear {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 0.5rem;
  margin-right: 0.5rem;
  transition: color var(--transition-normal);
}

.search-clear:hover {
  color: var(--text-primary);
}

.search-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition:
    background var(--transition-normal),
    transform var(--transition-normal);
}

.search-btn:hover {
  background: var(--primary-dark, #2563eb);
  transform: translateY(-1px);
}

/* 검색 결과 */
.search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

.search-results.active {
  max-height: 500px;
  opacity: 1;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  border-bottom: 1px solid var(--gray-100);
}

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

.search-result-item:hover,
.search-result-item.keyboard-active {
  background: var(--accent-lighter);
}

.search-result-item img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 1rem;
}

.result-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--gray-100);
  border-radius: 8px;
  margin-right: 1rem;
}

.result-info {
  flex: 1;
}

.result-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.result-location {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.result-type,
.result-count {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-lg);
  background: var(--primary-opacity-10);
  color: var(--primary-color);
  font-weight: 600;
}

.no-results {
  padding: 2rem;
  text-align: center;
  color: var(--text-secondary);
}

/* 호텔 섹션 */
.hotel-section {
  padding: 4rem 4%;
  background: var(--white);
}

.hotel-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header-luxury {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header-luxury h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -1px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header-luxury p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* 지역 필터 */
.region-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.region-filter-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Nanum Gothic", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  overflow: hidden;
}

.region-filter-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.region-filter-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--primary-opacity-20);
}

.region-filter-item.active {
  background: var(--gradient-primary);
  border-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 6px 20px var(--primary-opacity-30);
}

.filter-icon {
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
}

.filter-text {
  position: relative;
  z-index: 1;
}

/* 호텔 리스트 */
.hotel-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2.5rem;
}

.hotel-list-item {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hotel-list-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
  border-color: var(--primary-color);
}

.hotel-list-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.hotel-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-list-item:hover .hotel-list-image img {
  transform: scale(1.1);
}

.hotel-list-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.hotel-list-badge.special {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}

.hotel-list-content {
  padding: 2rem;
}

.hotel-list-location {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.hotel-list-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.hotel-list-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.hotel-list-rating .stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.rating-score {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}

.hotel-list-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.hotel-list-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hotel-list-tags .tag {
  background: var(--gray-100);
  color: var(--text-secondary);
  padding: 0.4rem 0.9rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.hotel-list-tags .tag:hover {
  background: var(--accent-lighter);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.hotel-list-footer-category {
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: 1.5rem;
  margin-top: auto;
  border-top: 1px solid var(--gray-100);
}

.hotel-list-price {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.price-amount {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.btn-view-hotel {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px var(--primary-opacity-20);
}

.btn-view-hotel:hover {
  background: var(--gradient-primary-reverse);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--primary-opacity-30);
}

/* 멤버십 브랜드 섹션 */
.membership-brands {
  padding: 6rem 4%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.membership-brands::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
}

.brands-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.membership-brands .section-header-luxury h2 {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.membership-brands .section-header-luxury p {
  color: rgba(255, 255, 255, 0.7);
}

/* 브랜드 그리드 */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.brand-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.brand-logo-wrapper {
  margin-bottom: 2rem;
}

.brand-logo {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(96, 165, 250, 0.1) 100%);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.brand-item:hover .brand-logo {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(96, 165, 250, 0.2) 100%);
  border-color: rgba(59, 130, 246, 0.4);
  transform: scale(1.05);
}

.brand-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.5px;
  line-height: 1.4;
  text-align: center;
}

.brand-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: -0.3px;
}

.brand-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* 브랜드 혜택 */
.brands-benefits {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 3rem;
}

.brands-benefits h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
}

.benefit-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: -0.3px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* 스크롤바 스타일 (검색 결과, 지역 필터) */
.search-results::-webkit-scrollbar,
.region-filters::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}

.search-results::-webkit-scrollbar-track,
.region-filters::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: 2px;
}

.search-results::-webkit-scrollbar-thumb,
.region-filters::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 2px;
}

.search-results::-webkit-scrollbar-thumb:hover,
.region-filters::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* 검색 결과 섹션 */
.search-results-section {
  padding: 4rem 4% 2rem;
  background: linear-gradient(to bottom, #f8f9fa 0%, var(--white) 100%);
  border-bottom: 2px solid var(--border-color);
}

.search-results-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.search-results-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.btn-clear-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-family: "Nanum Gothic", sans-serif;
}

.btn-clear-search:hover {
  background: var(--gray-50);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--primary-opacity-10);
}

.search-results-info {
  margin-bottom: 2rem;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.results-keyword {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.results-keyword span:first-child {
  color: var(--primary-color);
  font-weight: 700;
}

.results-count {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.2rem 0.8rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-left: 0.3rem;
}

#searchResultsList {
  margin-bottom: 0;
}

/* 혜택 안내 문구 */
.benefits-notice {
  margin-top: 3rem;
  padding: 1.8rem 2rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.notice-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

.notice-content {
  flex: 1;
}

.notice-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

.notice-text br {
  display: block;
  content: "";
  margin-top: 0.3rem;
}

/* 멤버십 섹션 */
.service-membership-section {
  padding: 8rem 0;
  background: #fff;
}

/* 멤버십 카드 그리드 */
.membership-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.membership-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.membership-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.membership-card.featured {
  border: 2px solid #ffd54f;
}

.membership-card.premium {
  border: 2px solid #b39ddb;
}

.membership-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #ffb300;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-md);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.membership-badge.premium-badge {
  color: #9575cd;
}

.membership-card-header {
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  color: #fff;
}

.membership-level {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.membership-name-en {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.membership-name-kr {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.95;
}

.membership-card-body {
  padding: 2rem;
}

.membership-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.membership-benefits {
  margin-top: 1.5rem;
}

.benefits-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 0.7rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid var(--gray-100);
}

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

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1rem;
}

/* 등급별 카드 강조 효과 */
.membership-card[data-level="1"] .membership-card-header {
  position: relative;
}

.membership-card[data-level="3"] .benefits-list li::before {
  color: #ffb300;
}

.membership-card[data-level="4"] .benefits-list li::before {
  color: #ff8f00;
}

.membership-card[data-level="5"] .benefits-list li::before {
  color: #9575cd;
}

/* 멤버십 등급 안내 */
.membership-tier-info {
  background: var(--gray-50);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-xl);
  margin-bottom: 3rem;
}

.tier-info-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 2.5rem;
}

.tier-info-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.tier-info-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.tier-info-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.tier-info-level {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.tier-info-requirement {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* 멤버십 안내 박스 */
.membership-notice-box {
  display: flex;
  gap: 1.5rem;
  padding: 2.5rem;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--primary-color);
}

.membership-notice-box .notice-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.membership-notice-box .notice-content h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.membership-notice-box .notice-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.membership-notice-box .notice-content li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.membership-notice-box .notice-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
}

/* 컨텐츠 쇼케이스 섹션 */
.content-showcase-section {
  padding: 8rem 4%;
  background: var(--gray-50);
}

.content-showcase-container {
  max-width: 1400px;
  margin: 0 auto;
}

.content-showcase-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.content-showcase-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.content-showcase-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* 컨텐츠 카드 그리드 */
.content-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.content-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.content-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

/* 컨텐츠 카드 이미지 */
.content-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.content-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-card:hover .content-card-image img {
  transform: scale(1.1);
}

.content-card-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-wrap: wrap; /* 뱃지는 줄바꿈 허용 */
  gap: 8px;
  z-index: 3;
  max-width: calc(100% - 32px);
}

.content-badge {
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

/* 웰니스 — 골드  (150,120,40) */
.content-badge.tag-wellness {
  background: rgba(150, 120, 40, 0.65);
  border-color: rgba(255, 255, 255, 0.2);
}

/* 미식 — 딥퍼플  (90,50,150) */
.content-badge.tag-gastronomy {
  background: rgba(90, 50, 150, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

/* 헤리티지 — 로즈  (170,50,100) */
.content-badge.tag-heritage {
  background: rgba(170, 50, 100, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

/* 어반 — 틸  (20,120,110) */
.content-badge.tag-urban {
  background: rgba(20, 120, 110, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

/* 하이드어웨이 — 워밍앰버  (160,100,20) */
.content-badge.tag-hideaway {
  background: rgba(160, 100, 20, 0.65);
  border-color: rgba(255, 255, 255, 0.2);
}

/* 컨텐츠 카드 본문 */
.content-card-body {
  padding: 2rem;
}

.content-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.content-tag {
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

/* 멤버십 컬러 활용한 태그 */
.content-tag.explorer {
  background: #b0bec5;
}

.content-tag.traveller {
  background: #90caf9;
}

.content-tag.luminary {
  background: #ffd54f;
  color: var(--text-dark);
}

.content-tag.signature {
  background: #ffb300;
}

.content-tag.celestia {
  background: #b39ddb;
}

.content-date {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-left: auto;
}

.content-title {
  margin-bottom: 1rem;
}

.content-title span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: -0.5px;
  transition: color var(--transition-normal);
  display: block;
}

.content-title span:hover {
  color: var(--primary-color);
}

.content-summary {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 컨텐츠 푸터 */
.content-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.content-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.feature-item {
  font-size: 0.8rem;
  color: var(--text-dark);
  padding: 0.4rem 0.8rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.content-read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-normal);
}

.content-read-more:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

/* 더보기 버튼 */
.content-showcase-more {
  text-align: center;
  margin-top: 4rem;
}

.btn-content-more {
  display: inline-block;
  padding: 1rem 3rem;
  background: #fff;
  color: var(--text-primary);
  text-decoration: none;
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition-normal);
}

.btn-content-more:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.guest-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}

.date-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* 회원가입 섹션 */
.signup-section {
  margin-top: 5px;
  min-height: calc(100vh - 65px);
  background: var(--gray-50);
  padding: 4rem 4%;
}

.signup-container {
  max-width: 600px;
  margin: 0 auto;
}

/* 회원가입 헤더 */
.signup-header {
  text-align: center;
  margin-bottom: 3rem;
}

.signup-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.signup-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* 회원가입 폼 */
.signup-form {
  background: #fff;
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

/* 폼 그룹 */
.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.required {
  color: var(--error);
  font-weight: 700;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: "Nanum Gothic", sans-serif;
  transition: all var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-opacity-10);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-input:read-only {
  background: var(--gray-100);
  cursor: not-allowed;
}

.form-help {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-tertiary);
  line-height: 1.5;
}

.form-message {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: none;
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: var(--error);
}

/* 입력 + 버튼 조합 */
.input-with-button {
  display: flex;
  gap: 0.8rem;
}

.input-with-button .form-input {
  flex: 1;
}

.btn-check,
.btn-verify {
  padding: 0.9rem 1.5rem;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  font-family: "Nanum Gothic", sans-serif;
}

.btn-check:hover,
.btn-verify:hover {
  background: var(--primary-dark);
}

.btn-check:disabled,
.btn-verify:disabled {
  background: var(--gray-400);
  cursor: not-allowed;
}

/* 이메일 인증 영역 */
.verification-area {
  margin-top: 1rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.verification-timer {
  padding: 0.9rem 1rem;
  color: var(--error);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

/* 약관 동의 */
.agreement-section {
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: var(--gray-50);
}

.agreement-header {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-dark);
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 0.8rem;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.checkbox-text {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
}

.agreement-header .checkbox-label {
  font-weight: 700;
}

.agreement-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.agreement-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.agreement-item .checkbox-text {
  font-weight: 500;
}

.agreement-item .required {
  font-size: 0.85rem;
  margin-right: 0.3rem;
}

.terms-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--primary-color);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.terms-link:hover {
  background: var(--primary-color);
  color: #fff;
}

/* 폼 버튼 */
.form-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.btn-primary,
.btn-secondary {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: "Nanum Gothic", sans-serif;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 12px var(--primary-opacity-20);
}

.btn-primary:hover {
  background: var(--gradient-primary-reverse);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--primary-opacity-30);
}

.btn-secondary {
  background: #fff;
  color: var(--text-primary);
  border: 2px solid var(--border-dark);
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background: var(--gray-50);
}

/* 약관 모달 */
.signup-terms-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

.signup-terms-overlay.show {
  display: block;
}

.signup-terms-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  overflow: hidden;
}

.signup-terms-modal.show {
  display: flex;
  flex-direction: column;
}

.signup-terms-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-light);
  background: var(--gray-50);
}

.signup-terms-modal-header h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.signup-terms-modal-close {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 2rem;
  color: var(--text-tertiary);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.signup-terms-modal-close:hover {
  background: var(--gray-200);
  color: var(--text-primary);
}

.signup-terms-modal-body {
  flex: 1;
  overflow: hidden;
}

.signup-terms-iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 500px;
}

.btn-cancel {
  padding: 0.75rem 1.5rem;
  background-color: #dc3545;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-cancel:hover {
  background-color: #c82333;
}

.btn-cancel:active {
  transform: translateY(1px);
}

/* 호텔 목록 섹션 */
.hotel-list-section-category {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  min-height: 100vh;
}

.hotel-list-section {
  padding: 40px 0 40px;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  min-height: 100vh;
}

.hotel-list-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4%;
}

/* ========================================
   페이지 헤더
   ======================================== */
.hotel-list-page-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.hotel-list-header-content {
  position: relative;
  z-index: 1;
}

.hotel-list-page-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -1px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hotel-list-page-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.hotel-list-header-decoration {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hotel-list-decoration-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.hotel-list-decoration-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-round);
  background: var(--primary-color);
  animation: hotel-list-pulse-dot 2s ease-in-out infinite;
}

@keyframes hotel-list-pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
}

/* ========================================
   필터 & 정렬 컨트롤
   ======================================== */
.hotel-list-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 20px 30px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  gap: 20px;
  flex-wrap: wrap;
}

.hotel-list-filter-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hotel-list-filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid var(--border-color);
  background: var(--white);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.hotel-list-filter-btn i {
  font-size: 0.9rem;
}

.hotel-list-filter-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary-color);
  background: var(--primary-opacity-10);
  transform: translateY(-2px);
}

.hotel-list-filter-btn.active {
  border-color: var(--primary-color);
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 12px var(--primary-opacity-30);
}

.hotel-list-sort-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hotel-list-sort-group label {
  color: var(--text-secondary);
  font-size: 1rem;
}

.hotel-list-sort-select {
  padding: 10px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition-normal);
  min-width: 150px;
}

.hotel-list-sort-select:hover {
  border-color: var(--primary-color);
}

.hotel-list-sort-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-opacity-10);
}

/* ========================================
   호텔 카드 - 갤러리형 레이아웃
   ======================================== */
.hotel-list-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hotel-list-card {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 30px;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
}

.hotel-list-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.hotel-list-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* ========================================
   호텔 이미지 영역
   ======================================== */
.hotel-list-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 12px;
  background: var(--gray-50);
}

.hotel-list-main-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  grid-row: 1 / 2;
  aspect-ratio: 16 / 10;
}

.hotel-list-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.hotel-list-card:hover .hotel-list-main-image img {
  transform: scale(1.05);
}

.hotel-list-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
  display: flex;
  padding: 15px;
}

.hotel-list-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px var(--primary-opacity-30);
  height: fit-content;
}

.hotel-list-badge.new {
  background: linear-gradient(135deg, var(--success) 0%, #2ecc71 100%);
  box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}

.hotel-list-badge.premium {
  background: linear-gradient(135deg, var(--warning) 0%, #f1c40f 100%);
  box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.hotel-list-sub-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  grid-row: 2 / 3;
}

.hotel-list-sub-images img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.hotel-list-sub-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.hotel-list-more-images {
  position: relative;
  background: var(--gray-800);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  aspect-ratio: 1 / 1;
}

.hotel-list-more-images span {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}

.hotel-list-more-images:hover {
  background: var(--primary-color);
  transform: scale(1.05);
}

/* ========================================
   호텔 정보 영역
   ======================================== */
.hotel-list-info {
  display: flex;
  flex-direction: column;
  padding: 30px 30px 30px 0;
  gap: 20px;
}

.hotel-list-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

.hotel-list-title-group {
  flex: 1;
}

.hotel-list-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.hotel-list-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.hotel-list-location i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.hotel-list-wishlist-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--border-color);
  background: var(--white);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

.hotel-list-wishlist-btn i {
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
}

.hotel-list-wishlist-btn:hover {
  border-color: var(--error);
  background: rgba(255, 71, 87, 0.05);
}

.hotel-list-wishlist-btn:hover i {
  color: var(--error);
}

.hotel-list-wishlist-btn.active {
  border-color: var(--error);
  background: var(--error);
}

.hotel-list-wishlist-btn.active i {
  color: var(--white);
}

/* ========================================
   호텔 특징 태그
   ======================================== */
.hotel-list-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hotel-list-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--gray-50);
  border: 1px solid var(--border-light);
  border-radius: 15px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
}

.hotel-list-feature-tag i {
  font-size: 0.8rem;
  color: var(--primary-color);
}

.hotel-list-feature-tag:hover {
  background: var(--primary-opacity-10);
  border-color: var(--primary-light);
  color: var(--primary-color);
}

/* ========================================
   호텔 설명
   ======================================== */
.hotel-list-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
}

/* ========================================
   호텔 푸터 (평점 & 가격)
   ======================================== */
.hotel-list-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  gap: 20px;
}

.hotel-list-rating-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hotel-list-stars {
  display: flex;
  gap: 2px;
}

.hotel-list-stars i {
  color: var(--warning);
  font-size: 0.9rem;
}

.hotel-list-rating-score {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hotel-list-review-count {
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.hotel-list-price-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.hotel-list-price-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}

.hotel-list-price-label {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.hotel-list-price-details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hotel-list-price-original {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 500;
}

.hotel-list-discount-badge {
  background: linear-gradient(135deg, #d4af37 0%, #c5a028 100%);
  color: var(--white);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.hotel-list-price-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -1px;
}

.hotel-list-price-amount em {
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
  color: var(--text-secondary);
  margin-left: 0.2rem;
}

/* ========================================
   더보기 버튼
   ======================================== */
.hotel-list-load-more-section {
  text-align: center;
  margin-top: 60px;
}

.hotel-list-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.hotel-list-load-more-btn:hover {
  border-color: var(--primary-color);
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hotel-list-load-more-btn i {
  transition: transform var(--transition-normal);
}

.hotel-list-load-more-btn:hover i {
  transform: translateY(3px);
}

/* 지역 선택 영역 */
.region-selector-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.region-selector-header {
  text-align: center;
  margin-bottom: 3rem;
}

.region-selector-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  letter-spacing: -1px;
}

.region-selector-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* 선택된 경로 표시 */
.region-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.2rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.region-breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.region-breadcrumb-item.active {
  color: var(--primary-color);
  font-weight: 700;
}

.region-breadcrumb-separator {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* 선택 탭 */
.region-selector-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--gray-100);
}

.region-selector-tab {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  bottom: -2px;
}

.region-selector-tab:hover {
  color: var(--primary-color);
}

.region-selector-tab.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* 선택 그리드 */
.region-selector-content {
  display: none;
}

.region-selector-content.active {
  display: block;
}

.region-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.region-selector-item {
  background: var(--white);
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-100);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
}

.region-selector-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.region-selector-item.selected {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: var(--white);
}

.region-selector-item-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.region-selector-item.selected .region-selector-item-name {
  color: var(--white);
}

.region-selector-item-count {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.region-selector-item.selected .region-selector-item-count {
  color: rgba(255, 255, 255, 0.9);
}

.text-center {
  text-align: center;
}
.h200 {
  height: 200px;
}

.region-hero-header {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 8rem 0 6rem;
  margin-top: 65px;
  overflow: hidden;
}

.region-hero-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.region-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%);
  background-size: 60px 60px;
  background-position:
    0 0,
    0 30px,
    30px -30px,
    -30px 0px;
  opacity: 0.3;
}

.region-hero-content {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  z-index: 1;
}

.region-hero-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.region-hero-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 0.5px;
  animation: fadeInUp 1s ease-out;
}

.region-hero-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  animation: fadeInUp 1.2s ease-out;
}

.decoration-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.decoration-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 지역 선택 섹션 수정 */
.region-selector-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 2rem 0 2rem;
  margin-top: -3rem; /* 히어로와 자연스럽게 연결 */
  position: relative;
  z-index: 2;
}

.region-selector-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(15, 52, 96, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.hotel-list-empty-state {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.empty-state-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2563eb 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
  animation: float 3s ease-in-out infinite;
}

.empty-state-icon i {
  font-size: 3.5rem;
  color: var(--white);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.empty-state-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.empty-state-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.empty-state-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 4px 15px var(--primary-opacity-30);
}

.step-item span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--text-light);
  margin: 0 0.5rem;
}

/* 결제 완료 페이지 스타일 */
.complete-page-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

/* 완료 헤더 */
.complete-header {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 20px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.complete-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.complete-icon svg {
  width: 50px;
  height: 50px;
  stroke: #10b981;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.complete-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.complete-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.complete-booking-number {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 0.95rem;
}

.complete-booking-number-label {
  opacity: 0.9;
  margin-right: 0.5rem;
}

.complete-booking-number-value {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/* 알림 배너 */
.complete-notice-banner {
  background: #eff6ff;
  border: 2px solid #3b82f6;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: start;
  gap: 1rem;
}

.complete-notice-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #3b82f6;
}

.complete-notice-content {
  flex: 1;
}

.complete-notice-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.complete-notice-text {
  font-size: 0.9rem;
  color: #1e40af;
  line-height: 1.6;
}

/* 예약 상태 타임라인 */
.complete-status-section {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.complete-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f3f4f6;
}

.complete-status-timeline {
  position: relative;
  padding-left: 2.5rem;
}

.complete-status-item {
  position: relative;
  padding-bottom: 2rem;
}

.complete-status-item:last-child {
  padding-bottom: 0;
}

.complete-status-item::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 0;
  width: 2px;
  height: 100%;
  background: #e5e7eb;
}

.complete-status-item:last-child::before {
  display: none;
}

.complete-status-dot {
  position: absolute;
  left: -2.9rem;
  top: 0.25rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid #10b981;
  background: white;
}

.complete-status-item.pending .complete-status-dot {
  border-color: #e5e7eb;
  background: #e5e7eb;
}

.complete-status-item.active .complete-status-dot {
  border-color: #10b981;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.complete-status-label {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.complete-status-item.pending .complete-status-label {
  color: #9ca3af;
}

.complete-status-description {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
}

.complete-status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #d1fae5;
  color: #065f46;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.complete-status-item.pending .complete-status-badge {
  background: #f3f4f6;
  color: #6b7280;
}

/* 예약 요약 */
.complete-summary-section {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.complete-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.complete-summary-item {
  padding: 1.25rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.complete-summary-label {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.complete-summary-value {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}

/* 호텔 정보 카드 */
.complete-hotel-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fafafa;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  margin-bottom: 1.5rem;
}

.complete-hotel-image {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.complete-hotel-info {
  flex: 1;
}

.complete-hotel-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.complete-hotel-location {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.complete-hotel-rating {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* 결제 정보 */
.complete-payment-info {
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.complete-payment-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.complete-payment-label {
  color: #6b7280;
}

.complete-payment-value {
  font-weight: 600;
  color: #111827;
}

.complete-payment-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 0.75rem 0;
}

.complete-payment-total {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.complete-payment-total-value {
  color: #3b82f6;
  font-size: 1.4rem;
}

/* 다음 단계 안내 */
.complete-next-steps {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.complete-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.complete-step-card {
  text-align: center;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  transition: all 0.2s;
}

.complete-step-card:hover {
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.complete-step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.complete-step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.complete-step-description {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
}

/* 액션 버튼 영역 */
.complete-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.complete-btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.complete-btn-primary {
  background: #3b82f6;
  color: white;
  border: none;
}

.complete-btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.complete-btn-secondary {
  background: white;
  color: #3b82f6;
  border: 2px solid #3b82f6;
}

.complete-btn-secondary:hover {
  background: #eff6ff;
}

/* 추가 정보 */
.complete-additional-info {
  background: #fef3c7;
  border: 1px solid #fbbf24;
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 2rem;
}

.complete-additional-info-title {
  font-size: 1rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.complete-additional-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.complete-additional-info-list li {
  font-size: 0.9rem;
  color: #78350f;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.complete-additional-info-list li::before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  font-weight: 700;
}

.booking-payment-failed-modal {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans KR", "Apple SD Gothic Neo",
    sans-serif !important;
}

.booking-payment-failed-confirm {
  font-weight: 600 !important;
}

.booking-payment-failed-cancel {
  font-weight: 500 !important;
}

/* 예약 목록 페이지 스타일 */
.mybookings-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

/* 페이지 헤더 */
.mybookings-header {
  margin-bottom: 2rem;
}

.mybookings-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.mybookings-subtitle {
  font-size: 1rem;
  color: #6b7280;
}

/* 탭 네비게이션 */
.mybookings-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e5e7eb;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mybookings-tabs::-webkit-scrollbar {
  display: none;
}

.mybookings-tab {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #6b7280;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.mybookings-tab::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #3b82f6;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.mybookings-tab.active::after {
  transform: scaleX(1);
}

.mybookings-tab:hover {
  color: #111827;
  background: #f9fafb;
}

.mybookings-tab.active {
  color: #3b82f6;
  border-bottom-color: transparent; /* after로 대체 */
}

.mybookings-tab-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: #e5e7eb;
  color: #6b7280;
  border-radius: 12px;
  font-size: 0.75rem;
}

.mybookings-tab.active .mybookings-tab-badge {
  background: #dbeafe;
  color: #3b82f6;
}

/* 탭 컨텐츠 */
.mybookings-tab-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.mybookings-tab-content.active {
  display: block;
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 예약 카드 */
.mybookings-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInCard 0.5s ease forwards;
}

.mybookings-card:nth-child(1) {
  animation-delay: 0.1s;
}

.mybookings-card:nth-child(2) {
  animation-delay: 0.2s;
}

.mybookings-card:nth-child(3) {
  animation-delay: 0.3s;
}

.mybookings-card:nth-child(4) {
  animation-delay: 0.4s;
}

.mybookings-card:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes fadeInCard {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.mybookings-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #3b82f6;
  transform: translateY(-4px);
}

.mybookings-card-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.mybookings-card-number {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.mybookings-card-number-value {
  font-weight: 600;
  color: #111827;
}

.mybookings-card-date {
  font-size: 0.8rem;
  color: #9ca3af;
}

.mybookings-status-badge {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.mybookings-status-badge.confirmed {
  background: #d1fae5;
  color: #065f46;
}

.mybookings-status-badge.pending {
  background: #fef3c7;
  color: #92400e;
}

.mybookings-status-badge.cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.mybookings-status-badge.completed {
  background: #e0e7ff;
  color: #3730a3;
}

/* 카드 바디 */
.mybookings-card-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.5rem;
}

.mybookings-hotel-image {
  width: 180px;
  height: 140px;
  border-radius: 12px;
  object-fit: cover;
}

.mybookings-card-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mybookings-hotel-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.mybookings-hotel-location {
  font-size: 0.9rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mybookings-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mybookings-info-item {
  padding: 0.75rem;
  background: #f9fafb;
  border-radius: 8px;
}

.mybookings-info-label {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.mybookings-info-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
}

.mybookings-room-info {
  padding: 1rem;
  background: #fafafa;
  border-radius: 8px;
  border-left: 3px solid #3b82f6;
}

.mybookings-room-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.mybookings-room-details {
  font-size: 0.8rem;
  color: #6b7280;
}

/* 카드 푸터 */
.mybookings-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.mybookings-payment-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mybookings-payment-label {
  font-size: 0.8rem;
  color: #6b7280;
}

.mybookings-payment-amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
}

.mybookings-payment-status {
  font-size: 0.8rem;
  font-weight: 600;
}

.mybookings-payment-status.paid {
  color: #059669;
}

.mybookings-payment-status.refunded {
  color: #dc2626;
}

.mybookings-card-actions {
  display: flex;
  gap: 0.75rem;
}

.mybookings-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mybookings-btn-primary {
  background: #3b82f6;
  color: white;
  border: none;
}

.mybookings-btn-primary:hover {
  background: #2563eb;
}

.mybookings-btn-secondary {
  background: white;
  color: #6b7280;
  border: 1px solid #d1d5db;
}

.mybookings-btn-secondary:hover {
  background: #f9fafb;
  color: #111827;
}

.mybookings-btn-danger {
  background: white;
  color: #dc2626;
  border: 1px solid #dc2626;
}

.mybookings-btn-danger:hover {
  background: #dc2626;
  color: white;
}

/* 빈 상태 */
.mybookings-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mybookings-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  color: #d1d5db;
}

.mybookings-empty-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.mybookings-empty-text {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.mybookings-empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #3b82f6;
  color: white;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.mybookings-empty-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

/* 알림 배너 */
.mybookings-alert {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: start;
  gap: 1rem;
  opacity: 0;
  animation: fadeInAlert 0.5s ease forwards;
  animation-delay: 0.05s;
}

@keyframes fadeInAlert {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.mybookings-alert.info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.mybookings-alert.warning {
  background: #fef3c7;
  border: 1px solid #fbbf24;
}

.mybookings-alert-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.mybookings-alert.info .mybookings-alert-icon {
  color: #3b82f6;
}

.mybookings-alert.warning .mybookings-alert-icon {
  color: #f59e0b;
}

.mybookings-alert-content {
  flex: 1;
}

.mybookings-alert-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.mybookings-alert.info .mybookings-alert-title {
  color: #1e40af;
}

.mybookings-alert.warning .mybookings-alert-title {
  color: #92400e;
}

.mybookings-alert-text {
  font-size: 0.85rem;
}

.mybookings-alert.info .mybookings-alert-text {
  color: #1e40af;
}

.mybookings-alert.warning .mybookings-alert-text {
  color: #78350f;
}

.rate-tag {
  padding: 0.3rem 0.65rem;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

/* 환불 가능 */
.rate-tag.refundable {
  background: #d1fae5;
  color: #065f46;
}

/* 환불 불가 */
.rate-tag.non-refundable {
  background: #fee2e2;
  color: #991b1b;
}

/* 룸온리 */
.rate-tag.room-only {
  background: #e5e7eb;
  color: #374151;
}

/* 조식포함 */
.rate-tag.breakfast {
  background: #fef3c7;
  color: #92400e;
}

/* 하프보드 */
.rate-tag.half-board {
  background: #fed7aa;
  color: #9a3412;
}

/* 풀보드 */
.rate-tag.full-board {
  background: #fecaca;
  color: #991b1b;
}

/* 올인클루시브 */
.rate-tag.all-inclusive {
  background: #ddd6fe;
  color: #5b21b6;
}

/* 울트라 올인클루시브 */
.rate-tag.ultra-all-inclusive {
  background: #c7d2fe;
  color: #3730a3;
}

/* 성인 전용 */
.rate-tag.adults-only {
  background: #fce7f3;
  color: #9f1239;
}

/* 즉시 확정 */
.rate-tag.instant-confirmation {
  background: #dbeafe;
  color: #1e40af;
}

/* 24시간 이내 확정 */
.rate-tag.confirmation-24h {
  background: #e0e7ff;
  color: #3730a3;
}

/* 수동 확정 */
.rate-tag.manual-confirmation {
  background: #f3f4f6;
  color: #4b5563;
}

/* 취소됨 */
.rate-tag.cancelled {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* 카테고리 및 타이틀 아이콘 스타일 */
.category-icon svg,
.title-icon svg {
  display: inline-block;
  vertical-align: middle;
  color: currentColor;
  transition: all 0.3s ease;
}

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

/* 카테고리 아이템 호버 효과 */
.category-item:hover .category-icon svg {
  transform: scale(1.1);
}

.category-item.active .category-icon svg {
  color: #3b82f6;
}

/* 섹션 타이틀 아이콘 색상 */
.faq-category-title .title-icon svg {
  color: #3b82f6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Alert 스타일
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.alert {
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
}

/* Info Alert (파란색 - 정보성 메시지) */
.alert-info {
  background-color: #e0f2fe;
  border-color: #bae6fd;
  color: #0c4a6e;
}

.alert-info::before {
  content: "ℹ️";
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

/* Success Alert (초록색 - 성공 메시지) */
.alert-success {
  background-color: #d1fae5;
  border-color: #a7f3d0;
  color: #065f46;
}

.alert-success::before {
  content: "✓";
  margin-right: 0.5rem;
  font-size: 1.1rem;
  font-weight: bold;
}

/* Warning Alert (노란색 - 경고 메시지) */
.alert-warning {
  background-color: #fef3c7;
  border-color: #fde68a;
  color: #92400e;
}

.alert-warning::before {
  content: "⚠️";
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

/* Danger Alert (빨간색 - 에러 메시지) */
.alert-danger {
  background-color: #fee2e2;
  border-color: #fecaca;
  color: #991b1b;
}

.alert-danger::before {
  content: "✕";
  margin-right: 0.5rem;
  font-size: 1.1rem;
  font-weight: bold;
}

/* Alert 내부 링크 스타일 */
.alert a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}

.alert a:hover {
  opacity: 0.8;
}

/* Alert 닫기 버튼 */
.alert-dismissible {
  padding-right: 3rem;
}

.alert .close {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.alert .close:hover {
  opacity: 1;
}

/* Alert 아이콘 없는 버전 */
.alert-no-icon::before {
  content: none;
}

/* Alert 컴팩트 버전 */
.alert-sm {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

/* Alert 큰 버전 */
.alert-lg {
  padding: 1.5rem 2rem;
  font-size: 1rem;
}

/* 인기 여행 도시 섹션 */
.city-list-section {
  padding: 5rem 4%;
  background: #0f172a;
}

.city-list-container {
  max-width: 1600px;
  margin: 0 auto;
}

.city-list-section .section-title {
  color: #f1f5f9;
}

.city-list-section .view-all {
  color: #94a3b8;
}

.city-list-section .view-all:hover {
  color: #f1f5f9;
}

.city-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0.5rem;
}

.city-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  min-width: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
}

.city-tag:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.city-tag-name {
  font-size: 1rem;
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: -0.2px;
  transition: color var(--transition-normal);
}

.city-tag-country {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 0.3px;
  transition: color var(--transition-normal);
}

.city-tag:hover .city-tag-name {
  color: #ffffff;
}

.city-tag:hover .city-tag-country {
  color: #94a3b8;
}

a.hotel-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.city-tag {
  text-decoration: none;
  color: inherit;
}

a.hotel-list-card {
  display: grid;
  text-decoration: none;
  color: inherit;
}

/* 반응형 */
@media (max-width: 1024px) {
  .intro-section {
    padding: 10px 0 60px 0;
  }

  .luxury-title {
    font-size: 48px;
  }

  .hotels-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .hotel-image {
    height: 220px;
  }

  .hotel-name {
    font-size: 1.1rem;
  }

  .price-amount {
    font-size: 1.3rem;
  }
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  body {
    padding-bottom: 80px;
  }
  .terms-layout {
    grid-template-columns: 1fr;
  }

  .terms-nav {
    position: static;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-categories {
    position: static;
    padding: 1.5rem;
  }

  .category-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .category-item {
    flex-direction: column;
    padding: 0.8rem;
    text-align: center;
    gap: 0.5rem;
  }

  .category-icon {
    font-size: 1.5rem;
  }

  .category-name {
    font-size: 0.85rem;
  }

  .category-count {
    font-size: 0.75rem;
  }

  .login-box-wrapper {
    grid-template-columns: 1fr;
  }

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

  .search-hero-title {
    font-size: 2.2rem;
  }

  .hotel-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .region-filters {
    gap: 0.8rem;
  }

  .region-filter-item {
    padding: 0.8rem 1.4rem;
    font-size: 0.9rem;
  }

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

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

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

  .tier-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .content-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .hotel-list-card {
    grid-template-columns: 400px 1fr;
  }

  .hotel-list-page-title {
    font-size: 2.5rem;
  }

  .hotel-list-name {
    font-size: 1.5rem;
  }

  .slide-content {
    padding: 2.5rem 4%;
  }

  .slide-content h1 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-brand-section {
    padding-right: 0;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #404040;
  }

  .footer-info-section {
    border-left: none;
    padding-left: 0;
  }

  .footer-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .booking-room-rate-discount {
    font-size: 12px;
    padding: 3px 9px;
  }

  .footer-takumians-logo {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    right: -100%;
    top: 65px;
    flex-direction: column;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    width: 100%;
    text-align: center;
    transition: right 0.3s ease-in-out;
    padding: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-height: calc(100vh - 65px);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }

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

  .nav-links a {
    display: block;
    padding: 1rem 2rem;
    color: #e5e5e5;
    font-size: 1rem;
    border-radius: 0;
  }

  .nav-links a:hover {
    background: rgba(212, 175, 55, 0.15);
  }

  .nav-actions {
    position: fixed;
    right: -100%;
    top: calc(140px + 180px);
    flex-direction: column;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    width: 100%;
    padding: 1.5rem 0 2rem;
    transition: right 0.3s ease-in-out;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 999;
  }

  .nav-actions.active {
    right: 0;
  }

  .nav-auth-link,
  .nav-auth-btn {
    width: 85%;
    margin: 0.5rem auto;
    text-align: center;
    display: block;
    padding: 0.8rem 1rem;
  }

  .nav-external-logo {
    width: 85%;
    margin: 1rem auto 0;
  }

  .menu-toggle {
    display: flex;
    z-index: 1000;
    position: relative;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* 메뉴 오버레이 */
  body.menu-open {
    overflow: hidden;
  }

  .nav-auth-link,
  .nav-auth-btn {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }

  .nav-external-logo {
    width: 90%;
    margin: 0.5rem auto 0;
  }

  .menu-toggle {
    display: flex;
  }
  .hero-slider {
    height: 450px;
  }
  .slide {
    align-items: center;
  }
  .slide::after {
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  }
  .slide-content {
    padding: 1.5rem 4%;
  }

  .slide-tag {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }

  .slide-content h1 {
    font-size: 1.6rem;
  }

  .slide-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .slide-cta {
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
  }
  .slider-controls {
    bottom: 15px;
    right: 50%;
    transform: translateX(50%);
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .membership-section,
  .destinations-section {
    padding: 2rem 4%;
  }
  .intro-header h2,
  .membership-header h2 {
    font-size: 2.2rem;
  }
  .luxury-title {
    font-size: 2.5rem;
  }

  .luxury-subtitle {
    font-size: 1rem;
  }

  .luxury-badge {
    width: 50px;
    height: 50px;
  }
  .section-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .hotels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .hotel-image {
    height: 200px;
  }

  .hotel-info {
    padding: 1.2rem;
    gap: 0.6rem;
  }

  .hotel-name {
    font-size: 1rem;
  }

  .hotel-facilities {
    gap: 6px;
  }

  .facility-item {
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
  }

  .hotel-description {
    font-size: 0.85rem;
  }

  .price-amount {
    font-size: 1.2rem;
  }

  .btn-hotel-detail {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-brand-section {
    padding-right: 0;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #404040;
  }

  .footer-info-section {
    border-left: none;
    padding-left: 0;
  }

  .footer-info-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-address {
    line-height: 1.8;
  }

  .address-detail {
    display: inline;
  }

  .terms-container {
    padding: 4rem 4% 3rem;
  }

  .terms-header h1 {
    font-size: 1.6rem;
  }

  .terms-content {
    padding: 2rem 1.5rem;
  }

  .serviceBox h2 {
    font-size: 1.2rem;
  }

  .serviceBox h3 {
    font-size: 1.1rem;
  }

  .serviceBox h4 {
    font-size: 1rem;
  }

  .txt {
    font-size: 0.9rem;
  }

  .serviceBox table {
    font-size: 0.85rem;
  }

  .serviceBox table th,
  .serviceBox table td {
    padding: 0.6rem 0.8rem;
  }

  .terms-contact-box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .faq-container {
    padding: 4rem 4% 3rem;
  }

  .faq-header h1 {
    font-size: 2rem;
  }

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

  .faq-category-title {
    font-size: 1.6rem;
  }

  .question-text {
    font-size: 0.95rem;
  }

  .question-icon {
    width: 28px;
    height: 28px;
    font-size: 1.3rem;
  }

  .faq-answer p,
  .faq-answer li {
    font-size: 0.9rem;
  }

  .login-container {
    padding: 2rem 4%;
  }

  .login-box,
  .signup-box {
    padding: 2rem 1.5rem;
  }

  .login-box-header h2,
  .signup-box-header h2 {
    font-size: 1.5rem;
  }

  .intro-features {
    grid-template-columns: 1fr;
  }

  .intro-header h3 {
    font-size: 1.6rem;
  }

  .login-intro {
    padding: 2rem 1.5rem;
  }

  .login-footer .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .search-hero {
    height: 450px;
  }

  .search-hero-title {
    font-size: 2rem;
  }

  .search-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .search-input-wrapper {
    padding: 0.4rem 0.5rem;
    gap: 0;
  }

  .search-icon {
    font-size: 1rem;
    margin: 0 0.5rem 0 0.25rem;
  }

  .search-input {
    font-size: 0.95rem;
    padding: 0.7rem 0.25rem;
    min-width: 0;
  }

  .search-btn {
    width: 2.3rem;
    height: 2.3rem;
    font-size: 0.9rem;
  }

  .search-results {
    left: 0;
    right: 0;
    border-radius: var(--radius-lg);
  }

  .hotel-section,
  .membership-brands {
    padding: 4rem 4%;
  }

  .section-header-luxury h2 {
    font-size: 2rem;
  }

  .section-header-luxury p {
    font-size: 1rem;
  }

  .region-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
  }

  .region-filter-item {
    flex-shrink: 0;
  }

  .hotel-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hotel-list-item {
    border-radius: var(--radius-xl);
  }

  .hotel-list-image {
    height: 220px;
  }

  .hotel-list-content {
    padding: 1.5rem;
  }

  .hotel-list-title {
    font-size: 1.2rem;
  }

  .hotel-list-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .btn-view-hotel {
    width: 100%;
    text-align: center;
  }

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

  .brand-item {
    padding: 2rem 1.5rem;
  }

  .brands-benefits {
    padding: 2rem 1.5rem;
  }

  .brands-benefits h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

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

  .search-results-section {
    padding: 3rem 4%;
  }

  .search-results-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .search-results-header h2 {
    font-size: 1.6rem;
  }

  .btn-clear-search {
    width: 100%;
    justify-content: center;
  }

  .results-keyword {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 1rem;
  }

  .benefits-notice {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }

  .notice-icon {
    font-size: 1.5rem;
  }

  .notice-text {
    font-size: 0.9rem;
  }

  .service-membership-section {
    padding: 4rem 0;
  }

  .membership-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .membership-card-header {
    padding: 2.5rem 1.5rem;
  }

  .membership-name-en {
    font-size: 1.6rem;
  }

  .membership-card-body {
    padding: 1.5rem;
  }

  .tier-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tier-info-item {
    padding: 1.2rem 1rem;
  }

  .membership-notice-box {
    flex-direction: column;
    padding: 2rem 1.5rem;
  }

  .content-showcase-section {
    padding: 4rem 4%;
  }

  .content-showcase-header {
    margin-bottom: 3rem;
  }

  .content-showcase-header h2 {
    font-size: 2rem;
  }

  .content-showcase-desc {
    font-size: 1rem;
  }

  .content-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-card-body {
    padding: 1.5rem;
  }

  .content-title span {
    font-size: 0.9rem;
  }

  .content-meta {
    gap: 0.5rem;
  }

  .content-footer {
    padding-top: 1rem;
  }

  .calendar-reset-btn,
  .guest-reset-btn {
    padding: 6px 10px;
    font-size: 0.85rem;
  }

  .calendar-reset-btn svg,
  .guest-reset-btn svg {
    width: 14px;
    height: 14px;
  }

  .guest-popup {
    width: 95%;
    max-height: 85vh;
  }

  .guest-popup-body {
    max-height: 60vh;
  }

  .room-guest-section {
    padding: 1rem;
  }

  .guest-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .price-breakdown-amounts {
    min-width: 120px;
  }

  .date-with-room {
    gap: 0.5rem;
  }

  .room-number {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }

  .date-text {
    font-size: 0.85rem;
  }

  .signup-section {
    padding: 3rem 4%;
  }

  .signup-title {
    font-size: 2rem;
  }

  .signup-subtitle {
    font-size: 0.9rem;
  }

  .signup-form {
    padding: 2rem 1.5rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .input-with-button {
    flex-direction: column;
    gap: 0.6rem;
  }

  .btn-check,
  .btn-verify {
    width: 100%;
  }

  .verification-area {
    padding: 1rem;
  }

  .form-buttons {
    flex-direction: column;
  }

  .terms-modal {
    width: 95%;
    max-height: 85vh;
  }

  .terms-modal-header {
    padding: 1rem 1.5rem;
  }

  .terms-iframe {
    min-height: 400px;
  }

  .signup-section {
    padding: 2rem 4%;
  }

  .signup-title {
    font-size: 1.8rem;
  }

  .signup-subtitle {
    font-size: 0.85rem;
  }

  .signup-form {
    padding: 1.5rem 1rem;
  }

  .form-label {
    font-size: 0.9rem;
  }

  .form-input {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .btn-check,
  .btn-verify {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }

  .agreement-section {
    padding: 1rem;
  }

  .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
  }

  .checkbox-text {
    font-size: 0.85rem;
  }

  .terms-link {
    font-size: 0.8rem;
    padding: 0.25rem 0.6rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.9rem;
    font-size: 0.95rem;
  }

  .terms-modal {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .terms-modal-header h2 {
    font-size: 1.1rem;
  }

  .room-image-slider {
    height: 220px;
    border-radius: var(--radius-md);
  }

  .room-slider-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.95);
    opacity: 1; /* 모바일에서는 항상 표시 */
    pointer-events: auto; /* 항상 클릭 가능 */
  }

  .room-slider-btn svg {
    width: 18px;
    height: 18px;
  }

  .room-slider-prev {
    left: 8px;
  }

  .room-slider-next {
    right: 8px;
  }

  .room-slider-indicators {
    bottom: 12px;
    gap: 6px;
  }

  .room-slider-indicators .indicator {
    width: 6px;
    height: 6px;
  }

  .room-slider-indicators .indicator.active {
    width: 18px;
  }

  .hotel-list-section {
    padding: 20px 0 20px;
  }

  .hotel-list-section-category {
    padding: 110px 0 60px;
  }

  .hotel-list-page-title {
    font-size: 2rem;
  }

  .hotel-list-page-subtitle {
    font-size: 1rem;
  }

  .hotel-list-controls-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }

  .hotel-list-filter-group {
    justify-content: center;
  }

  .hotel-list-sort-group {
    justify-content: space-between;
  }

  .hotel-list-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hotel-list-images {
    padding: 10px;
  }

  .hotel-list-info {
    padding: 25px;
  }

  .hotel-list-name {
    font-size: 1.3rem;
  }

  .hotel-list-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .hotel-list-price-group {
    text-align: left;
    width: 100%;
  }

  .hotel-list-price-amount {
    font-size: 1.2rem;
  }

  .region-selector-title {
    font-size: 2rem;
  }

  .region-selector-tabs {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .region-selector-tabs::-webkit-scrollbar {
    display: none;
  }

  .region-selector-tab {
    white-space: nowrap;
    padding: 1rem 1.5rem;
  }

  .region-selector-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .region-breadcrumb {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .region-hero-header {
    padding: 6rem 0 4rem;
  }

  .region-hero-title {
    font-size: 2.1rem;
  }

  .region-hero-subtitle {
    font-size: 1.1rem;
  }

  .decoration-line {
    width: 40px;
  }

  .hotel-list-empty-state {
    padding: 2rem 1.5rem;
  }

  .empty-state-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
  }

  .empty-state-icon i {
    font-size: 3rem;
  }

  .empty-state-title {
    font-size: 1.6rem;
  }

  .empty-state-description {
    font-size: 1rem;
  }

  .empty-state-steps {
    gap: 1rem;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .step-item span {
    font-size: 0.85rem;
  }

  .step-arrow {
    font-size: 1.2rem;
  }

  .rate-price-original {
    font-size: 0.9rem;
  }

  .rate-cancellation-info {
    font-size: 0.8rem;
    padding: 0.7rem;
  }

  .section-tabs {
    top: 70px;
    margin: 0 -1rem;
    padding: 0 1rem;
  }

  #overview,
  #rooms,
  #location,
  #policies {
    scroll-margin-top: 120px;
  }

  .section-tab {
    padding: 0.75rem 1.2rem;
    font-size: 0.85rem;
  }

  .left-content {
    padding-bottom: 100px;
  }

  .booking-loader {
    margin: 20px;
    padding: 30px 20px;
    max-width: calc(100% - 40px);
  }

  .booking-loader-title {
    font-size: 1.1rem;
  }

  .booking-loader-text {
    font-size: 0.9rem;
  }

  .price-change-modal {
    padding: 30px 20px;
  }

  .price-change-comparison {
    flex-direction: column;
    gap: 10px;
  }

  .price-change-arrow {
    transform: rotate(90deg);
  }

  .price-change-actions {
    flex-direction: column;
  }

  .complete-page-container {
    padding: 1rem;
    padding-top: 5rem;
  }

  .complete-header {
    padding: 2rem 1.5rem;
  }

  .complete-title {
    font-size: 1.5rem;
  }

  .complete-subtitle {
    font-size: 1rem;
  }

  .complete-status-section,
  .complete-summary-section,
  .complete-next-steps {
    padding: 1.5rem;
  }

  .complete-summary-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .complete-hotel-card {
    flex-direction: column;
  }

  .complete-hotel-image {
    width: 100%;
    height: 200px;
  }

  .complete-steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .complete-actions {
    grid-template-columns: 1fr;
  }

  .mybookings-page-container {
    padding: 1rem;
    padding-top: 5rem;
  }

  .mybookings-title {
    font-size: 1.5rem;
  }

  .mybookings-card {
    padding: 1rem;
  }

  .mybookings-card-body {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mybookings-hotel-image {
    width: 100%;
    height: 200px;
  }

  .mybookings-info-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .mybookings-card-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .mybookings-card-actions {
    flex-direction: column;
  }

  .mybookings-btn {
    justify-content: center;
  }

  .city-list-section {
    padding: 3rem 4%;
  }
  .city-tags-wrapper {
    gap: 8px;
  }
  .city-tag {
    padding: 12px 20px;
    min-width: 84px;
  }
  .city-tag-name {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .search-input::placeholder {
    font-size: 0.82rem;
  }

  .search-icon {
    display: none;
  }

  .search-btn {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 0.85rem;
  }

  nav {
    padding: 1rem 4%;
  }
  .logo {
    font-size: 1.3rem;
  }
  .slide {
    align-items: flex-start; /* 상단으로 정렬 */
    padding-top: 80px; /* 헤더 아래 여백 */
  }
  .slide-content {
    padding: 1rem 4%;
  }

  .slide-tag {
    font-size: 0.65rem;
    padding: 0.35rem 0.9rem;
  }

  .slide-content h1 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }

  .slide-content p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .slide-cta {
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
    margin-bottom: 3rem;
  }
  .slider-controls {
    bottom: 10px;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .luxury-title {
    font-size: 2rem;
  }

  .title-word {
    margin: 0 0.15rem;
  }
  .destination-card {
    height: 280px;
  }
  .category-list {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 1.2rem;
  }

  .faq-answer p,
  .faq-answer ul,
  .faq-answer ol {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .faq-answer ul,
  .faq-answer ol {
    padding-left: 2.5rem;
  }

  .login-nav {
    padding: 1rem 4%;
  }

  .login-logo-left img {
    height: 24px;
  }

  .login-logo-right {
    font-size: 1.1rem;
  }

  .login-box,
  .signup-box {
    padding: 1.5rem 1rem;
  }

  .login-nav {
    padding: 1.5rem 4%;
  }

  .login-nav::after {
    height: 30px;
  }

  .login-logo-left {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .login-logo-left img {
    height: 22px;
  }

  .login-logo-left::after {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  .login-logo-right {
    font-size: 1rem;
    padding: 0.43rem 1rem;
  }

  .login-logo-right::after {
    font-size: 0.5rem;
    letter-spacing: 2px;
  }

  .login-box,
  .signup-box {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-xl);
  }

  .login-box-header h2,
  .signup-box-header h2 {
    font-size: 1.6rem;
  }

  .search-hero {
    height: 400px;
  }

  .search-hero-title {
    font-size: 1.5rem;
  }

  .search-hero-subtitle {
    font-size: 0.9rem;
  }

  .search-icon {
    font-size: 1.1rem;
    margin: 0 0.5rem;
  }

  .search-input {
    font-size: 0.95rem;
  }

  .section-header-luxury h2 {
    font-size: 1.6rem;
  }

  .region-filter-item {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  .filter-icon {
    font-size: 1.1rem;
  }

  .hotel-list-image {
    height: 200px;
  }

  .hotel-list-title {
    font-size: 1.2rem;
  }

  .price-amount {
    font-size: 1.2rem;
  }

  .search-results-info {
    padding: 1rem;
  }

  .results-keyword {
    font-size: 0.95rem;
  }

  .notice-text {
    font-size: 0.85rem;
  }

  .membership-name-en {
    font-size: 1.4rem;
  }

  .membership-name-kr {
    font-size: 0.9rem;
  }

  .tier-info-title {
    font-size: 1.2rem;
  }

  .membership-tier-info {
    padding: 2rem 1.5rem;
  }

  .content-showcase-header h2 {
    font-size: 1.6rem;
  }

  .content-card-image {
    height: 200px;
  }

  .content-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }

  .content-title span {
    font-size: 0.9rem;
  }

  .content-summary {
    font-size: 0.9rem;
  }

  .content-features {
    gap: 0.5rem;
  }

  .feature-item {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }

  .btn-content-more {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }

  .hotel-list-wrapper {
    padding: 0 3%;
  }

  .hotel-list-page-title {
    font-size: 1.8rem;
  }

  .hotel-list-controls-bar {
    padding: 15px;
  }

  .hotel-list-filter-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .hotel-list-sub-images {
    gap: 6px;
  }

  .hotel-list-info {
    padding: 20px;
    gap: 15px;
  }

  .hotel-list-name {
    font-size: 1.2rem;
  }

  .hotel-list-location {
    font-size: 0.85rem;
  }

  .hotel-list-features {
    gap: 8px;
  }

  .hotel-list-feature-tag {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .hotel-list-description {
    font-size: 0.9rem;
  }

  .hotel-list-wishlist-btn {
    width: 40px;
    height: 40px;
  }

  .hotel-list-rating-score {
    font-size: 1rem;
  }

  .hotel-list-review-count {
    font-size: 0.8rem;
  }

  .hotel-list-price-amount {
    font-size: 1.1rem;
  }

  .hotel-list-load-more-btn {
    padding: 14px 32px;
    font-size: 0.9rem;
  }

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

  .hotel-image {
    height: 240px;
  }

  .region-hero-header {
    padding: 3rem 0 5rem;
  }

  .region-hero-title {
    font-size: 1.8rem;
  }

  .region-hero-subtitle {
    font-size: 1rem;
  }

  .empty-state-steps {
    flex-direction: column;
    gap: 1.5rem;
  }

  .step-arrow {
    transform: rotate(90deg);
  }
  .rate-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.55rem;
  }

  .city-list-section {
    padding: 2.5rem 4%;
  }
  .city-tag {
    padding: 12px 18px;
    min-width: 76px;
  }
  .city-tag-name {
    font-size: 0.88rem;
  }
  .city-tag-country {
    font-size: 0.74rem;
  }
}
