
/* Filter Bar */
.filter-bar {
    background-color: #fff;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 5px;
    /*box-shadow: 2px 2px 5px rgba(0,0,0,0.1);*/
    border: 2px solid #b8b8b8 !important;
}

.filter-bar .filter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-group {
    display: flex;
    gap: 15px;
}

.filter-item {
    position: relative;
}

.filter-item select, 
.filter-item input {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #f9f9f9;
    min-width: 150px;
    cursor: pointer;
}

.filter-item select:focus, 
.filter-item input:focus {
    outline: none;
    border-color: #666;
}

.search-box {
    position: relative;
}

.search-box input {
    padding-right: 40px;
    width: 250px;
}

.search-box::after {
    content: "\f002";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 17px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.filter-buttons {
    display: flex;
    gap: 10px;
}

.filter-button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-button.primary {
    background-color: #333;
    color: white;
}

.filter-button.secondary {
    background-color: #f1f1f1;
    color: #333;
}

.filter-button:hover {
    opacity: 0.9;
}

.mobile-filter-toggle {
    display: none;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: #333;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: white;
    z-index: 1000;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    transition: left 0.3s ease;
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.sidebar .filter-item {
    margin-bottom: 15px;
    width: 100%;
}

.sidebar select, 
.sidebar input {
    width: 100%;
}

.sidebar-title {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .filter-group {
        gap: 10px;
    }
    
    .filter-item select, 
    .filter-item input {
        min-width: 120px;
    }
    
    .search-box input {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .filter-bar .filter-content {
        justify-content: flex-end;
    }
    
    .filter-group {
        display: none;
    }
    
    .filter-buttons {
        display: none;
    }
    
    .mobile-filter-toggle {
        display: flex;
    }
}

#menusize{
    font-size: 15px !important;
}

.fixed-button {
  position: fixed;
  bottom: 20px;
  padding: 15px 20px;
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.whatsapp-button {
  right: 20px;
  background-color: #25d366;
}

.telefon-button {
  left: 20px;
  background-color: #000f6e;
}

.telegram-button {
  right: 20px;
  bottom: 90px;
  background-color: #2579d3;
}
