/**
 * Small product image carousel — neumorphism round chips.
 */

.nwui-product-carousel {
	--nwui-product-chip-size: 64px;
	width: 100%;
	max-width: var(--nwui-layout-max, 1760px);
	margin: 0 auto 1.25rem;
	padding: 0.85rem 1rem;
	border-radius: calc(var(--nwui-radius, 20px) + 4px);
	background: var(--nwui-card, #E8ECF1);
	box-shadow: var(--nwui-shadow-raised);
	overflow: hidden;
}

.nwui-product-carousel .nwui-carousel-header {
	margin-bottom: 0.65rem;
}

.nwui-product-carousel .nwui-carousel-title {
	margin: 0;
	font-family: var(--nwui-font-heading);
	font-size: 1rem;
	font-weight: 600;
	color: var(--nwui-text);
}

.nwui-product-carousel .nwui-carousel-track-wrap {
	overflow: hidden;
	cursor: grab;
	-webkit-overflow-scrolling: touch;
}

.nwui-product-carousel .nwui-carousel-track-wrap.is-dragging {
	cursor: grabbing;
}

.nwui-product-carousel .nwui-carousel-track {
	display: flex;
	gap: 0.75rem;
	transition: transform 0.35s ease;
	will-change: transform;
}

.nwui-product-carousel .nwui-product-chip {
	flex: 0 0 auto;
	text-decoration: none;
}

.nwui-product-carousel .nwui-product-chip-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--nwui-product-chip-size);
	height: var(--nwui-product-chip-size);
	border-radius: 50%;
	background: var(--nwui-bg, #E8ECF1);
	box-shadow: var(--nwui-shadow-raised);
	border: 2px solid rgba(34, 197, 94, 0.15);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nwui-product-carousel .nwui-product-chip-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.nwui-product-carousel .nwui-product-chip:hover .nwui-product-chip-circle,
.nwui-product-carousel .nwui-product-chip:focus-visible .nwui-product-chip-circle {
	transform: translateY(-2px) scale(1.04);
	box-shadow: var(--nwui-shadow-raised), 0 0 0 3px var(--nwui-green-glow, rgba(34, 197, 94, 0.25));
	border-color: var(--nwui-primary, #22C55E);
}

@media (max-width: 767px) {
	.nwui-product-carousel {
		padding: 0.65rem 0.55rem;
		margin-bottom: 0.85rem;
	}

	.nwui-product-carousel .nwui-carousel-title {
		font-size: 0.82rem;
		font-weight: 600;
		letter-spacing: -0.01em;
	}

	.nwui-product-carousel .nwui-carousel-track {
		gap: 0.5rem;
	}
}
