/* CONTENEDOR DEL CARRUSEL */
.vmpc-carousel{
    position: relative;
    padding: 10px 40px;
    overflow: hidden;
}

/* FLECHAS */
.vmpc-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.06);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
}
.vmpc-prev{ left: 6px; }
.vmpc-next{ right: 6px; }
.vmpc-arrow:hover{
    background: rgba(0,0,0,0.12);
}

/* PISTA HORIZONTAL */
.vmpc-track{
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 6px 4px 12px;
}

/* Tarjeta */
.vmpc-card{
    position: relative;
    flex: 0 0 260px;
    max-width: 260px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    font-family: inherit;
}

/* Badge Promo */
.vmpc-badge{
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e3342f;
    color:#fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

/* Imagen */
.vmpc-image-wrap{
    display:block;
    padding: 14px;
    padding-bottom: 0;
}
.vmpc-image-wrap img{
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Cuerpo gris como en tu card */
.vmpc-card-body{
    background:#f5f5f5;
    border-radius: 0 0 18px 18px;
    padding: 14px 12px 16px;
    text-align: center;
}

/* Título */
.vmpc-title{
    display:block;
    margin: 4px 0 8px;
    font-size:14px;
    line-height:1.4;
    font-weight:600;
    color:#111827;
    text-decoration:none;
}
.vmpc-title:hover{
    text-decoration:underline;
}

/* Precios */
.vmpc-prices{
    margin-bottom: 10px;
}

/* Línea TTC */
.vmpc-ttc-line{
    font-size:14px;
}
.vmpc-regular-ttc{
    font-weight:400;
    text-decoration:line-through;
    opacity:.65;
    margin-right:8px;
}
.vmpc-sale-ttc{
    font-weight:700;
}

/* Línea HT */
.vmpc-ht-line{
    margin-top:2px;
    font-size:12px;
    color:#6b7280;
}
.vmpc-ht-label{
    font-size:11px;
    text-transform:uppercase;
    margin-left:2px;
}

/* Botón */
.vmpc-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    margin-top:6px;
    padding:9px 18px;
    border-radius:999px;
    background:#404E15;  /* verde vmateriaux */
    color:#ffffff;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
}
.vmpc-btn:hover{
    opacity:.9;
}

/* Icono del botón */
.vmpc-btn-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:18px;
    height:18px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,0.8);
    font-size:11px;
}

/* Responsive pequeño */
@media (max-width: 768px){
    .vmpc-carousel{
        padding: 10px 20px;
    }
    .vmpc-card{
        flex: 0 0 230px;
        max-width: 230px;
    }
}
