/* =============================================
 * New Arrivals Widget Container
 * ============================================= */
.na-new-arrivals {
	position: relative;
	overflow: hidden;
}

.na-new-arrivals:hover .na-nav-btn:not(.swiper-button-disabled) {
	opacity: 1;
	visibility: visible;
}

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

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

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

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

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

/* =============================================
 * Badge (top-left)
 * ============================================= */
.na-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
	white-space: nowrap;
	z-index: 2;
	color: #fff;
	background-color: #e74c3c;
	padding: 2px 8px;
	border-radius: 4px;
}

/* =============================================
 * Category Label (bottom-center inside image)
 * ============================================= */
.na-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
 * ============================================= */
.na-price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	padding: 6px 12px 0;
}

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

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

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

/* =============================================
 * Navigation Arrows
 * ============================================= */
.na-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;
}

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

.na-nav-prev { left: 12px; }
.na-nav-next { right: 12px; }

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

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

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

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

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

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