@import url('reset.css');
@import url('static.css');
@import url('elements.css');
@import url('preloader.css');



#fb5{
   font-family:Arial,sans-serif;	
   font-size:14px;	
   position:relative;
   overflow:hidden;
   margin:0 auto;
   display:block;
   width:100%;
   height:300px;
   opacity:0;
   margin-bottom:30px;
}

#fb5.fullScreen,#fb5-ajax[data-template="true"] #fb5{
   margin-bottom:0;	
}


#fb5 #fb5-container-book {
	position: absolute;
	z-index: 5;
	display: none;
	width: 1100px; height: 715px;
	touch-action: none;
	will-change: transform;
}


#fb5 fieldset{
	
	
}


#fb5 #fb5-deeplinking{
  display:none;	
}


#fb5 .fb5-bcg-book{
    background: transparent !important;
    width:100%;
	height:100%;
}

#test{
   margin:0 auto;
   width:100%;
}

#fb5 #page.mobile {
		width: 550px; height: 358px;
		margin: -210px 0 0 -275px;
	}
	
#fb5 #page .padding { /*padding: 0 34px;*/ }



#fb5 .cursor-grab {
	cursor: -webkit-grab;
	cursor: -moz-grab;
}


#fb5 .fb5-overlay {
	position: absolute; left: -10000px; top: 0; z-index: 20;
	
	/*background: url(../img/bg-overlay.png);/*/
	background:rgba(0,0,0,0);
	
	width: 100%; height: 100%;
	display:none;
}

#fb5 .fb5-overlay.active { left: 0; display:block; }


/* = Back button
-------------------------------------------------------------- */
#fb5 #fb5-button-back {
	display: none !important;
}


/* = About
-------------------------------------------------------------- */

	#fb5 #fb5-about {
		position: absolute; z-index: 5;
		width: 45%; display: none;
		/*padding-top: 6%;/*/
	}

	#fb5 #fb5-about h1,
	#fb5 #fb5-about h2,
	#fb5 #fb5-about h3,
	#fb5 #fb5-about h4,
	#fb5 #fb5-about h5,
	#fb5 #fb5-about h6 {
		margin: 0 0 .5em 0;
		padding:0px;
		font-size: 1.375em;
		color: #64c8d3;
		-webkit-font-smoothing: antialiased;
		text-transform:none;
	}
	
	/* about h3 화살표: 이미지 대신 CSS border 트릭 사용 */
	#fb5 #fb5-about h3{
		padding: 0 0 0 20px;
		position: relative;
	}
	#fb5 #fb5-about h3::before {
		content: '';
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 0;
		height: 0;
		/* CSS border 트릭으로 오른쪽 방향 삼각형 생성 */
		border-top: 6px solid transparent;
		border-bottom: 6px solid transparent;
		border-left: 8px solid #64c8d3;
	}
	
	#fb5 #fb5-about ul,#fb5-about ol {
		list-style:disc;
		margin: 0;
		padding-left:10px;
		padding-top:0%;
		padding-bottom:2%;
	}
	
	#fb5 #fb5-about li {
		color: #cfeaee;
		margin-bottom:4px;
	}
		
	
	#fb5 #fb5-about p {
		/*font-size: 0.688em;/*/
		color: #cfeaee;
		margin-bottom:4%;
	}
	
	#fb5 #fb5-about a {
		color:#ffffff;	
		text-decoration:underline;
	}
	
	#fb5 #fb5-about a:hover {
		/*color:#ffffff;/*/	
		text-decoration:none;
	}



/* = Book
-------------------------------------------------------------- */

#fb5 #fb5-book {
	position: relative; z-index: 10;
	width: 100%; height:100%;
}

#fb5 #fb5-book .turn-page {
	background-color:#FFF;
	background-size: 100% 100%;
}

#fb5 .fb5-double {
	background-size: 200% 100% !important;
}

#fb5 .fb5-double.fb5-first {
	background-position: 0% 0%;
}

#fb5 .fb5-double.fb5-second {
	background-position: -100% 0%;
}







	/* = Nav Arrows (현대적 CSS 화살표 — glassmorphism + chevron)
	---------------------------------------- */

	/* 공통 기본 스타일 */
	#fb5 .fb5-nav-arrow {
		position: absolute;
		top: 50%;
		z-index: 15;
		width: 42px;
		height: 120px;
		margin-top: -60px;
		/* 글래스모피즘 그라디언트 배경 — 메인 컬러(황금 앰버) 계열 */
		background: linear-gradient(
			170deg,
			rgba(245, 184, 61, 0.82) 0%,
			rgba(230, 165, 35, 0.92) 100%
		);
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		/* 내부 하이라이트 + 외부 글로우 그림자 */
		box-shadow:
			0 4px 24px rgba(245, 184, 61, 0.38),
			inset 0 1px 0 rgba(255, 255, 255, 0.30);
		cursor: pointer;
		/* 부드러운 전환 */
		transition:
			background 0.25s ease,
			box-shadow 0.25s ease,
			transform 0.22s ease;
	}

	/* 호버 공통: 더 밝고 살짝 scaleY */
	#fb5 .fb5-nav-arrow:hover {
		background: linear-gradient(
			170deg,
			rgba(255, 200, 80, 0.96) 0%,
			rgba(245, 180, 45, 1.00) 100%
		);
		box-shadow:
			0 6px 32px rgba(245, 184, 61, 0.55),
			inset 0 1px 0 rgba(255, 255, 255, 0.45);
	}

	/* chevron 아이콘 공통 — 절대 위치로 정중앙 고정 */
	#fb5 .fb5-nav-arrow::after {
		content: '';
		position: absolute;   /* flex 의존 제거 */
		top: 50%;
		left: 50%;
		width: 12px;
		height: 12px;
		border-top: 2.5px solid rgba(255, 255, 255, 0.92);
		border-right: 2.5px solid rgba(255, 255, 255, 0.92);
		border-radius: 1px;
		transition: opacity 0.22s ease;
		opacity: 0.88;
	}
	#fb5 .fb5-nav-arrow:hover::after {
		opacity: 1;
	}

	/* ── 다음 페이지(오른쪽) ── */
	#fb5 .fb5-nav-arrow.next {
		right: -42px;
		border-radius: 0 22px 22px 0;
		transform-origin: left center;
		-ms-transform-origin: left center;
		-webkit-transform-origin: left center;
	}
	/* 중앙에서 -50%,-50% 이동 후 오른쪽 방향으로 45° 회전 */
	#fb5 .fb5-nav-arrow.next::after {
		transform: translate(-50%, -50%) rotate(45deg);
		margin-left: -2px; /* 시각적 무게중심: chevron 오른끝이 조금 더 안쪽 */
	}
	#fb5 .fb5-nav-arrow.next:hover {
		transform: scaleY(1.05) translateX(3px);
	}

	/* ── 이전 페이지(왼쪽) ── */
	#fb5 .fb5-nav-arrow.prev {
		left: -42px;
		display: none;
		border-radius: 22px 0 0 22px;
		transform-origin: right center;
		-ms-transform-origin: right center;
		-webkit-transform-origin: right center;
	}
	/* 중앙에서 -50%,-50% 이동 후 왼쪽 방향으로 -135° 회전 */
	#fb5 .fb5-nav-arrow.prev::after {
		transform: translate(-50%, -50%) rotate(-135deg);
		margin-left: 2px; /* 시각적 무게중심: chevron 왼끝이 조금 더 안쪽 */
	}
	#fb5 .fb5-nav-arrow.prev:hover {
		transform: scaleY(1.05) translateX(-3px);
	}



	/* = Cover
	---------------------------------------- */

	#fb5 #fb5-logo-cover {
		position: absolute; right: 10px; bottom: 10px; z-index: 5;
	}	

	#fb5 #fb5-cover ul {
		position:absolute;
		top:50%;
		-webkit-transform: translate(0,-50%);
        -ms-transform: translate(0,-50%);
		-moz-transform: translate(0,-50%);
		-o-transform: translate(0,-50%);
        transform: translate(0,-50%);
		clear: both;
		width: 100%;
		list-style: none;
		padding: 20px 0;
		border-top: 1px solid #e2e2e2;
		border-bottom: 1px solid #e2e2e2;
	}
	
	#fb5 #fb5-cover ul:after { clear: both; content: ''; display: block; }
	
	#fb5 #fb5-cover li {
		float: left;
		width: 28.3%;
		margin: 0 2.5%;
		list-style:none;
	}
		
	#fb5 #fb5-cover li,
	#fb5 #fb5-cover img {
		-moz-user-select: -moz-none;
		-khtml-user-select: none;
		-webkit-user-select: none;
		user-select: none;
		box-shadow:none;
	}
		
	#fb5 #fb5-cover li:last-child {
		margin-right: 0;
	}

	#fb5 #fb5-cover li img {
		float: left;
		width: 100%;
	}
			
	#fb5 #fb5-cover li a:hover img {
		/*opacity: .8;/*/
	}
			


	/* = End
	---------------------------------------- */

	#fb5 #end { text-align: center; }
	
	#fb5 #end p { padding-top: 60%; }



	/* = Meta data
	---------------------------------------- */

	#fb5 #fb5-book .fb5-meta {
		position: absolute; bottom: 1%;
	}

	#fb5 .fb5-meta .fb5-num {
			font-weight: bold;
			font-size: 12px;
			color: #666;
	}
		
	#fb5 .fb5-meta .fb5-description {
			font-size: 11px;
			color: #666;
	        font-family:Arial,sans-serif;
	}

	#fb5 .fb5-meta.fb5-left { 
			left:3%;
	}
	
	#fb5 .fb5-meta.fb5-left .fb5-num {
		    padding-right: 10px;
	}
		
	#fb5 .fb5-meta.fb5-right {
			right:3%;
			text-align: right;
	}
		
	#fb5 .fb5-meta.fb5-right .fb5-num {
				padding-left: 10px;
	}
			
			
			
			
	/*= Video in lightbox
	----------------------------*/

	#v5_lightbox {
		width:100%;
		height:100%;
		z-index:555789;
		position:fixed;	
		display:block;	
		top:0px;
	}

	#v5_lightbox .bcg{
		width:100%;
		height:100%;
		background-color:#000;
		opacity:.7;	
		position:absolute;	
		cursor:pointer;
	}
    
	
	/* --------------------------*/
	
	.fb5-cont-page-book{
		position:absolute;		
	}
	
	#fb5 .fb5-page-book {
		
		position:absolute;
	    -webkit-hyphens:none;
        -moz-hyphens:none;
        -ms-hyphens:none;
        hyphens:none;	
		overflow:hidden;
	}
	
	
	#fb5 .fb5-page-book .center {
		/*text-align:center;
		padding-top:65%;/*/
	}
	
	#fb5 .fb5-page-book img {
		border:none;
		padding:0;
	}
	
	#fb5 .fb5-page-book p {
		-webkit-text-size-adjust:none;
		margin-bottom:20px;
		line-height:1.5;
	}
	
	#fb5 .fb5-page-book a {
		text-decoration:underline;
		color:#64C8D3;
		font-weight:bold;
	}
	
	#fb5 .fb5-page-book p a:hover {
		text-decoration:none;
	}
	
	#fb5 .fb5-page-book h1,
	#fb5 .fb5-page-book h2,
	#fb5 .fb5-page-book h3,
	#fb5 .fb5-page-book h4,
	#fb5 .fb5-page-book h5,
	#fb5 .fb5-page-book h6 {
	   font-family:Arial,sans-serif;
	   text-transform:none;
	   margin:0px;
	   
	}
	
	#fb5 .fb5-page-book h1 {
	   	-webkit-text-size-adjust:none;
		
	}
	
	#fb5 .fb5-page-book h2 {
	   -webkit-text-size-adjust:none;
		
	}
	
	#fb5 .fb5-page-book h3 {
	   	-webkit-text-size-adjust:none;
		
	}
	
	#fb5 .fb5-page-book h4 {
	   	-webkit-text-size-adjust:none;
		
	}
	
	#fb5 .fb5-page-book h5 {
	   	-webkit-text-size-adjust:none;
		
	}
	
	#fb5 .fb5-page-book h6 {
	   	-webkit-text-size-adjust:none;
		
	}
	
	#fb5 .fb5-page-book ul,.fb5-page-book ol {
	    list-style: disc inside;
		margin-bottom:3% !important;
	}
	
	#fb5 .fb5-page-book ul li {
	   margin-bottom:2px;
	   list-style: disc inside;
	}
	
	#fb5 .fb5-page-book ul li a {
	   color:#77797F;
	   font-weight:normal;	
	   text-decoration:none;
	}
	
	#fb5 .fb5-page-book ul li a:hover {
	   text-decoration:underline;
	}
	
	#fb5 .fb5-page-book a:hover img {
       opacity:0.8;	   	  
	}
	
	
	/* =WordPress Core
-------------------------------------------------------------- */
#fb5 .fb5-page-book .alignnone,.#fb5-about .alignnone {
    margin: 5px 20px 20px 0;
}

#fb5 .fb5-page-book.aligncenter,.fb5-page-book div.aligncenter,#fb5-about.aligncenter,#fb5-about div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

#fb5 .fb5-page-book .alignright,#fb5-about .alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

#fb5 .fb5-page-book .alignleft,#fb5-about .alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

#fb5 .fb5-page-book .aligncenter,#fb5-about .aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

#fb5 .fb5-page-book a img.alignright,#fb5-about a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

#fb5 #fb5 .fb5-page-book a img.alignnone,#fb5-about a img.alignnone {
    margin: 5px 20px 20px 0;
}

#fb5 .fb5-page-book a img.alignleft,#fb5-about a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

#fb5 .fb5-page-book a img.aligncenter,#fb5-about a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

#fb5 .fb5-page-book .wp-caption,#fb5-about .wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

#fb5 .fb5-page-book .wp-caption.alignnone,#fb5-about .wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

#fb5 .fb5-page-book .wp-caption.alignleft,#fb5-about .wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

#fb5 .fb5-page-book .wp-caption.alignright,#fb5-about .wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.fb5-page-book .wp-caption img,#fb5-about .wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

#fb5 .fb5-page-book .wp-caption p.wp-caption-text,#fb5-about .wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}



/* = Media queries
-------------------------------------------------------------- */

@media screen and (max-width: 768px) { 
      /*
    .fb5-nav-arrow.next{
		transform-origin:0 center;
		-ms-transform-origin:0 center;
		-webkit-transform-origin:0 center;		 
    }
	
	 .fb5-nav-arrow.prev{
		transform-origin:right center;
		-ms-transform-origin:right center;
		-webkit-transform-origin:right center;		 
    }

	.fb5-nav-arrow{
		transform:scale(2);
		ms-transform:scale(2);
		-webkit-transform:scale(2);
	}
	/*/
}


  

  /* tools bar*/
	    #fb5 .fb5-bcg-book{
			background-image:url(../img/bg.jpg);
		}
		
		#fb5 .fb5-tooltip{
			 background:#F5B83D !important;
			 color:#FFFFFF;
		}
		#fb5 .fb5-tooltip b { border-top: 10px solid #F5B83D }
		#fb5 #fb5-footer .bcg { 
		  background-color: #000000;
		  opacity: 0.55;
		}
		#fb5 nav li.fb5-goto #fb5-label-page-number {
    		color: #D0D4D8;
		}
		#fb5 nav li.fb5-goto button {
   		    color: #FFFFFF;
			font-weight: bold;
			background: linear-gradient(to bottom, #F5B83D 0px, #E0A020 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
   		}
		#fb5 nav li.fb5-goto input[type="text"] {
   			 color: #FFFFFF;
   			 background: none repeat scroll 0 0 #2A3540 ;
			 border: 1px solid #4A5A68;
		}	
		
		/* book /*/
		
		#fb5 #fb5-book .turn-page {
	       background-color:#FFFFFF;
        }
		#fb5 .fb5-meta .fb5-num {
		    color: #666666;
		}
		#fb5 .fb5-meta .fb5-description {
    		color: #666666;
		}		
		
		/* list thumbs /*/
		#fb5 #fb5-all-pages .fb5-container-pages {
		    background: none repeat scroll 0 0 #000000;
						box-shadow: 0 0 40px rgba(245, 184, 61, 0.7);
		}
		
		/* form /*/
		#fb5 #fb5-contact form {
   			 background: none repeat scroll 0 0 #161616;
			 			 box-shadow: 0 0 60px rgba(245, 184, 61, 0.6);
		}
		#fb5 #fb5-contact form h3 {
		    color: #FFFFFF;
		}
		#fb5 #fb5-contact button {
			    background: none repeat scroll 0 0 #F5B83D;
				color: #FFFFFF;
		}
		#fb5 #fb5-contact form input, #fb5-contact form textarea {
           color: #737373;
		}
		#fb5 #fb5-contact .fb5-close {
		  color: #FFFFFF;
          background: none repeat scroll 0 0 #F5B83D;
		}
		
		#fb5 #fb5-contact .fb5-thanks p{
		  color:#444444			
		}
		#fb5 #fb5-contact .fb5-thanks h1{
		  color:#FFFFFF			
		}				
		
		/* preloader /*/
		#fb5 .fb5-preloader .wBall .wInnerBall{
            background:#F5B83D;
		}	
		
		/* 화살표 스타일은 위 섹션의 CSS 전용 화살표를 그대로 사용 (이미지 불필요) */
		
		/* formatt page for flipbook  /*/
		#fb5 .fb5-page-book p {
		   color:#77797F;
		   font-family:Arial;
		   font-size:14px;
	    }
		#fb5 .fb5-page-book a {
		   color:#E0A020;
		 }
		#fb5 .fb5-page-book h1 {
	   	   color:#77797F;
		   font-family:Arial;
		   font-size:28px;
	    }
		#fb5 .fb5-page-book h2 {
	   	   color:#77797F;
		   font-family:Arial;
		   font-size:26px;
	    }
		#fb5 .fb5-page-book h3 {
	   	   color:#77797F;
		   font-family:Arial;
		   font-size:24px;
	    }
		#fb5 .fb5-page-book h4 {
	   	   color:#77797F;
		   font-family:Arial;
		   font-size:22px;
	    }
		#fb5 .fb5-page-book h5 {
	   	   color:#77797F;
		   font-family:Arial;
		   font-size:20px;
	    }
		#fb5 .fb5-page-book h6 {
	   	   color:#77797F;
		   font-family:Arial;
		   font-size:18px;
	    }
		#fb5 .fb5-page-book li {
           color:#77797F;	
		   font-family:Arial;
		   font-size:14px;		
		}
		#fb5 .fb5-page-book ul li a {
	        color:#77797F;
		}

        
		/*  about style  /*/
		#fb5 #fb5-about p,#fb5 #fb5-about li {
		   color: #CFEAEE;
		   font-family:Arial;
		   font-size:11px;
	    }  
		#fb5 #fb5-about a {
		  color:#FFFFFF	
		}
		#fb5 #fb5-about h1 {
		   color: #F5B83D;
		   font-family:Arial;
		   font-size:26px;
	    }  
		#fb5 #fb5-about h2 {
		   color: #F5B83D;
		   font-family:Arial;
		   font-size:24px;
	    }  
		#fb5-about h3 {
		   color: #F5B83D;
		   font-family:Arial;
		   font-size:22px;
	    }  
		#fb5 #fb5-about h4 {
		   color: #F5B83D;
		   font-family:Arial;
	    }  
		#fb5 #fb5-about h5 {
		   color: #F5B83D;
		   font-family:Arial;
		   font-size:18px;
	    }  
		#fb5 #fb5-about h6 {
		   color: #F5B83D;
		   font-family:Arial;
		   font-size:16px;
	    }  
		/* back  button  /*/
		#fb5 #fb5-button-back {
    		background-color: #F5B83D;
   			color: #FFFFFF;
		}
		#fb5 #fb5-button-back:hover{
			color:#F5B83D;
			background-color:#FFFFFF 		}
		
		/*  Other style   /*/
		#fb5 .fb5-overlay {
			background:rgba(0,0,0,0.6);
        }

/* ==============================================================
   SOVAC Market E-Book Custom Enhancement Styles
============================================================== */

/* Interactive Clickable Overlay Links (5p 목차 및 본문 링크 박스) */
.fb-link-area {
	display: block;
	z-index: 100;
	cursor: pointer;
	border-radius: 4px;
	background-color: transparent;
	transition: background-color 0.15s ease, box-shadow 0.15s ease;
	border: none;
	outline: none;
}

.fb-link-area:hover {
	background-color: rgba(45, 237, 232, 0.30) !important; /* 첨부 이미지 1번과 100% 동일한 민트빛 반투명 음영 */
	box-shadow: 0 0 10px rgba(45, 237, 232, 0.4);
}

/* Footer toolbar FontAwesome buttons */
#fb5 .fb5-menu li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: #ffffff;
	font-size: 16px;
	text-align: center;
	border-radius: 6px;
	transition: all 0.2s ease;
	background-image: none !important;
	text-decoration: none;
}

#fb5 .fb5-menu li a:hover {
	color: #ffffff;
	background-color: rgba(245, 184, 61, 0.35) !important;
	transform: translateY(-2px);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

#fb5 .fb5-menu li a i {
	line-height: 1;
}

#fb5 .fb5-menu#fb5-center {
	display: flex;
	justify-content: center;
}

#fb5 #fb5-footer {
	background: rgba(18, 18, 24, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

#fb5 .fb5-menu li.fb5-goto input[type="text"] {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #ffffff;
	border-radius: 4px;
	padding: 2px 6px;
	font-size: 12px;
	text-align: center;
	height: 22px;
}

#fb5 .fb5-menu li.fb5-goto button {
	background: linear-gradient(135deg, #F5B83D 0%, #E0A020 100%);
	color: #ffffff;
	border: none;
	border-radius: 4px;
	padding: 3px 10px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.2s;
	height: 26px;
}

#fb5 .fb5-menu li.fb5-goto button:hover {
	opacity: 0.9;
}



/* ==============================================================
   Side Quick Navigation Tabs (사이드 퀵 내비게이션 탭 메뉴)
============================================================== */
#quick-nav-container {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 8px 0 8px 8px;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	user-select: none;
}

/* Toggle button for collapsible quick nav */
#quick-nav-toggle {
	position: absolute;
	left: -28px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 54px;
	background: #2A3540;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-right: none;
	border-radius: 8px 0 0 8px;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
	transition: all 0.2s ease;
	font-size: 13px;
}

#quick-nav-toggle:hover {
	background: #F5A623;
	color: #ffffff;
}

#quick-nav-container.collapsed {
	transform: translate(calc(100% - 10px), -50%);
}

#quick-nav-container.collapsed #quick-nav-toggle i {
	transform: rotate(180deg);
}

/* Image-based Tab button styling */
.quick-tab-item {
	position: relative;
	display: block;
	width: 119px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.22s cubic-bezier(0.25, 0.8, 0.25, 1);
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
}

.quick-tab-item img {
	display: block;
	width: 119px;
	height: auto;
	border-radius: 4px 0 0 4px;
	filter: drop-shadow(-2px 2px 5px rgba(0, 0, 0, 0.22));
	transition: all 0.22s ease;
	pointer-events: none;
}

.quick-tab-item:hover {
	transform: translateX(-10px);
}

.quick-tab-item:hover img {
	filter: drop-shadow(-3px 3px 10px rgba(0, 0, 0, 0.38)) brightness(1.04);
}

.quick-tab-item.active {
	transform: translateX(-12px);
}

.quick-tab-item.active img {
	filter: drop-shadow(-3px 3px 12px rgba(214, 122, 0, 0.6)) brightness(1.06);
}

/* Mobile / Small Screen Optimization (모바일 화면에서는 오른쪽 책갈피 바 숨김 처리) */
@media screen and (max-width: 900px) {
	#quick-nav-container {
		display: none !important;
	}
}

/* ==============================================================
   Left Table of Contents (TOC) Sidebar Drawer (왼쪽 사이드 목차 패널)
============================================================== */
#left-toc-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 1000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

#left-toc-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

#left-toc-sidebar {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 330px;
	max-width: 85vw;
	background: #FAF7F2;
	background: radial-gradient(circle at top left, #FFFFFF 0%, #FAF6F0 100%);
	z-index: 1001;
	transform: translateX(-100%);
	transition: transform 0.32s cubic-bezier(0.25, 0.8, 0.25, 1);
	box-shadow: 6px 0 30px rgba(0, 0, 0, 0.35);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	user-select: none;
}

#left-toc-sidebar.active {
	transform: translateX(0);
}

/* TOC Header */
.left-toc-header {
	padding: 24px 22px 14px 22px;
	position: relative;
	border-bottom: 1.5px solid #827b72;
	margin: 0 10px;
}

.left-toc-header h2 {
	margin: 0;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 23px;
	font-weight: 700;
	color: #242220;
	letter-spacing: -0.8px;
}

.left-toc-close-btn {
	position: absolute;
	right: 4px;
	top: 22px;
	width: 32px;
	height: 32px;
	background: transparent;
	border: none;
	color: #666666;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 50%;
	transition: all 0.2s ease;
}

.left-toc-close-btn:hover {
	background: rgba(0, 0, 0, 0.08);
	color: #111111;
	transform: rotate(90deg);
}

/* TOC Content List */
.left-toc-body {
	flex: 1;
	overflow-y: auto;
	padding: 16px 14px 24px 14px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

/* Custom scrollbar for TOC body */
.left-toc-body::-webkit-scrollbar {
	width: 5px;
}
.left-toc-body::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 4px;
}

/* TOC Item Row */
.toc-item-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px 12px;
	border-radius: 6px;
	text-decoration: none;
	color: #242220;
	transition: all 0.18s ease;
	cursor: pointer;
}

.toc-item-row:hover {
	background-color: rgba(45, 237, 232, 0.25) !important;
	transform: translateX(4px);
}

.toc-item-row:hover .toc-title {
	color: #00796B !important;
	font-weight: 700;
}

.toc-item-row:hover .toc-page-num {
	color: #00796B !important;
	font-weight: 700;
}

/* Main Category Item (1., 2., 3., 4., 5.) */
.toc-item-row.is-main {
	font-size: 14.5px;
	font-weight: 700;
	color: #1a1a1a;
	margin-top: 6px;
}

/* Sub Category Item (- 실속 구성, - 3만원 미만 등) */
.toc-item-row.is-sub {
	font-size: 13.5px;
	font-weight: 500;
	color: #3b3a38;
	padding-left: 24px;
}

/* Title text */
.toc-item-row .toc-title {
	font-family: 'Noto Sans KR', sans-serif;
	letter-spacing: -0.4px;
	transition: color 0.18s ease;
}

/* Page Number */
.toc-item-row .toc-page-num {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #3b3a38;
	letter-spacing: 0.5px;
	transition: color 0.18s ease;
}

/* Hide old legacy black footer toolbar */
#fb5 #fb5-footer {
	display: none !important;
}

/* ==============================================================
   Modern White Floating Bottom Toolbar (하단 고정 모던 화이트 툴바)
============================================================== */
#modern-bottom-toolbar {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 950;
	display: flex;
	align-items: center;
	gap: 10px;
	background: #FFFFFF;
	padding: 6px 18px;
	border-radius: 16px 16px 0 0;
	box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.16);
	transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	user-select: none;
}

#modern-bottom-toolbar.collapsed {
	transform: translate(-50%, 100%);
}

/* Fold / Unfold Tab on Top of Bottom Toolbar */
#toolbar-fold-btn {
	position: absolute;
	top: -18px;
	left: 50%;
	transform: translateX(-50%);
	width: 44px;
	height: 18px;
	background: #FFFFFF;
	border: none;
	border-radius: 10px 10px 0 0;
	color: #555555;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.12);
	font-size: 11px;
	transition: all 0.2s ease;
}

#toolbar-fold-btn:hover {
	color: #111111;
	background: #F8F9FA;
}

#modern-bottom-toolbar.collapsed #toolbar-fold-btn i {
	transform: rotate(180deg);
}

/* Action Icons */
.toolbar-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: transparent;
	border: none;
	color: #2D3436;
	font-size: 16px;
	border-radius: 6px;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.18s ease;
}

.toolbar-btn:hover {
	background: rgba(0, 0, 0, 0.07);
	color: #E28800;
	transform: translateY(-1px);
}

.toolbar-btn:active {
	transform: translateY(1px);
}

/* Page Navigation Group (|< < 2/46 > >|) */
.toolbar-page-group {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0 4px;
}

.page-nav-btn {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #BDC3C7;
	color: #FFFFFF;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	cursor: pointer;
	transition: all 0.18s ease;
	line-height: 1;
}

.page-nav-btn:hover {
	background: #95A5A6;
	transform: scale(1.08);
}

.page-nav-btn:active {
	transform: scale(0.95);
}

/* Current Page Badge (2 / 46) */
#current-page-badge {
	background: #BDC3C7;
	color: #FFFFFF;
	font-family: 'Noto Sans KR', -apple-system, sans-serif;
	font-weight: 700;
	font-size: 13px;
	border-radius: 16px;
	padding: 4px 14px;
	min-width: 62px;
	text-align: center;
	border: none;
	cursor: pointer;
	transition: all 0.18s ease;
	letter-spacing: -0.3px;
}

#current-page-badge:hover {
	background: #95A5A6;
}

/* ==============================================================
   Mobile Controller System (모바일 전용 플로팅 메뉴 & 2줄 박스 컨트롤러)
============================================================== */
/* PC 데스크톱 기본 상태: 모바일 컨트롤러 숨김 */
#mobile-bottom-trigger-wrap,
#mobile-controller-overlay,
#mobile-controller-sheet {
	display: none;
}

/* 모바일 화면 (<= 768px): PC 툴바 숨기고 모바일 2줄 박스 컨트롤러 시스템 활성화 */
@media screen and (max-width: 768px) {
	#modern-bottom-toolbar {
		display: none !important;
	}

	/* 모바일 하단 중앙 플로팅 메뉴 버튼 1개 */
	#mobile-bottom-trigger-wrap {
		display: flex;
		align-items: center;
		gap: 8px;
		position: fixed;
		bottom: 14px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 1050;
	}

	.mobile-side-nav-btn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		background: rgba(255, 255, 255, 0.95);
		color: #2D3436;
		border-radius: 50%;
		border: 1px solid rgba(0, 0, 0, 0.08);
		box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16), 0 1px 4px rgba(0, 0, 0, 0.06);
		font-size: 14px;
		cursor: pointer;
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
		user-select: none;
		-webkit-tap-highlight-color: transparent;
	}

	.mobile-side-nav-btn:active {
		transform: scale(0.90);
		background: #E9ECEF;
		color: #E28800;
	}

	.mobile-side-nav-btn i {
		line-height: 1;
	}

	#mobile-bottom-menu-trigger {
		display: flex;
		align-items: center;
		gap: 10px;
		background: rgba(255, 255, 255, 0.95);
		color: #2D3436;
		height: 38px;
		padding: 0 16px;
		border-radius: 30px;
		border: 1px solid rgba(0, 0, 0, 0.08);
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18), 0 1px 4px rgba(0, 0, 0, 0.08);
		font-family: 'Noto Sans KR', sans-serif;
		font-size: 13px;
		font-weight: 700;
		cursor: pointer;
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
		user-select: none;
	}

	#mobile-bottom-menu-trigger:active {
		transform: scale(0.95);
		background: #F1F3F5;
	}

	#mobile-bottom-menu-trigger i.fa-bars {
		color: #E28800;
		font-size: 14px;
	}

	#mobile-bottom-menu-trigger i.fa-sliders {
		color: #888888;
		font-size: 12px;
	}

	#mobile-trigger-page-text {
		color: #2D3436;
		letter-spacing: -0.2px;
	}

	/* 모바일 컨트롤러 딤 오버레이 */
	#mobile-controller-overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background: rgba(0, 0, 0, 0.45);
		backdrop-filter: blur(3px);
		-webkit-backdrop-filter: blur(3px);
		z-index: 1200;
	}

	/* 모바일 2줄 박스 컨트롤러 시트 */
	#mobile-controller-sheet {
		display: block;
		position: fixed;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%) translateY(120%);
		width: 95%;
		max-width: 440px;
		background: #FFFFFF;
		border-radius: 20px 20px 0 0;
		padding: 14px 14px 18px;
		box-shadow: 0 -10px 36px rgba(0, 0, 0, 0.28);
		z-index: 1250;
		box-sizing: border-box;
		transition: transform 0.32s cubic-bezier(0.25, 0.8, 0.25, 1);
		user-select: none;
	}

	#mobile-controller-sheet.active {
		transform: translateX(-50%) translateY(0);
	}

	/* 시트 헤더 */
	.mobile-sheet-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding-bottom: 10px;
		margin-bottom: 12px;
		border-bottom: 1px solid #F0F2F5;
	}

	.mobile-sheet-title {
		font-family: 'Noto Sans KR', sans-serif;
		font-size: 13.5px;
		font-weight: 700;
		color: #333333;
		display: flex;
		align-items: center;
		gap: 6px;
	}

	.mobile-sheet-title i {
		color: #E28800;
	}

	.mobile-sheet-close {
		background: #F1F3F5;
		border: none;
		border-radius: 50%;
		width: 26px;
		height: 26px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #666666;
		font-size: 13px;
		cursor: pointer;
		transition: all 0.18s ease;
	}

	.mobile-sheet-close:active {
		background: #E5E7EB;
		color: #111111;
	}

	/* 1번째 줄: 페이지 이동 내비게이션 행 */
	.mobile-sheet-row.mobile-nav-row {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 6px;
		background: #F8F9FA;
		border-radius: 12px;
		padding: 6px 10px;
		margin-bottom: 12px;
		border: 1px solid #ECEFF1;
	}

	.mobile-nav-btn {
		width: 32px;
		height: 32px;
		border-radius: 50%;
		background: #BDC3C7;
		color: #FFFFFF;
		border: none;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 12px;
		cursor: pointer;
		transition: all 0.18s ease;
	}

	.mobile-nav-btn:active {
		transform: scale(0.92);
		background: #95A5A6;
	}

	.mobile-page-badge {
		background: #2D3436;
		color: #FFFFFF;
		font-family: 'Noto Sans KR', sans-serif;
		font-weight: 700;
		font-size: 13px;
		border-radius: 20px;
		padding: 5px 16px;
		border: none;
		cursor: pointer;
		flex: 1;
		text-align: center;
		max-width: 130px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	}

	.mobile-page-badge:active {
		background: #E28800;
	}

	/* 2번째 줄: 8개 기능 아이콘 그리드 박스 행 */
	.mobile-sheet-row.mobile-grid-row {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 8px;
	}

	.mobile-grid-btn {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		background: #F8F9FA;
		border: 1px solid #ECEFF1;
		border-radius: 10px;
		padding: 8px 4px 6px;
		cursor: pointer;
		text-decoration: none;
		color: #333333;
		transition: all 0.18s ease;
	}

	.mobile-grid-btn:active {
		background: #FFF3E0;
		border-color: #FFE082;
		transform: translateY(1px);
	}

	.mobile-grid-btn .grid-btn-icon {
		width: 28px;
		height: 28px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 15px;
		color: #4A5568;
		margin-bottom: 3px;
	}

	.mobile-grid-btn:hover .grid-btn-icon,
	.mobile-grid-btn:active .grid-btn-icon {
		color: #E28800;
	}

	.mobile-grid-btn .grid-btn-label {
		font-family: 'Noto Sans KR', sans-serif;
		font-size: 11px;
		font-weight: 500;
		color: #555555;
		letter-spacing: -0.3px;
	}

	/* 모바일에서 좌우 화살표 슬림화 */
	.fb5-nav-arrow.prev {
		left: 4px !important;
		opacity: 0.55;
		transform: scale(0.65) !important;
	}
	.fb5-nav-arrow.next {
		right: 4px !important;
		opacity: 0.55;
		transform: scale(0.65) !important;
	}
}

/* ==============================================================
   Rich Tooltip System for Toolbar
============================================================== */
[data-tooltip] {
	position: relative;
}

[data-tooltip]::before {
	content: attr(data-tooltip);
	position: absolute;
	bottom: calc(100% + 9px);
	left: 50%;
	transform: translateX(-50%) translateY(4px);
	background: rgba(24, 24, 28, 0.94);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: #FFFFFF;
	font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 11px;
	font-weight: 500;
	white-space: nowrap;
	padding: 5px 9px;
	border-radius: 6px;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.16s ease, transform 0.16s ease;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
	letter-spacing: -0.2px;
	z-index: 1100;
	line-height: 1.2;
}

[data-tooltip]::after {
	content: '';
	position: absolute;
	bottom: calc(100% + 4px);
	left: 50%;
	transform: translateX(-50%) translateY(4px);
	border-width: 5px 4.5px 0 4.5px;
	border-style: solid;
	border-color: rgba(24, 24, 28, 0.94) transparent transparent transparent;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.16s ease, transform 0.16s ease;
	z-index: 1100;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

/* ==============================================================
   Thumbnail Large Navigation Arrows (썸네일 대형 좌우 화살표)
============================================================== */
.thumbs-nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 58px;
	height: 84px;
	background: rgba(15, 15, 20, 0.78);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1.5px solid rgba(255, 255, 255, 0.35);
	border-radius: 12px;
	color: #FFFFFF;
	font-size: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1200;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
	transition: all 0.22s cubic-bezier(0.25, 0.8, 0.25, 1);
	outline: none;
}

.thumbs-nav-arrow:hover {
	background: rgba(245, 166, 35, 0.95);
	border-color: #FFAE19;
	color: #FFFFFF;
	transform: translateY(-50%) scale(1.08);
	box-shadow: 0 8px 30px rgba(245, 166, 35, 0.6);
}

.thumbs-nav-arrow:active {
	transform: translateY(-50%) scale(0.96);
}

.thumbs-arrow-prev {
	left: 20px;
}

.thumbs-arrow-next {
	right: 20px;
}

.thumbs-close-btn {
	position: absolute;
	top: -46px;
	right: 20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(20, 20, 25, 0.92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 2px solid rgba(255, 255, 255, 0.4);
	color: #FFFFFF;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 99999 !important;
	pointer-events: auto !important;
	transition: all 0.2s ease;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.thumbs-close-btn:hover {
	background: #E74C3C;
	border-color: #E74C3C;
	transform: rotate(90deg) scale(1.1);
}

.thumbs-close-btn:active {
	background: #C0392B;
	transform: scale(0.92);
}

@media screen and (max-width: 768px) {
	.thumbs-close-btn {
		top: -48px !important;
		right: 12px !important;
		width: 42px !important;
		height: 42px !important;
		font-size: 19px !important;
		background: #E74C3C !important;
		border-color: #FFFFFF !important;
	}
	.thumbs-nav-arrow {
		width: 44px;
		height: 64px;
		font-size: 20px;
	}
	.thumbs-arrow-prev {
		left: 8px;
	}
	.thumbs-arrow-next {
		right: 8px;
	}
}

/* Ensure all thumbnail items and last page (46p) are fully rendered & visible */
#fb5 #fb5-slider li {
	display: inline-block;
	height: 100%;
	padding: 0 8px;
	box-sizing: border-box;
}

#fb5 #fb5-slider li img {
	height: 100%;
	width: auto;
	max-height: 220px;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#fb5 #fb5-slider li:hover img {
	transform: scale(1.05);
	box-shadow: 0 6px 18px rgba(245, 166, 35, 0.6);
}

#fb5 #fb5-slider li:first-child {
	padding-left: 90px !important;
}

#fb5 #fb5-slider li:last-child {
	padding-right: 150px !important;
}

/* ==============================================================
   Print Media Query Optimization
============================================================== */
@media print {
	#modern-bottom-toolbar,
	#quick-nav-container,
	#left-toc-sidebar,
	#left-toc-overlay,
	#left-search-sidebar,
	#top-search-bar,
	#fb5-all-pages,
	.fb5-nav-arrow,
	.fb5-preloader,
	#fb5-footer {
		display: none !important;
		visibility: hidden !important;
	}
	body {
		background: #FFFFFF !important;
	}
}

/* ==============================================================
   Search System (상단 검색 바 & 왼쪽 검색 리스트 패널)
============================================================== */
/* Top Search Floating Bar */
#top-search-bar {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%) translateY(-100%);
	z-index: 1060;
	background: #FFFFFF;
	box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
	border-radius: 0 0 16px 16px;
	padding: 8px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	width: 90%;
	max-width: 480px;
	transition: transform 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#top-search-bar.active {
	transform: translateX(-50%) translateY(0);
}

#top-search-bar .search-close-btn {
	background: transparent;
	border: none;
	color: #666;
	font-size: 18px;
	cursor: pointer;
	padding: 4px 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.18s ease;
}

#top-search-bar .search-close-btn:hover {
	color: #111;
}

#top-search-bar .search-input {
	flex: 1;
	border: none;
	outline: none;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 15px;
	color: #222;
	padding: 6px 4px;
	background: transparent;
}

#top-search-bar .search-submit-btn {
	background: transparent;
	border: none;
	color: #F5A623;
	font-size: 18px;
	cursor: pointer;
	padding: 4px 6px;
	transition: transform 0.18s ease;
}

#top-search-bar .search-submit-btn:hover {
	transform: scale(1.15);
}

/* Left Search Results Sidebar */
#left-search-sidebar {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 350px;
	max-width: 88vw;
	background: #FFFFFF;
	box-shadow: 6px 0 30px rgba(0, 0, 0, 0.3);
	z-index: 1050;
	transform: translateX(-100%);
	transition: transform 0.32s cubic-bezier(0.25, 0.8, 0.25, 1);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

#left-search-sidebar.active {
	transform: translateX(0);
}

.search-header {
	padding: 20px 22px 14px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #EEEEEE;
}

.search-header h2 {
	margin: 0;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #111111;
}

.search-header .search-sidebar-close {
	background: transparent;
	border: none;
	color: #666;
	font-size: 18px;
	cursor: pointer;
	padding: 4px;
}

.search-header .search-sidebar-close:hover {
	color: #111;
}

.search-body {
	flex: 1;
	overflow-y: auto;
	padding: 12px 14px;
}

.search-body::-webkit-scrollbar {
	width: 6px;
}

.search-body::-webkit-scrollbar-thumb {
	background: #CCCCCC;
	border-radius: 3px;
}

/* Search Result Item (2번 첨부 이미지와 100% 동일) */
.search-result-item {
	display: flex;
	gap: 12px;
	padding: 12px 10px;
	border-bottom: 1px solid #F0F0F0;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	border-radius: 8px;
	transition: background-color 0.18s ease;
	align-items: flex-start;
}

.search-result-item:hover {
	background-color: #F8F9FA;
}

.search-result-thumb {
	width: 62px;
	min-width: 62px;
	height: 86px;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	background: #EEEEEE;
}

.search-result-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.search-result-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.search-result-text {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 13px;
	color: #333333;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: keep-all;
}

.search-highlight {
	background: #FFF275;
	color: #111111;
	font-weight: 700;
	padding: 1px 3px;
	border-radius: 2px;
}

.search-page-badge {
	align-self: flex-start;
	background: #606770;
	color: #FFFFFF;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 11px;
	font-weight: 600;
	padding: 2px 8px;
	border-radius: 4px;
	margin-top: 2px;
}

.search-empty-msg {
	text-align: center;
	padding: 50px 20px;
	color: #888888;
	font-size: 14px;
	font-family: 'Noto Sans KR', sans-serif;
}

/* ==============================================================
   Bookmark System (책갈피 리스트 패널 및 버튼)
============================================================== */
#left-bookmark-sidebar {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 350px;
	max-width: 88vw;
	background: #FFFFFF;
	box-shadow: 6px 0 30px rgba(0, 0, 0, 0.3);
	z-index: 1050;
	transform: translateX(-100%);
	transition: transform 0.32s cubic-bezier(0.25, 0.8, 0.25, 1);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

#left-bookmark-sidebar.active {
	transform: translateX(0);
}

.bookmark-header {
	padding: 20px 22px 14px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #EEEEEE;
}

.bookmark-header h2 {
	margin: 0;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #111111;
	display: flex;
	align-items: center;
	gap: 8px;
}

.bookmark-header h2 i {
	color: #F5A623;
}

.bookmark-header .bookmark-sidebar-close {
	background: transparent;
	border: none;
	color: #666;
	font-size: 18px;
	cursor: pointer;
	padding: 4px;
}

.bookmark-header .bookmark-sidebar-close:hover {
	color: #111;
}

.bookmark-action-bar {
	padding: 12px 16px;
	background: #F9FAFB;
	border-bottom: 1px solid #EEEEEE;
}

.btn-toggle-cur-bookmark {
	width: 100%;
	padding: 10px 14px;
	background: #F5A623;
	color: #FFFFFF;
	border: none;
	border-radius: 8px;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.2s ease;
	box-shadow: 0 2px 8px rgba(245, 166, 35, 0.35);
}

.btn-toggle-cur-bookmark:hover {
	background: #E0961B;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(245, 166, 35, 0.45);
}

.btn-toggle-cur-bookmark.is-bookmarked {
	background: #4A4A4A;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-toggle-cur-bookmark.is-bookmarked:hover {
	background: #333333;
}

.bookmark-body {
	flex: 1;
	overflow-y: auto;
	padding: 12px 14px;
}

.bookmark-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 8px;
	border-bottom: 1px solid #F0F0F0;
	border-radius: 8px;
	transition: background-color 0.18s ease;
	position: relative;
}

.bookmark-item:hover {
	background-color: #F8F9FA;
}

.bookmark-thumb {
	width: 58px;
	min-width: 58px;
	height: 80px;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	cursor: pointer;
}

.bookmark-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bookmark-info {
	flex: 1;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.bookmark-page-tag {
	align-self: flex-start;
	background: #F5A623;
	color: #FFFFFF;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
}

.bookmark-text {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 13px;
	color: #333333;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: keep-all;
}

.bookmark-delete-btn {
	background: transparent;
	border: none;
	color: #AAA;
	font-size: 16px;
	cursor: pointer;
	padding: 6px;
	transition: color 0.18s ease, transform 0.18s ease;
}

.bookmark-delete-btn:hover {
	color: #E74C3C;
	transform: scale(1.2);
}

.bookmark-empty-msg {
	text-align: center;
	padding: 60px 20px;
	color: #888888;
	font-size: 14px;
	font-family: 'Noto Sans KR', sans-serif;
	line-height: 1.6;
}

/* ==============================================================
   Order & Shipping Notice Help Button & Lightbox Modal
============================================================== */

/* Right Bottom Floating Help Button (오른쪽 맨 하단 고객센터 버튼) */
#floating-help-trigger {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, #F5A623 0%, #E0870A 100%);
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 4px 18px rgba(245, 166, 35, 0.5), 0 2px 6px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	cursor: pointer;
	z-index: 1005;
	transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#floating-help-trigger:hover {
	transform: scale(1.1) translateY(-3px);
	box-shadow: 0 8px 24px rgba(245, 166, 35, 0.65), 0 4px 10px rgba(0, 0, 0, 0.4);
}

#floating-help-trigger .floating-help-tooltip {
	position: absolute;
	right: 62px;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(20, 24, 28, 0.94);
	color: #ffffff;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 12.5px;
	font-weight: 500;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-family: 'Noto Sans KR', sans-serif;
}

#floating-help-trigger .floating-help-tooltip::after {
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent transparent rgba(20, 24, 28, 0.94);
}

#floating-help-trigger:hover .floating-help-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) translateX(-4px);
}

@media screen and (max-width: 768px) {
	#floating-help-trigger {
		right: 14px !important;
		bottom: 72px !important;
		width: 44px !important;
		height: 44px !important;
		font-size: 18px !important;
		box-shadow: 0 4px 14px rgba(245, 166, 35, 0.6) !important;
	}
}

/* Modal Overlay */
#order-notice-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 15, 20, 0.65);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 2000;
}

/* Lightbox Modal Box */
#order-notice-modal {
	display: block;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -46%) scale(0.94);
	width: 90%;
	max-width: 620px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.06);
	z-index: 2001;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
	overflow: hidden;
	font-family: 'Noto Sans KR', sans-serif;
}

#order-notice-modal.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
}

/* Top Accent Korean Bar */
.modal-top-accent-bar {
	height: 5px;
	background: linear-gradient(90deg, #D4AF37 0%, #D67A00 25%, #E74C3C 50%, #27AE60 75%, #2980B9 100%);
}

/* Modal Header */
.modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px 14px 24px;
	border-bottom: 1px solid #ECECEC;
	background: #FAFAFA;
}

.modal-header h3 {
	margin: 0;
	font-size: 19px;
	font-weight: 700;
	color: #222222;
	display: flex;
	align-items: center;
	gap: 9px;
}

.modal-header h3 i {
	color: #D67A00;
	font-size: 20px;
}

.modal-close-btn {
	background: transparent;
	border: none;
	font-size: 20px;
	color: #777777;
	cursor: pointer;
	padding: 4px 8px;
	border-radius: 6px;
	transition: all 0.18s ease;
}

.modal-close-btn:hover {
	color: #E74C3C;
	background: rgba(231, 76, 60, 0.1);
}

/* Modal Body */
.modal-body {
	padding: 22px 24px;
	max-height: 75vh;
	overflow-y: auto;
}

.modal-info-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 16px;
}

@media (max-width: 600px) {
	.modal-info-grid {
		grid-template-columns: 1fr;
	}
}

/* Info Card */
.modal-info-card {
	background: #FDFDFD;
	border: 1px solid #EAEAEA;
	border-radius: 12px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
	transition: all 0.2s ease;
}

.modal-info-card:hover {
	border-color: #D4AF37;
	box-shadow: 0 4px 14px rgba(212, 175, 55, 0.15);
}

.info-card-header {
	font-size: 15px;
	font-weight: 700;
	color: #333333;
	padding-bottom: 10px;
	border-bottom: 2px solid #F0F0F0;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.card-order .info-card-header {
	color: #2E7D32;
	border-bottom-color: #E8F5E9;
}

.card-schedule .info-card-header {
	color: #D67A00;
	border-bottom-color: #FFF3E0;
}

.info-team-badge {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	color: #2E7D32;
	background: #E8F5E9;
	padding: 3px 8px;
	border-radius: 4px;
	margin-bottom: 8px;
}

.info-managers {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 12px;
}

.mgr-tag {
	font-size: 13.5px;
	font-weight: 500;
	color: #444444;
}

.info-contact-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: auto;
}

.contact-link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.18s ease;
}

.phone-link {
	background: #F4FBF7;
	color: #2E7D32;
	border: 1px solid #C8E6C9;
}

.phone-link:hover {
	background: #2E7D32;
	color: #ffffff;
}

.email-link {
	background: #F5F7FA;
	color: #1976D2;
	border: 1px solid #BBDEFB;
}

.email-link:hover {
	background: #1976D2;
	color: #ffffff;
}

/* Shipping Schedule */
.shipping-schedule-item {
	margin-bottom: 12px;
	padding-bottom: 10px;
	border-bottom: 1px dashed #E0E0E0;
}

.shipping-schedule-item:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 8px;
}

.schedule-badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 4px;
	margin-bottom: 4px;
}

.schedule-badge.batch-1 {
	background: #E3F2FD;
	color: #1565C0;
}

.schedule-badge.batch-2 {
	background: #FFF3E0;
	color: #E65100;
}

.schedule-desc {
	font-size: 13.5px;
	color: #333333;
	line-height: 1.4;
}

.schedule-sub {
	font-size: 12px;
	color: #777777;
	margin-top: 2px;
}

.schedule-notice-box {
	font-size: 12px;
	color: #D32F2F;
	background: #FFEBEE;
	padding: 6px 10px;
	border-radius: 6px;
	margin-top: 10px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 6px;
}

/* Modal Footer */
.modal-footer {
	padding: 12px 24px 18px 24px;
	display: flex;
	justify-content: flex-end;
	background: #FAFAFA;
	border-top: 1px solid #ECECEC;
}

.modal-confirm-btn {
	background: #2A3540;
	color: #ffffff;
	border: none;
	padding: 8px 22px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.18s ease;
}

.modal-confirm-btn:hover {
	background: #F5A623;
	color: #ffffff;
}

/* ==============================================================
   Oriental Ink-Wash Painting Animated Background (수묵화 해 뜨고 지는 배경 효과)
============================================================== */
#oriental-ink-bg-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	background: #F8F6F0;
}

/* 1. 한지 베이스 텍스처 & 원경 하늘 (Sky Backdrop with Warm Atmospheric Shift) */
.ink-sky-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 25% 45%, rgba(255, 248, 235, 0.95) 0%, rgba(244, 240, 232, 0.85) 45%, rgba(235, 230, 220, 0.95) 100%);
	animation: skyAmbientShift 36s ease-in-out infinite;
}

@keyframes skyAmbientShift {
	0% {
		/* 여명/새벽 */
		background: radial-gradient(circle at 22% 55%, rgba(255, 238, 220, 0.6) 0%, rgba(240, 236, 228, 0.8) 45%, rgba(230, 225, 218, 0.95) 100%);
	}
	25% {
		/* 아침 일출 (따스한 황금빛) */
		background: radial-gradient(circle at 25% 35%, rgba(255, 235, 200, 0.85) 0%, rgba(248, 242, 232, 0.75) 50%, rgba(236, 231, 222, 0.9) 100%);
	}
	50% {
		/* 낮/정오 (맑고 은은한 한지 백색) */
		background: radial-gradient(circle at 28% 25%, rgba(255, 246, 230, 0.9) 0%, rgba(246, 242, 235, 0.8) 50%, rgba(235, 230, 222, 0.9) 100%);
	}
	75% {
		/* 노을/일몰 (온화한 수묵 노을빛) */
		background: radial-gradient(circle at 30% 48%, rgba(255, 220, 185, 0.8) 0%, rgba(246, 235, 225, 0.7) 50%, rgba(232, 224, 215, 0.92) 100%);
	}
	100% {
		/* 여명/새벽 복귀 */
		background: radial-gradient(circle at 22% 55%, rgba(255, 238, 220, 0.6) 0%, rgba(240, 236, 228, 0.8) 45%, rgba(230, 225, 218, 0.95) 100%);
	}
}

/* 2. 떠오르고 지는 태양 (Sunrise & Sunset Animated Sun - 산맥 뒤편 Z-index: 2) */
.ink-sun-wrapper {
	position: absolute;
	left: 14%;
	bottom: 30%;
	width: 145px;
	height: 145px;
	pointer-events: none;
	animation: sunRiseAndSet 36s ease-in-out infinite;
	z-index: 2;
}

.ink-sun-core {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: radial-gradient(circle, #F6B86C 0%, #ED9B48 55%, #E07B28 85%, rgba(214, 110, 25, 0.6) 100%);
	box-shadow: 0 0 50px rgba(246, 170, 75, 0.55), 0 0 100px rgba(237, 140, 50, 0.3);
	opacity: 0.88;
	animation: sunPulseGlow 5s ease-in-out infinite alternate;
}

.ink-sun-core::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" opacity="0.12"><filter id="f"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3"/></filter><rect width="100" height="100" filter="url(%23f)"/></svg>');
	mix-blend-mode: overlay;
}

.ink-sun-glow {
	position: absolute;
	top: -45px;
	left: -45px;
	width: 235px;
	height: 235px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 195, 100, 0.45) 0%, rgba(250, 160, 60, 0.18) 50%, transparent 70%);
	animation: sunHaloBreathe 6s ease-in-out infinite alternate;
}

@keyframes sunRiseAndSet {
	0% {
		/* 0%: 산맥 깊숙이 뒤편 아래에서 시작 */
		transform: translate(-20px, 120px) scale(0.82);
		opacity: 0.1;
		filter: brightness(0.9);
	}
	22% {
		/* 22%: 산맥 능선 뒤에서 위로 서서히 솟아오름 */
		transform: translate(-5px, 0px) scale(0.98);
		opacity: 0.88;
		filter: brightness(1.02);
	}
	50% {
		/* 50%: 산맥 위 맑은 하늘 중천에서 은은하게 떠올라 빛남 */
		transform: translate(15px, -65px) scale(1.08);
		opacity: 0.95;
		filter: brightness(1.1);
	}
	78% {
		/* 78%: 산맥 능선 뒤로 서서히 기울어지며 노을빛으로 물듦 */
		transform: translate(30px, 15px) scale(0.96);
		opacity: 0.84;
		filter: brightness(0.96);
	}
	100% {
		/* 100%: 산맥 너머 뒤로 저물어 사라진 후 부드러운 순환 */
		transform: translate(45px, 120px) scale(0.82);
		opacity: 0.1;
		filter: brightness(0.9);
	}
}

@keyframes sunPulseGlow {
	0% {
		box-shadow: 0 0 35px rgba(246, 170, 75, 0.4), 0 0 70px rgba(237, 140, 50, 0.2);
	}
	100% {
		box-shadow: 0 0 65px rgba(255, 185, 85, 0.65), 0 0 120px rgba(245, 150, 55, 0.4);
	}
}

@keyframes sunHaloBreathe {
	0% {
		transform: scale(0.92);
		opacity: 0.6;
	}
	100% {
		transform: scale(1.15);
		opacity: 0.95;
	}
}

/* 3. 날아가는 철새 무리 (Flying Crane Birds - Z-index: 4) */
.ink-birds-group {
	position: absolute;
	left: 10%;
	bottom: 50%;
	width: 170px;
	height: 85px;
	pointer-events: none;
	z-index: 4;
	animation: birdsFlight 30s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.ink-bird {
	position: absolute;
	width: 22px;
	height: 12px;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.ink-bird.bird-1 { top: 10px; left: 15px; transform: scale(1.0); }
.ink-bird.bird-2 { top: 22px; left: 45px; transform: scale(0.85); }
.ink-bird.bird-3 { top: 8px; left: 80px; transform: scale(0.75); }
.ink-bird.bird-4 { top: 32px; left: 110px; transform: scale(0.65); }

@keyframes birdsFlight {
	0% {
		transform: translate(-50px, 30px) scale(0.75);
		opacity: 0;
	}
	15% {
		opacity: 0.75;
	}
	80% {
		opacity: 0.7;
	}
	100% {
		transform: translate(110px, -45px) scale(1.05);
		opacity: 0;
	}
}

/* 4. 수묵 산맥 및 소나무 전경 레이어 (Mountain Ridge & Pine Tree Foreground - Z-index: 3) */
.ink-mountains-pine-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/ink-mountains-fg.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	opacity: 0.98;
	z-index: 3;
	pointer-events: none;
}

/* 4. 몽환적인 수묵 운무/안개 레이어 (Floating Mist - Z-index: 4) */
.ink-mist-layer {
	position: absolute;
	bottom: 12%;
	left: -20%;
	width: 140%;
	height: 250px;
	background: radial-gradient(ellipse at 50% 60%, rgba(255, 255, 255, 0.6) 0%, rgba(250, 248, 242, 0.3) 45%, transparent 75%);
	filter: blur(20px);
	pointer-events: none;
	z-index: 4;
}

.ink-mist-layer.mist-1 {
	animation: mistFloat1 28s ease-in-out infinite alternate;
}

.ink-mist-layer.mist-2 {
	bottom: 20%;
	background: radial-gradient(ellipse at 40% 50%, rgba(255, 250, 240, 0.5) 0%, rgba(245, 240, 230, 0.25) 50%, transparent 75%);
	animation: mistFloat2 36s ease-in-out infinite alternate;
}

@keyframes mistFloat1 {
	0% { transform: translateX(-40px) scaleY(0.9); opacity: 0.5; }
	100% { transform: translateX(60px) scaleY(1.1); opacity: 0.8; }
}

@keyframes mistFloat2 {
	0% { transform: translateX(50px) scaleY(1.05); opacity: 0.6; }
	100% { transform: translateX(-50px) scaleY(0.95); opacity: 0.35; }
}

/* 모바일 화면 최적화 */
@media screen and (max-width: 768px) {
	.ink-sun-wrapper {
		left: 8%;
		bottom: 35%;
		width: 100px;
		height: 100px;
	}
	.ink-birds-group {
		left: 10%;
		bottom: 52%;
		transform: scale(0.8);
	}
	.ink-mountains-pine-layer {
		background-position: center center;
		opacity: 0.55;
	}
}













