.card-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.card-carousel-container .card-carousel {
        width: 100%;
        height: 100%;
        display: flex;
        transition: transform 0.3s ease;
        transform: translateZ(0);
    }
.card-carousel-container .card-carousel-slide {
        flex: 0 0 100%;
        max-width: 100%;
        overflow: hidden;
    }
.card-carousel-container .overlay-slide {
        position: relative;
    }
.card-carousel-container .overlay-slide img {
        filter: blur(5px);
    }
.card-carousel-container .overlay-slide .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        pointer-events: none;
        gap: 6px;
        z-index: 10;
    }
.card-carousel-container .overlay-slide .overlay .title {
            color: #fff;
            text-align: center;
            font-size: 14px;
        }
.card-carousel-container .overlay-slide .overlay .redirect {
            color: #f79e1b;
            font-size: 20px;
            font-weight: 500;
            line-height: 120%; /* 24px */
            text-decoration-line: underline;
            text-decoration-style: solid;
            -webkit-text-decoration-skip-ink: none;
                    text-decoration-skip-ink: none;
            text-underline-position: from-font;
            text-decoration-thickness: 2px;
            text-underline-offset: 5px;
        }
.card-carousel-container .prev-button,
    .card-carousel-container .next-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 10px;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        border: none;
        background-color: white;
        cursor: pointer;
        z-index: 1;
        color: #000;
    }
.card-carousel-container .prev-button {
        left: 10px;
    }
.card-carousel-container .next-button {
        right: 10px;
    }
.card-carousel-container .card-carousel-dots {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
    }
.card-carousel-container .card-carousel-dots .dot {
            cursor: pointer;
            height: 10px;
            width: 10px;
            background-color: #1f1a17;
            border-radius: 50%;
            display: inline-block;
            margin: 0 5px;
        }
.card-carousel-container .card-carousel-dots .dot.active {
            background-color: #fff;
        }
.card-carousel-container.sold .card-carousel img,
.card-carousel-container.reserved .card-carousel img {
    filter: blur(2px);
    opacity: 0.6;
    transition:
        filter 0.3s ease, opacity 0.3s ease;
}
