.favorites-section {
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: all 0.3s ease;
}	

.favorites-section::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 4px;
	background: var(--gradient-primary);
	z-index: 1;
}

.empty-favorites {
	text-align: center;
	padding: 2rem;
	color: var(--muted);
	font-style: italic;
}

body.dark-mode .favorites-section {
	background: #1a243d;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

body.dark-mode .empty-favorites {
	color: var(--muted);
}

/* زر العودة من قسم المفضلة */
.back-btn {
	margin-bottom: 1rem;
	padding: 0.5rem 1rem;
	background: var(--secondary);
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.back-btn:hover {
	background: var(--primary);
}
