/* Filter Styles */
.vaqqy-tour-filters {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.filter-group {
    margin-bottom: 25px;
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.filter-group h3 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.1em;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.filter-field {
    margin: 10px 0;
}

.filter-field input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.filter-checkbox {
    display: block;
    margin: 5px 0;
}

.filter-submit {
    background: #3498db;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Results Styles */
.vaqqy-tour-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.tour-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tour-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-content {
    padding: 15px;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.tour-button {
    display: inline-block;
    padding: 8px 15px;
    background:#611015;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}


.tour-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.tour-count {
    font-size: 1.1em;
    font-weight: 600;
    color: #2c3e50;
}

.tour-sorting select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 14px;
}

.vaqqy-tour-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tour-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}


.home .vaqqy-tour-results {
   
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  
}


/* Add to assets/css/filters.css */
.loading {
    opacity: 0.5;
    position: relative;
}

.loading::after {
    content: "Loading...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}