.ocu-credits-chip {
  --ocu-credit-bg: rgba(69, 208, 189, 0.14);
  --ocu-credit-border: rgba(0, 133, 119, 0.18);
  --ocu-credit-text: #087d72;
  appearance: none;
  border: 1px solid var(--ocu-credit-border);
  background: var(--ocu-credit-bg);
  color: var(--ocu-credit-text);
  border-radius: 999px;
  height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: 700 14px/1 'Manrope', system-ui, sans-serif;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 133, 119, 0.08);
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.ocu-credits-chip:hover {
  transform: translateY(-1px);
  background: rgba(69, 208, 189, 0.22);
  border-color: rgba(0, 133, 119, 0.34);
  color: #06695f;
}

.ocu-credits-chip:focus-visible {
  outline: 3px solid rgba(69, 208, 189, 0.28);
  outline-offset: 2px;
}

.ocu-credits-chip svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.deck-toolbar .ocu-credits-chip {
  height: 34px;
  min-width: 96px;
  padding: 0 12px;
  font-size: 13px;
  box-shadow: none;
}

.hero-header-right .ocu-credits-chip {
  height: 38px;
}

@media (max-width: 760px) {
  .ocu-credits-chip {
    height: 36px;
    padding: 0 11px;
    font-size: 13px;
  }
  .ocu-credits-chip .ocu-credits-label {
    display: none;
  }
}
