/* Tour Favorite Icon Styles */
.tour-favorite-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100; /* High z-index to ensure visibility */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: none;
    pointer-events: auto; /* Ensure clicks are captured */
}

.tour-favorite-icon:hover {
    transform: scale(1.2);
}

.tour-favorite-icon i {
    font-size: 22px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.tour-favorite-icon i.fas {
    color: #ff5a5f;
}
