/* Customer Segment Toggle - minimal styles */
.cst-toggle-wrap {
  display: inline-flex;
  gap: 4px;
  background: var(--cst-bg, #f1f1f1);
  padding: 4px;
  border-radius: 999px;
  align-items: center;
}

.cst-toggle-btn {
  border: 0;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: .5em;
}

.cst-toggle-btn[aria-pressed="true"] {
  background: var(--cst-active, #111);
  color: var(--cst-active-text, #fff);
}

/* Example utility classes you can use in your theme/CSS
   The following are active to support instant switching without reload.
*/

/* Hide/show utilities for segment-specific blocks */
.mode-private .only-business { display: none !important; }
.mode-business .only-private { display: none !important; }
