/* Filtreleme Akordiyon Stili - Mobil Uyumlu */

.filter-toggle-container {
    width: 100%;
    margin-bottom: 15px;
    display: none; /* Varsayılan olarak gizli, mobil görünümde gösterilecek */
}

.filter-toggle-button {
    width: 100%;
    padding: 20px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.filter-toggle-button:hover {
    background: linear-gradient(135deg, #ffb900 0%, #e6a600 100%);
    color: #000;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.filter-toggle-button .toggle-icon {
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.filter-toggle-button.active .toggle-icon {
    transform: rotate(180deg);
}

/* Medya sorguları */
@media (max-width: 992px) {
    .filter-toggle-container {
        display: block;
    }
    
    .tour-filters {
        display: none; /* Mobilde varsayılan olarak gizli */
        animation: fadeIn 0.3s ease;
    }
    
    .tour-filters.active {
        display: flex; /* Javascript ile aktif edildiğinde görünür */
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* Filtre grupları için stil */
.filter-group {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.filter-group label {
    display: flex;
    align-items: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.filter-group label i {
    margin-right: 8px;
    color: #ffb900;
    font-size: 16px;
}

.filter-group select {
    width: 100%;
    padding: 12px 18px;
    font-family: 'Manrope', sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 14px;
    color: #444;
    background-color: #fff;
    transition: all 0.3s ease;
}

.filter-group select:focus {
    border-color: #ffb900;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 185, 0, 0.1);
}

.filter-group select option {
    font-family: 'Manrope', sans-serif;
    padding: 10px;
}

/* Filtre butonları için ortak stil */
.filter-button {
    background: linear-gradient(135deg, #fd0000 0%, #ff5c5c 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.filter-button:hover {
    background: linear-gradient(135deg, #e30000 0%, #e04c4c 100%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

/* Mobil düzende filtre gruplarını dikey göstermek için */
@media (max-width: 768px) {
    .tour-filters {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-button {
        width: 100%;
    }
}
