body{
  background-color: var(--color-theme-secondary);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-group label {
  padding: 0.6rem;
  background: #fff;
  border-radius: 0.7rem;
  color:var(--color-theme-primary);
  transition: all 0.15s ease;
  font-size: 0.85rem;
  line-height: 1rem;
  cursor: pointer;
  border: 2px solid var(--color-theme-primary);
}
.btn-group label:hover{
    background-color: var(--color-theme-primary);
    color: #fff;
    transition: all 0.3s;
}
.btn-group input {
  display: none;
}

.btn-group label:has(*:checked) {
  background-color: var(--color-theme-primary);
  transform: scale(1.1, 1.1);
  color: #fff;
}

.group-product li.group-product_after::after {
  content: "_";
  display: inline-block;
  margin: 0 5px;
  vertical-align: middle;
}

.group-product li:last-child.group-product_after::after {
  display: none;
}

.dialog{
  opacity: 0;
  transform: translateY(-200%);
  transition: all 0.5s ease;
}
.dialog.show {
  opacity: 1;
  transform: translateY(20px);
  transition: all 0.5s ease;
}