.mk-commerce-bridge {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.mk-commerce-bridge a {
  box-sizing: border-box;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid #2f1759;
  color: #2f1759;
  font-family: "Josefin Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 240ms ease, color 240ms ease, border-color 240ms ease;
}

.mk-commerce-bridge .mk-commerce-primary,
.mk-commerce-bridge a:hover,
.mk-commerce-bridge a:focus-visible {
  background: #2f1759;
  color: #fff;
}

.mk-commerce-bridge .mk-commerce-primary:hover,
.mk-commerce-bridge .mk-commerce-primary:focus-visible {
  background: #181019;
  border-color: #181019;
}

@media (max-width: 479px) {
  .mk-commerce-bridge {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mk-commerce-bridge a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mk-commerce-bridge a {
    transition: none;
  }
}
