.product-card {
  display: flex;
  flex-direction: column;
}

.product-card-main {
  display: block;
  flex: 1;
}

.product-card .card-body {
  padding-bottom: 18px;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 24px;
  padding: 16px 0 22px;
  border-top: 1px solid var(--line);
}

.machine-link {
  color: #ea580c;
  font-weight: 850;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: #fff;
  background: #16a34a;
  border-radius: 4px;
  font-size: .86rem;
  font-weight: 850;
  white-space: nowrap;
  transition: background .2s, transform .2s;
}

.whatsapp-link:hover {
  background: #12823c;
  transform: translateY(-2px);
}

.whatsapp-link:focus-visible {
  outline: 3px solid #86efac;
  outline-offset: 3px;
}

@media (max-width: 380px) {
  .card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .whatsapp-link {
    width: 100%;
  }
}
