/* Popup overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

/* Popup content */
.popup-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 80%;
  z-index: 1001;
}

/* Category list */
.category-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.category-list li {
  text-align: left;
  margin: 5px 0;
}

.category-list a {
  color: #000000;
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: capitalize;
  text-decoration: none;
}

.category-list a:hover {
  color: #F54B4B;
}

.close-popup {
  background-color: #7E0001;
  color: #F5F7F4;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 10px 23px;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0px 1px 0px #131313;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.close-popup:hover {
  background-color: #F54B4B;
}