.wpc-carousel {
    position: relative;
}

.custom-arrow {
    background: transparent;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.slick-prev.custom-arrow {
    left: -50px; 
}

.slick-next.custom-arrow {
    right: -50px;
}

button.custom-arrow {
    background: transparent;
    box-shadow: 0px 0px 0px 0px ;
}


.custom-arrow svg {
    width: 32px;
    height: 32px;
    stroke: #153828;
    transition: stroke 0.3s ease;
}

.custom-arrow:hover svg {
    stroke: #89673A;
    background: transparent;
}


.wpc-carousel .wpc-item {
    padding: 0 10px;
    box-sizing: border-box;
}

.wpc-carousel .slick-slide {
    display: flex;
    justify-content: center;
}


wpc-carousel .wpc-item h3 {
    
    text-decoration: none; 
    margin-top: 10px;
}

.wpc-carousel .wpc-item a {
    text-decoration: none;
    text-align:center; 
    color: inherit; 
}


.wpc-image-wrapper,.wpc-item {
    position: relative;
    overflow: hidden;
}

.wpc-hover-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fcf5e7d7;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
}

.wpc-image-wrapper:hover .wpc-hover-info, .wpc-item:hover .wpc-title {
    transform: translateY(0%);
}

.wpc-short-desc {
    margin: 0 0 5px 0;
    color: #153828;
}

/*.wpc-price {
    font-weight: bold;
    color: #153828;
}*/

.wpc-item .wpc-title {
    color: #00788E;
    text-align: center;
}


/* Cacher le titre par défaut */
.wpc-item .wpc-title {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Afficher le titre */
.wpc-item:hover .wpc-title {
    opacity: 1;
    visibility: visible;
}

