.acf-like-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .75rem;
  border-radius: .6rem;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  transition: transform .05s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.acf-like-btn:hover { transform: translateY(-1px); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.acf-like-btn:active { transform: translateY(0); box-shadow: none; }

.acf-like-btn .acf-like-icon { font-size: 1.05rem; }
.acf-like-btn .acf-like-count { font-variant-numeric: tabular-nums; }

.acf-like-btn.is-voted {
  background: #f0f7ff;
  border-color: #b3d4ff;
}
.acf-like-btn.is-voted .acf-like-icon { filter: saturate(1.2); }