.wpch-carousel-container {
    position: relative;
    text-align: center;
}

.wpch-carousel-title {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 200px !important;
    font-weight: 500;
    position: relative;
    z-index: 1;
    display: inline-block;
    color: #fff;

    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.8)) grayscale(20%);
    mix-blend-mode: difference;
    padding: 0 10px;
    margin-top: 70px;
}

.wpch-carousel-wrapper {
    width: 100%;
}

.wpch-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    max-height: 350px;
}

.wpch-carousel-slide {
    /* flex: 0 0 20%;
    position: relative;
    cursor: pointer;
    transition: all .6s ease-in-out;
    z-index: 0;
    padding: 5px;
    height: 350px; 
    overflow: hidden; 
    border-radius: 12px; */

    flex: 0 0 20%;
    transform: scale(0.85);
    transition: transform 0.5s ease, z-index 0.5s ease;
    z-index: 1;
}

.wpch-carousel-slide.active {
    transform: scale(1.4);
    z-index: 5;
}

.wpch-carousel-slide img,
.wpch-carousel-slide video {
    width: 100%;
    height: 100% !important; 
    object-fit: cover; 
    display: block;
    border-radius: 12px;
}

.wpch-carousel-slide:hover {
    transform: scale(1.3);
    transform-origin: top center;
    /* height: 500px;  */
    z-index: 10;
}

.wpch-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.wpch-btn {
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    padding: 8px 14px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    margin: 0 5px;
}

.wpch-carousel-collection {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.wpch-carousel-counter {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 25px;
    border-radius: 4px;
    z-index: 5;
    font-family: 'Bebas Neue', sans-serif;
}

@media (max-width: 1024px) {
    .wpch-carousel-title {
        font-size: 120px !important;
    }

    .wpch-carousel-slide {
        flex: 0 0 50%; /* 2 slides */
    }

    .wpch-carousel-collection {
        font-size: 20px;
    }

    .wpch-carousel-counter {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .wpch-carousel-title {
        font-size: 35px !important;
        margin-top: 75px;
    }

    .wpch-carousel-slide {
        flex: 0 0 100%; /* 1 slide */
    }

    .wpch-carousel-collection {
        font-size: 18px;
    }

    .wpch-carousel-counter {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .wpch-carousel-collection {
        font-size: 16px;
    }

    .wpch-carousel-counter {
        font-size: 16px;
    }
}