/* 아이웹플 바로가기 런처 */
#iwLauncher{
	position:fixed;
	right:0;
	top:50%;
	z-index:99999;
	display:flex;
	flex-direction:row;
	align-items:center;
	transform:translateY(-50%) translateX(272px);
	transition:transform .34s cubic-bezier(.22,.61,.36,1);
}
#iwLauncher.open{
	transform:translateY(-50%) translateX(0);
}

/* 세로 손잡이 버튼 */
#iwHandle{
	width:64px;
	height:160px;
	border:none;
	border-radius:16px 0 0 16px;
	background:#ff6b00;
	color:#fff;
	cursor:pointer;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:10px;
	box-shadow:-3px 3px 16px rgba(255,107,0,.4);
	flex-shrink:0;
	padding:0;
	margin:0;
	font-family:inherit;
	transition:background .2s ease;
}
#iwHandle:hover{
	background:#e85f00;
}
#iwLauncher .iw-vtext{
	writing-mode:vertical-rl;
	font-size:16px;
	font-weight:600;
	letter-spacing:3px;
}

/* 카드 패널 (배경) */
#iwLauncher .iw-panel{
	display:flex;
	flex-direction:column;
	gap:10px;
	width:264px;
	padding:14px;
	background:#fff;
	border:1px solid #ececec;
	border-radius:30px;
	box-shadow:0 6px 24px rgba(0,0,0,.1);
	box-sizing:border-box;
}

/* 바로가기 카드 */
#iwLauncher .iw-card{
	display:flex;
	align-items:center;
	gap:12px;
	padding:12px 14px;
	border-radius:16px;
	background:#fff;
	border:1px solid #ececec;
	text-decoration:none;
	box-sizing:border-box;
}
#iwLauncher .iw-ic{
	width:44px;
	height:44px;
	border-radius:12px;
	display:flex;
	align-items:center;
	justify-content:center;
	flex-shrink:0;
}
#iwLauncher .iw-t b{
	display:block;
	font-size:15px;
	font-weight:600;
	color:#1a1a1a;
	line-height:1.2;
}
#iwLauncher .iw-t small{
	display:block;
	font-size:12px;
	color:#777;
	line-height:1.45;
}

/* 문의 폼 */
#iwLauncher .iw-form{
	display:flex;
	flex-direction:column;
	gap:8px;
	padding:4px 2px 2px;
	margin:0;
}
#iwLauncher .iw-form-title{
	font-size:14px;
	font-weight:600;
	color:#1a1a1a;
	margin-bottom:2px;
}
#iwLauncher .iw-form input[type=text],
#iwLauncher .iw-form input[type=email]{
	width:100%;
	height:38px;
	padding:0 12px;
	border:1px solid #ddd;
	border-radius:8px;
	font-size:13px;
	box-sizing:border-box;
	background:#fff;
	color:#1a1a1a;
}
#iwLauncher .iw-form input:focus{
	outline:none;
	border-color:#0432a7;
}
#iwLauncher .iw-form .iw-select{
	width:100%;
	height:38px;
	padding:0 32px 0 12px;
	border:1px solid #ddd;
	border-radius:8px;
	font-size:13px;
	box-sizing:border-box;
	background:#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center;
	color:#1a1a1a;
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	cursor:pointer;
}
#iwLauncher .iw-form .iw-select:focus{
	outline:none;
	border-color:#0432a7;
}
#iwLauncher .iw-form button{
	width:100%;
	height:40px;
	border:none;
	border-radius:8px;
	background:#0432a7;
	color:#fff;
	font-size:14px;
	font-weight:500;
	cursor:pointer;
	margin-top:2px;
	font-family:inherit;
}
#iwLauncher .iw-form button:hover{
	background:#032680;
}
#iwLauncher .iw-consent{
	font-size:11px;
	color:#999;
	line-height:1.4;
	margin:2px 0 0;
	text-align:center;
}
#iwLauncher .iw-consent a{
	color:#666;
	text-decoration:underline;
}

/* 허니팟 숨김 */
#iwLauncher .iw-hp{
	position:absolute;
	left:-9999px;
	top:auto;
	width:1px;
	height:1px;
	overflow:hidden;
}

/* 모바일 */
@media (max-width:768px){
	#iwLauncher{
		transform:translateY(-50%) translateX(242px);
	}
	#iwLauncher.open{
		transform:translateY(-50%) translateX(0);
	}
	#iwLauncher .iw-panel{
		width:234px;
	}
	#iwHandle{
		width:54px;
		height:132px;
	}
	#iwLauncher .iw-vtext{
		font-size:14px;
		letter-spacing:2px;
	}
}
