/* --- CARRIL INTERNO QUE SE DESPLAZA --- */
.wcps-track {
    display: flex;
    transition: transform 0.5s ease;
    scroll-behavior: smooth;
/*    overflow-x: hidden; */
	overflow: visible; /* v1.7c */
	will-change: transform; /* v1.7 */
	gap: 20px;
}

/* --- CADA SLIDE --- */
.wcps-slide {
    min-width: 300px;
    margin: 0 10px;
    text-align: center;
    flex-shrink: 0;
	box-sizing: border-box; /* v1.7 */
}

.wcps-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.wcps-title {
    font-size: 1.1em;
    margin: 10px 0 5px;
}

.wcps-price {
    color: #333;
    font-weight: bold;
}

.wcps-tags {
    margin-top: 8px;
    font-size: 0.9em;
    color: #666;
}
/*
.wcps-tag {
	display:inline-block;
}
*/
/* --- CONTROLES LATERALES FIJOS --- */

.wcps-kkcontrols {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	z-index: 10;
}

.wcps-btn {
	background: rgba(0,0,0,0.5);
	color: #fff;
	border: none;
	font-size: 24px; /* 2em */
	cursor: pointer;
	padding: 10px;
	border-radius: 50%;
	transition: background 0.3s; /* background-color 0.3s ease; */
	z-index: 20;
}

.wcps-btn:hover {
	background: rgba(0,0,0,0.7);
}

.wcps-prev,
.wcps-next {
    line-height: 1;
    width: 45px;
    height: 45px;
	padding: 0.5rem 1rem; /* v1.7 */
		top: 30% !important;
}

.wcps-prev:hover,
.wcps-next:hover {
    background-color: rgba(0,0,0,0.7);
}

.wcps-prev {
    left: 10px;
}

.wcps-next {
    right: 10px;
}

/* --- ESTILO BASE PARA ETIQUETAS --- */
.wcps-tags {
    margin-top: 8px;
    font-size: 0.9em;
}

.wcps-tag {
    margin: 2px;
    display: inline-block;
}

.wcps-tag a {
    text-decoration: none;
}

/* --- MODO RESPONSIVE --- */
@media (max-width: 1024px) {
    .wcps-prev, .wcps-next {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
	.wcps-slide {
		padding:5px;
	}

    .wcps-prev, .wcps-next {
        font-size: 1.2rem;
        padding: 0.3rem 0.6rem;
    }
}
