
  .welo-review-btn {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;

    background: #1B1B1B;
    color: #fff;
    border: 1px solid #1B1B1B;
    border-radius: 999px;

    text-decoration: none;
    font-weight: 600;

    font-size: 12px;   /* testo 12px */
    line-height: 13px; /* altezza max 13px */
    padding: 6px 10px;

    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    -webkit-font-smoothing: antialiased;
  }

  .welo-review-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }

  .welo-review-btn:active {
    opacity: 0.85;
    transform: translateY(0);
  }
