/* ================================
   FORM FILTER SIGHTSEEING
================================ */
#indo-sightseeing-filter-form {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    border: 1px solid #e5e5e5;
    margin-bottom: 25px;
}

#indo-sightseeing-filter-form .sightseeing-custom-filter {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
}

#indo-sightseeing-filter-form .sightseeing-custom-filter label {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
}

#indo-sightseeing-filter-form select,
#indo-sightseeing-filter-form input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

#indo-sightseeing-filter-form .sightseeing-button {
    padding: 10px 25px;
    background: #86A5FF;
    border: none;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    height: fit-content;
}
#indo-sightseeing-filter-form .sightseeing-button:hover {
    background: #86A5FF;
}

/* ================================
   LIST CONTAINER
================================ */
#indo-sightseeing-filter-form .indo-sightseeing-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
}

/* ================================
   SIGHTSEEING CARD
================================ */
#indo-sightseeing-filter-form .indo-sightseeing-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: 0.25s ease;
    display: flex;
    flex-direction: column;
}

#indo-sightseeing-filter-form .indo-sightseeing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* IMAGE */
#indo-sightseeing-filter-form .sightseeing-thumb img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

/* CONTENT */
#indo-sightseeing-filter-form .sightseeing-content {
    padding: 15px 18px 20px;
}

#indo-sightseeing-filter-form .sightseeing-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
}

#indo-sightseeing-filter-form .sightseeing-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

/* PRICE TABLE INSIDE CARD */
#indo-sightseeing-filter-form .sightseeing-price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

#indo-sightseeing-filter-form .sightseeing-price-table th,
#indo-sightseeing-filter-form .sightseeing-price-table td {
    text-align: left;
    padding: 6px 0;
    border-bottom: 1px solid #f1f1f1;
}

#indo-sightseeing-filter-form .sightseeing-price-table th {
    font-weight: 600;
    color: #444;
}

#indo-sightseeing-filter-form .sightseeing-price-table td {
    font-size: 14px;
}

/* ACTION BUTTON */
#indo-sightseeing-filter-form .sightseeing-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 18px;
    background: #86A5FF;
    color: #fff !important;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: 0.2s ease;
}
#indo-sightseeing-filter-form .sightseeing-btn:hover {
    background: #86A5FF;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
    #indo-sightseeing-filter-form {
        flex-direction: column;
    }

    .sightseeing-custom-filter {
        width: 100%;
    }
}
