/* ==========================================
   LIKE REACTION - COMPLETE STYLES
   ========================================== */

.reaction-bar {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.8rem; color: var(--text-muted);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.reaction-count, .post-stats {
    color: var(--text);
}

.post-actions {
	flex: 1;
	display: flex;
}

.post-action-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 6px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--text-muted);
	border-radius: var(--radius-sm);
	transition: all 0.2s;
	font-family: 'Sora', sans-serif;
}

.reaction-wrapper {
    position: relative;
}

.reaction-box {
    display: none;
    position: absolute;
    bottom: 50px;
    left: 0;
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 0.75rem;
    padding: 8px 12px;
    z-index: 999;
    white-space: nowrap;
}

.reaction-box::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #1e1e1e;
}

.reaction-box span:hover {
	transform: scale(1.3) translateY(-8px);
}

.reaction-box span img {
    font-size: 26px;
    margin: 0 4px;
    cursor: pointer;
    transition: 0.2s;
}

.reaction-box span img:hover {
    transform: scale(1.4);
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.5));
}
