.pcv-carousel-wrapper {
	--pcv-gap: 10px;
	--pcv-edge-gap: 16px;
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	box-sizing: border-box !important;
	padding-left: var(--pcv-edge-gap) !important;
	padding-right: 0 !important;
}

@media (min-width: 768px) {
	.pcv-carousel-wrapper {
		--pcv-edge-gap: 0px;
	}
}

.pcv-track {
	display: flex;
	gap: var(--pcv-gap);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: 4px 2px;
	margin: 0;
}
.pcv-track::-webkit-scrollbar { display: none; }

/* Móvil: 2.5 fotos visibles */
.pcv-item {
	flex: 0 0 calc((100% - 1.5 * var(--pcv-gap)) / 2.5);
	scroll-snap-align: start;
	aspect-ratio: 1080 / 1920;
	overflow: hidden;
	border-radius: 8px;
	background: #eee;
}

/* Escritorio: 6.5 fotos visibles */
@media (min-width: 768px) {
	.pcv-item {
		flex-basis: calc((100% - 5.5 * var(--pcv-gap)) / 6.5);
	}
}

.pcv-item img,
.pcv-item .pcv-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pcv-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	border: none;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 14px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}
.pcv-nav:hover { background: rgba(0, 0, 0, 0.85); }
.pcv-prev { left: 4px; }
.pcv-next { right: 4px; }

@media (max-width: 480px) {
	.pcv-nav { width: 28px; height: 28px; font-size: 12px; }
}
