/* Dawn: button / .button */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.5rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.15s;
}

.button:active {
  transform: scale(0.98);
}

.button--primary {
  background: var(--color-accent);
  color: #fff;
}

.button--primary:hover {
  opacity: 0.92;
  color: #fff;
}

.button--secondary {
  background: transparent;
  color: var(--color-base);
  border: 1px solid var(--color-border);
}

.button--secondary:hover {
  border-color: var(--color-base);
}

.button--small {
  min-height: 2.35rem;
  padding: 0 1.1rem;
  font-size: 0.8rem;
}

@media (max-width: 749px) {
  .product-card .button--small {
    width: 100%;
    max-width: 100%;
  }
}
