.profile-like-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.profile-like-btn:hover {
  transform: scale(1.06);
}

.profile-like-btn[hidden] {
  display: none !important;
}

.profile-like-btn--stat[hidden] + .profile-ig-stat-num {
  margin: 0;
}

.profile-like-btn--compact {
  width: 30px;
  height: 30px;
}

.profile-like-btn--compact .profile-like-heart {
  width: 20px;
  height: 20px;
}

.profile-like-heart {
  width: 26px;
  height: 26px;
  fill: transparent;
  stroke: var(--text-muted);
  stroke-width: 1.75;
  transition: fill 0.25s ease, stroke 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.profile-like-btn[aria-pressed="true"] .profile-like-heart,
.profile-like-btn--liked .profile-like-heart {
  fill: #e74c6f;
  stroke: #e74c6f;
}

.profile-like-btn.profile-like-btn--pop .profile-like-heart {
  animation: profile-like-pop 0.38s ease;
}

@keyframes profile-like-pop {
  0% { transform: scale(1); }
  35% { transform: scale(1.32); }
  65% { transform: scale(0.92); }
  100% { transform: scale(1); }
}

.friends-card-like-wrap,
.rating-like-cell {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.questionnaires-reel-like-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
}

.questionnaires-reel-like-count {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}
