/* index_top.css */

.shoplay_inner{
	width:1320px;
	max-width:100%;
	margin:0 auto;
	box-sizing:border-box;
}

.shoplay_topbar{
	background:#f5f5f5;
	border-bottom:1px solid #e5e5e5;
	height:28px;
}

.shoplay_topbar_inner{
	display:flex;
	justify-content:flex-end;
	align-items:center;
	height:28px;
	gap:14px;
	padding:0 12px;
	box-sizing:border-box;
}

.shoplay_topbar_inner a{
	font-size:12px;
	color:#555;
	text-decoration:none;
}

.shoplay_header{
	background:#fff;
	border-bottom:1px solid #e5e5e5;
}

.shoplay_header_inner{
	display:flex;
	align-items:center;
	gap:20px;
	height:86px;
	padding:0 12px;
	box-sizing:border-box;
}

.shoplay_menu_btn{
	position:relative;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	width:90px;
	height:60px;
	border:1px solid #e5e5e5;
	border-radius:12px;
	background:#fff;
	color:#333;
	text-decoration:none;
	cursor:pointer;
	box-sizing:border-box;
	transition:all .2s;
}

.shoplay_menu_btn:hover{
	border-color:#00a651;
	color:#00a651;
	transform:translateY(-2px);
	box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.shoplay_menu_btn:hover .shoplay_menu_icon{
	color:#00a651;
}

.shoplay_menu_icon{
	font-size:22px;
	margin-bottom:6px;
	color:#222;
}

.shoplay_menu_txt{
	font-size:12px;
	font-weight:600;
	line-height:1;
}

.shoplay_logo{
	margin:0;
	width:170px;
	text-align:center;
	font-size:28px;
	font-weight:800;
}

.shoplay_logo a{
	color:#111;
	text-decoration:none;
}

.shoplay_search_box{
	display:flex;
	align-items:center;
	flex:1;
	max-width:600px;
	height:48px;
	border:2px solid #00a651;
	border-radius:50px;
	overflow:hidden;
	background:#fff;
	box-sizing:border-box;
}

.shoplay_search_input{
	flex:1;
	height:100%;
	border:0;
	padding:0 20px;
	font-size:15px;
	outline:none;
	box-sizing:border-box;
}

.shoplay_search_btn{
	width:60px;
	height:100%;
	border:0;
	background:#00a651;
	color:#fff;
	cursor:pointer;
	font-size:18px;
	transition:.2s;
}

.shoplay_search_btn:hover{
	background:#008f46;
}

.shoplay_header_btns{
	display:flex;
	gap:10px;
	margin-left:auto;
}

.shoplay_cart_count{
	position:absolute;
	right:10px;
	top:8px;
	min-width:20px;
	height:20px;
	line-height:20px;
	padding:0 5px;
	background:#ff3b30;
	color:#fff;
	font-size:11px;
	font-weight:700;
	border-radius:20px;
	text-align:center;
	box-sizing:border-box;
}

.shoplay_category_layer{
	display:none;
	background:#fff;
	border-bottom:1px solid #ddd;
	padding:20px 12px;
	box-sizing:border-box;
}

.shoplay_category_layer.on{
	display:block;
}

.shoplay_main_slide{
	width:100%;
	background:#f1f1f1;
}

.shoplay_main_slide_inner{
	width:100%;
	height:420px;
	overflow:hidden;
}

.shoplay_slide_item{
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	height:420px;
	background:#ddd;
	color:#555;
	font-size:28px;
	font-weight:700;
}

/* 모바일 */
@media all and (max-width:768px){

	.shoplay_topbar_inner{
		justify-content:center;
		gap:10px;
	}

	.shoplay_header_inner{
		display:flex;
		flex-wrap:wrap;
		align-items:center;
		height:auto;
		gap:0;
		padding:10px;
	}

	.shoplay_logo{
		order:1;
		width:100%;
		text-align:center;
		margin-bottom:10px;
		font-size:24px;
	}

	.shoplay_header_inner > .shoplay_menu_btn{
		order:2;
		width:55px;
		height:48px;
		border-radius:10px 0 0 10px;
		border-right:0;
		flex-shrink:0;
	}

	.shoplay_header_inner > .shoplay_menu_btn .shoplay_menu_txt{
		display:none;
	}

	.shoplay_header_inner > .shoplay_menu_btn .shoplay_menu_icon{
		margin:0;
		font-size:22px;
	}

	.shoplay_search_box{
		order:3;
		flex:1;
		max-width:none;
		width:auto;
		height:48px;
		border-radius:0 10px 10px 0;
	}

	.shoplay_search_input{
		font-size:14px;
		padding:0 12px;
	}

	.shoplay_search_btn{
		width:50px;
	}

	.shoplay_header_btns{
		display:none;
	}

	.shoplay_main_slide_inner,
	.shoplay_slide_item{
		height:260px;
	}
}