/* ============================================================
   LIKES — heart button + count inside each reel post footer
   Fully separated from core feed styles.
   ============================================================ */

.likes-wrap {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  margin-bottom: 2px;
}

.likes-heart-btn {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #8e8e93;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.15s ease;
  flex-shrink: 0;
}

.likes-heart-btn:hover,
.likes-heart-btn:active {
  background: rgba(255, 255, 255, 0.07);
}

.likes-heart-btn.liked {
  color: #ff3b30;
}

.likes-heart-btn svg {
  width: 22px;
  height: 22px;
  pointer-events: none;
  display: block;
}

.likes-count {
  font-size: 13px;
  font-weight: 600;
  color: #c7c7cc;
  min-width: 14px;
  line-height: 1;
}

/* Pop animation on like */
@keyframes like-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.45); }
  70%  { transform: scale(0.90); }
  100% { transform: scale(1); }
}

.likes-heart-btn.like-pop {
  animation: like-pop 0.30s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
