﻿
.tp_mainwrapper {
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 5px;
}

.tpmw20per {
    width: 20%;
    height: auto;
    float: left;
}

.tp_rounddv {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    background-color: #daffe0;
    align-items: center;
    border-radius: 50%;
    cursor: default;
    display: flex;
    justify-content: center;
}

.tp_80per {
    width: 80%;
    float: left;
    height: auto;
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    align-self: center;
    overflow: hidden;
}

.tp_name {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
    color: #1c1c1c;
}

.tp_daterevi {
    color: #9b9898;
    font-size: 12px;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 4px;
}

.tp_100pern {
    width: 100%;
    float: left;
    height: auto;
    margin-bottom: 10px;
}

.tp_reviewtxt {
    word-wrap: break-word;
    color: #484545;
    font-size: 13px;
    font-weight: normal;
    line-height: 1.38;
}

.TabberGroupCollection_scrollRight__58m_m {
    position: absolute;
    background-repeat: no-repeat;
    background-position: 50%;
    top: 50%;
    right: 5%;
    color: #fff;
    font-size: 50px;
    transform-origin: 52% 62%;
    animation: swipe-hand 2s infinite;
    filter: drop-shadow(0 4px 4px rgba(0,0,0,.7));
}

.svg-inline--fa {
    display: inline-block;
    height: 1em;
}

.TabberGroupCollection_path__Btcnb {
    width: 20px;
    height: 20px;
    position: absolute;
    background: #01b7f2;
    border-radius: 40px;
    top: 48%;
    right: 4%;
    visibility: hidden;
    animation: swipe-dot 2s .5s infinite;
}

.swipe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    transform: translateX(var(--swipe-offset, 0px));
}

.path {
    width: 20px;
    height: 20px;
    position: absolute;
    background: rgba(250, 29, 29, 0.877);
    border-radius: 40px;
    top: 48%;
    right: 4%;
    visibility: hidden;
    animation: swipe-dot 2s 0.5s infinite;
}

.scrollRight {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    right: 5%;
    color: white;
    font-size: 50px;
    transform-origin: 52% 62%;
    animation: swipe-hand 2s infinite;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.7));
}

@keyframes swipe-hand {
    25% {
        transform: translate(20px) rotate(30deg);
    }

    50% {
        transform: translate(-20px) rotate(-15deg);
    }

    100% {
        transform: translate(0px) rotate(0);
    }
}

@keyframes swipe-dot {
    12% {
        visibility: visible;
        opacity: 1;
        width: 40px;
    }

    25% {
        visibility: visible;
        transform: translate(-65px);
        width: 20px;
    }

    26% {
        opacity: 0;
        visibility: hidden;
    }
}

/* Left fade gradient */
.carousel-gradient-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), transparent);
    z-index: 5;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .carousel-gradient-left.hidden,
    .carousel-gradient-right.hidden {
        opacity: 0;
    }

.carousel-scroll-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    cursor: grab;
    padding-bottom: 10px;
}

    .carousel-track:active {
        cursor: grabbing;
    }

.carousel-scroll-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

/*.carousel-item-custom {
            flex: 0 0 25%;*/ /* 100% / 4 items = 25% */
/*padding: 8px;
        }*/

.carousel-item-custom {
    flex: 0 0 auto; /* prevent flex shrinking or growing */
    width: 340px;
    height: 220px;
    padding: 0 8px; /* optional, adjust spacing between items */
}

    .carousel-item-custom img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
    }

.carousel-controls {
    text-align: center;
    margin-top: 10px;
}

    .carousel-controls button {
        margin: 0 10px;
    }


@media (max-width: 768px) {
    .carousel-item-custom {
        flex: 0 0 100%; /* 1 item per row on mobile/tablet */
    }
}


@media (max-width: 992px) {
    .carousel-item-custom {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .carousel-item-custom {
        flex: 0 0 100%;
    }
}

.carousel-gradient-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), transparent);
    z-index: 5;
    pointer-events: none;
    transition: opacity 0.3s ease;
}


/* Gradients stay the same */


/* For WebKit browsers (Chrome, Safari, Edge) */
.carousel-track::-webkit-scrollbar {
    height: 6px;
}

.carousel-track::-webkit-scrollbar-track {
    background: transparent;
}

.carousel-track::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.4); /* Scroll thumb color */
    border-radius: 10px;
}

/* For Firefox */
.carousel-track {
    scrollbar-width: thin; /* Slim scrollbar */
    scrollbar-color: rgba(0, 0, 0, 0.4) transparent; /* Thumb and track */
}

    .carousel-track::-webkit-scrollbar {
        height: 0;
        transition: height 0.3s ease;
    }

    .carousel-track:hover::-webkit-scrollbar {
        height: 6px;
    }



/*Add This CSS for Style + Animation*/
.scroll-hint-text {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    /* background: rgba(0, 0, 0, 0.6);*/
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 16px;
    z-index: 10;
    pointer-events: none;
}

/* Animation: gently moves left/right */
@keyframes slide-hint {
    from {
        transform: translateY(-50%) translateX(0);
    }

    to {
        transform: translateY(-50%) translateX(10px);
    }
}

/*Add This CSS for Style + Animation*/





/*image hover text*/

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
}

    .image-wrapper:hover img {
        transform: scale(1.05);
        cursor: pointer;
        transition: transform 0.3s ease;
    }


    .image-wrapper::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0);
        pointer-events: none;
        border-radius: 8px;
        background: linear-gradient( to bottom, #fff 0%, #fff 15%, #fff 40%, #fff 50%, #fff 75%, #daffe0 100% );
        opacity: 0.6;
        transition: transform 0.3s ease;
    }

    .image-wrapper:hover::after {
        background: linear-gradient( to bottom, #fff 0%, #fff 15%, #fff 40%, #fff 50%, #daffe0 75%, #daffe0 100% );
        opacity: 0.6;
        transition: transform 0.3s ease;
    }

/* Caption at the top */
.image-caption {
    position: absolute;
    top: 12px;
    left: 16px;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 36px;
    z-index: 2;
    font-weight: 700
}

/* Price at the bottom */
.image-price {
    position: absolute;
    bottom: 16px; /* fixed position */
    left: 16px;
    color: #fff;
    /* padding: 5px 10px;*/
    border-radius: 6px;
    font-size: 44px;
    z-index: 2;
    transition: none; /* no sliding */
    transition: bottom 0.4s ease, opacity 0.4s ease;
}

.book-now-btn {
    font-size: 15px;
    color: white;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    justify-content: left;
    border-radius: 3px;
    padding: 10px 15px 10px 15px;
    position: absolute;
    bottom: -60px; /* initially hidden below */

    background-color: rgb(237, 79, 2);
    border: none;
    cursor: pointer;
    transition: bottom 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    z-index: 3;
}

.image-wrapper:hover .book-now-btn {
    bottom: 0px; /* slides up */
    opacity: 0.9;
}

.image-wrapper:hover .image-price {
    bottom: 60px; /* slides up */
    opacity: 1;
    transition: bottom 0.4s ease, opacity 0.4s ease;
}

.FromPrice_from__qqknF {
    letter-spacing: .05em;
    line-height: 1em;
    font-size: .27em;
}

.FromPrice_PP__D1QIs {
    align-self: flex-end;
    line-height: 1em;
    font-size: .27em;
}


.svg-crn {
    vertical-align: baseline;
}