.tours-toolbar {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.5rem;
}

.tour-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.tour-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #f1f3f5;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.04);
}

.tour-duration-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.94);
    color: #212529;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

.tour-content {
    padding: 1.5rem;
}

.tour-meta {
    color: #6c757d;
    font-size: 0.875rem;
}

.tour-title {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 0.9rem;
}

.tour-title a {
    color: inherit;
    text-decoration: none;
}

.tour-teaser {
    color: #5f6368;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.tour-price {
    font-size: 1.1rem;
    font-weight: 700;
}

