

.radio-container {
  display: flex;
  gap: 10px;
}

.radio-button {
  display: inline-block;
  position: relative;
  border: 2px solid #ccc;
  border-radius: 5px;
  padding: 8px 12px;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.radio-button input {
  display: none;
}

.radio-button span {
  display: inline-block;
  width: 100%; /* Ensures the span takes up the full button area */
  height: 100%;
}

input:checked + label {
  background-color: red; /* Red background for the entire button */
  color: #fff;
  border-color: red; /* Matches the border color */
}

.product__categories ul .active-filter{
  padding-left: 15px;
  padding-right: 15px;
  color: var(--boskery-white, #ffffff);
  background-color: #19a553;
}
#filter-button{
  display: none;
}
#close-filter{
  display:none;
}

@media only screen and (max-width:600px){
  .product__sidebar{
    position: fixed;
    top:0;
    left:0;
    z-index: 99;
    background-color: #fff;
    width: 100%;
    padding: 20px;
    transform: translateX(-100%);
    transition: all 0.25s ease-in;
  }
  .product__sidebar.is-showing{
    transform: translateX(0);
  }
  #filter-button{
    display: block;
    width: 100%;
  }
  #close-filter{
    display:inline-block;
  }
}
