.gt-commerce-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  max-width: 36rem;
}

.gt-commerce-contact,
.gt-commerce-appointment {
  align-items: center;
  border: 1px solid #171717;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  min-height: 3rem;
  padding: .75rem 1.5rem;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}

.gt-commerce-contact {
  background: #171717;
  color: #fff;
}

.gt-commerce-appointment {
  background: #fff;
  color: #171717;
}

.gt-commerce-contact:hover,
.gt-commerce-appointment:hover {
  background: #087b48;
  border-color: #087b48;
  color: #fff;
}

