.tour-description {
    font-size: 14px;
    color: #555;
    min-height: 65px;
    /* igual altura para todos */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* máximo 3 líneas visibles */
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
}

.tour-box_img {
    height: 40%;
}

.tour-info {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: #666;
}

.tour-info li {
    margin-bottom: 4px;
}

.tour-info i {
    color: #f39c12;
    margin-right: 5px;
}

/* DISEÑO DE FILTROS LIMPIO (ESTILO IMAGEN) */
.filter-section-wrapper {
    padding: 40px 0;
    background-color: #fff;
}

.filter-select-custom {
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 12px 15px;
    font-weight: 700;
    font-size: 14px;
    color: #000;
    width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='currentColor' class='bi bi-caret-down-fill' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.date-btn-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.date-btn-item {
    border: 1px solid #e0e0e0;
    background: #fff;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-btn-item:hover,
.date-btn-item.active {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.reset-filters-link {
    color: #888;
    text-decoration: underline;
    font-size: 13px;
    cursor: pointer;
    font-weight: 500;
}

.tour-box_img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}