/* =========================================
   VIEW ALL SHOWS PAGE
========================================= */

/* Page spacing */
.booking-section {
	padding: 10px 0 30px;
}

/* Title row */
.page-title-container {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 22px 0 26px;
}

.page-title {
	font-size: 28px;
	font-weight: 700;
	color: #111827;
	margin: 0;
	line-height: 1.2;
}

/* Back button */
.back-btn {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid #e5e7eb;
	background: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #111827;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.back-btn:hover {
	background: #198754;
	border-color: #198754;
	color: #ffffff;
	transform: translateX(-2px);
}

/* =========================================
   SHOW CARDS
========================================= */

.event-card-clickable {
	display: block;
	text-decoration: none;
	color: inherit;
	background: #ffffff;
	border-radius: 14px;
	overflow: hidden;
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease;
}

.event-card-clickable:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.show-img-box {
	width: 100%;
	height: 280px;
	overflow: hidden;
	border-radius: 14px 14px 0 0;
	background: #f3f4f6;
}

.show-img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.event-card-clickable:hover .show-img-box img {
	transform: scale(1.04);
}

.show-info {
	padding: 14px 12px 16px;
}

.show-type {
	font-size: 12px;
	color: #6b7280;
	margin-bottom: 6px;
	font-weight: 500;
}

.show-name {
	font-size: 16px;
	font-weight: 700;
	color: #111827;
	line-height: 1.35;
	margin-bottom: 6px;

	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.show-venue {
	font-size: 13px;
	color: #6b7280;
	margin-bottom: 10px;

	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.show-price {
	font-size: 15px;
	font-weight: 700;
	color: #111827;
}

/* =========================================
   EMPTY STATE
========================================= */

.booking-section .text-muted {
	font-size: 14px;
}

/* =========================================
   PAGINATION
========================================= */

.custom-pagination-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-top: 34px;
}

.custom-pagination-wrapper .pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
}

.custom-pagination-wrapper .pagination a,
.custom-pagination-wrapper .pagination span {
	min-width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 1px solid #e5e7eb;
	background: #ffffff;
	color: #374151;
	font-weight: 600;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.custom-pagination-wrapper .pagination a:hover {
	background: #f0fdf4;
	border-color: #198754;
	color: #198754;
	transform: translateY(-1px);
}

.custom-pagination-wrapper .pagination .active span,
.custom-pagination-wrapper .pagination .active a {
	background: #198754;
	border-color: #198754;
	color: #ffffff;
	box-shadow: 0 6px 16px rgba(25, 135, 84, 0.25);
}

.custom-pagination-wrapper .pagination .disabled span,
.custom-pagination-wrapper .pagination .disabled a {
	opacity: 0.5;
	pointer-events: none;
	background: #f9fafb;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {
	.page-title-container {
		margin: 16px 0 22px;
	}

	.page-title {
		font-size: 22px;
	}

	.back-btn {
		width: 38px;
		height: 38px;
	}

	.show-img-box {
		height: 210px;
	}

	.show-name {
		font-size: 14px;
	}

	.show-venue {
		font-size: 12px;
	}

	.show-price {
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.page-title {
		font-size: 20px;
	}

	.show-img-box {
		height: 180px;
	}

	.custom-pagination-wrapper .pagination {
		gap: 6px;
	}

	.custom-pagination-wrapper .pagination a,
	.custom-pagination-wrapper .pagination span {
		min-width: 38px;
		height: 38px;
		font-size: 13px;
		padding: 0 12px;
	}
}
