/* 하단 고정 메뉴바 (Bottom Navigation) */
.bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 72px;
	background-color: #fff;
	border-top: 1px solid #ddd;
	display: flex;
	justify-content: space-around;
	align-items: center;
	z-index: 1000;
}

.b-nav-item {
	flex: 1;
	text-align: center;
	font-size: 0.75rem;
	color: #555;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.b-nav-item.active {
	color: #679c87;
	font-weight: bold;
}

/*메뉴 슬라이드*/	
#sideMenu{
    position:fixed;
    left:0;
    top:0;

    width:100%;
    height:100%;

    background:#fff;

    z-index:99999;

    transform:translateX(-100%);
    transition:0.35s ease;
}

#sideMenu.active{
    transform:translateX(0);
}

.menu-inner{
    padding:80px 30px;
}

#closeMenu {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);

    border: 0;
    background: none;

    font-size: 20px;
    cursor: pointer;
}

#sideMenu ul{
    list-style:none;
    padding:0;
    margin-top:40px;
}

#sideMenu li{
    padding:18px 0;
    font-size:20px;
    border-bottom:1px solid #eee;
}

/* 그리드 메뉴 */	
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    background: #fff;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    text-decoration: none;
    color: #222;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    transition: background 0.2s;
}

.product-item:nth-last-child(-n+3) {
    /*border-bottom: 0;*/
}

.thumb {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin-bottom: 10px;*/
}

.thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-item p {
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ff2d2d;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}

.menu-top {
    position: relative;

    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
}

.menu-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}	

/* 하단 공지사항 이벤트 메뉴 */	
.notice-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:24px;
    margin-top : 30px;
}

.notice-box{
    width:40%;
    height:52px;
    border:1px solid #dcdcdc;
    background:#fafafa;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:8px;

    text-decoration:none;
    box-sizing:border-box;
}

.notice-box:hover{
    background:#f5f5f5;
}

.notice-box svg{
    width:18px;
    height:18px;
    stroke:#9a9a9a;
    flex-shrink:0;
    display:block;
}

.notice-box span{
    font-size:12px;
    color:#777;
    line-height:1;
    display:block;
    position:relative;
    top:1px;
}
