/* 전체 래퍼: 페이지 너비 꽉 채움 */
.dealer-productList-wrap {
	width: 100%;
	background: #fff;
	position: relative;
	z-index: 1; /* 브랜드 영역(z-index:2)이 덮이지 않도록 */
}

/* 슬라이드 아이템: 간격 20px, 라운드 15px */
.dealer-productList-slider .dealer-productList-item {
	overflow: hidden;
	border-radius: 15px;
	position: relative;
	padding-top: 57%; /* PC: 와이드 가로배너 (약 3:1) */
	margin: 0 auto;
	text-align: center;
}

.dealer-productList-slider .dealer-productList-item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 15px;
}

/* 모바일: 458x307 비율 */
@media (max-width: 991px) {
	.dealer-productList-slider .dealer-productList-item {
		padding-top: 67%; /* 307/458 ≈ 67% */
	}
}

/* Owl 애니메이션 보정 */
.dealer-productList-slider .owl-item {
	transition: transform .2s ease;
}


/* 컨트롤/페이지네이션: 슬라이더 이미지 기준 20px 아래 */
.dealer-productList-controls {
	margin: 20px auto;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 0 16px;
	max-width: 1680px;
}

/* 진행바 컨테이너 */
.dealer-productList-progress {
	position: relative;
	flex: 1 1 auto;
	height: 3px;
	overflow: hidden;
	/* 세그먼트 클리핑 */
}

/* 회색 트랙 */
.dealer-productList-progress-track {
	position: absolute;
	inset: 0;
	background: #d9d9d9;
	z-index: 1;
}

/* 검정 세그먼트(현재 위치 표시) */
.dealer-productList-progress-bar {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	/* JS에서 left %로 이동 */
	width: 0%;
	/* JS에서 100/총개수 %로 세팅 */
	background: #111;
	z-index: 2;
	transition: left .25s ease, width .25s ease;
}

/* 하단 컨트롤 버튼 (< > ⏸) */
.dealer-productList-buttons {
	display: flex;
	align-items: center;
	gap: 2px;
}

.dealer-productList-buttons button {
	width: 30px !important;
	height: 30px !important;
	border: 1px solid #ddd !important;
	background: #fff !important;
	line-height: 28px !important;
	font-size: 14px !important;
	color: #999;
	cursor: pointer;
	padding: 0;
	border-radius: 4px;
	transition: border-color .15s, color .15s;
}

.dealer-productList-buttons button:hover {
	color: #333;
	border-color: #999;
}

/* 상단 슬라이더 Owl nav: container 안에서 양끝 배치 */
.dealer-productList-wrap .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 5;
}

.dealer-productList-wrap .owl-prev,
.dealer-productList-wrap .owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	border: none;
	background: rgba(255,255,255,0.85);
	color: #333;
	border-radius: 50%;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	pointer-events: auto;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
	transition: background .15s, box-shadow .15s;
}

.dealer-productList-wrap .owl-prev { left: 16px; }
.dealer-productList-wrap .owl-next { right: 16px; }

.dealer-productList-wrap .owl-prev:hover,
.dealer-productList-wrap .owl-next:hover {
	background: #094BAD;
	color: #fff;
	box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.dealer-productList-wrap .owl-dots {
	display: none !important;
}

/* 반응형 여백 보정 */
@media (max-width: 991.98px) {
	.dealer-productList-controls {
		padding: 0 12px;
	}
}

/* Tablet */
@media (max-width: 575.98px) {
	.dealer-productList-controls {
		padding: 0 8px;
	}
}

/* Mobile */

/* (중복 제거됨) */

/* ===== 하단 동그란 로고 ===== */
.dealer-productList-brandWrap {
	width: 100%;
	background: #fff;
	padding: 8px 12px 24px;
	position: relative;
	/* nav 절대배치 기준 */
}

.dealer-productList-brandSlider {
	position: relative;
}

.dealer-productList-brandSlider .dealer-productList-brandItem {
	display: flex;
	align-items: center;
	justify-content: center;
}

.dealer-productList-brandSlider .dealer-productList-brandItem {
	position: relative;
}

.dealer-productList-brandSlider .dealer-productList-brandItem img {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	border: 1px solid #e0e0e0;
	object-fit: contain;
	background: #fff;
	padding: 8px;
	display: block;
}

/* (owl2/owl 공통 대응) nav 컨테이너: 수직 중앙, 양끝, 줄바꿈 방지 */
.dealer-productList-brandWrap .owl2-nav,
.dealer-productList-brandWrap .owl-nav {
	position: absolute !important;
	top: 50% !important;
	left: 0 !important;
	right: 0 !important;
	transform: translateY(-50%) !important;
	z-index: 5;
	pointer-events: none;
	/* 컨테이너는 클릭 통과 */
}

/* (owl2/owl 공통 대응) prev/next 버튼 */
.dealer-productList-brandWrap .owl2-prev,
.dealer-productList-brandWrap .owl2-next,
.dealer-productList-brandWrap .owl-prev,
.dealer-productList-brandWrap .owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	border: none;
	background: rgba(255,255,255,0.85);
	border-radius: 50%;
	font-size: 18px;
	font-weight: 600;
	color: #333;
	cursor: pointer;
	pointer-events: auto;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
	transition: background .15s, color .15s, box-shadow .15s;
}

.dealer-productList-brandWrap .owl2-prev,
.dealer-productList-brandWrap .owl-prev {
	left: -16px;
}

.dealer-productList-brandWrap .owl2-next,
.dealer-productList-brandWrap .owl-next {
	right: -16px;
}

.dealer-productList-brandWrap .owl2-prev:hover,
.dealer-productList-brandWrap .owl2-next:hover,
.dealer-productList-brandWrap .owl-prev:hover,
.dealer-productList-brandWrap .owl-next:hover {
	background: #094BAD;
	color: #fff;
	box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

/* 도트는 사용 안 함 */
.dealer-productList-brandWrap .owl2-dots,
.dealer-productList-brandWrap .owl-dots {
	display: none !important;
}

/* 브랜드 이미지 없을 때 CSS placeholder */
.dealer-brandItem-placeholder {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	border: 1px solid #e0e0e0;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: 700;
	color: #999;
}

/* 반응형: 로고 크기 조정 + 잘림 방지 */
@media (max-width:991.98px) {
	.dealer-productList-brandSlider .dealer-productList-brandItem img,
	.dealer-brandItem-placeholder {
		width: 58px;
		height: 58px;
	}
	.dealer-productList-brandWrap {
		padding: 8px 20px 24px; /* 좌우 여유 → 아이콘 잘림 방지 */
	}
	.dealer-productList-brandWrap .owl-prev,
	.dealer-productList-brandWrap .owl2-prev { left: -10px; }
	.dealer-productList-brandWrap .owl-next,
	.dealer-productList-brandWrap .owl2-next { right: -10px; }
}

@media (max-width:575.98px) {
	.dealer-productList-brandSlider .dealer-productList-brandItem img,
	.dealer-brandItem-placeholder {
		width: 50px;
		height: 50px;
		font-size: 16px;
	}
	.dealer-productList-brandWrap {
		padding: 8px 16px 20px;
		overflow: visible; /* 양쪽 아이콘 잘림 방지 */
	}
}

/* ===== 브랜드 프로그레스바 ===== */
.dealer-productList-brand-controls {
	margin-top: 14px;
	padding: 0 16px;
}

.dealer-productList-brand-progress {
	position: relative;
	height: 3px;
	overflow: hidden;
}

.dealer-productList-brand-progress-track {
	position: absolute;
	inset: 0;
	background: #d9d9d9;
	z-index: 1;
}

.dealer-productList-brand-progress-bar {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 0%;
	background: #111;
	z-index: 2;
	transition: left .25s ease, width .25s ease;
}

@media (max-width:991.98px) {
	.dealer-productList-brand-controls {
		padding: 0 12px;
	}
}

@media (max-width:575.98px) {
	.dealer-productList-brand-controls {
		padding: 0 8px;
	}
}

/* ===== 좌측 aside ===== */
#dealer-column-left {
	padding-right: 20px;
}
#dealer-column-left .dealer-aside-section {
	background: #fff;
	border: 1px solid #e9e9e9;
	border-radius: 8px;
	padding: 14px 16px;
	margin-bottom: 18px;
}
#dealer-column-left .dealer-aside-title {
	font-size: 15px;
	font-weight: 700;
	color: #222;
	margin: 0 0 12px 0;
	padding-bottom: 8px;
	border-bottom: 2px solid #ff6a00;
}
#dealer-column-left ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* 카테고리 */
.dealer-aside-category li {
	border-bottom: 1px solid #f0f0f0;
}
.dealer-aside-category li:last-child {
	border-bottom: none;
}
.dealer-aside-category a {
	display: block;
	padding: 9px 4px;
	font-size: 13px;
	color: #444;
	text-decoration: none;
}
.dealer-aside-category a:hover {
	color: #ff6a00;
}

/* 추천 상품 */
.dealer-aside-product li {
	border-bottom: 1px solid #f5f5f5;
}
.dealer-aside-product li:last-child {
	border-bottom: none;
}
.dealer-aside-product-link {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 10px 0;
	text-decoration: none;
	color: #333;
}
.dealer-aside-thumb {
	flex: 0 0 60px;
	width: 60px;
	height: 60px;
	border: 1px solid #eee;
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fafafa;
}
.dealer-aside-thumb img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
}
.dealer-aside-thumb-empty {
	font-size: 11px;
	color: #aaa;
}
.dealer-aside-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.dealer-aside-name {
	font-size: 13px;
	color: #222;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.dealer-aside-price {
	font-size: 13px;
	font-weight: 700;
	color: #ff6a00;
}
.dealer-aside-sub {
	font-size: 11px;
	color: #888;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 입점사 */
.dealer-aside-seller li {
	border-bottom: 1px solid #f5f5f5;
}
.dealer-aside-seller li:last-child {
	border-bottom: none;
}
.dealer-aside-seller-link {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 10px 0;
	text-decoration: none;
	color: #333;
}
.dealer-aside-logo {
	flex: 0 0 50px;
	width: 50px;
	height: 50px;
	border: 1px solid #eee;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
}
.dealer-aside-logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.dealer-aside-logo-empty {
	font-size: 16px;
	font-weight: 700;
	color: #888;
}

/* 최근 본 상품 */
.dealer-aside-recent .extraslider-inner {
	min-height: 60px;
}

@media (max-width:991.98px) {
	#dealer-column-left {
		padding-right: 15px;
		margin-bottom: 20px;
	}
}