@charset "utf-8";

/* 1. 페이지 헤더 및 경로 (page-header-container) */
.page-header-container {
    max-width: 1200px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between; /* 제목과 경로를 양 끝으로 배치 */
	align-items: center;
}

.page-title-area {
	flex-grow: 1;
}

.page-main-title {
	font-size: 28px;
	font-weight: 700;
	color: #333;
	margin: 0;
}

.page-slogan {
	font-size: 14px;
	font-weight: 400;
	color: #777;
	margin-left: 10px;
}

/* 2. 경로 (Breadcrumb - breadcrumb-area) */
.breadcrumb-area {
	font-size: 13px;
	color: #999;
	display: flex;
	align-items: center;
}

.breadcrumb-area .home-link img {
	width: 16px; /* 홈 아이콘 크기 조정 */
	vertical-align: middle;
	margin-right: 5px;
}

.breadcrumb-area .separator {
	display: inline-block;
	content: '';
	width: 6px;
	height: 10px;
	margin: 0 5px;
	background: url('/img/common/ico_arrow_gray.gif') no-repeat center center; /* 경로 구분자 이미지 사용 가정 */
}

.breadcrumb-area .current-page {
	color: #007bff; /* 현재 페이지 강조 */
	font-weight: 600;
}

/* 3. 메인 컨텐츠 영역 (content-main-area) */
.content-main-area {
	/* flex를 사용하여 메뉴와 컨텐츠 영역을 분할할 수도 있지만,
	   기존 scnt의 colspan="2" 역할을 위해 block 컨테이너로 유지 */
	width: 100%;
}

/* 4. 2차 메뉴 스타일 (product-main-nav) - 기존 sm12 스타일 유지 및 클래스명 변경 */
.product-main-nav {
	list-style: none;
	padding: 0;
	margin: 0 0 25px 0;
	display: flex;
	flex-wrap: wrap; 
	gap: 8px; 
	border-bottom: 2px solid #eee;
}

.product-main-nav li {
	padding: 0;
	margin-bottom: -2px;
}

.product-main-nav li a {
	/* 기존 sm12의 a 스타일 내용 그대로 적용 */
	display: block;
	padding: 10px 15px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	color: #555; 
	border-radius: 4px 4px 0 0;
	transition: all 0.2s ease;
	white-space: nowrap;
}



/* 5. 3차 카테고리 영역 (category-detail-section) */
.category-detail-section {
    margin-top: 30px;
    padding: 20px 0;
    border: 1px solid #eee; /* 영역 구분을 위해 얇은 테두리 추가 */
    border-radius: 6px;
    background-color: #fcfcfc;
}

/* 6. 3차 메뉴명 (section-title-2) */
.section-title-2 {
    font-size: 22px;
    font-weight: 600;
    color: #007bff;
    margin: 0 20px 15px 20px; /* 좌우 여백 추가 */
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* 7. 하부 카테고리 (product-sub-category) */
.product-sub-category {
    list-style: none;
    padding: 0 20px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px; /* 줄 간격과 항목 간격 조정 */
}

.product-sub-category li a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: color 0.2s;
}

.product-sub-category li a:hover {
    color: #007bff;
    text-decoration: underline;
}

.sm12 li a{
	background: #f8f8f8;
}