.k-hfl-tl-item-wrapper svg {
    width: 18px;
    height: 18px;
    margin-top: -2px;
}

.k-hfl-tl-item-inner {
    background: #F8FAFB;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.k-hfl-tli-full-info-wrapper {
    padding: 0 24px 24px 24px;
}

.k-hfl-tour-list-wrapper {
    padding: 24px !important;
    overflow: visible;
}

.k-hfl-tli-name-wrapper {
    margin-bottom: 12px;
}

.k-hfl-tli-name-wrapper h4 {
    font-size: 20px;
    line-height: 1.3;
    text-transform: capitalize;
    color: #166534;
}

.k-hfl-tli-thumbnail-inner {
    position: relative;
    height: 0;
    width: 100%;
    padding-top: 55%;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.k-hfl-tli-thumbnail-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    transition: transform 0.5s ease;
}

.k-hfl-tl-item-wrapper:hover .k-hfl-tli-thumbnail-inner img {
    transform: scale(1.2);
}

.k-hfl-tli-badges {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    z-index: 1;
}

.k-hfl-tli-badge-vehicle,
.k-hfl-tli-badge-duration {
    backdrop-filter: blur(15px);
    background-color: #42424245;
    border-radius: 12px;
    padding: 8px 12px;
    border: 1px solid #ffffff1a;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.k-hfl-tli-badge-vehicle svg,
.k-hfl-tli-badge-duration svg {
    width: 16px;
    height: 16px;
}

.k-hfl-tli-pickup-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1;
    color: #166534;
    margin-bottom: 12px;
    font-weight: 600;
}

.k-hfl-tli-pickup-wrapper svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.k-hfl-tli-description-wrapper {
    font-size: 14px;
    line-height: 1.3;
    color: #666;
    margin-bottom: 16px;

}

.k-hfl-tour-list-wrapper .swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.k-hfl-tour-list-wrapper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #dcdcdc;
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.k-hfl-tour-list-wrapper .swiper-pagination-bullet-active {
    background: #005f27;
    box-shadow: 0 0 0 4px rgba(0, 95, 39, 0.15);
}


.k-hfl-tour-list-wrapper {
    padding: 12px !important;
}

.k-hfl-button-next,
.k-hfl-button-prev {
    color: #fff;
    background: #55A630;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    transition: all 0.3s ease;
}

.k-hfl-button-next:hover,
.k-hfl-button-prev:hover {
    background: #55A630;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.k-hfl-button-next {
    right: -24px;
}

.k-hfl-button-prev {
    left: -24px;
}

.k-hfl-button-next:after,
.k-hfl-button-prev:after {
    font-family: swiper-icons;
    font-size: 18px;
    font-weight: bold;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.k-hfl-button-next:after {
    content: 'next';
}

.k-hfl-button-prev:after {
    content: 'prev';
}

.k-hfl-tour-list-wrapper .swiper-button-disabled {
    opacity: 0.5;
    cursor: auto;
    pointer-events: none;
}

.k-hfl-tl-item-wrapper {
    user-select: none;
}

.k-hfl-tli-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.k-hfl-tli-price-inner {
    font-size: 36px;
    line-height: 1;
    font-weight: 700;
}

.k-hfl-tli-price-from {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
}

.k-hfl-tli-price-value {
    background: linear-gradient(to right, #166534 0%, #32b32c 12%, #32b32c 22%, #166534 38%);
    background-size: 200% auto;
    background-position: -100% center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-price 3.2s linear infinite;
    animation-fill-mode: forwards;
    animation-play-state: paused;
}

.k-hfl-tli-price-value.is-visible {
    animation-play-state: running;
}

@keyframes shine-price {
    0% {
        background-position: 100% center;
    }

    85% {
        background-position: -100% center;
    }

    100% {
        background-position: -100% center;
    }
}

.k-hfl-main-heading-wrapper h3 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #166534;
}

.k-hfl-heading-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.k-hfl-sub-heading-wrapper {
    text-align: right;
}

.k-hfl-sub-heading-wrapper span {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.k-hfl-main-heading-wrapper h3 .shine-text {
    background: linear-gradient(to right, #166534 0%, #32b32c 12%, #32b32c 22%, #166534 38%);
    background-size: 200% auto;
    background-position: -100% center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-heading 3.2s linear infinite;
    animation-fill-mode: forwards;
    animation-play-state: paused;
}

.k-hfl-main-heading-wrapper h3 .shine-text.is-visible {
    animation-play-state: running;
}

@keyframes shine-heading {
    0% {
        background-position: 100% center;
    }

    85% {
        background-position: -100% center;
    }

    100% {
        background-position: -100% center;
    }
}

.k-hfl-tli-arrow-btn {
    width: 40px;
    height: 40px;
    background: #55A630;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.k-hfl-tli-arrow-btn svg {
    width: 20px;
    height: 20px;
}