.tour-ticker-wrapper-9c7f0dbc {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
    background-color: #EDF0F2; /* Porcelain Light Background */
    border-radius: 8px;
}

.tour-ticker-track-9c7f0dbc {
    display: flex;
    width: max-content;
    animation: tickerInfinite9c7f0dbc var(--ticker-speed) linear infinite;
    animation-direction: var(--ticker-direction);
    gap: 24px;
    padding-left: 12px;
}

.tour-ticker-wrapper-9c7f0dbc.pause-on-hover:hover .tour-ticker-track-9c7f0dbc {
    animation-play-state: paused;
}

.tour-card-9c7f0dbc {
    width: 320px;
    flex-shrink: 0;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tour-card-9c7f0dbc:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.tour-card-image-wrap-9c7f0dbc {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.tour-card-img-9c7f0dbc {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card-9c7f0dbc:hover .tour-card-img-9c7f0dbc {
    transform: scale(1.08);
}

.tour-card-badge-9c7f0dbc {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.tour-card-body-9c7f0dbc {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-card-location-9c7f0dbc {
    margin-bottom: 6px;
}

.tour-card-country-9c7f0dbc {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #00A680;
}

.tour-card-title-9c7f0dbc {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px 0;
    color: #1F2937;
    height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card-meta-9c7f0dbc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 13px;
    color: #6B7280;
    border-bottom: 1px solid #EDF0F2;
    padding-bottom: 12px;
}

.tour-card-stars-9c7f0dbc {
    display: flex;
    gap: 2px;
}

.tour-card-stars-9c7f0dbc i {
    font-size: 12px;
    color: #ff8f20; /* Default to brand logo orange */
}

.tour-card-duration-9c7f0dbc {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.tour-card-footer-9c7f0dbc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.tour-card-pricing-9c7f0dbc {
    display: flex;
    flex-direction: column;
}

.tour-card-price-label-9c7f0dbc {
    font-size: 10px;
    text-transform: uppercase;
    color: #9CA3AF;
    line-height: 1;
}

.tour-card-prices-9c7f0dbc {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.tour-card-price-original-9c7f0dbc {
    font-size: 12px;
    text-decoration: line-through;
    color: #9CA3AF;
}

.tour-card-price-current-9c7f0dbc {
    font-size: 18px;
    font-weight: 800;
    color: #00A680;
}

.tour-card-cta-9c7f0dbc {
    background-color: #00A680;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    text-align: center;
}

.tour-card-cta-9c7f0dbc:hover {
    background-color: #458C02;
    color: #FFFFFF;
}

.view-all-wrapper-9c7f0dbc {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.view-all-btn-9c7f0dbc {
    background-color: #00A680;
    color: #FFFFFF;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.view-all-btn-9c7f0dbc:hover {
    background-color: #458C02;
}

@keyframes tickerInfinite9c7f0dbc {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}
