/* =============================================
 * Product Carousel Widget Container
 * ============================================= */
.pc-product-carousel {
	position: relative;
	overflow: hidden;
}

.pc-product-carousel:hover .pc-nav-btn {
	opacity: 1;
	visibility: visible;
}

/* =============================================
 * Slide
 * ============================================= */
.pc-slide-inner {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	height: 100%;
	overflow: hidden;
}

/* =============================================
 * Product Image
 * ============================================= */
.pc-product-image {
	display: block;
	width: 100%;
	overflow: hidden;
	flex-shrink: 0;
	position: relative;
}

.pc-product-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease;
}

.pc-slide-inner:hover .pc-product-image img {
	transform: scale(1.05);
}

.pc-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: #f0f0f0;
}

/* =============================================
 * Category Label
 * ============================================= */
.pc-cat-label {
	display: inline-block;
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 12px;
	line-height: 1.4;
	white-space: nowrap;
	z-index: 2;
}

/* =============================================
 * Price
 * ============================================= */
.pc-price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	padding: 6px 12px 0;
}

.pc-price-current {
	font-size: 16px;
	font-weight: 700;
	color: #222;
	white-space: nowrap;
	line-height: 1.3;
}

.pc-price-old {
	font-size: 12px;
	color: #999;
	text-decoration: line-through;
	white-space: nowrap;
	line-height: 1.3;
}

/* =============================================
 * Minimum Order Quantity
 * ============================================= */
.pc-moq {
	display: block;
	padding: 4px 12px 12px;
	font-size: 12px;
	color: #999;
	line-height: 1.4;
}

/* =============================================
 * Navigation Arrows
 * ============================================= */
.pc-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	color: #333;
}

.pc-nav-btn svg {
	width: 20px;
	height: 20px;
}

.pc-nav-prev {
	left: 12px;
}

.pc-nav-next {
	right: 12px;
}

.pc-nav-btn:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.pc-nav-btn.swiper-button-disabled {
	opacity: 0 !important;
	pointer-events: none;
}

@media (max-width: 768px) {
	.pc-nav-btn {
		opacity: 1;
		visibility: visible;
		width: 28px;
		height: 28px;
	}

	.pc-nav-btn svg {
		width: 16px;
		height: 16px;
	}

	.pc-nav-prev { left: 4px; }
	.pc-nav-next { right: 4px; }

	.pc-nav-btn.swiper-button-disabled {
		opacity: 0.3 !important;
		visibility: visible !important;
		pointer-events: none;
	}
}
