@charset "UTF-8";

/* ── 브랜드 로고 캐러셀 ─────────────────────────── */
.brand-productList-brandWrap {
	padding: 20px 12px 10px;
	position: relative;
}
.brand-productList-brandSlider .brand-productList-brandItem {
	text-align: center;
}
.brand-productList-brandSlider .brand-productList-brandItem a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	color: #555;
	padding: 8px 4px;
	border-radius: 8px;
	transition: all 0.2s;
}
.brand-productList-brandSlider .brand-productList-brandItem a:hover,
.brand-productList-brandSlider .brand-productList-brandItem a.brand-active {
	background: #f0f4ff;
	color: #094BAD;
}
.brand-productList-brandSlider .brand-productList-brandItem a.brand-active {
	border: 2px solid #094BAD;
}
.brand-productList-brandSlider .brand-productList-brandItem img {
	width: 68px;
	height: 68px;
	object-fit: contain;
	border-radius: 50%;
	border: 1px solid #e5e5e5;
	background: #fff;
}
.brand-brandItem-placeholder {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	border: 1px solid #e5e5e5;
	background: #f8f9fa;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: 700;
	color: #094BAD;
}
.brand-brandItem-name {
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 80px;
}

/* Owl nav (입점몰과 동일) */
.brand-productList-brandWrap {
	position: relative;
}
.brand-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;
}
.brand-productList-brandWrap .owl2-prev,
.brand-productList-brandWrap .owl2-next,
.brand-productList-brandWrap .owl-prev,
.brand-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;
}
.brand-productList-brandWrap .owl2-prev,
.brand-productList-brandWrap .owl-prev {
	left: -16px;
}
.brand-productList-brandWrap .owl2-next,
.brand-productList-brandWrap .owl-next {
	right: -16px;
}
.brand-productList-brandWrap .owl2-prev:hover,
.brand-productList-brandWrap .owl2-next:hover,
.brand-productList-brandWrap .owl-prev:hover,
.brand-productList-brandWrap .owl-next:hover {
	background: #094BAD;
	color: #fff;
	box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

/* ── 반응형 ─────────────────────────────────────── */
@media (max-width: 991.98px) {
	.brand-productList-brandSlider .brand-productList-brandItem img,
	.brand-brandItem-placeholder {
		width: 56px;
		height: 56px;
	}
	.brand-brandItem-name {
		font-size: 11px;
	}
}
@media (max-width: 575.98px) {
	.brand-productList-brandSlider .brand-productList-brandItem img,
	.brand-brandItem-placeholder {
		width: 48px;
		height: 48px;
		font-size: 18px;
	}
	.brand-brandItem-name {
		font-size: 10px;
		max-width: 60px;
	}
}
