@charset "UTF-8";

/* Shop Page */
.shop-page { margin: 10px 0 40px; padding: 20px; background-color: #4b5e6e; color: #01D9FF; }

/* Shop Header */
.shop-header { text-align: center; margin-bottom: 30px; }
.shop-title {
	font-size: 36px;
	margin-bottom: 20px;
	text-shadow: 0 0 5px #3ac8f2;
}
.search-filter {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 20px;
}
.search-btn:hover { background-color: #3ac8f2; }
.filters { display: flex; gap: 10px; }
.filter-dropdown {
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #01D9FF;
	background-color: transparent;
	color: #01D9FF;
	cursor: pointer;
}
/* Book List */
.book-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	padding: 20px 0;
}
.book-item {
	background-color: #2c3e50;
	padding: 15px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.book-item img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	margin-bottom: 15px;
}
.book-item h3 { font-size: 18px; margin-bottom: 10px; }
.book-item p { margin: 5px 0; }
.book-item .rating {
	display: flex;
	justify-content: center;
	gap: 5px;
	margin: 10px 0;
}
.book-item .rating img { width: 16px; height: 16px; }
.book-item .price { font-size: 16px; color: #01D9FF; margin: 10px 0; }
.book-item button {
	padding: 10px 15px;
	font-size: 14px;
	background-color: #01D9FF;
	color: #2c3e50;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.book-item button:hover { background-color: #3ac8f2; }
/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}
.pagination-btn {
	padding: 10px 15px;
	border: 1px solid #01D9FF;
	background-color: transparent;
	color: #01D9FF;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
}
.pagination-btn:hover { background-color: #01D9FF; color: #2c3e50; }

/* Book List */
.book-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	padding: 20px 200px;
}
.book-item {
	background-color: #2c3e50;
	padding: 10px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.book-item img {
	width: 100%;
	height: 55%;
	border-radius: 10px;
	margin-bottom: 15px;
}
.book-item h3 { font-size: 20px; margin-bottom: 10px; color: aqua; }
.book-item p { margin: 5px 0; color: #01D9FF; }
.book-item .rating { color: aquamarine; font-size: 20px; }
.book-item .price { font-size: 16px; color: #01D9FF; margin: 10px 0; }
.book-item button {
	padding: 10px 15px;
	font-size: 14px;
	background-color: #01D9FF;
	color: #2c3e50;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.book-item button:hover { background-color: #3ac8f2; }

@media (max-width: 1024px) {
	.book-list { gap: 18px; padding: 20px 100px; }
}
@media (max-width: 768px) {
	.shop-page {margin-top: 100px 0 20px;}
	.book-list { gap: 16px; padding: 20px 60px; }
	.book-item h3 { font-size: 16px;}
	.book-item .rating { font-size: 16px; }
	.book-item .price { font-size: 12px; }
}
@media (max-width: 630px) {
	.book-list { gap: 10px; padding: 20px 30px; }
}
@media (max-width: 530px) {
	.book-list { padding: 10px; }
}
@media (max-width: 480px) {
}
