.searchMainList {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: #FDFEFE;
    border-radius: 30px;
    box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.15);
    position: relative;
    top: -60px;
    left: 90px;
    max-width: 1100px;
	 gap:20px;
}

.defaultSelect {
    border: 1px solid #6666664f;
    background: #EDEDED;
    border-radius: 20px;
    height: 50px;
    width: 100%;
    text-align: center;
    font-family: "Noto Serif TC";
    font-weight: 500;
    font-size: var(--regular-font-size);
}

.SearchBtn {
    border-radius: 20px;
    background: #6ABA01;
    border: 1px solid #6ABA01;
    color: #fff;
    height: 50px;
    padding: 10px 20px;
    display: block;
    width: 100%;
    cursor: pointer;
    font-size: var(--big-font-size);
}

.searchType {
	width:100%;
}

.tour-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tour-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tour-card-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.location-icon {
    width: 30px;
    min-height: 60px;
    background: #A1CFE8;
    /* background: linear-gradient(135deg, #7CB342 0%, #558B2F 100%); */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.tour-card-title {
    flex: 1;
    min-width: 0;
}

.tour-card-title h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 3px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tour-card-title h3 a {
    color: #333;
    text-decoration: none;
}

.tour-card-location {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.tour-card-location svg {
    width: 12px;
    height: 12px;
    fill: #666;
    margin-right: 4px;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-tag-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.tour-tag-label {
    background: #fff3e0;
    color: #f57c00;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.tour-tag-type {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.tour-card-content {
    padding: 15px 20px 20px;
}

.tour-card-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body .days-badge {
    position: relative;
    border: unset;
}

.days-badge {
    background: white;
    border: 2px solid #7CB342;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #7CB342;
    flex-shrink: 0;
}

body .days-badge:before {
    content: '';
    position: absolute;
    inset: -0.4em;
    border-radius: 50%;
    background: conic-gradient(from 128deg, currentColor 0deg 275deg, #6aba01 352deg 366deg);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 0.14em), #000 calc(100% - 0.12em));
    mask: radial-gradient(farthest-side, transparent calc(100% - 0.14em), #000 calc(100% - 0.12em));
}