/* Card base */
.tour-card {
    display: flex;
    flex-direction: column;
    background-color: var(--light-00);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    max-width: 360px;
    width: 100%;
}

/* Header imagen */
.tour-card-header {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Body */
.tour-card-body {
    flex: 1;
}

/* Tags */
.tour-tags-row {
    position: absolute;
    top: 16px;
    left: 16px;
}

.tour-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 9999px;
    font-family: 'Work Sans';
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.tour-tag-green {
    background-color: #39b86b;
}

.tour-tag-orange {
    background-color: #ff8b5b;
}

.tour-tag-soft {
    background-color: #ffd9aa;
    color: #8b4a16;
}

/* Pills (duración / grupo) */
.tour-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 9999px;
    border: 1px solid var(--light-20);
    background-color: var(--light-00);
    white-space: nowrap;
}

.tour-pill-icon {
    font-size: 14px;
}

/* Precios */
.tour-price-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Work Sans';
}

.tour-price-currency {
    font-size: 14px;
    font-weight: 600;
}

.tour-price-amount {
    font-size: 24px;
    font-weight: 600;
}

.tour-price-main-sale .tour-price-amount {
    color: #e4553f;
}

.tour-price-old {
    font-size: 14px;
    color: var(--dark-30);
    text-decoration: line-through;
    margin-left: 8px;
}

/* Botones derecha */
.tour-icon-button {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    border: 1px solid var(--blue-80);
    background-color: var(--light-00);
    color: var(--blue-80);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tour-cta-button {
    border-radius: 9999px;
    border: none;
    padding: 10px 20px;
    background-color: #e86a46;
    color: var(--light-00);
    font-family: 'Work Sans';
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

/* Responsive suave */
@media screen and (max-width: 964px) {
    .tour-card {
        max-width: 100%;
    }
}
