#carrot-apf-products .products{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px 45px;
    list-style: none;
    padding-left: 0;
    overflow-x: auto;
}
#carrot-apf-form{
  overflow-x: auto;
}
#carrot-apf-products .products .product{
  min-width: 222px;
}
#carrot-apf-products .add_to_cart_button{
    display: none;
}
/* Hide checkboxes */
.carrot-apf-block input[type="checkbox"] {
  display: none;
}
#carrot-apf-form{
  margin: 40px 0;
}
/* Style labels as pills */
.carrot-apf-block label {
  display: inline-block;
  cursor: pointer;
  padding: 1em;

  background: var(--color-secondary);
  transition: background-color 0.3s ease, color 0.3s ease;

  font-family: 'Roc Grotesk Wide', "Adjusted Verdana Fallback";
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.14em;
}
/* Hover state */
.carrot-apf-block label:hover {
  background-color: color-mix(in srgb, var(--color-secondary), black var(--state-hover-opacity));
}

/* Selected state */
label:has(input[type="checkbox"]:checked) {
  background-color: color-mix(in srgb, var(--color-secondary), black var(--state-pressed-opacity));
  font-weight: 500;
}
.carrot-apf-see-all{
    margin-top: 80px;
    margin-bottom: 64px;
}