.oc-button-wrap {
  display: flex;
  align-items: center;
}

.oc-button {
  display: inline-flex;
  overflow: hidden;
  transform-origin: left center;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #ffffff;
  border-radius: 999px;
  padding: 10px 24px;
  background-color: transparent;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: color 450ms ease-in-out, background-color 450ms ease-in-out, border-color 450ms ease-in-out;
}

.oc-button:hover,
.oc-button:focus-visible {
  text-decoration: none;
}

.oc-button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.oc-button__label {
  display: grid;
  overflow: hidden;
}

.oc-button__text {
  grid-column: 1;
  grid-row: 1;
  transition: translate 450ms cubic-bezier(0.34, 1.42, 0.64, 1);
}

.oc-button__text--hover {
  translate: 0 100%;
}

.oc-button:hover .oc-button__text:not(.oc-button__text--hover),
.oc-button:focus-visible .oc-button__text:not(.oc-button__text--hover) {
  translate: 0 -100%;
}

.oc-button:hover .oc-button__text--hover,
.oc-button:focus-visible .oc-button__text--hover {
  translate: 0 0;
}

.oc-button--store {
  align-items: center;
  overflow: visible;
  gap: 10px;
  border-color: #000000;
  padding: 8px 18px 8px 14px;
  background-color: #ffffff;
  color: #000000;
  line-height: 1;
  white-space: nowrap;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.oc-button--store:hover,
.oc-button--store:focus-visible {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}

.oc-button__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
}

.oc-button__icon i {
  display: block;
  font-size: 1em;
  line-height: 1;
  color: inherit;
}

.oc-button__icon svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.oc-button__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.oc-button__eyebrow {
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.oc-button__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

@media (prefers-reduced-motion: reduce) {
  .oc-button,
  .oc-button__text {
    transition: none;
  }

  .oc-button__text--hover {
    translate: none;
  }

  .oc-button:hover .oc-button__text:not(.oc-button__text--hover),
  .oc-button:focus-visible .oc-button__text:not(.oc-button__text--hover) {
    translate: none;
  }
}
