.web-product-channel-selector {
  --web-product-channel-border-color: #A6C9EC;
  --web-product-channel-bg: #FFFFFF;
  --web-product-channel-active-bg: #DAE9F8;
  --web-product-channel-text-color: #1F2937;
  --web-product-channel-active-text-color: #215C98;

  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  box-sizing: border-box;
}

.web-product-channel-selector__button {
  min-width: 0;
  height: 34px;
  border: 1px solid var(--web-product-channel-border-color);
  background: var(--web-product-channel-bg);
  color: var(--web-product-channel-text-color);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.1;
  cursor: pointer;
  box-sizing: border-box;
}

.web-product-channel-selector__button.is-active {
  background: var(--web-product-channel-active-bg);
  color: var(--web-product-channel-active-text-color);
}

.web-product-channel-selector__button:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--web-product-channel-border-color);
}
