/** font **/
@import url("/Public/Css/Fontawesome/js/all.js?ver=1.01");
@import url("/Public/Css/Fontawesome/webfonts/Pretendard.css");
@import url("/Public/Css/Fontawesome/webfonts/NotoSansKR.css");
/* Reset */
*,
::after,
::before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:focus {outline: 0;}
:root {
	-webkit-tap-highlight-color:transparent;
	-webkit-text-size-adjust:100%;
	text-size-adjust:100%;
	cursor:default;
	line-height:1.5;
	overflow-wrap:break-word;
	word-break:break-word;
	tab-size:4;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {display: block;}
nav, main, footer, header, article, section, aside {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {height: 100%;	line-height: 1.15; -webkit-text-size-adjust: 100%;}
body {
    font-family: "Pretendard","NotoSansKR", "돋움", dotum, Helvetica, Arial, Tahoma, sans-serif;
    background: #fff;
    width: 100%;
    height: 100%;
    line-height: 1;
}
a {background-color: transparent; text-decoration: none; color: inherit;}
ol, ul, li {list-style: none;}
table {border-collapse: collapse; border-spacing: 0;}
input, button, textarea, select {font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0;}
button {border: none; background: none; cursor: pointer;}
img, video {max-width: 100%; height: auto; vertical-align: middle;}
h1, h2, h3, h4, h5, h6 {font-size: inherit; font-weight: inherit;}

input[type='text']:disabled {background:#fafafa;}
input[type='text']:read-only {background:#fafafa;}
/* input 오류 색상 */
input[type=text].Error {outline: 1px solid #ff3300;}

/* 1920 해상도 모니터에서만 80% 스케일 (스크롤바 감안 뷰포트 1900~1920 범위; 2560 등 더 넓은 해상도는 제외) */
@media screen and (min-width: 1900px) and (max-width: 1920px) {
	:root {zoom: 0.8;}
	/* Firefox */
	@-moz-document url-prefix() {
		body {transform: scale(0.8); transform-origin: top center; min-height: 125vh;}
	}
	/* Safari */
	@supports (-webkit-touch-callout: none) {
		body {-webkit-transform: scale(0.8); -webkit-transform-origin: top center; min-height: 125vh;}
	}
}

/* header */
header {width: 100%;}

/* Logo Boat Easter Egg */
.logo { position: relative; display: inline-flex; align-items: center; overflow: visible; }
.logo-boat-wrap {
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 44px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    overflow: visible;
}
.logo:hover .logo-boat-wrap { opacity: 1; }
.logo-boat-svg {
    width: 86px;
    height: auto;
    overflow: visible;
    animation: boatSail 4s ease-in-out infinite;
}
/* 컨테이너선: 무거운 선박의 느린 출렁임 */
@keyframes boatSail {
    0%   { transform: translateY(0px)  rotate(-0.8deg); }
    30%  { transform: translateY(-4px) rotate(0deg);    }
    55%  { transform: translateY(-2px) rotate(0.9deg);  }
    75%  { transform: translateY(-5px) rotate(0.2deg);  }
    100% { transform: translateY(0px)  rotate(-0.8deg); }
}
.top-bar {background: #0284c7; width: 100%; color: white; padding: 0 max(50px, calc((100% - 1510px) / 2)); display: flex; justify-content: space-between; align-items: center; box-sizing: border-box; height: 52px; border-bottom: 1px solid rgba(0,0,0,0.1);}
.top-bar a {color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; font-weight: 400; display: flex; align-items: center; gap: 6px; padding: 6px 13px; border-radius: 20px; transition: all 0.2s ease; letter-spacing: -0.01em;}
.top-bar a:hover {background: rgba(255,255,255,0.18); color: #fff;}
.top-bar a i {font-size: 13px; width: 16px; text-align: center;}
.top-right {display: flex; align-items: center; gap: 4px; order: 0;}
.top-left {display: flex; align-items: center; gap: 4px; order: 1;}
/* 해외주소, 고객센터 chip 스타일 */
.top-right a {background: rgba(255,255,255,0.15); color: #fff; font-weight: 500; border: 1px solid rgba(255,255,255,0.25);}
.top-right a:hover {background: rgba(255,255,255,0.28);}
/* 네오티님 안녕하세요 - 호버 효과 없음 (로그인 전 상태 제외) */
.top-left:not(.top-left-guest) a:first-child {cursor: default;}
.top-left:not(.top-left-guest) a:first-child:hover {background: transparent; color: rgba(255,255,255,0.85);}
/* 로그인 전 - 아이디찾기, 비밀번호찾기, 회원가입 chip 스타일 */
.top-left-guest a {background: rgba(255,255,255,0.15); color: #fff; font-weight: 500; border: 1px solid rgba(255,255,255,0.25); cursor: pointer;}
.top-left-guest a:hover {background: rgba(255,255,255,0.28); color: #fff;}
/* 로그인 버튼 - 더 눈에 띄는 스타일 */
.top-left-guest a.btn-login {background: #fff; color: #0284c7; font-weight: 600; border: 1px solid rgba(255,255,255,0.9);}
.top-left-guest a.btn-login:hover {background: rgba(255,255,255,0.88); color: #0272b0;}
/* 로그아웃 chip 스타일 (약간 다른 배경) */
.top-left a:last-child {background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.18);}
.top-left a:last-child:hover {background: rgba(255,255,255,0.18); color: #fff;}
.icon-text {margin-left: 1px;}
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px max(0px, calc((100% - 1510px) / 2));
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
}
.mobile-login {display: none; z-index: 1001;}
.mobile-login-icon {font-size: 20px; color: #333; cursor: pointer; padding: 10px; position: relative; z-index: 1001;}
.mobile-login-menu {
    display: none; 
    position: absolute; 
    top: 100%; 
    right: 0; 
    background: white; 
    border: none; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    border-radius: 10px; 
    overflow: hidden; 
    z-index: 1001; 
    min-width: 150px;
    padding: 8px 0;
}
.mobile-login-icon i {display: block; padding: 5px;}
.nav {display: flex; position: relative;}
.nav .nav-item {position: relative; padding: 15px 25px; cursor: pointer; font-size: 20px; font-weight: 600; color: #333; transition: all 0.25s ease; letter-spacing: -0.02em;}
.nav .nav-item:hover {color: #3858e9;}
.nav .nav-item:after {content: ""; position: absolute; bottom: 10px; left: 25px; width: 0; height: 2px; background-color: #3858e9; transition: width 0.3s ease;}
.nav .nav-item:hover:after {width: calc(100% - 50px);}
.nav .nav-item .arrow-icon {display: none;}
.nav .nav-item:hover .submenu {display: block;}
.submenu {
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 50%; 
    transform: translateX(-50%); 
    background: white; 
    border-radius: 12px; 
    border: none; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); 
    width: auto; 
    min-width: 180px; 
    white-space: nowrap; 
    z-index: 1000;
    padding: 8px 0;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.98);
}
.submenu a {
    display: block; 
    padding: 12px 16px; 
    border-radius: 8px; 
    color: #333; 
    font-size: 17px; 
    font-weight: 500; 
    text-decoration: none; 
    white-space: nowrap;
    transition: all 0.2s ease;
    margin: 4px 8px;
}
.submenu a .subbullet {display: none;}
.submenu a:hover {background: rgba(56, 88, 233, 0.08); color: #3858e9; transform: translateX(4px);}
.mobile-menu {display: none; font-size: 24px; cursor: pointer;}
.nav-drawer-header {display: none;}
@media (max-width: 1280px) {
    .top-bar {display: none;}
    .header {position: relative; padding: 15px 20px; display: flex;}
    .logo img {max-width: 170px; height: auto; text-align: left;}
    .mobile-icons {display: flex; align-items: center; gap: 15px;}
    .mobile-login {display: flex; align-items: center; position: relative;}
    .mobile-login-icon {display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: #f5f5f5; color: #333; font-size: 20px; cursor: pointer; transition: all 0.3s ease;}
    .mobile-login-menu {display: none; position: absolute; top: calc(100% + 8px); right: 0; background: white; border: none; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); min-width: 200px; max-width: calc(100vw - 32px); overflow: hidden; z-index: 1001; padding: 8px 0;}
    .mobile-login-menu a:last-child {border-bottom: none;}
    .mobile-login-menu a i {margin-right: 10px; color: #3858e9; font-size: 16px; transition: all 0.2s ease;}
    .mobile-login-menu a:hover {background: rgba(56, 88, 233, 0.08); color: #3858e9; transform: translateX(4px);}
    .mobile-login-menu a:hover i {color: #3858e9; transform: scale(1.1);}
    .mobile-login.active .mobile-login-menu {display: block; animation: fadeIn 0.3s ease;}
    .mobile-login-menu a {display: flex; align-items: center; padding: 15px 20px; color: #333; text-decoration: none; font-size: 15px; border-bottom: none; transition: all 0.2s ease; margin: 2px 6px; border-radius: 8px;}
    .mobile-menu {display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: #3858e9; color: #fff; font-size: 20px; cursor: pointer; transition: all 0.3s ease;}
    .mobile-login-icon:hover {background: #e8e8e8; transform: scale(1.05);}
    .mobile-menu:hover {background: #2940b0; transform: scale(1.05);}
    .mobile-login, .mobile-menu {order: 2;}
    /* 슬라이드 드로어 */
    .nav {display: flex; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; height: 100vh; background: white; flex-direction: column; z-index: 1002; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); overflow-y: auto; box-shadow: -4px 0 24px rgba(0,0,0,0.12);}
    .nav.active {transform: translateX(0);}
    .nav-drawer-header {display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid #eee; position: sticky; top: 0; background: white; z-index: 1; flex-shrink: 0;}
    .nav-drawer-logo {height: 28px; width: auto; display: block;}
    .nav-close-btn {display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: #f5f5f5; color: #555; font-size: 15px; cursor: pointer; transition: all 0.2s ease; border: none;}
    .nav-close-btn:hover {background: #e8e8e8;}
    .nav-overlay {display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1001; transition: opacity 0.35s ease;}
    .nav-overlay.active {display: block;}
    body.menu-open {overflow: hidden;}
    .nav .nav-item {width: 100%; border-bottom: 1px solid #f0f0f0; padding: 0; background: #fff; font-size: 17px; display: flex; flex-wrap: wrap; align-items: center;}
    .nav .nav-item:after {display: none;}
    .nav .nav-item > .menu-text {flex: 1; padding: 15px 8px 15px 20px;}
    .nav .nav-item > .arrow-icon {display: block; font-size: 13px; color: #bbb; padding: 15px 20px 15px 8px; transition: transform 0.3s ease, color 0.2s ease; flex-shrink: 0;}
    .nav .nav-item.active > .arrow-icon {transform: rotate(90deg); color: #3858e9;}
    .submenu {position: static; flex: 0 0 100%; width: 100%; box-shadow: none; border: none; border-radius: 0; transform: none; margin-top: 0; display: none; background: #f7f8ff; backdrop-filter: none; padding: 4px 0;}
    .nav .nav-item:hover .submenu {display: none;}
    .nav .nav-item.active .submenu {display: block;}
    .submenu a {padding: 12px 20px 12px 28px; border-radius: 0; margin: 0; background: transparent; font-size: 15px; border-bottom: 1px solid #eef0f8; transition: all 0.15s ease;}
    .submenu a:last-child {border-bottom: none;}
    .submenu a .subbullet {display: inline; color: #3858e9; margin-right: 6px;}
    .submenu a:hover {background: rgba(56,88,233,0.06); color: #3858e9; transform: none; padding-left: 33px;}
    .submenu a.current-menu {background: rgba(56,88,233,0.1); color: #3858e9; font-weight: 600;}
    .nav .nav-item.active > .menu-text {color: #3858e9;}
}
@media (max-width: 480px) {
    .header {padding: 6px 12px;}
}

/* 서브페이지 네비 */
.breadcrumb {display: flex; align-items: center; position: absolute; left: 20px; bottom: 0px;}
.breadcrumb .home {display: flex; align-items: center; color: #999; font-size: 15px; font-weight: 500;}
.breadcrumb .arr {margin: 0 8px; color: #999; font-size: 16px;}
.breadcrumb .path {color: #999; font-size: 16px; font-weight: 500;}
.breadcrumb .path.last {position: relative; cursor: pointer; display: inline-block;}
.breadcrumb .path.last .current {color: #222; font-weight: 600; display: inline-block; transition: all 0.2s ease;}
.breadcrumb .path.last .current:hover {color: #3858e9;}
.breadcrumb .path.last .subnav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    max-width: max-content;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.98);
    border: none;
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 100;
    backdrop-filter: blur(10px);
}
.breadcrumb .path.last .subnav-menu a {
    white-space: nowrap;
    display: block;
    padding: 7px 14px;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s;
    margin: 3px 6px;
    border-radius: 6px;
}
.breadcrumb .path.last .subnav-menu a:hover {background: rgba(56, 88, 233, 0.08); color: #3858e9; transform: translateX(3px);}
.breadcrumb .path.last .current i {font-size: 12px; margin-left: 5px; transition: transform 0.3s ease;}
.breadcrumb .path.last .current.active i {transform: rotate(180deg);}
@media (max-width: 768px) {
    .breadcrumb {left: 15px; bottom: 0px;}
    .breadcrumb .path, 
    .breadcrumb .path.last .current {font-size: 13px;}
    .breadcrumb .path.last .subnav-menu {min-width: 120px;}
    .breadcrumb .path.last .subnav-menu a {padding: 6px 12px; font-size: 13px;}
}

/* footer */
footer {width: 100%; background: #1e293b;}
.footer-inner {max-width: 1200px; margin: 0 auto; padding: 0 20px;}
.footer-top {display: flex; align-items: center; justify-content: space-between; padding: 40px 0 32px;}
.footer-logo-wrap a {display: block;}
.footer-logo-wrap img {height: 34px; width: auto; filter: brightness(0) invert(1); opacity: 0.85;}
.footer-nav {display: flex; align-items: center; gap: 4px;}
.footer-nav a {display: inline-flex; align-items: center; padding: 6px 14px; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; font-weight: 400; letter-spacing: -0.01em; border-radius: 6px; transition: all 0.2s ease;}
.footer-nav a:hover {color: #fff; background: rgba(255,255,255,0.08);}
.footer-divider {border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 0;}
.footer-inner .footer-bottom {display: flex; align-items: flex-end; justify-content: space-between; padding: 28px 0 48px; gap: 20px;}
.footer-txt {flex: 1; min-width: 0;}
.footer-txt p {font-size: 13px; color: rgba(255,255,255,0.38); margin: 0 0 4px 0; line-height: 1.65;}
.footer-txt a {color: rgba(255,255,255,0.55); text-decoration: none;}
.footer-txt a:hover {color: #fff; text-decoration: underline;}
.footer-copy {font-size: 12px; color: rgba(255,255,255,0.22); white-space: nowrap; text-align: right; margin: 0; line-height: 1.7;}
@media (max-width: 768px) {
	.footer-top {flex-direction: column; align-items: flex-start; gap: 20px; padding: 28px 0 22px;}
	.footer-nav {flex-wrap: wrap; gap: 3px;}
	.footer-nav a {font-size: 13px; padding: 5px 10px;}
	.footer-inner .footer-bottom {flex-direction: column; align-items: flex-start; padding: 22px 0 40px; gap: 12px;}
	.footer-copy {text-align: left;}
}
@media (max-width: 480px) {
	.footer-top {padding: 22px 0 18px;}
	.footer-nav a {font-size: 12px; padding: 5px 9px;}
	.footer-txt p {font-size: 12px;}
	.footer-inner .footer-bottom {padding: 18px 0 32px;}
}

/* 레이어 팝업 로그인/아이디 찾기 / 비밀번호 재발급 등 */
.layer-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    z-index: 9999;
}
.layer-popup-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 2rem;
}
.layer-popup-wrap {
    border: 1px solid #e9eaeb;
    border-radius: 1rem;
    background-color: #fff;
    padding: 2rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    margin: 0 auto;
}
.layer-popup-title {text-align: center; font-size: 1.5rem; font-weight: bold; color: #333; margin-bottom: 2rem;}
.layer-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    background: none;
    border: none;
    padding: 10px;
}
.layer-popup-form-group {margin-bottom: 1rem;}
.layer-popup-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    outline: none;
    transition: all 0.2s;
}
.layer-popup-input:focus {border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);}
.layer-popup-submit {
    width: 100%;
    padding: 0.75rem;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 1rem;
}
.layer-popup-submit:hover {background-color: #2563eb;}
.layer-popup-button-wrap {width: 100%;}

/* 로그인 팝업 전용 스타일 */
.layer-login-remember-forgot {display: flex; align-items: center; margin-bottom: 1.5rem;}
.layer-login-remember {display: flex; align-items: center;}
.layer-login-checkbox {width: 1rem; height: 1rem; margin-right: 0.5rem;}
.layer-login-forgot {margin-left: auto; color: #6b7280; text-decoration: none; font-size: 0.875rem;}
.layer-login-forgot:hover {text-decoration: underline;}
.layer-login-divider {
    text-align: center;
    margin: 2rem 0;
    color: #6b7280;
    font-size: 0.875rem;
    position: relative;
}
.layer-login-divider::before, .layer-login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #e5e7eb;
}
.layer-login-divider::before {left: 0;}
.layer-login-divider::after {right: 0;}
.layer-login-social {display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem;}
.layer-login-social-button {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background-color: #f8fafc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    font-size: 0.875rem;
}
.layer-login-social-button:hover {background-color: #f3f4f6;}
.layer-login-signup {text-align: center;}
.layer-login-signup-link {color: #6b7280; text-decoration: none; font-size: 0.875rem;}
.layer-login-signup-link:hover {text-decoration: underline;}

/* 아이디 찾기 결과 */
.find-id-result-area {display: none;}
.find-id-result-message {text-align: center; color: #333; margin-bottom: 1.5rem;}
.find-id-result-id {text-align: center; font-size: 1.5rem; font-weight: bold; color: #333; margin-bottom: 2rem;}
.password-reset-info {text-align: center; color: #333; margin: 2rem 0; line-height: 1.6;}
.password-reset-info p {margin: 0.5rem 0; font-size: 0.95rem;}
.login-btn {margin-top: 0;}
@media screen and (min-width: 1023px) {
    .layer-popup-container.w50 {max-width: 70%;}
    .layer-popup-wrap {padding: 1.5rem;}
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .layer-popup-container {max-width: 24rem;}
    .layer-popup-wrap {padding: 1.5rem;}
}
@media screen and (max-width: 767px) {
    .layer-popup-container {padding: 0.7rem;}
    .layer-popup-wrap {padding: 1.25rem; border-radius: 0.75rem;}
    .layer-popup-title {font-size: 1.25rem; margin-bottom: 1.5rem;}
    .layer-popup-close {top: 10px; right: 10px; font-size: 20px;}
    .layer-login-remember-forgot {flex-direction: column; align-items: center; gap: 0.75rem;}
    .layer-login-remember {justify-content: center;}
    .layer-login-forgot {margin-left: 0; text-decoration: underline;}
    .password-reset-info {margin: 1.5rem 0; font-size: 0.9rem;}
}

/* 라디오버튼 스타일 */
.nomalRadio-label {
    display: inline-flex; 
    align-items: center; 
    cursor: pointer;
    padding: 2px 0;
    position: relative;
    transition: transform 0.2s ease;
	margin-right: 15px;
}
.nomalRadio-label:hover {transform: translateY(-1px); font-weight: 700;}
.nomalRadio-input {position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0;}
.nomalRadio-text {position: relative; padding-left: 26px; font-size: 16px; font-weight: 600; color: #555;}
.nomalRadio-text:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.2s;
}
.nomalRadio-input:checked + .nomalRadio-text {color: #4F46E5; font-weight: 600;}
.nomalRadio-input:checked + .nomalRadio-text:before {border-color: #4F46E5; background-color: #4F46E5;}
.nomalRadio-input:checked + .nomalRadio-text:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: white;
}

/* 셀렉트 박스 */
.nomal-Select {
	padding: 10px 40px 10px 15px; 
    font-size: 15px;
	font-weight: 500;
    border: 1px solid #000;
    border-radius: 3px;
	height: 40px;
	/*min-width: fit-content;*/
    width: auto;
    appearance: none;
    -webkit-appearance: none;
    background: white url("../Public/Image/form-icon.png") no-repeat;
    background-position: right 15px center; 
    cursor: pointer;
    color: #000;
}
.nomal-Select:focus {outline: none; border-color: #000;}
.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
  max-width: 550px; /* 약간 줄임 */
  font-family: 'Noto Sans KR', sans-serif;
}

.custom-select {
  position: relative;
  display: flex;
  flex-direction: column;
}

.custom-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  height: 40px;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.custom-select__trigger:hover {
  border-color: #bdbdbd;
}

.custom-select.open .custom-select__trigger {
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.custom-select__trigger .selected-display {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 20px);
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #e0e0e0;
  border-top: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
  max-height: 250px;
  overflow-y: auto;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-top: 2px;
}

.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.custom-option {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap; /* 줄바꿈 방지 */
}

.custom-option:hover {
  background-color: #f7f9fc;
}

.custom-option.selected {
  background-color: #f0f7ff;
}

/* 화살표 디자인 */
.arrow {
  position: relative;
  height: 10px;
  width: 10px;
}

.arrow::before, .arrow::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 7px;
  height: 2px;
  background-color: #757575;
  transition: all 0.3s;
}

.arrow::before {
  left: -2px;
  transform: rotate(45deg);
}

.arrow::after {
  left: 2px;
  transform: rotate(-45deg);
}

.open .arrow::before {
  transform: rotate(-45deg);
}

.open .arrow::after {
  transform: rotate(45deg);
}

/* 각 요소 스타일링 - 간격 조정 */
.option-number {
  display: inline-block;
  min-width: 20px;
  text-align: right;
  color: #757575;
  font-weight: 500;
  margin-right: 8px; /* 간격 줄임 */
}

.option-title {
  flex: 0 0 auto;
  color: #333;
  margin-right: 10px; /* 간격 줄임 */
  width: 100px; /* 너비 줄임 */
}

.option-price {
  color: #4a90e2;
  font-weight: 500;
  margin: 0 10px; /* 간격 줄임 */
  width: 80px; /* 너비 줄임 */
  text-align: right;
}

.option-date {
  color: #757575;
  font-size: 14px;
  margin-left: 10px; /* 간격 줄임 */
  width: 160px; /* 너비 줄임 */
  text-align: right;
}

/* 스크롤바 디자인 */
.custom-options::-webkit-scrollbar {
  width: 6px;
}

.custom-options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.custom-options::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 3px;
}

.custom-options::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}
/* 체크박스 */
.Ani-checkbox {display: flex; align-items: center; margin-top: 10px;}
.Ani-checkbox .cbx {display: flex; align-items: center; gap: 5px;}
.Ani-checkbox input[type="checkbox"] {display: none; visibility: hidden;}
.Ani-checkbox .cbx {display: flex; flex-wrap: wrap; align-items: flex-start;}
.Ani-checkbox .cbx span {display: inline-block; vertical-align: middle; transform: translate3d(0, 0, 0); line-height: 20px;}
.Ani-checkbox .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid #9098a9;
    transition: all 0.2s ease;
    margin-right: 8px;
    margin-top: 1px;
}
.Ani-checkbox .cbx span:nth-child(2) {flex: 1; margin-top: 0; font-size: 16px;}
.Ani-checkbox .cbx span:nth-child(3) {
    width: 100%;
    margin-top: 3px;
    margin-left: 26px;
    color: #666;
    font-size: 14px;
    line-height: 16px;
}
.Ani-checkbox .cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}
.Ani-checkbox .cbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #506eec;
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
}
.Ani-checkbox .cbx:hover span:first-child {border-color: #506eec;}
.Ani-checkbox .inp-cbx:checked + .cbx span:first-child {background: #506eec; border-color: #506eec; animation: wave-46 0.4s ease;}
.Ani-checkbox .inp-cbx:checked + .cbx span:first-child svg {stroke-dashoffset: 0;}
.Ani-checkbox .inp-cbx:checked + .cbx span:first-child:before {transform: scale(3.5); opacity: 0; transition: all 0.6s ease;}
/* 비활성화(disabled) 스타일 추가 */
.Ani-checkbox .inp-cbx:disabled + .cbx {opacity: 0.7;}
.Ani-checkbox .inp-cbx:disabled + .cbx span:first-child {background-color: #e9e9e9; border-color: #cccccc;}
.Ani-checkbox .inp-cbx:disabled + .cbx:hover span:first-child {border-color: #cccccc;}
.Ani-checkbox .inp-cbx:checked:disabled + .cbx span:first-child {background-color: #a8b1dc; border-color: #a8b1dc;}
.Ani-checkbox .inp-cbx:disabled + .cbx span:nth-child(2),
.Ani-checkbox .inp-cbx:disabled + .cbx span:nth-child(3) {color: #999;}
.Ani-checkbox .inp-cbx:disabled + .cbx span:first-child:before {display: none;}


/* 체크박스2 */
.checkbox-Form {position: relative; display: inline-flex; margin-left: 5px; width: 70px; height: 22px; margin-top: -5px; }
.checkbox-Form input {
    width: 100%;
	height: 22px;
    padding: 2px 6px;
    border: 2px solid #d0c9f9;
    border-radius: 3px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    text-align: center;
	justify-content: center;
}
.checkbox-Form input:focus {border-color: #473fa2;}
.checkbox-Form label {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #666;
    pointer-events: none;
    transition: all 0.2s ease;
}
.checkbox-Form input:focus + label,
.checkbox-Form input:not(:placeholder-shown) + label {top: -10px; left: 5px; font-size: 14px; background: #fff; padding: 0 4px;}
.checkbox-Form input::-webkit-outer-spin-button,
.checkbox-Form input::-webkit-inner-spin-button {-webkit-appearance: none; margin: 0;}
.checkbox-Form input[type=number] {-moz-appearance: textfield;}

/* 필수항목/일반항목 폼 소타일 */
.EssentialForm {display: flex; flex-direction: column; width: 100%;}
.Essential-form,.standardForm {position: relative; width: 100%; z-index: 1;}
.Essential-form label,.standardForm label {
	font-size: 13px;
	color: #c4c4c4;
	position: absolute;
	font-weight: 500;
	top: -20px;
	left: 20px;
	background-color: #fff;
	transition: all .3s ease;
	align-items: center;
	gap: 4px;
	z-index: 0;
	pointer-events: none;
}
.Essential-form input,.standardForm input {
	padding: 10px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.07);
	outline: 0;
	width: 100%;
	background-color: #fff;
	z-index: 1;
}
.Essential-form input:placeholder-shown+ label {top: 0;	background-color: transparent; z-index: 0;}
.Essential-form input:focus {border-color: #d1e6fa;}
.Essential-form input:focus+ label,
.Essential-form input:not(:placeholder-shown)+ label {
	top: -2px;
	left: 20px;
	background-color: #fff;
	color: #aaa;
	font-weight: 400;
	font-size: 13px;
	transform: translateY(-50%);
	z-index: 2;
	line-height:1em;
}
.Essential-form input:not(:placeholder-shown) + label .bigBulet {color: #red;}
.standardForm input {height: 40px;}
.standardForm input:placeholder-shown+ label {top: 13px; background-color: transparent;	z-index: 0;}
.standardForm input:focus {border-color: #d1e6fa;}
.standardForm input:focus+ label,
.standardForm input:not(:placeholder-shown)+ label {
	top: 0px;
	left: 20px;
	background-color: #fff;
	color: #aaa;
	font-weight: 400;
	font-size: 13px;
	transform: translateY(-50%);
	z-index: 2;
	line-height:1em;
}
.checkbox-Form input {height: 30px;}
.checkbox-Form input:placeholder-shown+ label {top: 13px; background-color: transparent; z-index: 0;}
.checkbox-Form input:focus {border-color: #d1e6fa;}
.checkbox-Form input:focus+ label,
.checkbox-Form input:not(:placeholder-shown)+ label {
	top: 0px;
	left: 20px;
	background-color: #fff;
	color: #000;
	font-weight: 400;
	font-size: 13px;
	transform: translateY(-50%);
	z-index: 2;
	line-height:1em;
}
.bigBulet {display: inline-block; transform: translateY(4px); font-weight: 900; font-size: 29px; color:#ed6262;}

/* 버튼 스타일 */
.formBtm-Btns {display: flex; gap: 15px; padding: 0 20px 30px; margin: 0 auto; justify-content: center;}
.formBtm-style1 {
	width: 100%;
	background-color: #3366cc;
	color: #fff;
	border: none;
	border-radius: 3px;
	padding: 10px;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.formBtm-style1:hover {background-color: #27408b;}
.formBtm-style2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 120px;
    height: 40px;
	font-weight: 600px;
	font-size: 16px;
    line-height: 38px;
    margin-top: 1px;
    padding: 0 16px;
    background-color: white;
    color: #010101;
    border: 1px solid #000;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}
.formBtm-style2::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border: solid #000;
    border-width: 0 1px 1px 0;
    transform: rotate(135deg);
}
.formBtm-style2:hover {background-color: #27408b; border: 1px solid #27408b; color: #fff;}
.formBtm-style2:hover::before {border-color: #fff;}
.formBtm-style3 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 8px 16px;
    background-color: white;
    border: 1px solid #b9b9b9;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 500;
    color: #010101;
    cursor: pointer;
    transition: all 0.3s ease;
	z-index: 10;
}
.formBtm-style3-gray {
	position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 8px 16px;
    border: 1px solid #b9b9b9;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
	background-color: white; 
    color: #ababab;
}
.formBtm-style3:hover {background-color: #27408b; border: 1px solid #27408b; color: #fff;}
.formBtm-style3 i {font-size: 15px;}
.formBtm-style3 .tooltip {
    position: absolute;
    bottom: 120%; /* 버튼 위에 배치 */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.formBtm-style3 .tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}
.formBtm-style3:hover .tooltip {visibility: visible; opacity: 1;}
.formBtm-style4 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
	height: 70px;
    padding: 24px 80px;
    background-color: #473fa2;
    border-radius: 8px;
    font-size: 25px;
	font-weight: 500;
	text-align: center;
    color: #fff;
    cursor: pointer;
	transition: all 0.3s ease;
}
.formBtm-style4:hover {background-color: #31288f; color:#fff;}
.formBtm-style5 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
	height: 70px;
    padding: 24px 50px;
    background-color: #fff;
    border-radius: 8px;
	border: 1px solid #000;
    font-size: 22px;
	font-weight: 500;
    color: #000;
    cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}
.formBtm-style5:hover {background-color: #f2f2f2; color:#000; border: 1px solid #000;}
.formBtm-style6 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
	height: 26px;
    padding: 10px 15px;
    background-color: #fff;
    border-radius: 3px;
	border: 1px solid #333;
    font-size: 14px;
	font-weight: 500;
    color: #000;
    cursor: pointer;
	transition: all 0.3s ease;
}
.formBtm-style6:hover {background-color: #27408b; border: 1px solid #27408b; color:#fff;}
/* 아이콘 들어간 버튼 */
.formBtm-style7 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
	height: 40px;
    padding: 8px 16px;
    background-color: white;
    border: 1px solid #b9b9b9;
	justify-content: space-between;
    border-radius: 3px;
    font-size: 14px;
	font-weight: 500;
    color: #010101;
    cursor: pointer;
	transition: all 0.3s ease;
}
.formBtm-style7:hover {background-color: #27408b; border: 1px solid #27408b; color:#fff;}
.formBtm-style7 i {font-size: 14px;}
.formBtm-style8 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
	height: 50px;
    padding: 18px 50px;
    background-color: #473fa2;
    border-radius: 5px;
    font-size: 20px;
	font-weight: 500;
    color: #fff;
    cursor: pointer;
	transition: all 0.3s ease;
	justify-content: center;
}
.formBtm-style8:hover {background-color: #473fa2; color:#fff;}
.formBtm-style8 i {font-size: 22px;}
.formBtm-style9 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background-color: #473fa2;
    border-radius: 5px;
    font-size: 16px;
	font-weight: 500;
    color: #fff;
    cursor: pointer;
	transition: all 0.3s ease;
	justify-content: center;
}
.formBtm-style9:hover {background-color: #473fa2; color:#fff;}
.formBtm-style9 i {font-size: 18px;}
@media (max-width: 768px) {
    .formBtm-style4,.formBtm-style5,.formBtm-style8 {height: 50px; padding: 0 40px; font-size: 18px;}
}
@media (max-width: 480px) {
    .formBtm-style4,.formBtm-style5,.formBtm-style8 {height: 45px; padding: 0 20px; font-size: 16px; width: 100%; justify-content: center;}
}
@media (max-width: 768px) {
	.marginBottom {margin-bottom: 30px;}
}

/* 페이징 */
.pagination-section {display: flex; flex-direction: column; align-items: center; gap: 20px; margin-top: 30px;}
.pagination-wrap {display: flex; align-items: center; gap: 20px;}
.pagination-list {display: flex; align-items: center; gap: 5px;}
.pagination-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    background: #fff;
    cursor: pointer;
}
.pagination-arrow:hover {background: #f5f5f5;}
.pagination-item {
    min-width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
}
.pagination-item:hover {background: #f5f5f5;}
.pagination-item.active {background: #6052B4; color: #fff; border-color: #6052B4;}
.bottomBtn-wrap {display: flex; gap: 5px; justify-content: center;}
@media (max-width: 768px) {
    .pagination-section {margin-top: 20px; gap: 15px;}
    .pagination-wrap {gap: 15px;}
    .pagination-arrow {width: 28px; height: 28px;}
    .pagination-item {min-width: 28px; height: 28px; font-size: 13px;}
}

/* 약관 및 주의사항 */
.terms-box {background: #ffffff; border-radius: 30px; border: 1px solid #e9eaeb; padding: 20px; box-shadow: 0 4px 0 rgba(0, 0, 0, 0.03);}
.terms-text {height: 100px; overflow: hidden; transition: height 0.3s ease;}
.terms-text.expanded {height: auto;}
.terms-text p {margin: 0; padding: 4px 0; font-size: 16px; font-weight: 300; line-height: 1.5; color: #010101;}
.termsMore-btn {
    width: 100%;
    background: #ffffff;
	border-top: 1px solid #dddddd;
    color: #e95a5a;
    font-size: 18px;
	font-weight: 500;
    padding: 8px 0 0 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
	flex-direction: column;
    gap: 10px;
}
.termsMore-btn::before {
    content: '';
    display: inline-block;
	width: 15px;
    height: 15px;
    border-right: 3px solid #666;
    border-bottom: 3px solid #666;
    transform: rotate(45deg);
    margin-left: 8px;
    transition: transform 0.3s ease;
	margin-top: 10px;
}
.termsMore-btn.expanded::before {transform: rotate(-135deg);}
@media (max-width: 768px) {
    .terms-box {border-radius: 30px; padding: 15px;}
    .terms-text {height: 80px;}
    .terms-text p {font-size: 14px; padding: 3px 0;}
    .termsMore-btn {font-size: 16px; padding: 6px 0 0 0; gap: 8px;}
    .termsMore-btn::before {width: 12px; height: 12px; border-right: 2px solid #666; border-bottom: 2px solid #666; margin-top: 8px;}
}
@media (max-width: 480px) {
    .terms-box {border-radius: 10px; padding: 12px;}
    .terms-text {height: 70px;}
    .terms-text p {font-size: 13px; padding: 2px 0;}
    .termsMore-btn {font-size: 15px; padding: 5px 0 0 0; gap: 6px;}
    .termsMore-btn::before {width: 10px; height: 10px; margin-top: 6px;}
}

/* 퀵 배너 */
.quick-banner {position: fixed; right: 30px; top: 52%; transform: translateY(-60%); z-index: 100; transition: all 0.3s ease;}
.quick-menu {
	background: #fff;
	width: 110px;
	height: auto;
	padding: 25px 8px 35px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	border-radius: 62px;
	position: relative;
	transition: all 0.3s ease;
}
.quick-menu:hover {box-shadow: 0 8px 20px rgba(0,0,0,0.12); transform: translateY(-5px);}
.quick-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	padding: 10px 5px;
	width: 90%;
	position: relative;
	z-index: 1;
	transition: all 0.2s ease;
	border-radius: 5px;
	text-align: center;
}
.quick-btn.talk {position: relative;}
.quick-btn.yellow {background-color: #FFD700; color: #000; font-weight: 600; padding: 12px 5px; margin-top: -5px;}
.quick-btn.purple {background: #8A2BE2; color: #fff; font-weight: 600; padding: 12px 5px; margin-bottom: 2px;}
.quick-btn span {font-size: 14px; font-weight: 600; text-align: center; word-break: keep-all;}
.quick-btn.location {background-color: #f0f8ff; border: 1px solid #d0e6f7; padding: 12px 5px; position: relative;}
.location-icon {
	display: inline-block;
	width: 10px;
	height: 14px;
	background-color: #0078d4;
	position: relative;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	margin-bottom: 5px;
}
.location-icon::after {
	content: '';
	width: 5px;
	height: 5px;
	background-color: white;
	position: absolute;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.quick-btn.location span {color: #0078d4; display: block;}
.quick-btn.location .phone {margin-top: 5px; font-size: 11px; line-height: 1.3;}
/* TOP 버튼 스타일 - 기존 스타일 유지 */
.top-btn {
	width: 60px;
	height: 60px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 15px auto 0;
	text-decoration: none;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	position: relative;
	z-index: 2;
	cursor: pointer;
	transition: all 0.3s ease;
}
.top-btn:hover {background: #f8f8f8; transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.12);}
.top-btn i {width: 20px; height: 20px; transition: transform 0.3s ease;}
.top-btn:hover i {transform: translateY(-2px);}
@media (max-width: 1600px) {
	.quick-banner {display: none;}
}
@media (max-width: 768px) {
	.quick-banner {right: 15px;}
	.quick-menu {width: 90px; padding: 25px 5px 45px; gap: 5px;}
	.quick-btn {padding: 8px 5px;}
	.quick-btn span {font-size: 11px;}
}.quick-banner {position: fixed; right: 30px; top: 52%; transform: translateY(-60%); z-index: 100; transition: all 0.3s ease;}
.quick-menu {
	background: #fff;
	width: 110px;
	height: auto;
	padding: 25px 8px 35px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	border-radius: 62px;
	position: relative;
	transition: all 0.3s ease;
}
.quick-menu:hover {box-shadow: 0 8px 20px rgba(0,0,0,0.12); transform: translateY(-5px);}
.kakao3 {display: flex; flex-direction: column;	align-items: center; padding: 10px 5px;	width: 90%;	position: relative;}
.quick-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	padding: 10px 5px;
	width: 90%;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
	border-radius: 5px;
	text-align: center;
}
.quick-btn:hover {transform: translateY(-3px); box-shadow: 0 5px 10px rgba(0,0,0,0.05);}
.quick-btn.talk {position: relative;}
.quick-btn.yellow {
	background-color: #FFD700; 
	color: #000; 
	font-weight: 600; 
	padding: 12px 5px; 
	margin-top: -5px;
	transition: all 0.3s ease;
}
.quick-btn.yellow:hover {background-color: #FFE44D; transform: translateY(-3px) scale(1.03);}
.quick-btn.purple {
	background: #8A2BE2; 
	color: #fff; 
	font-weight: 600; 
	padding: 12px 5px; 
	margin-bottom: 2px;
	transition: all 0.3s ease;
}
.quick-btn.purple:hover {background: #9B4EE3; color: #fff; transform: translateY(-3px) scale(1.03);}
.quick-btn span {
	font-size: 14px; 
	font-weight: 600; 
	text-align: center; 
	word-break: keep-all;
	transition: all 0.3s ease; 
}
.quick-btn.location {
	background-color: #f0f8ff; 
	border: 1px solid #d0e6f7; 
	padding: 12px 5px; 
	position: relative;
	transition: all 0.3s ease; 
}
.quick-btn.location:hover {background-color: #e6f4ff; border-color: #b8dcf5; transform: translateY(-3px) scale(1.03);}
.location-icon {
	display: inline-block;
	width: 14px;
	height: 14px;
	background-color: #0078d4;
	position: relative;
	border-radius: 50% 50% 50% 50%;
	transform: rotate(-45deg);
	margin-bottom: 5px;
	transition: all 0.3s ease;
}
.quick-btn:hover .location-icon {background-color: #0066b8; transform: rotate(-45deg) scale(1.1);} /* 호버 시 아이콘 색상 및 크기 변경 */
.quick-btn.location span {color: #0078d4; display: block;}
.quick-btn.location:hover span {color: #0066b8;}
.quick-btn.location .phone {margin-top: 5px; font-size: 11px; line-height: 1.3;}
/* TOP 버튼 스타일 - 기존 스타일 유지에 애니메이션 추가 */
.top-btn {
	width: 60px;
	height: 60px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 15px auto 0;
	text-decoration: none;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	position: relative;
	z-index: 2;
	cursor: pointer;
	transition: all 0.3s ease;
}
.top-btn:hover {background: #f8f8f8; transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.12);}
.top-btn i {width: 20px; height: 20px; transition: transform 0.3s ease;}
.top-btn:hover i {transform: translateY(-2px);}
.top-btn img {transition: all 0.3s ease;} /* 이미지 애니메이션 추가 */
.top-btn:hover img {transform: translateY(-3px);} /* 호버 시 이미지 위로 이동 */
@media (max-width: 1600px) {
	.quick-banner {display: none;}
}
@media (max-width: 768px) {
	.quick-banner {right: 15px;}
	.quick-menu {width: 90px; padding: 25px 5px 45px; gap: 5px;}
	.quick-btn {padding: 8px 5px;}
	.quick-btn span {font-size: 11px;}
}

/* 모바일에서만 보이는 탑이동 버튼 */
.btn-top {display: none;}
@media (max-width: 1024px) {
    .btn-top {
        position: fixed;
        right: 15px;
        bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.6);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .btn-top.show {opacity: 1; visibility: visible;}
    .btn-top .arrow {display: block; width: 9px; height: 9px; border: solid #fff; border-width: 2px 2px 0 0; transform: rotate(-45deg); transition: all 0.3s ease; }
    .btn-top .arrow::before,
    .btn-top .arrow::after {display: none;}
    .btn-top:hover .arrow {transform: rotate(-45deg);}
    .btn-top .text {color: #fff; font-size: 10px; font-weight: 600; line-height: 1; margin-top: -3px;}
}
@media (max-width: 480px) {
    .btn-top {right: 10px; bottom: 15px;}
}
/* 로그인 페이지 배경 */
.login-page-bg {
    padding: 100px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background:
        repeating-linear-gradient(
            0deg,
            transparent, transparent 19px,
            rgba(201, 168, 76, 0.06) 19px,
            rgba(201, 168, 76, 0.06) 20px
        ),
        repeating-linear-gradient(
            90deg,
            transparent, transparent 19px,
            rgba(201, 168, 76, 0.06) 19px,
            rgba(201, 168, 76, 0.06) 20px
        ),
        linear-gradient(135deg, rgba(6,13,31,0.72) 0%, rgba(26,52,100,0.62) 100%),
        url('/Public/Image/Admin/admin_login-bg.png') center / cover no-repeat;
    position: relative;
    overflow: hidden;
}
/* 로그인 배경 파티클 캔버스 */
.login-particle-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}
/* 로그인 섹션 */
.login-section-page {background: #fff; padding: 0; width: calc(100% - 40px); max-width: 500px; flex-shrink: 0; margin-left: auto; margin-right: auto; border-radius: 16px; box-shadow: 0 20px 60px rgba(15,23,42,0.14), 0 4px 16px rgba(56,88,233,0.08); margin-top: 0; margin-bottom: 0; overflow: hidden; position: relative; z-index: 1;}
.login-section-page h3 {
    width: 100%;
    height: 73px;
    background: url("/Public/Image/index/index-loginBG.png") no-repeat;
    margin: 0;
    padding: 0 30px;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #fff;
    letter-spacing: 2px;
}
.login-section {background: #fff; padding: 0; width: 414px; height: 432px; flex-shrink: 0;}
.login-section h3 {
    width: 414px;
    height: 73px;
    background: url("/Public/Image/index/index-loginBG.png") no-repeat;
    margin: 0;
    padding: 0 30px;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #fff;
}
.login-form {margin-top: 20px; padding: 0 30px 30px;}
.input-group {margin-bottom: 15px;}
.input-group label {display: block; color: #2563eb; margin-bottom: 5px; font-weight: 600; font-size: 13px; letter-spacing: 1px;}
.input-group input {width: 100%; padding: 20px; border: 1px solid #e2e8f0; height: 46px; border-radius: 6px; transition: border-color 0.2s, box-shadow 0.2s; box-sizing: border-box; outline: none;}
.input-group input:focus {border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.1);}
.save-id {display: flex; align-items: center; margin-bottom: 20px; color: #666; font-size: 14px;}
.save-id input {font-size: 14px;}
.forgot-link {margin-left: auto; color: #666; cursor: pointer;}
.button-group {display: flex; gap: 8px; margin-bottom: 12px;}
.button-group button {border: none; cursor: pointer; border-radius: 6px;}
.button-group button:active {transform: translateY(1px);}
.button-group button:disabled {opacity: 0.6; cursor: not-allowed;}
.login-btn {
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    font-size: 19px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 2;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.login-btn:hover {background: linear-gradient(135deg, #1d4ed8, #2563eb); box-shadow: 0 4px 14px rgba(37,99,235,0.45); transform: translateY(-2px);}
.login-btn img {width: auto;}
.register-btn {height: 40px; display: flex; align-items: center; justify-content: center; gap: 5px; background: #f1f5f9; color: #333; font-size: 13px; font-weight: 700; flex: 1; transition: background 0.2s, box-shadow 0.2s, transform 0.2s;}
.register-btn img {height: 1.1em; width: auto; padding: 0; filter: brightness(0) invert(1);}
/* 네이버 */
.login-form .button-group:last-child .register-btn:nth-child(1) {background: #03C75A; color: #fff;}
.login-form .button-group:last-child .register-btn:nth-child(1):hover {background: #03C75A; box-shadow: 0 4px 14px rgba(3,199,90,0.5); transform: translateY(-2px);}
/* 카카오 */
.login-form .button-group:last-child .register-btn:nth-child(2) {background: #FEE500; color: #3C1E1E;}
.login-form .button-group:last-child .register-btn:nth-child(2) img {filter: brightness(0);}
.login-form .button-group:last-child .register-btn:nth-child(2):hover {background: #FEE500; box-shadow: 0 4px 14px rgba(254,229,0,0.6); transform: translateY(-2px);}
/* 회원가입 */
.login-form .button-group:last-child .register-btn:nth-child(3) {background: transparent; color: #2563eb; border: 1.5px solid #2563eb;}
.login-form .button-group:last-child .register-btn:nth-child(3):hover {background: #2563eb; color: #fff;}
.login-info {padding: 20px 30px;}
.user-welcome {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-bottom: 20px;
    padding-top: 5px;
    border-bottom: 1px solid #eee;
}
.user-welcome i {color: #3858e9; margin-right: 0;}
.user-stats {padding: 5px 0; border-bottom: 1px solid #eee;}
.stat-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: #f8fafc;
    padding: 15px;
    color: #000;
    border-radius: 3px;
}
.stat-item i {color: #3858e9; margin-right: 0;}
.stat-row {display: flex; gap: 10px;}
.stat-row .stat-item {flex: 1;}
.stat-item .label {color: #333; margin-right: 10px;}
.stat-item .value {font-weight: 600; color: #000;}
.stat-item span.label {margin-left: 10px;}
.user-buttons {display: flex; gap: 8px; margin-top: 20px;}
.mypage-btn {
    flex: 1;
    background: #7b10dd;
    color: white;
    border: none;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}
.logout-btn {
    flex: 1;
    background: #f1f5f9;
    color: #333;
    border: none;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

@media (max-width: 480px) {
    .login-info {padding: 15px 10px;}
    .stat-item {padding: 10px;}
    .stat-item i {margin-right: 0; font-size: 14px;}
    .stat-item .label {font-size: 14px; margin-right: 3px;}
    .stat-item .value {font-size: 14px;}
    .stat-row {gap: 3px;}
    .user-buttons {gap: 5px;}
    .mypage-btn, .logout-btn {padding: 25px 10px; font-size: 16px;}
    .login-form {padding: 0 12px 16px;}
    .save-id {font-size: 12px;}
    .forgot-link a {font-size: 12px;}
}
@media (max-width: 768px) {
    .login-page-bg {padding: 30px 0;}
    .login-section-page {margin-top: 0; margin-bottom: 0;}
}
@media (max-width: 480px) {
    .login-page-bg {padding: 20px 0;}
    .login-section-page {margin-top: 0; margin-bottom: 0;}
}

/* Caps Lock warning */
.capslock-warn {
    display: none;
    font-size: 11px;
    color: #c0392b;
    margin-top: 4px;
    padding: 3px 7px;
    background: #fdf3f3;
    border: 1px solid #f5c6c6;
    border-radius: 4px;
}
.capslock-warn.on { display: block; }

















