: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: 550px;
	overflow: hidden;
}

.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;
}

.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: 2;
}

.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 {
	padding: 3rem 4%;
	max-width: 1400px;
	margin: 0 auto;
}

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

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

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

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

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

.intro-icon {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.intro-card h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	font-weight: 800;
	letter-spacing: -0.5px;
}

.intro-card p {
	color: #666;
	line-height: 1.8;
	font-size: 0.95rem;
}

/* 호텔 섹션 */
.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: 8px;
    z-index: 3;
    max-width: calc(100% - 32px);
}

.promo-tag {
    background: rgba(96, 125, 139, 0.85); /* 블루그레이 */
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.tag-discount {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
	box-shadow: 0 2px 8px rgba(176, 190, 197, 0.4);
}

.tag-special {
	background: linear-gradient(135deg, #90CAF9 0%, #64B5F6 100%);
	box-shadow: 0 2px 8px rgba(144, 202, 249, 0.4);
}

.tag-lastminute {
	background: linear-gradient(135deg, #FFD54F 0%, #FFCA28 100%);
	box-shadow: 0 2px 8px rgba(255, 213, 79, 0.4);
}

.tag-early {
	background: linear-gradient(135deg, #FFB300 0%, #FFA000 100%);
	box-shadow: 0 2px 8px rgba(255, 179, 0, 0.4);
}

.tag-stay {
	background: linear-gradient(135deg, #B39DDB 0%, #9575CD 100%);
	box-shadow: 0 2px 8px rgba(179, 157, 219, 0.4);
}

.tag-wellness {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.tag-gastronomy {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

.tag-heritage {
    background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.4);
}

.tag-urban {
    background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.4);
}

.tag-hideaway {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.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-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.4rem 0.8rem;
	background: var(--gray-50);
	border: 1px solid var(--border-light);
	border-radius: 20px;
	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-description {
	color: #999;
	font-size: 0.85rem;
	line-height: 1.7;
}

/* 정보 영역 */
.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-block;
	margin-top: 1rem;
	padding: 0.5rem 1rem;
	text-decoration: none;
	border-radius: var(--radius-sm);
	font-size: 0.8rem;
	font-weight: 600;
	text-align: center;
	background: var(--primary-opacity-10);
	border: 1px solid var(--primary-opacity-30);
	color: var(--primary-light);
	transition: all var(--transition-normal);
}

.footer-contact-btn:hover {
	background: var(--primary-opacity-20);
	border-color: rgba(212, 175, 55, 0.5);
	color: var(--accent-color);
}

/* 이용안내 */
.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;
}

.copyright-notice {
	color: #777;
	font-size: 0.7rem;
}

/* 상세 페이지 */
.image-gallery {
	margin-top: 65px;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	padding: 2rem 4%;
}

.gallery-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: 320px 320px;
	gap: 12px;
	border-radius: var(--radius-xl);
	overflow: hidden;
}

/* 갤러리 아이템 호버 효과 */
.gallery-item {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	background: #f5f5f5;
}

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

.gallery-item:hover img {
	transform: scale(1.1);
	filter: brightness(0.7);
}

/* 전체화면 갤러리 뷰어 */
.gallery-viewer {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.95);
	z-index: 4002;
	opacity: 0;
	transition: opacity 0.3s;
}

.gallery-viewer.active {
	display: flex;
	opacity: 1;
}

.gallery-viewer-container {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-viewer-image {
	max-width: 90%;
	max-height: 85vh;
	object-fit: contain;
	transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: opacity, transform;
}

.gallery-viewer-close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: #fff;
	font-size: 2.5rem;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
	z-index: 10;
}

.gallery-viewer-close:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
}

.gallery-viewer-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: #fff;
	font-size: 2rem;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
	z-index: 10;
}

.gallery-viewer-nav:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-50%) scale(1.1);
}

.gallery-viewer-nav.prev {
	left: 2rem;
}

.gallery-viewer-nav.next {
	right: 2rem;
}

.gallery-viewer-counter {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 0.8rem 1.5rem;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
}

.gallery-viewer-thumbnails {
	position: absolute;
	bottom: 5rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.8rem;
	max-width: 90%;
	overflow-x: auto;
	padding: 0.5rem;
}

.gallery-viewer-thumbnails::-webkit-scrollbar {
	height: 4px;
}

.gallery-viewer-thumbnails::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 2px;
}

.gallery-viewer-thumbnails::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 2px;
}

.gallery-thumbnail {
	width: 80px;
	height: 60px;
	object-fit: cover;
	border-radius: var(--radius-md);
	cursor: pointer;
	opacity: 0.5;
	transition: all 0.3s;
	border: 2px solid transparent;
}

.gallery-thumbnail:hover {
	opacity: 0.8;
	transform: scale(1.05);
}

.gallery-thumbnail.active {
	opacity: 1;
	border-color: #fff;
}

.gallery-item:first-child {
	grid-row: 1/3;
}

.view-all-photos {
	position: absolute;
	bottom: 20px;
	right: 20px;
	background: #fff;
	color: #000;
	padding: 0.8rem 1.5rem;
	border-radius: var(--radius-md);
	font-weight: 700;
	font-size: 0.9rem;
	border: none;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s;
}

.view-all-photos:hover {
	background: #f0f0f0;
	transform: translateY(-2px);
}

.content-wrapper {
	max-width: 1600px;
	margin: 0 auto;
	padding: 2rem 4%;
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 4rem;
	align-items: start;
}

.left-content {
	min-width: 0;
}

.right-booking {
	position: sticky;
	top: 100px;
	max-height: calc(100vh - 120px);
	overflow-y: auto;
	padding-right: 5px;
}

.right-booking::-webkit-scrollbar {
	width: 6px;
}

.right-booking::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 3px;
}

.right-booking::-webkit-scrollbar-thumb {
	background: #d4af37;
	border-radius: 3px;
}

.right-booking::-webkit-scrollbar-thumb:hover {
	background: #c9a961;
}

.hotel-detail-header {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
}

.hotel-detail-location {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #666;
	font-size: 1rem;
	margin-bottom: 1rem;
}

.hotel-detail-rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.hotel-detail-stars {
	color: #FFD700;
	font-size: 1.1rem;
}

.hotel-detail-amenities-section {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1.5rem;
	margin: 2rem 0;
}

.hotel-detail-amenity-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.5rem;
}

.hotel-detail-amenity-icon {
	font-size: 0.9rem;
}

.hotel-detail-amenity-icon img {
	width: 3rem;
	height: 3rem;
	border-radius: var(--radius-sm);
}

.hotel-detail-amenity-name {
	font-size: 0.85rem;
	color: #666;
}

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

.promo-banner {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: var(--radius-lg);
	margin: 2rem 0;
}

.promo-title {
	font-size: 1.2rem;
	font-weight: 800;
	margin-bottom: 1rem;
}

.promo-items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
}

.promo-item {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.promo-icon {
	font-size: 1.5rem;
}

.promo-text {
	font-size: 0.9rem;
	color: #666;
}

.hotel-detail-content-section {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #e5e5e5;
}

.hotel-detail-content-section:last-child {
	border-bottom: none;
}

.info-large-image img {
	width: 100%;
	height: 400px;
	border-radius: var(--radius-xl);
	overflow: hidden;
	margin-bottom: 2rem;
	object-fit: cover;
	object-position: center;
}

.info-video-container {
	position: relative;
	width: 100%;
	height: 400px;
	background: #000;
	border-radius: var(--radius-xl);
	overflow: hidden;
	margin-bottom: 2rem;
	color: #fff;
}

.info-video-container iframe,
.info-video-container video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.info-grid-images {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-bottom: 2rem;
}

.info-grid-item {
	aspect-ratio: 1;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.info-grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 모바일 예약 모달 */
.mobile-booking-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	z-index: 3000;
	overflow-y: auto;
}

.mobile-booking-modal.active {
	display: block;
}

.mobile-booking-header {
	position: sticky;
	top: 0;
	background: #fff;
	padding: 1rem 4%;
	border-bottom: 1px solid #e5e5e5;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
}

.mobile-booking-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
}

.mobile-booking-content {
	padding: 2rem 4%;
}

.info-description {
	color: #666;
	line-height: 1.9;
	font-size: 0.95rem;
}

.room-card {
	border: 1px solid #e5e5e5;
	border-radius: var(--radius-xl);
	padding: 1rem;
	margin-bottom: 2rem;
}

.room-main-info {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

/* 객실 이미지 슬라이더 */
.room-image-slider {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--gray-100);
}

.room-image-slider:active {
	cursor: grabbing;
}

.room-image-track {
	display: flex;
	height: 100%;
	width: 100%;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-image-item {
	flex: 0 0 100%;
	height: 100%;
	position: relative;
	background: var(--gray-100);
}

.room-image-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	cursor: pointer;
	transition: transform 0.3s ease;
	pointer-events: auto;
}

.room-image-item img:hover {
	transform: scale(1.05);
}

/* 슬라이더 버튼 */
.room-slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: all var(--transition-normal);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	opacity: 0;
	pointer-events: none;
}

.room-image-slider:hover .room-slider-btn {
	opacity: 1;
	pointer-events: auto;
}

.room-slider-btn:hover {
	background: var(--white);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transform: translateY(-50%) scale(1.1);
}

.room-slider-btn:active {
	transform: translateY(-50%) scale(0.95);
}

.room-slider-prev {
	left: 12px;
}

.room-slider-next {
	right: 12px;
}

.room-slider-btn svg {
	width: 24px;
	height: 24px;
	color: var(--text-primary);
}

/* 인디케이터 */
.room-slider-indicators {
	position: absolute;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	z-index: 2;
	pointer-events: none;
}

.room-slider-indicators .indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all var(--transition-fast);
	pointer-events: auto;
}

.room-slider-indicators .indicator:hover {
	background: rgba(255, 255, 255, 0.8);
	transform: scale(1.2);
}

.room-slider-indicators .indicator.active {
	background: var(--white);
	width: 24px;
	border-radius: 4px;
}

.room-details h3 {
	font-size: 1.3rem;
	font-weight: 800;
	margin-bottom: 0.8rem;
}

.room-specs {
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.room-description {
	color: #666;
	font-size: 0.9rem;
	line-height: 1.7;
	margin: 1rem 0;
}

.room-amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1rem;
	align-items: center;
}

.room-amenity {
	background: #eee;
	padding: 0.3rem 0.7rem;
	border-radius: 15px;
	font-size: 0.85rem;
	color: #666;
	border: 1px solid #e5e5e5;
}

.rate-plans {
	border-top: 1px solid #f0f0f0;
	padding-top: 1.5rem;
}

.rate-plan-item {
	display: grid;
	grid-template-columns: 7fr 3fr; /* 7:3 비율 */
	gap: 1rem;
	align-items: start;
	padding: 1.5rem;
	background: #ffffff;
	border-radius: var(--radius-lg);
	margin-bottom: 1rem;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 1px solid var(--gray-300);
	position: relative;
}

.rate-plan-item:hover {
	border-color: #d4af37;
	transform: translateY(-2px);
}

.rate-plan-action-column {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* 버튼 호버 효과도 개선 */
.rate-plan-item .btn-select-rate {
	transition: all 0.3s ease;
}

.rate-plan-item:hover .btn-select-rate {
	transform: scale(1.05);
	box-shadow: 0 4px 12px var(--primary-opacity-30);
}

/* 가격 강조 효과 */
.rate-plan-item:hover .rate-price {
	color: var(--primary-color);
}

.rate-plan-info h4 {
	font-size: 1.1rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
}

.rate-plan-description {
	color: #666;
	font-size: 0.85rem;
	line-height: 1.6;
	margin-bottom: 0.8rem;
}

.rate-plan-tags {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.rate-tag {
	background: #fff;
	padding: 0.3rem 0.7rem;
	border-radius: 5px;
	font-size: 0.75rem;
	color: #666;
	border: 1px solid #e5e5e5;
}

.rate-tag.highlight {
	background: #000;
	color: #fff;
	border-color: #000;
}

.rate-plan-price {
	text-align: right;
	margin-bottom: 1rem;
}

/* 할인 배지 그룹 */
.discount-badges-group {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

/* 할인율 배지 기본 */
.discount-rate {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

/* 프로모션 할인 배지 */
.discount-rate.promo-discount {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
}

/* 연박할인 배지 */
.discount-rate.los-discount {
    background: linear-gradient(135deg, #4a90e2 0%, #5ba3f5 100%);
    color: white;
}

.discount-rate.los-discount i {
    font-size: 11px;
}

/* 원래 가격 (취소선) */
.rate-price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-bottom: 4px;
}

/* 최종 가격 */
.rate-price {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

/* 가격 단위 */
.rate-unit {
    font-size: 12px;
    color: #666;
}

/* 태그 스타일 추가 */
/* 환불 관련 태그 */
.rate-tag.refundable {
	background-color: #d1fae5;
	color: #065f46;
}

.rate-tag.non-refundable {
	background-color: #dc2626; /* 진한 빨간색 배경 */
	color: #ffffff; /* 흰색 텍스트 */
}

/* 식사 관련 태그 - 평면 스타일로 변경 */
.rate-tag.breakfast {
	background-color: #fef3c7;
	color: #92400e;
}

.rate-tag.room-only {
	background-color: #e5e7eb;
	color: #374151;
}

.rate-tag.half-board {
	background-color: #fed7aa;
	color: #9a3412;
}

.rate-tag.full-board {
	background-color: #fecdd3;
	color: #9f1239;
}

.rate-tag.all-inclusive {
	background-color: #ddd6fe;
	color: #5b21b6;
}

.rate-tag.ultra-all-inclusive {
	background-color: #c7d2fe;
	color: #3730a3;
}

/* 성인 전용 */
.rate-tag.adults-only {
	background-color: #fce7f3;
	color: #9f1239;
}

.rate-tag.instant-confirmation {
	background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); /* 보라 계열로 변경 */
	color: var(--white);
	box-shadow: 0 2px 4px rgba(139, 92, 246, 0.2);
}

.rate-tag.confirmation-24h {
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); /* 블루 유지 */
	color: var(--white);
	box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.rate-tag.manual-confirmation {
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); /* 오렌지 유지 */
	color: var(--white);
	box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2);
}

/* 취소 규정 정보 */
.rate-cancellation-info {
	margin-top: 0.8rem;
	padding: 0.8rem;
	background: var(--gray-50);
	border-radius: var(--radius-sm);
	font-size: 0.80rem;
	color: var(--text-tertiary);
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.rate-cancellation-info i {
	color: var(--primary-color);
	margin-top: 0.2rem;
	flex-shrink: 0;
}

.rate-unit {
	font-size: 0.875rem;
	color: #6b7280;
}

.btn-select-rate {
	width: auto; 
	padding: 0.75rem 1.5rem;
	background-color: #1a1a1a;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s;
	margin-bottom: 0;
	align-self: flex-end;
}

/* 오른쪽 영역 래퍼 */
.rate-plan-right {
	display: flex;
	flex-direction: column;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   일자별 요금 상세 토글
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nightly-breakdown-container {
    margin-top: 1rem;
}

.nightly-breakdown-toggle {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #eaeef3;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
}

.nightly-breakdown-toggle:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.nightly-breakdown-toggle.active {
    background: #0066FF;
    border-color: #0066FF;
    color: white;
}

.nightly-breakdown-toggle.active:hover {
    background: #0052CC;
    border-color: #0052CC;
}

.nightly-breakdown-toggle-text {
	font-size: 0.8rem;
    flex: 1;
    text-align: left;
}

.nightly-breakdown-toggle-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.nightly-breakdown-toggle.active .nightly-breakdown-toggle-icon {
    transform: rotate(180deg);
}

.nightly-breakdown {
    margin-top: 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.nightly-breakdown-room {
    padding: 0.6rem;
    background: white;
}

.nightly-breakdown-room:not(:last-child) {
    border-bottom: 1px solid #e9ecef;
}

.nightly-breakdown-room-title {
    font-weight: 600;
	color: #4b5563;
	margin-bottom: 0.4rem;
	font-size: 0.75rem; 
	padding-left: 0.4rem;
	border-left: 2px solid #10b981;
}

.nightly-breakdown-row {
    display: flex;
	justify-content: space-between;
	padding: 0.35rem 0.5rem;
	font-size: 0.8rem;
	background-color: white;
	border-radius: 4px;
	margin-bottom: 0.25rem;
}

.nightly-breakdown-row:not(:last-child) {
    border-bottom: 1px solid #f1f3f5;
}

.nightly-breakdown-row.free {
	background-color: #fef3c7;
	border: 1px dashed #f59e0b;

}

.nightly-date {
	font-weight: 500;
}

.nightly-price {
    font-weight: 600;
	color: #111827;
	white-space: nowrap;
	font-size: 0.8rem;
}

.nightly-price.free-night {
    color: #f59e0b;
	font-weight: 700;
	font-size: 0.85rem;
}


/* 요금 로딩 */
.rate-loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 4rem 2rem;
	min-height: 200px;
}

.rate-loading-spinner {
	width: 50px;
	height: 50px;
	border: 4px solid var(--gray-200);
	border-top-color: var(--primary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

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

.rate-loading-text {
	margin-top: 1.5rem;
	font-size: 1rem;
	color: var(--text-secondary);
	font-weight: 500;
}

/* 요금 조회 에러 */
.rate-error {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 4rem 2rem;
	min-height: 200px;
}

.rate-error-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.rate-error-text {
	font-size: 1rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.btn-retry {
	padding: 0.8rem 2rem;
	background: var(--primary-color);
	color: var(--white);
	border: none;
	border-radius: var(--radius-md);
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--transition-normal);
}

.btn-retry:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px var(--primary-opacity-30);
}

.reviews-summary {
	text-align: center;
	padding: 2rem;
	background: #fafafa;
	border-radius: var(--radius-lg);
	margin-bottom: 2rem;
}

.review-score {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
}

.review-item {
	padding: 2rem;
	border: 1px solid #e5e5e5;
	border-radius: var(--radius-lg);
	margin-bottom: 1.5rem;
}

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

.reviewer-name {
	font-weight: 700;
}

.review-date {
	color: #999;
	font-size: 0.85rem;
}

.review-rating {
	color: #FFD700;
}

.review-content {
	color: #666;
	line-height: 1.8;
}

.map-container {
	width: 100%;
	height: 400px;
	background: #f5f5f5;
	border-radius: var(--radius-lg);
	margin-top: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
}

.info-list {
	list-style: none;
}

.info-list li {
	padding: 1.2rem 0;
	border-bottom: 1px solid #f0f0f0;
}

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

.hotel-info-label {
	font-weight: 700;
	color: #000;
}

.hotel-info-value {
	font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* 아코디언 스타일 */
.info-accordion {
	margin-top: 2rem;
}

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

.accordion-item:hover {
	border-color: var(--accent-color);
}

.accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.0rem;
	cursor: pointer;
	background: #fafafa;
	transition: all 0.3s;
}

.accordion-header:hover {
	background: #f5f5f5;
}

.accordion-item.active .accordion-header {
	background: #f8f9fa;
	border-bottom: 1px solid #e5e5e5;
}

.accordion-title {
	font-size: 1.0rem;
	font-weight: 800;
	color: #000;
	margin: 0;
}

.accordion-icon {
	font-size: 1.5rem;
	font-weight: 300;
	color: #666;
	transition: transform 0.3s;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.accordion-item.active .accordion-icon {
	color: var(--accent-color);
}

.accordion-content {
	display: none;
	padding: 1.5rem;
	background: #fff;
}

.accordion-content .info-list {
	margin: 0;
}

.accordion-content .info-list li {
	padding: 1rem 0;
}

.accordion-content .info-list li:first-child {
	padding-top: 0;
}

.accordion-content .info-list li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.booking-card {
	padding: 1.5rem;
	background: var(--white);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
}

.booking-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.booking-overlay.active {
    display: flex;
}

.booking-loader {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.booking-loader-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0066cc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.booking-loader-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.booking-loader-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.booking-loader-steps {
    margin-top: 24px;
    text-align: left;
}

.booking-loader-step {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #888;
    transition: all 0.3s ease;
}

.booking-loader-step.active {
    color: #0066cc;
    font-weight: 600;
}

.booking-loader-step.completed {
    color: #28a745;
}

.booking-loader-step-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.booking-loader-step.active .booking-loader-step-icon {
    border-color: #0066cc;
    background: #0066cc;
    color: white;
}

.booking-loader-step.completed .booking-loader-step-icon {
    border-color: #28a745;
    background: #28a745;
    color: white;
}

.booking-loader-step-icon .spinner {
    width: 14px;
    height: 14px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0066cc;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* 요금 변경 모달 */
.price-change-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.price-change-overlay.active {
    display: flex;
}

.price-change-modal {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInScale 0.3s ease-out;
}

.price-change-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 20px;
}

.price-change-icon.price-increase {
    color: #dc3545;
}

.price-change-icon.price-decrease {
    color: #28a745;
}

.price-change-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.price-change-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.price-change-item {
    flex: 1;
    text-align: center;
}

.price-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-value.original {
    color: #666;
    text-decoration: line-through;
}

.price-value.new {
    font-size: 1.8rem;
}

.price-value.new.price-increase {
    color: #dc3545;
}

.price-value.new.price-decrease {
    color: #28a745;
}

.price-change-arrow {
    font-size: 2rem;
    font-weight: 700;
}

.price-change-arrow.price-increase {
    color: #dc3545;
}

.price-change-arrow.price-decrease {
    color: #28a745;
}

.price-change-diff {
    text-align: center;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.price-change-diff.price-increase {
    background: #fff5f5;
    border: 2px solid #dc3545;
}

.price-change-diff.price-decrease {
    background: #f0fff4;
    border: 2px solid #28a745;
}

.price-diff-amount {
    font-size: 1.3rem;
    font-weight: 700;
    margin-right: 10px;
}

.price-diff-percent {
    font-size: 1rem;
    color: #666;
}

.price-change-reason {
    background: #fff9e6;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.price-change-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: #e7f3ff;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #0066cc;
}

.warning-icon {
    font-size: 1.2rem;
}

.price-change-actions {
    display: flex;
    gap: 10px;
}

.price-change-actions .btn-cancel,
.price-change-actions .btn-confirm {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.price-change-actions .btn-cancel {
    background: #e9ecef;
    color: #333;
}

.price-change-actions .btn-cancel:hover {
    background: #dee2e6;
}

.price-change-actions .btn-confirm {
    background: #0066cc;
    color: white;
}

.price-change-actions .btn-confirm.price-increase {
    background: #dc3545;
}

.price-change-actions .btn-confirm.price-decrease {
    background: #28a745;
}

.price-change-actions .btn-confirm:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 가격 요약 영역 */
.price-summary {
	margin-bottom: 1rem;
}

/* 요금 상세 내용 */
.price-detail-toggle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.8rem 1.2rem;
	background: #fff;
	border-top: 1px solid #e5e5e5;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 0.85rem;
	font-weight: 600;
	color: #666;
}

.price-detail-toggle:hover {
	background: #f8f8f8;
	color: #000;
}

.toggle-icon {
	transition: transform 0.3s;
	font-size: 0.8rem;
}

.price-detail-toggle.active .toggle-icon {
	transform: rotate(180deg);
}


.price-detail-content {
	display: none;
	padding: 1.2rem;
	background: #fff;
	border-top: 1px solid #f0f0f0;
	font-size: 0.8rem;
}

.price-breakdown-section {
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #f0f0f0;
}

.price-breakdown-title {
	font-size: 0.9rem;
	font-weight: 800;
	color: #000;
	margin-bottom: 0.8rem;
}

.price-breakdown-subtitle {
	font-size: 0.85rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 0.6rem;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.subtitle-icon {
	font-size: 0.9rem;
}

.price-breakdown-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.8rem 0;
	border-bottom: 1px solid var(--gray-100);
	font-size: 0.9rem;
}

.price-breakdown-row:last-child {
	border-bottom: none;
}

.price-breakdown-row.total {
	padding: 1rem 0;
	margin-top: 0.5rem;
	border-top: 2px solid var(--border-dark);
	border-bottom: none;
	font-weight: 700;
	font-size: 1rem;
}

.price-breakdown-row.highlight {
	background: rgba(39, 174, 96, 0.05);
	padding: 0.8rem 1rem;
	margin: 0.3rem -1rem;
	border-radius: var(--radius-md);
	border-bottom: none;
}

.date-with-room {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	flex: 1; /* ★ 추가 - 남은 공간 차지 */
}

.room-number {
	font-size: 0.75rem;
	color: #fff;
	background: var(--primary-color);
	padding: 0.25rem 0.6rem;
	border-radius: var(--radius-sm);
	font-weight: 700;
	white-space: nowrap;
	flex-shrink: 0; /* ★ 추가 - 축소 방지 */
}

.date-text {
	font-size: 0.9rem;
	color: var(--text-primary);
	font-weight: 500; /* ★ 추가 - 가독성 향상 */
	flex-shrink: 0; /* ★ 추가 - 축소 방지 */
}

/* 기존 span 태그와의 충돌 방지 */
.price-breakdown-row > span:not(.date-with-room) {
	flex: 1;
}

.amount-primary {
	font-weight: 700;
	color: #000;
	font-size: 0.85rem;
}

.amount-secondary {
	font-size: 0.7rem;
	color: #999;
}

.price-policy-item {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	padding: 0.4rem 0;
	line-height: 1.5;
	color: #666;
	font-size: 0.78rem;
}

.policy-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 0.65rem;
	font-weight: 700;
}

.policy-label {
	display: inline-block;
	min-width: 65px;
	font-weight: 600;
	color: #333;
	font-size: 0.78rem;
}


.price-breakdown-section:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}



.subtitle-icon {
	font-size: 1rem;
}


.price-breakdown-row.total {
	padding: 1rem 0;
	margin-top: 0.5rem;
	border-top: 2px solid var(--border-dark);
	border-bottom: none;
	font-weight: 700;
	font-size: 1rem;
}

.price-breakdown-row.highlight {
	background: rgba(39, 174, 96, 0.05);
	padding: 0.8rem 1rem;
	margin: 0.3rem -1rem;
	border-radius: var(--radius-md);
	border-bottom: none;
}

.price-breakdown-amounts {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.2rem;
	min-width: 140px;
}

.amount-primary {
	font-weight: 700;
	color: var(--text-primary);
}

.amount-primary.free {
	color: var(--success);
	font-weight: 800;
}

.amount-secondary {
	font-size: 0.8rem;
	color: var(--text-tertiary);
}

.price-breakdown-row.highlight .price-breakdown-amounts {
	justify-content: center;
}


.policy-icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 0.7rem;
	font-weight: 700;
}

.policy-icon.success {
	background: #d4edda;
	color: #27ae60;
}

.policy-icon.warning {
	background: #fff3cd;
	color: #ff9800;
}

.policy-label {
	display: inline-block;
	min-width: 70px;
	font-weight: 600;
	color: #333;
}

.price-section {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #f0f0f0;
}

.selected-rate-info {
	background: #f8f9fa;
	padding: 1.2rem;
	border-radius: 10px;
	margin-bottom: 1.2rem;
}

.selected-rate-empty {
	text-align: center;
	padding: 1.5rem 1rem;
}

.empty-icon {
	font-size: 2.5rem;
	margin-bottom: 0.8rem;
	opacity: 0.5;
}

.empty-text {
	font-size: 0.95rem;
	font-weight: 700;
	color: #666;
	margin-bottom: 0.4rem;
}

.empty-subtext {
	font-size: 0.8rem;
	color: #999;
	line-height: 1.5;
}

.selected-rate-content {
	display: none;
}

.selected-room-type {
	font-size: 0.9rem;
	font-weight: 700;
	color: #666;
	background: #fff;
	padding: 0.6rem 0.8rem;
	border-radius: var(--radius-sm);
	margin-bottom: 0.8rem;
	border-left: 3px solid #d4af37;
}

.selected-rate-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.8rem;
	padding-bottom: 0.8rem;
	border-bottom: 1px solid #e5e5e5;
}

.selected-rate-title {
	font-size: 1rem;
	font-weight: 800;
	color: #000;
}

.selected-rate-discount {
	background: #ff4757;
	color: #fff;
	padding: 0.25rem 0.6rem;
	border-radius: 5px;
	font-size: 0.75rem;
	font-weight: 700;
	display: inline-block;
	width: fit-content;
	flex-shrink: 0;
}

.selected-rate-feature {
	background: #fff;
	padding: 0.25rem 0.6rem;
	border-radius: var(--radius-lg);
	font-size: 0.7rem;
	color: #666;
	border: 1px solid #e5e5e5;
}

.selected-rate-price-info {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-top: 0.8rem;
}

.selected-rate-price {
	font-size: 1.1rem;
	font-weight: 800;
	color: #000;
}

.selected-rate-unit {
	font-size: 0.85rem;
	color: #666;
}

.selected-rate-divider {
	display: none;
}

.date-display {
	padding: 0.8rem;
	border: 1px solid #ddd;
	border-radius: var(--radius-md);
	cursor: pointer;
	margin-bottom: 1rem;
}

.date-label {
	font-size: 0.7rem;
	color: #666;
	margin-bottom: 0.2rem;
}

.date-value {
	font-size: 0.9rem;
	font-weight: 700;
}

.nights-info {
	text-align: center;
	font-size: 0.8rem;
	color: #666;
	margin-top: 0.4rem;
}

.date-display:hover {
	border-color: #000;
}

.date-display-content {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 1rem;
	align-items: center;
}

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

.calendar-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 4000;
}

.calendar-overlay.active {
	display: block;
}

.calendar-popup {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	z-index: 4001;
	max-width: 95%;
	width: 850px;
}

.calendar-body {
	padding: 1.2rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.calendar-month-container {
	display: flex;
	flex-direction: column;
}

.calendar-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1.2rem;
	gap: 1rem;
}

.calendar-month-title {
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
}

.calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}

.calendar-popup.active {
	display: block;
}

.calendar-header {
	display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 700;
    font-size: 1.1rem;
}

.calendar-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.calendar-reset-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-reset-btn:hover {
    background: #e8e8e8;
    border-color: #ccc;
    color: #333;
}

.calendar-reset-btn:active {
    transform: scale(0.98);
}

.calendar-reset-btn svg {
    flex-shrink: 0;
}
.calendar-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
}

#currentMonth {
	font-size: 1rem;
	font-weight: 700;
}

.calendar-nav-btn {
	background: #f5f5f5;
	border: none;
	cursor: pointer;
	font-size: 1.3rem;
	padding: 0.4rem 0.8rem;
	border-radius: var(--radius-sm);
	transition: all 0.3s;
	min-width: 32px;
	min-height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.calendar-nav-btn:hover {
	background: #e5e5e5;
}

.calendar-day {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: var(--radius-sm);
	font-size: 0.85rem;
}

.calendar-day:hover:not(.disabled):not(.empty) {
	background: #f5f5f5;
}

.calendar-day.disabled {
	color: #ddd;
	cursor: not-allowed;
}

.calendar-day.start, .calendar-day.end {
	background: #000;
	color: #fff;
	font-weight: 700;
}

.calendar-day.start:hover, .calendar-day.end:hover {
	background: #222 !important;
	color: #fff;
}

.calendar-day.in-range {
	background: #f0f0f0;
}

.calendar-footer {
	padding: 1.2rem;
	border-top: 1px solid #e5e5e5;
	display: flex;
	gap: 0.8rem;
}

.calendar-btn {
	flex: 1;
	padding: 0.75rem;
	border: none;
	border-radius: var(--radius-sm);
	font-weight: 700;
	cursor: pointer;
	font-family: 'Nanum Gothic', sans-serif;
	font-size: 0.9rem;
}

.calendar-btn.cancel {
	background: #f5f5f5;
}

.calendar-btn.confirm {
	background: #000;
	color: #fff;
}

.guest-section {
	background: #fafafa;
	border-radius: var(--radius-md);
}

.guest-popup-body .guest-section {
	padding: 1rem;
	background: #fff;
}

/* 객실 수 선택 */
.room-count-section {
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
	border-bottom: 2px solid var(--border-dark);
}

/* 각 객실 섹션 */
.room-guest-section {
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	background: var(--gray-50);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-light);
}

.room-guest-section:last-child {
	margin-bottom: 0;
}

.room-guest-header {
	font-size: 1rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 1rem;
	padding-bottom: 0.8rem;
	border-bottom: 1px solid var(--border-dark);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* 예약 폼의 guest-display는 배경 제거 */
.booking-card .guest-display {
	background: transparent;
	padding: 0.8rem;
	border: 1px solid #ddd;
	border-radius: var(--radius-md);
	cursor: pointer;
	margin-bottom: 1.2rem;
}

.guest-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
	border-bottom: 1px solid var(--border-light);
}

.guest-row:last-child {
	border-bottom: none;
}

.guest-row > span {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text-primary);
}

.guest-control {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.guest-btn {
	width: 36px;
	height: 36px;
	border: 1px solid var(--border-dark);
	background: #fff;
	border-radius: 50%;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text-primary);
	cursor: pointer;
	transition: all var(--transition-fast);
	display: flex;
	align-items: center;
	justify-content: center;
}

.guest-btn:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
	background: var(--primary-opacity-10);
}

.guest-btn:active {
	transform: scale(0.95);
}

.guest-btn:hover:not(:disabled) {
	border-color: #000;
	background: #f5f5f5;
}

.guest-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.guest-control > span {
	min-width: 40px;
	text-align: center;
	font-weight: 700;
	font-size: 1rem;
}

.guest-count {
	min-width: 40px;
	text-align: center;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text-primary);
}

.children-ages {
	display: none;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border-light);
}

.children-ages.show {
	display: block;
}

.child-age-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.6rem 0;
}

.child-age-row span {
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.child-age-select {
	padding: 0.5rem 0.8rem;
	border: 1px solid var(--border-dark);
	border-radius: var(--radius-md);
	font-size: 0.9rem;
	background: #fff;
	cursor: pointer;
	transition: all var(--transition-fast);
}

.child-age-select:hover {
	border-color: var(--primary-color);
}

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

.children-ages-title {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--text-secondary);
	margin-bottom: 0.8rem;
}

.age-input-group {
	margin-bottom: 1rem;
}

.age-input-group:last-child {
	margin-bottom: 0;
}

.age-label {
	font-size: 0.85rem;
	color: #666;
	margin-bottom: 0.4rem;
	display: block;
}

.age-selector {
	padding: 0.9rem;
	border: 1px solid #ddd;
	border-radius: var(--radius-md);
	font-size: 0.9rem;
	font-family: "Nanum Gothic", sans-serif;
	cursor: pointer;
	width: 100%;
}

.age-selector:focus {
	outline: none;
	border-color: #000;
}

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

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

.btn-info {
	width: 100%;
	padding: 0.9rem;
	border: none;
	font-size: 0.95rem;
	font-weight: 800;
	cursor: pointer;
	background: #1a1a1a;
	color: var(--white);
	border-radius: var(--radius-md);
	transition: all var(--transition-normal);
}

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

.guest-display {
	padding: 1rem;
	border: 1px solid #ddd;
	border-radius: var(--radius-md);
	cursor: pointer;
	margin-bottom: 1rem;
}

.guest-display:hover {
	border-color: #000;
}

.guest-display-content {
	text-align: center;
}

.guest-label {
	font-size: 0.7rem;
	color: #666;
	margin-bottom: 0.2rem;
}

.guest-value {
	font-size: 0.9rem;
	font-weight: 700;
}

.guest-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 4000;
}

.guest-overlay.active {
	display: block;
}

.guest-popup {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: var(--radius-xl);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	z-index: 4001;
	max-width: 90%;
	width: 500px;
}

.guest-popup.active {
	display: block;
}

.guest-popup-header {
	display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 700;
    font-size: 1.1rem;
}

.guest-popup-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.guest-reset-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guest-reset-btn:hover {
    background: #e8e8e8;
    border-color: #ccc;
    color: #333;
}

.guest-reset-btn:active {
    transform: scale(0.98);
}

.guest-reset-btn svg {
    flex-shrink: 0;
}

.guest-popup-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
}

.guest-popup-body {
	padding: 1.5rem;
	max-height: 70vh;
	overflow-y: auto;
}

.guest-popup-footer {
	padding: 1.5rem;
	border-top: 1px solid #e5e5e5;
	display: flex;
	gap: 1rem;
}

.guest-popup-btn {
	flex: 1;
	padding: 0.9rem;
	border: none;
	border-radius: var(--radius-md);
	font-weight: 700;
	cursor: pointer;
	font-family: 'Nanum Gothic', sans-serif;
}

.guest-popup-btn.cancel {
	background: #f5f5f5;
}

.guest-popup-btn.confirm {
	background: #000;
	color: #fff;
}



.calendar-day.empty {
	visibility: hidden;
	pointer-events: none;
}

/* 약관 페이지 */
.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: 3rem;
}

.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.3rem;
	margin: 0 0.8rem;
	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-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 {
	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-location::before {
	content: '📍';
	font-size: 0.9rem;
}

.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;
}

/* 프로모션 히어로 섹션 */
.promo-hero {
    margin-top: 65px;
    background: var(--gradient-dark);
    padding: 5rem 4%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.promo-hero::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.promo-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.promo-hero-badge {
    display: inline-block;
    background: var(--primary-opacity-20);
    color: var(--accent-light);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--primary-opacity-30);
}

.promo-hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.promo-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-lighter);
    line-height: 1.6;
}

/* 프로모션 리스트 섹션 */
.promo-list-section {
    padding: 3rem 4%;
    background: var(--gray-50);
}

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

/* 프로모션 필터 */
.promo-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.promo-filter-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.promo-filter-item:hover {
    border-color: var(--primary-light);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.promo-filter-item.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: var(--shadow-md);
}

/* 프로모션 카드 그리드 */
.promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.promo-card-item {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    cursor: pointer;
    animation: fadeInUp 0.5s ease both;
}

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

/* 프로모션 카드 이미지 */
.promo-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--gray-100);
}

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

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

.promo-wish-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all var(--transition-normal);
    z-index: 5;
}

.promo-wish-icon:hover {
    background: #fff;
    transform: scale(1.15);
}

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

.promo-status-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.promo-status-badge.ongoing {
    background: rgba(39, 174, 96, 0.95);
    color: #fff;
}

.promo-status-badge.upcoming {
    background: rgba(74, 144, 196, 0.95);
    color: #fff;
}

.promo-status-badge.ending {
    background: rgba(255, 71, 87, 0.95);
    color: #fff;
    animation: pulse 2s ease-in-out infinite;
}

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

/* 프로모션 카드 콘텐츠 */
.promo-card-content {
    padding: 2rem;
}

.promo-card-header {
    margin-bottom: 1.2rem;
}

.promo-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.promo-card-subtitle {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.promo-card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* 프로모션 혜택 */
.promo-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.promo-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

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

/* 프로모션 카드 푸터 */
.promo-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.promo-period {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

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

.period-date {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 700;
}

.btn-promo-detail {
    padding: 0.7rem 1.5rem;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 700;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 8px var(--primary-opacity-20);
}

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

/* 프로모션 안내 박스 */
.promo-notice-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--info);
    box-shadow: var(--shadow-sm);
}

.promo-notice-box .notice-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

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

.promo-notice-box .notice-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--info);
    font-weight: 700;
}

/* 서비스 히어로 섹션 */
.service-hero {
    margin-top: 65px;
    height: 600px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(13, 13, 13, 0.9)),
                url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=1920') center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(96, 165, 250, 0.08) 0%, transparent 50%);
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    margin-bottom: 4rem;
}

.service-hero-badge {
    display: inline-block;
    background: var(--primary-opacity-20);
    color: var(--accent-light);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    border: 1px solid var(--primary-opacity-30);
}

.service-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 8px;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-hero-subtitle {
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1rem;
}

.service-hero-divider {
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    margin: 0 auto 2rem;
}

.service-hero-desc {
    font-size: 1rem;
    color: var(--text-lighter);
    line-height: 1.8;
}

.service-hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-lighter);
    font-size: 0.85rem;
    z-index: 2;
}

.scroll-arrow {
    animation: bounce 2s infinite;
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* 공통 컨테이너 */
.service-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
}

.service-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* 소개 섹션 */
.service-intro-section {
    padding: 4rem 0;
    background: #fff;
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.service-intro-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%; 
}

.service-intro-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
    height: 100%;
    display: block; 
}

.service-intro-image:hover img {
    transform: scale(1.05);
}

.service-intro-image-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}

.image-overlay-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.service-intro-content {
    padding: 2rem 0;
}

.service-intro-title {
    font-size: 2.0rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 2rem;
}

.service-intro-text {
    font-size: 1.0rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.service-intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-light);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

/* 특징 섹션 */
.service-features-section {
    padding: 8rem 0;
    background: var(--gray-50);
}

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

.service-section-title {
    font-size: 2.0rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.service-section-desc {
    font-size: 1.0rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-feature-card {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

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

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

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    font-size: 0.9rem;
    color: var(--text-dark);
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

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

/* 추가 서비스 섹션 */
.service-additional-section {
    padding: 8rem 0;
    background: #fff;
}

.service-additional-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.service-additional-content {
    order: 1;
}

.service-additional-image {
    order: 2;
    position: relative;
}

.service-additional-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.service-additional-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
}

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

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

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

.service-additional-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.additional-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.additional-item:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
    transform: translateX(8px);
}

.additional-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.additional-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.additional-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* 프로세스 섹션 */
.service-process-section {
    padding: 8rem 0;
    background: var(--gray-50);
}

.service-process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
}

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

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 4px 12px var(--primary-opacity-30);
}

.process-icon {
    font-size: 3rem;
    margin: 1.5rem 0;
}

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

.process-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    padding-top: 4rem;
}

/* CTA 섹션 */
.service-cta-section {
    padding: 8rem 0;
    background: var(--gradient-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.service-cta-section::after {
    content: "";
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.service-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-cta-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.service-cta-desc {
    font-size: 1.0rem;
    color: var(--text-lighter);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.service-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-block;
}

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

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

.btn-cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-cta-secondary:hover {
    background: #fff;
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* 멤버십 섹션 */
.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.45rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.7); /* 기본 배경 추가 */
    backdrop-filter: blur(10px);
    white-space: nowrap;
    flex-shrink: 0;
}

.content-badge.tag-wellness {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%); /* 골드 */
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.content-badge.tag-gastronomy {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%); /* 로얄 퍼플 */
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

.content-badge.tag-heritage {
    background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%); /* 로즈 */
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.4);
}

.content-badge.tag-urban {
    background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%); /* 틸 */
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.4);
}

.content-badge.tag-hideaway {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); /* 앰버 */
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

/* 컨텐츠 카드 본문 */
.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 a {
    font-size: 1.0rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    line-height: 1.4;
    letter-spacing: -0.5px;
    transition: color var(--transition-normal);
    display: block;
}

.content-title a: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);
}

/* 프로모션 상세 히어로 */
.promo-detail-hero {
    margin-top: 65px;
    background: var(--gradient-dark);
    padding: 2rem 4%;
}

.promo-detail-hero-content {
    max-width: 1400px;
    margin: 0 auto;
}

.promo-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-lighter);
}

.promo-detail-breadcrumb a {
    color: var(--text-lighter);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.promo-detail-breadcrumb a:hover {
    color: var(--accent-light);
}

.promo-detail-breadcrumb span:last-child {
    color: var(--accent-light);
}

/* 프로모션 상세 섹션 */
.promo-detail-section {
    padding: 3rem 4% 6rem;
    background: var(--gray-50);
}

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

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

/* 왼쪽 컨텐츠 */
.promo-detail-left {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

/* 상태 및 액션 바 */
.promo-detail-status-bar {
    display: flex;
	align-items: center;
	gap: 1rem;
	margin: 1.0rem;
	flex-wrap: wrap;
}

.promo-detail-status {
    display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	border-radius: var(--radius-md);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.promo-detail-status.ongoing {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: var(--white);
	box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.promo-detail-status.upcoming {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	color: var(--white);
	box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.promo-detail-status.ending {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	color: var(--white);
	box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.promo-detail-actions {
    display: flex;
    gap: 0.8rem;
}

.promo-share-btn,
.promo-wish-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-dark);
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--transition-normal);
}

.promo-share-btn:hover,
.promo-wish-btn:hover {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.promo-wish-btn.active {
    background: var(--error);
    border-color: var(--error);
    color: #fff;
}

/* 헤더 */
.promo-detail-header {
    padding: 2.5rem 2.5rem 2rem;
    border-bottom: 1px solid var(--border-light);
}

.promo-detail-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    letter-spacing: -1px;
    line-height: 1.3;
}

.promo-detail-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.promo-detail-period {
    display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: var(--gray-100);
	border-radius: var(--radius-md);
	font-size: 0.9rem;
	color: var(--text-secondary);
	white-space: nowrap;
}

.period-icon {
    font-size: 1rem;
}

.period-text {
	font-weight: 600;
}

/* 메인 이미지 */
.promo-detail-main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.promo-detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 갤러리 */
.promo-detail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    border-bottom: 1px solid var(--border-light);
}

.promo-detail-gallery-item {
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all var(--transition-normal);
}

.promo-detail-gallery-item:hover {
    border-color: var(--primary-light);
}

.promo-detail-gallery-item.active {
    border-color: var(--primary-color);
}

.promo-detail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 프로모션 설명 */
.promo-detail-description,
.promo-detail-benefits,
.promo-detail-hotels,
.promo-detail-faq {
    padding: 2.5rem;
    border-bottom: 1px solid var(--border-light);
}

.promo-detail-faq {
    border-bottom: none;
}

.promo-section-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.promo-description-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

/* 혜택 그리드 */
.promo-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

.promo-benefit-card:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.promo-benefit-card .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.promo-benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

/* 적용 호텔 리스트 */
.promo-hotels-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.promo-hotel-item {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    align-items: center;
    transition: all var(--transition-normal);
}

.promo-hotel-item:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.promo-hotel-image {
    width: 180px;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.promo-hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-hotel-location {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-bottom: 0.3rem;
}

.promo-hotel-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.promo-hotel-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hotel-tag {
    padding: 0.3rem 0.7rem;
    background: #fff;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.promo-hotel-price {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.original-price {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    text-decoration: line-through;
}

.discount-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.promo-discount-rate {
    padding: 0.3rem 0.7rem;
    background: var(--error);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
}

.btn-promo-hotel-book {
    padding: 0.8rem 1.5rem;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 700;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-promo-hotel-book:hover {
    background: var(--gradient-primary-reverse);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--primary-opacity-30);
}

.promo-hotels-more {
    margin-top: 1.5rem;
    text-align: center;
}

.btn-view-all-hotels {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #fff;
    color: var(--text-primary);
    text-decoration: none;
    border: 2px solid var(--border-dark);
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.btn-view-all-hotels:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: var(--primary-color);
}

/* FAQ 아코디언 */
.promo-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.promo-accordion-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.promo-accordion-item.active {
    border-color: var(--primary-color);
}

.promo-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.8rem;
    cursor: pointer;
    background: #fff;
    transition: all var(--transition-normal);
}

.promo-accordion-header:hover {
    background: var(--gray-50);
}

.promo-accordion-header h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--text-tertiary);
    transition: transform var(--transition-normal);
}

.promo-accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.promo-accordion-body {
    display: none;
    padding: 0 1.8rem 1.5rem;
    background: var(--gray-50);
}

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

/* 오른쪽 사이드바 (고정) */
.promo-detail-sidebar {
    position: sticky;
    top: 85px;
}

.promo-booking-card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 2rem;
}

.booking-card-header {
    padding: 1.8rem 2rem;
    background: var(--gradient-primary);
    color: #fff;
}

.booking-card-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.booking-discount-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
}

.booking-card-body {
    padding: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.booking-info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.info-label {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

.info-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.booking-card-benefits {
    padding: 2rem;
    border-bottom: 1px solid var(--border-light);
}

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

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

.booking-card-benefits li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    line-height: 1.6;
}

.booking-card-actions {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn-booking-primary,
.btn-booking-secondary {
    padding: 0.9rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition-normal);
}

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

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

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

.btn-booking-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.booking-card-notice {
    padding: 1.5rem 2rem;
    background: var(--gray-50);
}

.booking-card-notice p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}


/* 관련 프로모션 */
.related-promos {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

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

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

.related-promo-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.related-promo-item:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.related-promo-item img {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.related-promo-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.related-promo-info h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.related-promo-discount {
    font-size: 0.8rem;
    color: var(--error);
    font-weight: 600;
}

.room-delete-btn {
	width: 28px;
	height: 28px;
	border: none;
	background: var(--error);
	color: #fff;
	border-radius: 50%;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: all var(--transition-fast);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.room-delete-btn:hover {
	background: #e53e3e;
	transform: scale(1.1);
}

.room-delete-btn:active {
	transform: scale(0.95);
}

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

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

.room-badge {
	display: inline-block;
	font-size: 0.75rem;
	color: #fff;
	background: linear-gradient(135deg, #FFB300 0%, #FF8F00 100%);
	padding: 0.25rem 0.6rem;
	border-radius: var(--radius-sm);
	font-weight: 700;
	white-space: nowrap;
	flex-shrink: 0;
}

/* 회원가입 섹션 */
.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: 20px;
	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: 1.0rem;
	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;
}

/* 호텔 태그 */
.hotel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.hotel-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.2s ease;
}

/* 할인 */
.hotel-tag.tag-discount {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
}

/* 특전 */
.hotel-tag.tag-special {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #78350f;
}

/* 라스트미닛 */
.hotel-tag.tag-lastminute {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
}

/* 얼리버드 */
.hotel-tag.tag-early {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

/* 무료숙박 */
.hotel-tag.tag-stay {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
}

/* 웰니스 */
.hotel-tag.tag-wellness {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: #ffffff;
}

/* 미식 */
.hotel-tag.tag-gastronomy {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
    color: #ffffff;
}

/* 헤리티지 */
.hotel-tag.tag-heritage {
    background: linear-gradient(135deg, #92400e 0%, #78350f 100%);
    color: #ffffff;
}

/* 어번 */
.hotel-tag.tag-urban {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: #ffffff;
}

/* 하이드어웨이 */
.hotel-tag.tag-hideaway {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: #ffffff;
}

/* 기본 (매칭되지 않는 태그) */
.hotel-tag.tag-default {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    color: #374151;
}

/* 호버 효과 */
.hotel-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 스티키 탭 네비게이션 */
.section-tabs {
    position: sticky;
    top: 80px; /* 상단 메뉴 높이 */
    z-index: 90; /* right-booking보다 낮게 */
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.95) 100%
    );
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin: 0 -2rem; /* 좌우 여백 제거하여 전체 너비 */
    padding: 0 2rem;
    margin-bottom: 2rem;
}

/* 섹션 스크롤 오프셋 조정 (탭 높이 변경에 맞춰) */
#overview,
#rooms,
#location,
#policies {
    scroll-margin-top: 130px; /* 상단메뉴(70px) + 탭(70px) */
}

.section-tabs.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section-tabs-container {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.section-tabs-container::-webkit-scrollbar {
    display: none;
}

.section-tab {
    position: relative;
    flex: 0 0 auto;
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.section-tab:hover {
    color: #111827;
    background: rgba(0, 0, 0, 0.02);
}

.section-tab.active {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.section-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: #3b82f6;
    transition: transform 0.3s ease;
}

.section-tab.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* 모바일 하단 고정 바 */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    transition: transform 0.3s ease;
}

.mobile-bottom-bar.hidden {
    transform: translateY(100%);
}

.mobile-bottom-bar-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-bottom-bar-info {
    flex: 1;
    min-width: 0;
}

.mobile-bottom-bar-dates,
.mobile-bottom-bar-guests {
    font-size: 0.85rem;
    color: #374151;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-bottom-bar-dates {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.mobile-bottom-bar-guests {
    color: #6b7280;
}

.mobile-bottom-bar-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.mobile-bottom-bar-btn:active {
    background: #2563eb;
}

.mobile-bottom-bar-btn svg {
    transition: transform 0.3s;
}

/* 모바일 예약 정보 전체 화면 */
.mobile-booking-sheet {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: white;
    border-radius: 20px 20px 0 0;
    max-height: 90vh;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-booking-sheet.active {
    transform: translateY(0);
}

.mobile-booking-sheet-header {
    display: flex;
    background: #ddd;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-booking-sheet-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
}

.mobile-booking-sheet-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
}

.mobile-booking-sheet-content {
    padding: 1.5rem;
    max-height: calc(90vh - 70px);
    overflow-y: auto;
}

.mobile-booking-section {
    margin-bottom: 1.5rem;
}

.mobile-booking-section-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.mobile-booking-input {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-booking-input:active {
    background: #f3f4f6;
}

.mobile-booking-input-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-booking-input-item {
    flex: 1;
}

.mobile-booking-input-divider {
    color: #9ca3af;
    font-size: 1.2rem;
}

.mobile-booking-input-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.mobile-booking-input-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
}

.mobile-booking-input-nights {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #3b82f6;
    font-weight: 600;
}

.mobile-booking-confirm-btn {
    width: 100%;
    padding: 1rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
}

.mobile-booking-confirm-btn:active {
    background: #2563eb;
}

.mobile-booking-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-booking-overlay.active {
    opacity: 1;
}

/* 예약 진행 페이지 스타일 */
.booking-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 6rem;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
}

.booking-page-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-page-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

/* 호텔 정보 요약 */
.booking-hotel-summary {
    display: flex;
    gap: 1.5rem;
}

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

.booking-hotel-summary-info {
    flex: 1;
}

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

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

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

/* 예약 정보 */
.booking-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.booking-info-item-reserve {
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.booking-info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    word-break: keep-all;
    line-height: 1.5;
}

/* 객실 및 요금제 정보 */
.booking-room-rate-info {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    background: #fafafa;
}

.booking-room-rate-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.booking-room-rate-info-left {
    flex: 1;
    min-width: 0;
}

.booking-room-rate-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    word-break: keep-all;
}

.booking-room-rate-type {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.booking-room-rate-price {
    text-align: right;
    flex-shrink: 0;
}

/* 할인 배지 컨테이너 */
.booking-room-rate-discounts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
    justify-content: flex-end;
}

/* 할인 배지 기본 스타일 */
.booking-room-rate-discount {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 6px;
    white-space: nowrap;
    background: linear-gradient(135deg, #4a90e2 0%, #5ba3f5 100%);
    color: white;
}

/* 프로모션 할인 배지 (기존) */
.booking-room-rate-discount:not(.booking-room-rate-discount-los) {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
}

/* 할인 배지 컨테이너 (여러 개일 때) */
.booking-room-rate-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* 할인 배지들을 가로로 배치 */
.booking-room-rate-price > .booking-room-rate-discount {
    display: inline-flex;
}

.booking-room-rate-original {
    font-size: 0.9rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.booking-room-rate-final {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
}

.booking-room-rate-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.booking-room-rate-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.booking-room-rate-description {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.booking-room-rate-policy {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #10b981;
    line-height: 1.6;
}

.booking-room-rate-policy.warning {
    border-left-color: #f59e0b;
}

.booking-room-rate-policy.critical {
    border-left-color: #ef4444;
}

/* 투숙객 정보 입력 */
.booking-guest-input-section {
    margin-bottom: 2rem;
}

.booking-guest-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f3f4f6;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.booking-guest-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
}

.booking-guest-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.booking-guest-type-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.booking-guest-type-badge.child {
    background: #fce7f3;
    color: #9f1239;
}

.booking-form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.booking-form-group {
    display: flex;
    flex-direction: column;
}

.booking-form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.booking-form-label .required {
    color: #ef4444;
    margin-left: 0.25rem;
}

.booking-form-input {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.booking-form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.booking-form-input::placeholder {
    color: #9ca3af;
}

.booking-form-help {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* 예약자 정보 */
.booking-booker-notice {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #1e40af;
}

/* 결제 수단 */
.booking-payment-methods {
    display: grid;
    gap: 1rem;
}

.booking-payment-method {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.booking-payment-method:hover {
    border-color: #3b82f6;
    background: #f9fafb;
}

.booking-payment-method input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    cursor: pointer;
}

.booking-payment-method-info {
    flex: 1;
}

.booking-payment-method-name {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.booking-payment-method-desc {
    font-size: 0.85rem;
    color: #6b7280;
}

.booking-payment-method.selected {
    border-color: #3b82f6;
    background: #eff6ff;
}

/* 약관 동의 */
.booking-terms-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-term-item {
    display: flex;
    align-items: start;
    padding: 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.booking-term-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.booking-term-content {
    flex: 1;
}

.booking-term-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.booking-term-title .required {
    color: #ef4444;
    margin-left: 0.25rem;
}

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

.booking-term-link {
    color: #3b82f6;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 0.5rem;
}

.booking-term-all {
    background: #3b82f6;
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    font-weight: 600;
}

.booking-term-all .booking-term-title {
    color: white;
}

/* 우측 요약 카드 */
.booking-page-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.booking-summary-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.booking-summary-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f3f4f6;
}

.booking-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.booking-summary-label {
    color: #6b7280;
}

.booking-summary-value {
    font-weight: 600;
    color: #111827;
}

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

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

.booking-summary-total-label {
    color: #111827;
}

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

/* 날짜별 요금 상세 */
.booking-nightly-breakdown-summary {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.booking-nightly-breakdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.booking-nightly-breakdown-toggle:hover {
    background: #f3f4f6;
}

.booking-nightly-breakdown-toggle-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.booking-nightly-breakdown-toggle-icon {
    font-size: 1.2rem;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.booking-nightly-breakdown-toggle.active .booking-nightly-breakdown-toggle-icon {
    transform: rotate(180deg);
}

.booking-nightly-breakdown-content {
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    padding: 0 0.75rem;
    background: #fafafa;
    border-radius: 8px;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease, padding 0.3s ease;
}

.booking-nightly-breakdown-content.show {
    max-height: none;  /* 높이 제한 제거 */
    overflow: visible;
    opacity: 1;
    margin-top: 0.75rem;
    padding: 0.75rem;
}

.booking-nightly-breakdown-room {
    margin-bottom: 1rem;
}

.booking-nightly-breakdown-room:last-child {
    margin-bottom: 0;
}

.booking-nightly-breakdown-room-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    border-left: 2px solid #3b82f6;
}

.booking-nightly-breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0.5rem;
    font-size: 0.8rem;
    background-color: white;
    border-radius: 4px;
    margin-bottom: 0.25rem;
}

.booking-nightly-breakdown-row:last-child {
    margin-bottom: 0;
}

.booking-nightly-breakdown-row.free {
    background-color: #fef3c7;
    border: 1px dashed #f59e0b;
}

.booking-nightly-date {
    font-weight: 500;
    color: #6b7280;
}

.booking-nightly-price {
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    font-size: 0.8rem;
}

.booking-nightly-price.free-night {
    color: #f59e0b;
    font-weight: 700;
}

.booking-submit-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* 예약 취소 버튼 */
.booking-cancel-btn {
    flex: 0 0 auto;
    min-width: 120px;
    padding: 1rem 1.5rem;
    background: #ffffff;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.booking-cancel-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.booking-cancel-btn:active {
    transform: translateY(0);
}

.booking-cancel-btn i {
    font-size: 1.1rem;
}

/* 예약 신청 버튼 수정 */
.booking-submit-btn {
    flex: 1;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.booking-submit-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.booking-submit-btn:active {
    transform: translateY(0);
}

.booking-submit-btn:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.booking-submit-btn i {
    font-size: 1.2rem;
}

.booking-page-notice {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.5;
}

/* 세금 및 수수료 상세 */
.booking-summary-fees-detail {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: #fef3c7;
    border-radius: 8px;
    border-left: 3px solid #f59e0b;
}

.booking-summary-fee-item {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 0.4rem 0;
    font-size: 0.8rem;
    border-bottom: 1px solid #fde68a;
}

.booking-summary-fee-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.booking-summary-fee-item:first-child {
    padding-top: 0;
}

.booking-summary-fee-label {
    flex: 1;
    color: #78350f;
    font-weight: 500;
    line-height: 1.4;
}

.booking-summary-fee-value {
    color: #92400e;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 0.5rem;
}

.booking-summary-fee-note {
    display: block;
    font-size: 0.7rem;
    color: #a16207;
    margin-top: 0.2rem;
}

.booking-summary-fee-included {
    color: #15803d;
    font-weight: 600;
}

.booking-summary-fee-separate {
    color: #dc2626;
    font-weight: 600;
}

.booking-form-title-select {
    width: 100px;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s;
    background: white;
}

.booking-form-title-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.booking-form-row-with-title {
    display: grid;
    grid-template-columns: 100px 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* 특별 요청사항 */
.booking-special-requests {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.booking-special-requests-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

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

.booking-special-request-item {
    display: flex;
    align-items: start;
    padding: 1rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.booking-special-request-item:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.booking-special-request-item.selected {
    border-color: #3b82f6;
    background: #eff6ff;
}

.booking-special-request-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.booking-special-request-content {
    flex: 1;
}

.booking-special-request-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
    display: block;
}

.booking-special-request-desc {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
}

/* 레이트 체크인 시간 선택 */
.booking-late-checkin-time {
    display: none;
    margin-top: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.booking-late-checkin-time.show {
    display: block;
}

.booking-time-select-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-time-select-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}

.booking-time-select {
    flex: 1;
    padding: 0.6rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
}

.booking-time-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* 침대 타입 선택 */
.booking-bed-preference-options {
    display: none;
    margin-top: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.booking-bed-preference-options.show {
    display: block;
}

.booking-radio-group {
    display: flex;
    gap: 1rem;
}

.booking-radio-option {
    display: flex;
    align-items: center;
    padding: 0.6rem 1rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.booking-radio-option:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.booking-radio-option.selected {
    border-color: #3b82f6;
    background: #eff6ff;
}

.booking-radio-option input[type="radio"] {
    margin-right: 0.5rem;
    cursor: pointer;
}

.booking-radio-option-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
}

/* 추가 요청사항 텍스트 영역 */
.booking-additional-requests {
    margin-top: 1.5rem;
}

.booking-additional-requests-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    display: block;
}

.booking-additional-requests-textarea {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.2s;
}

.booking-additional-requests-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.booking-additional-requests-textarea::placeholder {
    color: #9ca3af;
}

.booking-additional-requests-help {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.booking-session-timer-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.booking-session-timer-compact.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
}

.booking-session-timer-compact.critical {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    animation: pulse-critical 1s ease-in-out infinite;
}

@keyframes pulse-critical {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.booking-session-timer-icon {
    font-size: 1rem;
}

.booking-session-timer-text {
    font-weight: 600;
    font-size: 0.85rem;
}

.booking-session-timer-countdown {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* 세션 만료 모달 */
.session-expired-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.session-expired-overlay.active {
    display: flex;
    opacity: 1;
}

.session-expired-modal {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.session-expired-overlay.active .session-expired-modal {
    transform: scale(1);
}

.session-expired-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.session-expired-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.session-expired-message {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.session-expired-btn {
    width: 100%;
    padding: 0.9rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.session-expired-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

/* 객실별 요청사항 아코디언 */
.booking-room-requests-accordion {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.booking-room-requests-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.booking-room-requests-toggle:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.booking-room-requests-toggle.active {
    background: #eff6ff;
    border-color: #3b82f6;
}

.booking-room-requests-toggle-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.booking-room-requests-toggle-icon {
    font-size: 1.1rem;
    color: #6b7280;
}

.booking-room-requests-toggle.active .booking-room-requests-toggle-icon {
    color: #3b82f6;
}

.booking-room-requests-toggle-text {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

.booking-room-requests-toggle.active .booking-room-requests-toggle-text {
    color: #1e40af;
}

.booking-room-requests-toggle-desc {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.booking-room-requests-toggle-arrow {
    font-size: 1.2rem;
    color: #9ca3af;
    transition: transform 0.3s ease;
}

.booking-room-requests-toggle.active .booking-room-requests-toggle-arrow {
    transform: rotate(180deg);
    color: #3b82f6;
}

.booking-room-requests-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.booking-room-requests-content.show {
    max-height: 2000px; /* 충분히 큰 값 */
    opacity: 1;
    margin-top: 1rem;
}

/* 특별 요청사항 - 아코디언 내부용 스타일 조정 */
.booking-room-requests-content .booking-special-requests {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.booking-room-requests-content .booking-special-requests-title {
    display: none; /* 토글에 이미 제목이 있으므로 숨김 */
}

/* 모달 오버레이 */
.terms-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.terms-modal-overlay.active {
    display: flex;
}

/* 모달 컨테이너 */
.terms-modal {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

.terms-modal-lg {
    max-width: 800px;
}

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

/* 모달 헤더 */
.terms-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.terms-modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.terms-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.terms-modal-close:hover {
    background: #e5e7eb;
    color: #111827;
}

/* 모달 바디 */
.terms-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.terms-modal-content {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #374151;
}

/* 소개 텍스트 */
.terms-intro {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    color: #4b5563;
}

/* 섹션 타이틀 */
.terms-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

/* 테이블 */
.terms-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.85rem;
}

.terms-table th,
.terms-table td {
    padding: 0.875rem 1rem;
    text-align: left;
    border: 1px solid #e5e7eb;
    vertical-align: top;
}

.terms-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}

.terms-table td {
    background: #fff;
    color: #4b5563;
}

.terms-table-sub {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* 유의사항 */
.terms-notice {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: #fef3c7;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.terms-notice h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #92400e;
    margin: 0 0 0.75rem;
}

.terms-notice ul {
    margin: 0;
    padding-left: 1.25rem;
}

.terms-notice li {
    margin-bottom: 0.5rem;
    color: #92400e;
    font-size: 0.85rem;
}

.terms-notice li:last-child {
    margin-bottom: 0;
}

/* 모달 푸터 */
.terms-modal-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.terms-modal-btn {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.terms-modal-btn-secondary {
    background: #f3f4f6;
    color: #374151;
}

.terms-modal-btn-secondary:hover {
    background: #e5e7eb;
}

.terms-modal-btn-primary {
    background: #2563eb;
    color: #fff;
}

.terms-modal-btn-primary:hover {
    background: #1d4ed8;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   취소/환불 규정 모달 전용 스타일
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* 예약 정보 요약 */
.terms-booking-summary {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.terms-booking-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #bae6fd;
}

.terms-booking-summary-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.terms-booking-summary-label {
    color: #0369a1;
    font-weight: 500;
}

.terms-booking-summary-value {
    color: #0c4a6e;
    font-weight: 600;
}

.terms-booking-summary-price {
    font-size: 1.1rem;
    color: #dc2626;
}

/* 환불 상태 표시 */
.terms-refund-status {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.terms-refund-status.refundable {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.terms-refund-status.non-refundable {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.terms-refund-status.partial-refund {
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.terms-refund-status-icon {
    font-size: 1.5rem;
}

.terms-refund-status-content {
    flex: 1;
}

.terms-refund-status-title {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.terms-refund-status.refundable .terms-refund-status-title {
    color: #047857;
}

.terms-refund-status.non-refundable .terms-refund-status-title {
    color: #dc2626;
}

.terms-refund-status.partial-refund .terms-refund-status-title {
    color: #d97706;
}

.terms-refund-status-desc {
    font-size: 0.85rem;
    color: #6b7280;
}

/* 취소 규정 상세 */
.terms-cancel-policy-content {
    background: #f9fafb;
    border-radius: 8px;
    padding: 1rem 1.25rem;
}

.terms-cancel-policy-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.terms-cancel-policy-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.terms-cancel-policy-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.terms-cancel-policy-icon.free {
    background: #dcfce7;
    color: #16a34a;
}

.terms-cancel-policy-icon.partial {
    background: #fef3c7;
    color: #d97706;
}

.terms-cancel-policy-icon.full {
    background: #fee2e2;
    color: #dc2626;
}

.terms-cancel-policy-text {
    flex: 1;
    font-size: 0.9rem;
    color: #374151;
}

.terms-cancel-policy-text strong {
    color: #111827;
}

/* 취소 수수료 테이블 */
.terms-cancel-fee-table tbody tr.current {
    background: #fef3c7;
}

.terms-cancel-fee-table tbody tr.current td {
    font-weight: 600;
    color: #92400e;
}

.terms-cancel-fee-table .fee-free {
    color: #16a34a;
    font-weight: 600;
}

.terms-cancel-fee-table .fee-partial {
    color: #d97706;
    font-weight: 600;
}

.terms-cancel-fee-table .fee-full {
    color: #dc2626;
    font-weight: 600;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   약관 링크 스타일
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.booking-term-link {
    color: #2563eb;
    cursor: pointer;
    text-decoration: underline;
    margin-left: 0.25rem;
}

.booking-term-link:hover {
    color: #1d4ed8;
}

/* 결제 완료 페이지 스타일 */
.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;
}

/* 반응형 */
@media ( max-width : 1024px) {
	.intro-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.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;
	}
	.right-booking {
        display: none !important;
    }
    .mobile-bottom-bar {
        display: block !important;
    }
    .mobile-booking-sheet {
		display: block !important;
	}
	.mobile-booking-overlay {
		display: block !important;
	}
	.content-wrapper {
		grid-template-columns: 1fr;
	}
	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);
	}
	
	.promo-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .service-intro-grid,
    .service-additional-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-additional-content {
        order: 2;
    }
    
    .service-additional-image {
        order: 1;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-arrow {
        display: none;
    }
    
    .service-intro-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .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;
    }
    
    .promo-detail-layout {
        grid-template-columns: 1fr;
    }
    
    .promo-detail-sidebar {
        position: static;
    }
    
    .promo-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-hotel-item {
        grid-template-columns: 150px 1fr auto;
    }
    
    .promo-hotel-image {
        width: 150px;
        height: 100px;
    }
    
    .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;
    }
}

@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-section, .membership-section, .destinations-section {
		padding: 2rem 4%;
	}
	.intro-header h2, .membership-header h2 {
		font-size: 2.0rem;
	}
	.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-detail-amenities-section {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin: 2rem 0;
}

	.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;
	}
	.gallery-grid {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(5, 220px);
	}
	.gallery-item:first-child {
		grid-row: auto;
	}
	.amenities-section {
		grid-template-columns: repeat(2, 1fr);
	}
	.promo-items {
		grid-template-columns: 1fr;
	}
	.room-main-info {
		grid-template-columns: 1fr;
	}
	.rate-plan-item {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.rate-plan-action-column {
		width: 100%;
	}
	
	.rate-plan-price {
		text-align: right;
	}
	
	.discount-badges-group {
        gap: 4px;
    }
    
    .discount-rate {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .rate-price {
        font-size: 20px;
    }
	
	.btn-select-rate {
		width: 100%;
		align-self: stretch;
	}
	
	.nightly-breakdown-row {
		font-size: 0.75rem;
	}
	
	.nightly-price {
		font-size: 0.75rem;
	}
	.rate-plan-item:hover {
		transform: translateY(-1px);
	}
	
	.rate-loading {
		padding: 3rem 1.5rem;
		min-height: 150px;
	}
	
	.rate-loading-spinner {
		width: 40px;
		height: 40px;
	}
	
	.rate-loading-text {
		font-size: 0.9rem;
	}
	
	.rate-error {
		padding: 3rem 1.5rem;
	}
	
	.rate-error-icon {
		font-size: 2.5rem;
	}
	
	.info-list li {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}
	.info-grid-images {
		grid-template-columns: repeat(2, 1fr);
	}
	.info-large-image img, .info-video-container {
		height: 300px;
	}
	
	.gallery-viewer-nav {
		width: 45px;
		height: 45px;
		font-size: 1.5rem;
	}
	
	.gallery-viewer-nav.prev {
		left: 1rem;
	}
	
	.gallery-viewer-nav.next {
		right: 1rem;
	}
	
	.gallery-viewer-close {
		top: 1rem;
		right: 1rem;
		width: 40px;
		height: 40px;
		font-size: 2rem;
	}
	
	.gallery-viewer-thumbnails {
		bottom: 4rem;
		gap: 0.5rem;
	}
	
	.gallery-thumbnail {
		width: 60px;
		height: 45px;
	}
	
	/* 달력 모달 모바일 최적화 */
	.calendar-popup {
		width: 95%;
		max-height: 90vh;
		top: 50%;
		transform: translate(-50%, -50%);
		overflow: hidden;
	}
	
	.calendar-popup.active {
		display: flex;
		flex-direction: column;
	}
	
	.calendar-header {
		flex-shrink: 0;
		padding: 1rem;
		font-size: 0.95rem;
	}
	
	.calendar-close {
		font-size: 1.3rem;
	}
	
	.calendar-body {
		flex: 1;
		overflow-y: auto;
		padding: 1rem;
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.calendar-body::-webkit-scrollbar {
		width: 4px;
	}
	
	.calendar-body::-webkit-scrollbar-track {
		background: #f1f1f1;
	}
	
	.calendar-body::-webkit-scrollbar-thumb {
		background: #ccc;
		border-radius: 2px;
	}
	
	.calendar-controls {
		margin-bottom: 1rem;
	}
	
	.calendar-nav-btn {
		min-width: 36px;
		min-height: 36px;
		font-size: 1.2rem;
		padding: 0.5rem 0.8rem;
	}
	
	.calendar-month-title {
		font-size: 0.95rem;
	}
	
	.calendar-day {
		font-size: 0.8rem;
	}
	
	.calendar-footer {
		flex-shrink: 0;
		padding: 1rem;
		gap: 0.6rem;
	}
	
	.calendar-btn {
		padding: 0.8rem;
		font-size: 0.85rem;
	}
	
	/* 인원 선택 모달 모바일 최적화 */
	.guest-popup {
		width: 95%;
		max-height: 90vh;
	}
	
	.guest-popup.active {
		display: flex;
		flex-direction: column;
	}
	
	.guest-popup-header {
		flex-shrink: 0;
		padding: 1rem;
		font-size: 1rem;
	}
	
	.guest-popup-close {
		font-size: 1.3rem;
	}
	
	.guest-popup-body {
		flex: 1;
		overflow-y: auto;
		padding: 1rem;
		max-height: none;
	}
	
	.guest-popup-body::-webkit-scrollbar {
		width: 4px;
	}
	
	.guest-popup-body::-webkit-scrollbar-track {
		background: #f1f1f1;
	}
	
	.guest-popup-body::-webkit-scrollbar-thumb {
		background: #ccc;
		border-radius: 2px;
	}
	
	.guest-popup-footer {
		flex-shrink: 0;
		padding: 1rem;
		gap: 0.6rem;
	}
	
	.guest-popup-btn {
		padding: 0.8rem;
		font-size: 0.85rem;
	}
	
	.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.6rem;
	}
	
	.search-input {
		font-size: 1rem;
		padding: 0.8rem 0.3rem;
	}
	
	.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;
    }
    
    .promo-hero {
        padding: 4rem 4%;
    }
    
    .promo-hero-title {
        font-size: 2rem;
    }
    
    .promo-hero-subtitle {
        font-size: 1rem;
    }
    
    .promo-list-section {
        padding: 2.4rem 4%;
    }
    
    .promo-filters {
        gap: 0.6rem;
    }
    
    .promo-filter-item {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .promo-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .promo-card-content {
        padding: 1.5rem;
    }
    
    .promo-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .btn-promo-detail {
        width: 100%;
        text-align: center;
    }
    
    .promo-notice-box {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .service-hero {
        height: 500px;
    }
    
    .service-hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .service-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-hero-desc {
        font-size: 0.9rem;
    }
    
    .service-intro-section,
    .service-features-section,
    .service-additional-section,
    .service-process-section,
    .service-cta-section {
        padding: 4rem 0;
    }
    
    .service-section-header {
        margin-bottom: 3rem;
    }
    
    .service-section-title {
        font-size: 1.8rem;
    }
    
    .service-intro-title {
        font-size: 2rem;
    }
    
    .service-intro-image img,
    .service-additional-image img {
        height: 400px;
    }
    
    .service-intro-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-feature-card {
        padding: 2rem 1.5rem;
    }
    
    .service-additional-badge {
        position: static;
        margin-top: 1.5rem;
    }
    
    .service-cta-title {
        font-size: 2rem;
    }
    
    .service-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
    
    .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 a {
        font-size: 0.9rem;
    }
    
    .content-meta {
        gap: 0.5rem;
    }
    
    .content-footer {
        padding-top: 1rem;
    }
    
    .promo-detail-section {
        padding: 2rem 4% 4rem;
    }
    
    .promo-detail-title {
        font-size: 1.4rem;
    }
    
    .promo-detail-subtitle {
        font-size: 1rem;
    }
    
    .promo-detail-main-image {
        height: 300px;
    }
    
    .promo-detail-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-detail-description,
    .promo-detail-benefits,
    .promo-detail-hotels,
    .promo-detail-faq {
        padding: 2rem 1.5rem;
    }
    
    .promo-section-title {
        font-size: 1.3rem;
    }
    
    .promo-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-hotel-item {
        grid-template-columns: 1fr;
    }
    
    .promo-hotel-image {
        width: 100%;
        height: 200px;
    }
    
    .btn-promo-hotel-book {
        width: 100%;
    }
    
    .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;
	}
	
	.promo-detail-status-bar {
		gap: 0.8rem;
	}
	
	.promo-detail-status {
		padding: 0.4rem 0.8rem;
		font-size: 0.8rem;
	}
	
	.promo-detail-period {
		padding: 0.4rem 0.8rem;
		font-size: 0.85rem;
		flex: 1 1 100%;
		justify-content: center;
	}
	
	.period-icon {
		font-size: 0.9rem;
	}
	
	.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;
    }
    
    .hotel-tags {
        gap: 0.4rem;
    }
    
    .hotel-tag {
        padding: 0.3rem 0.7rem;
        font-size: 0.7rem;
    }
    
    .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;
    }
    
    .booking-page-container {
        grid-template-columns: 1fr;
        padding: 1rem;
        padding-top: 5rem;
        gap: 1rem;
    }
    
    .booking-page-section {
        padding: 1.5rem;
    }
    
    .booking-hotel-summary {
        flex-direction: column;
    }
    
    .booking-hotel-summary-image {
        width: 100%;
        height: 200px;
    }
    
    .booking-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .booking-room-rate-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .booking-room-rate-price {
        text-align: left;
        width: 100%;
    }
    
    .booking-room-rate-name {
        font-size: 1rem;
    }
    
    .booking-room-rate-final {
        font-size: 1.2rem;
    }
    
    .booking-form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-page-sidebar {
        position: static;
    }
    
    .booking-summary-total-value {
        font-size: 1.3rem;
    }
    
    .booking-form-row-with-title {
        grid-template-columns: 1fr;
    }
    
    .booking-form-title-select {
        width: 100%;
    }
    
    .booking-special-requests-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-radio-group {
        flex-direction: column;
    }
    
    .terms-modal {
        max-height: 95vh;
        border-radius: 12px 12px 0 0;
        margin-top: auto;
    }
    
    .terms-table {
        font-size: 0.8rem;
    }
    
    .terms-table th,
    .terms-table td {
        padding: 0.625rem 0.75rem;
    }
    
    .terms-benefit-list {
        grid-template-columns: 1fr;
    }
    
    .terms-modal-footer {
        flex-direction: column;
    }
    
    .nightly-breakdown-toggle {
        font-size: 0.85rem;
        padding: 0.6rem 0.875rem;
    }
    
    .booking-room-rate-discount {
        font-size: 11px;
        padding: 3px 8px;
        margin-bottom: 4px;
    }
    
    .booking-room-rate-discount-los {
        margin-left: 4px;
    }
    
    .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;
    }
}

@media ( max-width : 480px) {
	nav {
		padding: 1rem 4%;
	}
	.logo {
		font-size: 1.3rem;
	}
	.hero-slider {
		height: 400px;
	}
	.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;
	}
	.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: 1.0rem;
		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;
    }
    
    .promo-hero-title {
        font-size: 1.6rem;
    }
    
    .promo-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .promo-filter-item {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .filter-icon {
        font-size: 1rem;
    }
    
    .promo-card-title {
        font-size: 1.2rem;
    }
    
    .promo-benefits {
        padding: 1rem;
    }
    
    .service-hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .service-hero-subtitle {
        font-size: 1rem;
    }
    
    .service-intro-title,
    .service-section-title {
        font-size: 1.4rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .service-cta-title {
        font-size: 1.6rem;
    }
    
    .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 a {
        font-size: 1.0rem;
    }
    
    .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;
    }
    
    .promo-detail-status-bar {
        flex-direction: column;
		align-items: stretch;
		gap: 0.6rem;
    }
    
    .promo-detail-status {
		text-align: center;
		justify-content: center;
	}
	
	.promo-detail-period {
		width: 100%;
	}
	
	.period-text {
		font-size: 0.8rem;
	}
    
    .promo-detail-header {
        padding: 2rem 1.5rem;
    }
    
    .promo-detail-title {
        font-size: 1.2rem;
    }
    
    .promo-detail-gallery {
        padding: 1rem 1.5rem;
    }
    
    .promo-detail-gallery-item {
        height: 80px;
    }
    
    .booking-card-header,
    .booking-card-body,
    .booking-card-benefits,
    .booking-card-actions {
        padding: 1.5rem;
    }
    
    .guest-popup {
		width: 100%;
		border-radius: var(--radius-lg);
		max-height: 100vh;
	}
	
	.guest-popup-body {
		max-height: calc(100vh - 150px);
		padding: 1rem;
	}
	
	.room-count-section {
		padding-bottom: 1rem;
		margin-bottom: 1rem;
	}
	
	.room-guest-section {
		padding: 0.8rem;
		margin-bottom: 1rem;
	}
	
	.guest-row {
		padding: 0.8rem 0;
	}
	
	.guest-control {
		gap: 0.8rem;
	}
	
	.guest-btn {
		width: 30px;
		height: 30px;
		font-size: 0.9rem;
	}
	
	.guest-count {
		min-width: 35px;
		font-size: 1rem;
	}
	
	.price-breakdown-amounts {
		min-width: 100px;
	}
	
	.amount-primary {
		font-size: 0.85rem;
	}
	
	.amount-secondary {
		font-size: 0.75rem;
	}
	
	.date-with-room {
		gap: 0.4rem;
		flex-direction: row; /* 모바일에서도 가로 유지 */
	}
	
	.room-number {
		font-size: 0.65rem;
		padding: 0.2rem 0.4rem;
	}
	
	.date-text {
		font-size: 0.8rem;
	}
	
	.date-info {
		gap: 0.4rem;
		font-size: 0.85rem;
	}
	
	.room-badge {
		font-size: 0.7rem;
		padding: 0.2rem 0.5rem;
	}
	
	.room-image-slider {
		height: 240px;
	}
	
	.room-slider-btn {
		width: 32px;
		height: 32px;
		opacity: 1; /* 소형 모바일도 항상 표시 */
	}
	
	.room-slider-btn svg {
		width: 16px;
		height: 16px;
	}
	
	.room-slider-prev {
		left: 6px;
	}
	
	.room-slider-next {
		right: 6px;
	}
	
	.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);
	}
	
	.booking-submit-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .booking-cancel-btn {
        min-width: auto;
        width: 100%;
    }
    
    .booking-submit-btn {
        width: 100%;
    }
}