.wcps-download-button {
    display: inline-block;
    padding: 0.75em 1.5em;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background: #000000; /* noir uni */
    border: none;
    border-radius: 0.5em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease,
    color 0.3s ease; /* ajoutez color dans la transition */
}

.wcps-download-button:hover,
.wcps-download-button:focus {
  background: #222222;       /* gris très sombre */
  color: #cccccc;            /* texte gris clair */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
  outline: none;
}
  
  .wcps-download-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.4);
  }
  
  @media (max-width: 600px) {
    .wcps-download-button {
      display: block;
      width: 100%;
      padding: 1em 0;
    }
  }
  