/* <!-- popup at button (ყველა კატეგორია)

this is css for html popup thath is in 
371-383 lines in index.html --> */

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

.popup-overlay.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Popup container */
.popup-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Close button */
.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  border: none;
  background: none;
  color: #666;
}

.close-popup:hover {
  color: #000;
}
/* <!-- popup at button (ყველა კატეგორია) --> */





/* Filter popup specific styles */
.filter-popup {
  max-width: 400px;
}

.filter-section {
  margin-bottom: 20px;
}

.filter-section label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.price-range {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 8px;
  cursor: pointer;
}

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

.filter-buttons button {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.btn-reset {
  background: #f5f5f5;
  color: #333;
}

.btn-reset:hover {
  background: #e0e0e0;
}

.btn-apply {
  background: #007bff;
  color: white;
}

.btn-apply:hover {
  background: #0056b3;
}