/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');

/* Base Styles */
body {
	font-family: 'Cairo', sans-serif;
}

/* Book Pattern Background */
.book-pattern {
	background-image:
		repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(159, 23, 247, 0.03) 10px, rgba(159, 23, 247, 0.03) 20px);
}

/* Book Card Hover Effects */
.book-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(159, 23, 247, 0.3);
}

/* Custom Scrollbar */
.scroll-container {
	scrollbar-width: thin;
	scrollbar-color: #9f17f7 #1f2937;
}

.scroll-container::-webkit-scrollbar {
	height: 8px;
}

.scroll-container::-webkit-scrollbar-track {
	background: #1f2937;
	border-radius: 4px;
}

.scroll-container::-webkit-scrollbar-thumb {
	background: #9f17f7;
	border-radius: 4px;
}

/* Star Rating */
.star-rating {
	cursor: pointer;
	transition: transform 0.2s;
}

.star-rating:hover {
	transform: scale(1.2);
}

