/* ========== New Arrivals Carousel Widget ========== */
.nac-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.nac-wrapper .swiper {
	overflow: hidden;
}

/* Slide */
.nac-slide {
	position: relative;
	overflow: hidden;
}

.nac-slide-link {
	display: block;
	width: 100%;
	height: 100%;
}

.nac-slide-image {
	width: 100%;
	height: 380px;
	display: block;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.nac-slide:hover .nac-slide-image {
	transform: scale(1.05);
}

/* Label */
.nac-label {
	position: absolute;
	top: 12px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	padding: 4px 12px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.5px;
	line-height: 1.4;
	background-color: #fdf6f0;
	color: #d4a574;
	border-radius: 2px;
	pointer-events: none;
	white-space: nowrap;
}

/* Navigation Arrows */
.nac-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: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.nac-nav-btn svg {
	width: 18px;
	height: 18px;
}

.nac-nav-prev {
	left: 10px;
}

.nac-nav-next {
	right: 10px;
}

.nac-nav-btn.swiper-button-disabled {
	opacity: 0.3;
	cursor: default;
}

/* Pagination */
.nac-wrapper .swiper-pagination {
	position: relative;
	margin-top: 16px;
	text-align: center;
}

.nac-wrapper .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: #cccccc;
	opacity: 1;
	margin: 0 4px;
	transition: all 0.3s ease;
}

.nac-wrapper .swiper-pagination-bullet-active {
	background: #333333;
	width: 24px;
	border-radius: 4px;
}

/* Responsive */
@media (max-width: 767px) {
	.nac-nav-btn {
		width: 32px;
		height: 32px;
	}

	.nac-nav-btn svg {
		width: 14px;
		height: 14px;
	}

	.nac-nav-prev {
		left: 6px;
	}

	.nac-nav-next {
		right: 6px;
	}
}
