.dc-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.dc-btn--primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 4px 15px rgba(179, 35, 35, 0.3);
}

.dc-btn--primary:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179, 35, 35, 0.4);
}

.dc-btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.dc-btn--whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.dc-btn--ghost {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--border-light);
}

.dc-btn--ghost:hover {
  background: var(--bg-light);
  border-color: var(--text-light);
}

.dc-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  .dc-actions {
    flex-direction: column;
  }
}