    
.shop-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1001;
  padding: 20px;
  overflow-y: auto;
}

/* Sichtbar-Zustand */
.shop-sidebar.active {
  transform: translateX(0);
}

/* Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Button-Stil */
.filter-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.filter-btn:hover {
  background: #333;
}
.show-filter-link {
  font-size: 16px;
  color: #aaaa9d;
  text-decoration: none; /* Unterstrich standardmäßig aus */
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.show-filter-link i {
  font-size: 18px;
  margin-right: 8px; /* Abstand zwischen Icon und Text */
}

/* Hover: kein Unterstrich */
.show-filter-link:hover {
  color: #666;       /* optional, Farbe ändern */
  text-decoration: none; /* Unterstrich deaktiviert */
}

/* Checkbox-Optik für aktive Filter */
.product-cb {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #aaa;
  border-radius: 3px;
  margin-right: 8px;
  vertical-align: middle;
  transition: all 0.3s ease;
}

.shop-filter a.active .product-cb {
  background-color: #aaaa9d; /* deine Akzentfarbe */
  border-color: #aaaa9d;
}

.shop-filter a.active {
  color: #aaaa9d;
  font-weight: 600;
}
.hidden-slide {
  visibility: hidden;
  position: absolute;
  height: 0;
  width: 0;
  overflow: hidden;
}


