/* ==========================================================================
 * shows.css — Trang listing show diễn kiểu vegas.com/shows (v1)
 * Dùng cho template "Shows Listing" (page-shows.php) trong child theme GeneratePress.
 * Mọi class đều tiền tố .vs- để tránh đụng với theme/plugin khác.
 * ========================================================================== */

/* --- Design tokens --------------------------------------------------------- */
.vs-shows {
	--vs-ink:      #1a1f27;   /* chữ chính        */
	--vs-ink-soft: #5b6472;   /* chữ phụ          */
	--vs-line:     #e3e7ec;   /* viền nhạt        */
	--vs-bg:       #ffffff;   /* nền card         */
	--vs-bg-soft:  #f5f7fa;   /* nền vùng phụ     */
	--vs-brand:    #c8102e;   /* đỏ Vegas         */
	--vs-brand-dk: #a20d25;
	--vs-accent:   #0a6b5f;   /* xanh giá / rating*/
	--vs-gold:     #b8860b;
	--vs-radius:   12px;
	--vs-radius-sm: 8px;
	--vs-shadow:   0 1px 3px rgba(16, 24, 40, .08), 0 1px 2px rgba(16, 24, 40, .04);
	--vs-shadow-lg: 0 10px 30px rgba(16, 24, 40, .12);

	color: var(--vs-ink);
	-webkit-font-smoothing: antialiased;
}

/* Cho phép full-width khi theme set "Content — Full Width" */
.vs-content-area { max-width: none; }

.vs-container {
	max-width: 1200px;
	margin-inline: auto;
	padding: 24px 20px 64px;
}

.vs-shows *,
.vs-shows *::before,
.vs-shows *::after { box-sizing: border-box; }

.vs-shows a { color: inherit; text-decoration: none; }
.vs-shows a:hover { text-decoration: underline; }

.vs-ico { font-style: normal; line-height: 1; }

/* --- 1. Thanh tìm kiếm ----------------------------------------------------- */
.vs-searchbar {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 12px;
	padding: 16px;
	background: var(--vs-bg-soft);
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius);
}

.vs-field { display: flex; flex-direction: column; gap: 6px; flex: 1 1 200px; }

.vs-field label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: var(--vs-ink-soft);
}

.vs-field input,
.vs-field select {
	width: 100%;
	height: 46px;
	padding: 0 14px;
	font-size: 15px;
	color: var(--vs-ink);
	background: var(--vs-bg);
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius-sm);
	appearance: none;
}

.vs-field--select { position: relative; }
.vs-field--select::after {
	content: "\25BE";
	position: absolute;
	right: 14px;
	bottom: 14px;
	font-size: 12px;
	color: var(--vs-ink-soft);
	pointer-events: none;
}

.vs-btn-search {
	height: 46px;
	padding: 0 24px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	background: var(--vs-brand);
	border: 0;
	border-radius: var(--vs-radius-sm);
	cursor: pointer;
	transition: background .15s ease;
	flex: 0 0 auto;
}
.vs-btn-search:hover { background: var(--vs-brand-dk); }

/* --- 2. Intro -------------------------------------------------------------- */
.vs-intro { margin: 32px 0 20px; }

.vs-intro__title {
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.15;
	font-weight: 800;
	margin: 0 0 12px;
}

.vs-intro__body {
	color: var(--vs-ink-soft);
	font-size: 15px;
	line-height: 1.6;
	max-width: 80ch;
}
.vs-intro__body p { margin: 0; }

.vs-intro__body[data-collapsed="true"] {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.vs-showmore {
	margin-top: 8px;
	padding: 0;
	background: none;
	border: 0;
	color: var(--vs-brand);
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.vs-showmore:hover { text-decoration: underline; }
.vs-chev { transition: transform .2s ease; }
.vs-showmore[aria-expanded="true"] .vs-chev { transform: rotate(180deg); }

/* --- 3. Thanh ngày --------------------------------------------------------- */
.vs-datebar {
	display: flex;
	align-items: stretch;
	gap: 8px;
	margin: 20px 0 28px;
}

.vs-datebar__nav {
	flex: 0 0 auto;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--vs-bg);
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius-sm);
	font-size: 20px;
	color: var(--vs-ink-soft);
	cursor: pointer;
	transition: background .15s, color .15s;
}
.vs-datebar__nav:hover { background: var(--vs-bg-soft); color: var(--vs-ink); text-decoration: none; }

.vs-datebar__track {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 8px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: thin;
}
.vs-datebar__track::-webkit-scrollbar { height: 6px; }
.vs-datebar__track::-webkit-scrollbar-thumb { background: var(--vs-line); border-radius: 3px; }

.vs-day {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	min-width: 68px;
	padding: 10px 6px;
	background: var(--vs-bg);
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius-sm);
	transition: border-color .15s, background .15s;
}
.vs-day:hover { border-color: var(--vs-brand); text-decoration: none; }
.vs-day.is-active {
	background: var(--vs-brand);
	border-color: var(--vs-brand);
	color: #fff;
}
.vs-day__mon { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; opacity: .8; }
.vs-day__num { font-size: 20px; font-weight: 800; }
.vs-day__wd  { font-size: 12px; opacity: .8; }

/* --- 4. Layout hai cột ----------------------------------------------------- */
.vs-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 32px;
	align-items: start;
}

/* Nút mở filter (mobile) — ẩn ở desktop */
.vs-filter-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	width: 100%;
	height: 48px;
	margin-bottom: 16px;
	font-size: 15px;
	font-weight: 700;
	color: var(--vs-ink);
	background: var(--vs-bg);
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius-sm);
	cursor: pointer;
	justify-content: center;
}

/* --- Sidebar filter -------------------------------------------------------- */
.vs-filters {
	position: sticky;
	top: 24px;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.vs-filters__h {
	font-size: 15px;
	font-weight: 800;
	margin: 0 0 10px;
}
.vs-filters__h--main {
	padding-top: 18px;
	border-top: 1px solid var(--vs-line);
}

.vs-searchname__field { position: relative; }
.vs-searchname__field input {
	width: 100%;
	height: 44px;
	padding: 0 40px 0 14px;
	font-size: 14px;
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius-sm);
	background: var(--vs-bg);
}
.vs-searchname__field .vs-ico {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--vs-ink-soft);
}

.vs-fset {
	border: 0;
	margin: 0;
	padding: 0;
}
.vs-fset legend {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .03em;
	color: var(--vs-ink-soft);
	margin-bottom: 10px;
	padding: 0;
}

.vs-check {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	padding: 5px 0;
	cursor: pointer;
	color: var(--vs-ink);
}
.vs-check input { width: 16px; height: 16px; accent-color: var(--vs-brand); flex: 0 0 auto; }
.vs-count { color: var(--vs-ink-soft); font-size: 13px; margin-left: auto; }

/* Genre list dài → cho cuộn */
.vs-fset:last-child { max-height: 320px; overflow-y: auto; padding-right: 4px; }

.vs-price { display: flex; flex-direction: column; gap: 10px; }
.vs-price__val { font-weight: 700; font-size: 14px; }
.vs-price__range { width: 100%; accent-color: var(--vs-brand); }

/* Nút Apply / Clear của form filter */
.vs-filters__actions { display: flex; align-items: center; gap: 12px; padding-top: 4px; }
.vs-btn-apply {
	flex: 1 1 auto;
	height: 44px;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	background: var(--vs-brand);
	border: 0;
	border-radius: var(--vs-radius-sm);
	cursor: pointer;
	transition: background .15s ease;
}
.vs-btn-apply:hover { background: var(--vs-brand-dk); }
.vs-filters__reset { font-size: 13px; font-weight: 600; color: var(--vs-ink-soft); text-decoration: underline; flex: 0 0 auto; }

/* Nút "All Dates" trên thanh ngày */
.vs-day--all .vs-day__num { font-size: 12px; }
.vs-results__on { color: var(--vs-brand); }
.vs-sort select[disabled] { opacity: .5; cursor: not-allowed; }

/* --- Kết quả --------------------------------------------------------------- */
.vs-results__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
	flex-wrap: wrap;
}
.vs-results__count { font-size: 18px; font-weight: 800; margin: 0; }
.vs-sort {
	font-size: 14px;
	color: var(--vs-ink-soft);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.vs-sort select {
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius-sm);
	font-size: 14px;
	background: var(--vs-bg);
	color: var(--vs-ink);
}

.vs-cardlist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }

.vs-empty { padding: 40px 20px; text-align: center; color: var(--vs-ink-soft); font-size: 15px; border: 1px dashed var(--vs-line); border-radius: var(--vs-radius); }

/* Phân trang (paginate_links type=list → ul.page-numbers) */
.vs-pagination { margin-top: 28px; }
.vs-pagination ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; justify-content: center; }
.vs-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding: 0 12px;
	border: 1px solid var(--vs-line); border-radius: var(--vs-radius-sm);
	font-weight: 700; font-size: 14px; color: var(--vs-ink); background: var(--vs-bg);
	text-decoration: none;
}
.vs-pagination .page-numbers:hover { background: var(--vs-bg-soft); }
.vs-pagination .page-numbers.current { background: var(--vs-brand); border-color: var(--vs-brand); color: #fff; }
.vs-pagination .page-numbers.dots { border-color: transparent; background: transparent; }

/* --- Card show ------------------------------------------------------------- */
.vs-card {
	display: grid;
	grid-template-columns: 200px 1fr 220px;
	gap: 20px;
	padding: 16px;
	background: var(--vs-bg);
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius);
	box-shadow: var(--vs-shadow);
	transition: box-shadow .18s ease, transform .18s ease;
}
.vs-card:hover { box-shadow: var(--vs-shadow-lg); transform: translateY(-2px); }

.vs-card__media {
	display: block;
	border-radius: var(--vs-radius-sm);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--vs-bg-soft);
}
.vs-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.vs-card__body { min-width: 0; }
.vs-card__title { font-size: 20px; font-weight: 800; margin: 0 0 8px; line-height: 1.2; }
.vs-card__title a:hover { color: var(--vs-brand); }

.vs-card__body p {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 4px 0;
	font-size: 14px;
	color: var(--vs-ink-soft);
}
.vs-card__body .vs-ico { flex: 0 0 auto; opacity: .85; }

.vs-card__looking { color: var(--vs-brand) !important; font-weight: 600; }
.vs-card__booked  { color: var(--vs-gold) !important; font-weight: 600; }

.vs-card__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.vs-badge {
	display: inline-block;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 700;
	color: var(--vs-accent);
	background: rgba(10, 107, 95, .1);
	border-radius: 999px;
}
.vs-badge--sm { padding: 2px 8px; font-size: 11px; }

/* Cột phải: rating + perks + giá */
.vs-card__side {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-left: 20px;
	border-left: 1px solid var(--vs-line);
}

.vs-card__rating { display: flex; align-items: center; gap: 8px; }
.vs-rating__label { font-size: 13px; font-weight: 700; }
.vs-rating__score {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 28px;
	padding: 0 8px;
	font-size: 14px;
	font-weight: 800;
	color: #fff;
	background: var(--vs-accent);
	border-radius: 6px;
}
.vs-card__reviews { margin: 0; font-size: 13px; }
.vs-card__reviews a { color: var(--vs-ink-soft); text-decoration: underline; }

.vs-card__perks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.vs-card__perks li { font-size: 13px; color: var(--vs-ink-soft); display: flex; align-items: center; gap: 6px; }
.vs-tick { color: var(--vs-accent); font-weight: 800; }

.vs-card__price { margin-top: auto; text-align: right; }
.vs-price__from { display: block; font-size: 12px; color: var(--vs-ink-soft); }
.vs-price__num { display: block; font-size: 28px; font-weight: 800; color: var(--vs-ink); line-height: 1; }
.vs-price__fee { display: block; font-size: 11px; color: var(--vs-ink-soft); }

/* --- Carousel Headliners --------------------------------------------------- */
.vs-headliners-wrap { list-style: none; }
.vs-headliners {
	padding: 20px;
	background: var(--vs-bg-soft);
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius);
}
.vs-headliners__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.vs-headliners__head h2 { font-size: 20px; font-weight: 800; margin: 0; }
.vs-headliners__nav { display: flex; gap: 8px; }
.vs-headliners__nav button {
	width: 36px; height: 36px;
	border: 1px solid var(--vs-line);
	background: var(--vs-bg);
	border-radius: 50%;
	font-size: 18px;
	color: var(--vs-ink-soft);
	cursor: pointer;
}
.vs-headliners__nav button:hover { background: var(--vs-line); }

.vs-headliners__track {
	list-style: none;
	margin: 0;
	padding: 0 0 6px;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(220px, 1fr);
	gap: 16px;
	overflow-x: auto;
	scroll-behavior: smooth;
}

.vs-headliner { background: var(--vs-bg); border: 1px solid var(--vs-line); border-radius: var(--vs-radius-sm); overflow: hidden; }
.vs-headliner__media { display: block; aspect-ratio: 16 / 10; background: var(--vs-line); }
.vs-headliner__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vs-headliner__title { font-size: 15px; font-weight: 700; margin: 10px 12px 4px; line-height: 1.25; }
.vs-headliner__date { font-size: 13px; margin: 0 12px 4px; color: var(--vs-ink-soft); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.vs-headliner__venue { font-size: 12px; margin: 0 12px 4px; color: var(--vs-ink-soft); }
.vs-headliner__price { font-size: 14px; margin: 6px 12px 12px; }
.vs-headliner__price strong { font-size: 16px; }

/* --- Responsive ------------------------------------------------------------ */
@media (max-width: 960px) {
	.vs-layout { grid-template-columns: 1fr; }
	.vs-filter-toggle { display: flex; }
	.vs-filters {
		position: static;
		display: none;
		padding: 16px;
		border: 1px solid var(--vs-line);
		border-radius: var(--vs-radius);
	}
	.vs-filters.is-open { display: flex; }
	.vs-card { grid-template-columns: 160px 1fr; }
	.vs-card__side {
		grid-column: 1 / -1;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		padding-left: 0;
		padding-top: 12px;
		border-left: 0;
		border-top: 1px solid var(--vs-line);
	}
	.vs-card__price { margin-top: 0; }
}

@media (max-width: 560px) {
	.vs-container { padding: 16px 14px 48px; }
	.vs-searchbar { flex-direction: column; align-items: stretch; }
	.vs-btn-search { width: 100%; justify-content: center; }
	.vs-card { grid-template-columns: 1fr; }
	.vs-card__media { aspect-ratio: 16 / 9; }
	.vs-card__perks { display: none; }
}

/* ==========================================================================
 * TRANG CHI TIẾT — single-show.php
 * ========================================================================== */

.vs-single {
	/* redeclare tokens để trang single dùng độc lập với .vs-shows */
	--vs-ink:      #1a1f27;
	--vs-ink-soft: #5b6472;
	--vs-line:     #e3e7ec;
	--vs-bg:       #ffffff;
	--vs-bg-soft:  #f5f7fa;
	--vs-brand:    #c8102e;
	--vs-brand-dk: #a20d25;
	--vs-accent:   #0a6b5f;
	--vs-gold:     #b8860b;
	--vs-radius:   12px;
	--vs-radius-sm: 8px;
	--vs-shadow:   0 1px 3px rgba(16, 24, 40, .08), 0 1px 2px rgba(16, 24, 40, .04);
	--vs-shadow-lg: 0 10px 30px rgba(16, 24, 40, .12);

	color: var(--vs-ink);
	-webkit-font-smoothing: antialiased;
}
.vs-single *, .vs-single *::before, .vs-single *::after { box-sizing: border-box; }
.vs-single a { color: inherit; text-decoration: none; }
.vs-single a:hover { text-decoration: underline; }

.vs-single__wrap { max-width: 1080px; margin-inline: auto; padding: 24px 20px 64px; }

.vs-single__back {
	display: inline-block;
	margin-bottom: 16px;
	font-size: 14px;
	font-weight: 700;
	color: var(--vs-brand);
}

.vs-single__grid {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 32px;
	align-items: start;
}

.vs-single__main { min-width: 0; }

.vs-single__hero {
	margin: 0 0 20px;
	border-radius: var(--vs-radius);
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--vs-bg-soft);
}
.vs-single__hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

.vs-single__offer {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 10px;
	padding: 4px 12px;
	font-size: 13px;
	font-weight: 700;
	color: var(--vs-brand-dk);
	background: rgba(200, 16, 46, .08);
	border-radius: 999px;
}

.vs-single__title {
	font-size: clamp(26px, 3.5vw, 38px);
	line-height: 1.12;
	font-weight: 800;
	margin: 0 0 10px;
}

.vs-single__genres { font-size: 14px; color: var(--vs-ink-soft); margin: 0 0 12px; display: flex; align-items: center; gap: 8px; }
.vs-single__genres a { color: var(--vs-accent); text-decoration: underline; }

.vs-single__rating { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; flex-wrap: wrap; }
.vs-single__rating .vs-rating__score {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 44px; height: 32px; padding: 0 10px;
	font-size: 16px; font-weight: 800; color: #fff;
	background: var(--vs-accent); border-radius: 6px;
}
.vs-single__rating .vs-rating__label { font-weight: 700; font-size: 15px; }
.vs-single__reviews { font-size: 14px; color: var(--vs-ink-soft); }

.vs-single__meta {
	list-style: none; margin: 0 0 20px; padding: 20px;
	display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px;
	background: var(--vs-bg-soft); border: 1px solid var(--vs-line); border-radius: var(--vs-radius);
}
.vs-single__meta li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.vs-single__meta .vs-ico { color: var(--vs-brand); margin-top: 2px; }
.vs-single__meta span span { display: flex; flex-direction: column; }
.vs-single__meta strong {
	display: block; font-size: 11px; text-transform: uppercase;
	letter-spacing: .04em; color: var(--vs-ink-soft); font-weight: 700; margin-bottom: 2px;
}

.vs-single__badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px; }

.vs-single__content { font-size: 16px; line-height: 1.7; color: var(--vs-ink); }
.vs-single__content p { margin: 0 0 1em; }

/* Hộp đặt vé sticky */
.vs-single__cta { position: sticky; top: 24px; }
.vs-cta-box {
	padding: 20px;
	background: var(--vs-bg);
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius);
	box-shadow: var(--vs-shadow);
}
.vs-cta-price { text-align: center; margin-bottom: 16px; }
.vs-cta-price .vs-price__from { display: block; font-size: 13px; color: var(--vs-ink-soft); }
.vs-cta-price .vs-price__num { display: block; font-size: 34px; font-weight: 800; line-height: 1; }
.vs-cta-price .vs-price__fee { display: block; font-size: 12px; color: var(--vs-ink-soft); }

.vs-cta-btn {
	display: block; width: 100%; text-align: center;
	padding: 15px 20px; margin-bottom: 10px;
	font-size: 17px; font-weight: 800; color: #fff;
	background: var(--vs-brand); border-radius: var(--vs-radius-sm);
	transition: background .15s ease;
}
.vs-cta-btn:hover { background: var(--vs-brand-dk); text-decoration: none; }
.vs-cta-note { font-size: 12px; color: var(--vs-ink-soft); text-align: center; margin: 0 0 14px; }

.vs-single__cta .vs-card__perks { border-top: 1px solid var(--vs-line); padding-top: 14px; }

@media (max-width: 900px) {
	.vs-single__grid { grid-template-columns: 1fr; }
	.vs-single__cta { position: static; }
	.vs-cta-box { max-width: 420px; }
}
@media (max-width: 560px) {
	.vs-single__wrap { padding: 16px 14px 48px; }
	.vs-single__meta { padding: 16px; }
}

/* ==========================================================================
 * SINGLE v2 — bố cục kiểu vegas.com (header + tabs + ticket widget)
 * ========================================================================== */

/* Header info */
.vs-show__header {
	display: flex;
	gap: 28px;
	align-items: flex-start;
	justify-content: space-between;
	padding: 20px 0 24px;
	border-bottom: 1px solid var(--vs-line);
	flex-wrap: wrap;
}
.vs-show__headmain { flex: 1 1 380px; min-width: 0; }
.vs-show__venue { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--vs-ink-soft); margin: 6px 0 14px; }

.vs-show__facts { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 12px; }
.vs-show__rating { display: inline-flex; align-items: center; gap: 8px; }
.vs-show__rating .vs-rating__score {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 42px; height: 30px; padding: 0 10px;
	font-size: 15px; font-weight: 800; color: #fff; background: var(--vs-accent); border-radius: 6px;
}
.vs-show__rating .vs-rating__label { font-weight: 700; font-size: 14px; }
.vs-show__reviews { font-size: 13px; color: var(--vs-ink-soft); text-decoration: underline; }
.vs-show__tags { font-size: 14px; color: var(--vs-ink-soft); }
.vs-show__tags a { color: var(--vs-accent); text-decoration: underline; }
.vs-show__dur { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--vs-ink-soft); }

.vs-badge--offer { color: var(--vs-brand-dk); background: rgba(200, 16, 46, .1); }

/* Cột phải header: giá + nút Book */
.vs-show__headside {
	flex: 0 0 240px;
	text-align: center;
	padding: 18px;
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius);
	background: var(--vs-bg-soft);
}
.vs-show__headside .vs-price__num { font-size: 32px; }
.vs-btn-book {
	display: block; margin-top: 12px; padding: 13px 18px;
	font-size: 16px; font-weight: 800; color: #fff; background: var(--vs-brand);
	border-radius: var(--vs-radius-sm); transition: background .15s ease;
}
.vs-btn-book:hover { background: var(--vs-brand-dk); text-decoration: none; }

/* Tabs */
.vs-tabs {
	display: flex; gap: 6px; margin: 22px 0 20px;
	border-bottom: 2px solid var(--vs-line); overflow-x: auto;
}
.vs-tab {
	padding: 12px 18px; font-size: 15px; font-weight: 700; color: var(--vs-ink-soft);
	border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap;
}
.vs-tab:hover { color: var(--vs-ink); text-decoration: none; }
.vs-tab.is-active { color: var(--vs-brand); border-bottom-color: var(--vs-brand); }

/* Ticket widget */
.vs-ticketbox {
	padding: 24px; margin-bottom: 32px;
	border: 1px solid var(--vs-line); border-radius: var(--vs-radius); box-shadow: var(--vs-shadow);
	scroll-margin-top: 20px;
}
.vs-ticketbox__h { font-size: 20px; font-weight: 800; margin: 0 0 16px; }

.vs-daterange { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.vs-daterange label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 700; color: var(--vs-ink-soft); }
.vs-daterange input[type="date"] {
	height: 44px; padding: 0 12px; font-size: 15px; color: var(--vs-ink);
	border: 1px solid var(--vs-line); border-radius: var(--vs-radius-sm); background: var(--vs-bg);
}

.vs-schedule { display: flex; flex-direction: column; }
.vs-perf {
	display: flex; align-items: flex-start; gap: 20px;
	padding: 16px 4px; border-bottom: 1px solid var(--vs-line); flex-wrap: wrap;
}
.vs-perf:last-child { border-bottom: 0; }
.vs-perf__date { font-size: 15px; font-weight: 800; min-width: 120px; padding-top: 12px; }
.vs-perf__slots { display: flex; flex-direction: column; gap: 10px; flex: 1 1 320px; }

/* Khung 1 suất: giờ | giá | nút Book (kiểu vegas) */
.vs-slot {
	display: flex; align-items: center; gap: 16px;
	padding: 10px 14px;
	border: 1px solid var(--vs-line); border-radius: var(--vs-radius-sm); background: var(--vs-bg);
}
.vs-slot:hover { border-color: var(--vs-brand); }
.vs-slot__time { font-size: 15px; font-weight: 700; min-width: 84px; }
.vs-slot__price { font-size: 14px; color: var(--vs-ink-soft); margin-left: auto; }
.vs-slot__btn {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 118px; height: 42px; padding: 0 16px;
	font-size: 14px; font-weight: 800; color: #fff; background: var(--vs-brand);
	border: 0; border-radius: var(--vs-radius-sm); transition: background .15s ease;
}
.vs-slot__btn:hover { background: var(--vs-brand-dk); text-decoration: none; }

/* Nút viền (dùng cho noscript fallback) */
.vs-perf__btn {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 96px; height: 42px; padding: 0 16px;
	font-size: 14px; font-weight: 700; color: var(--vs-brand);
	background: var(--vs-bg); border: 1.5px solid var(--vs-brand); border-radius: var(--vs-radius-sm);
}
.vs-perf__btn:hover { background: var(--vs-brand); color: #fff; text-decoration: none; }
.vs-schedule__empty { color: var(--vs-ink-soft); font-size: 15px; padding: 12px 0; }

/* Header ticket box + badge tình trạng vé */
.vs-ticketbox__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.vs-ticketbox__top .vs-ticketbox__h { margin: 0; }
.vs-avail {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 5px 12px; font-size: 13px; font-weight: 800; border-radius: 999px;
}
.vs-avail::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.vs-avail--available { color: var(--vs-accent);  background: rgba(10, 107, 95, .12); }
.vs-avail--limited   { color: #9a6a00;           background: rgba(184, 134, 11, .15); }
.vs-avail--fast      { color: var(--vs-brand-dk); background: rgba(200, 16, 46, .12); }

@media (max-width: 480px) {
	.vs-slot { flex-wrap: wrap; }
	.vs-slot__price { margin-left: 0; }
	.vs-slot__btn { width: 100%; }
}

/* Section headings + description */
.vs-section__h { font-size: 22px; font-weight: 800; margin: 0 0 14px; scroll-margin-top: 20px; }
#description { scroll-margin-top: 20px; }

@media (max-width: 720px) {
	.vs-show__header { flex-direction: column; }
	.vs-show__headside { flex: 1 1 auto; width: 100%; }
	.vs-perf__date { min-width: 100%; }
}

/* ==========================================================================
 * SINGLE v3 — bố cục 3 CỘT (info | schedule | reserved)
 * ========================================================================== */
.vs-single__cols {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 454px 162px; /* col2 ~42%, col3 ~15% của 1080 */
	gap: 28px;
	align-items: start;
	margin-top: 8px;
}
.vs-col { min-width: 0; }

/* Cột 1 */
.vs-col--info .vs-single__hero { aspect-ratio: 16 / 9; }
.vs-col--info .vs-single__title { margin-top: 4px; }
.vs-col__price { font-size: 15px; color: var(--vs-ink-soft); margin: 8px 0 20px; }
.vs-col__price strong { font-size: 24px; color: var(--vs-ink); }

/* Cột 2 — dính khi cuộn, tự cuộn nếu lịch dài */
.vs-col--schedule { position: sticky; top: 20px; }
.vs-col--schedule .vs-ticketbox { max-height: calc(100vh - 40px); overflow-y: auto; margin-bottom: 0; }

/* Cột 3 — placeholder */
.vs-col-placeholder {
	border: 1px dashed var(--vs-line); border-radius: var(--vs-radius);
	padding: 24px 16px; text-align: center; color: var(--vs-ink-soft); font-size: 14px;
	background: var(--vs-bg-soft);
}

/* --- Panel lịch: mỗi NGÀY đóng khung --- */
.vs-day-group {
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius-sm);
	overflow: hidden;
	margin-bottom: 14px;
}
.vs-day-group:last-child { margin-bottom: 0; }
.vs-day-group__head {
	padding: 10px 14px;
	font-size: 14px; font-weight: 800; color: var(--vs-ink);
	background: var(--vs-bg-soft);
	border-bottom: 1px solid var(--vs-line);
}
.vs-day-group__body { padding: 6px 12px; display: flex; flex-direction: column; }

/* Khung giờ KHÔNG viền — chỉ đường kẻ mảnh giữa các suất */
.vs-day-group .vs-slot {
	display: flex; align-items: center; gap: 12px;
	padding: 10px 2px; border: 0; border-radius: 0; background: transparent;
	border-bottom: 1px solid var(--vs-line);
}
.vs-day-group .vs-slot:last-child { border-bottom: 0; }
.vs-day-group .vs-slot:hover { border-color: var(--vs-line); }

.vs-day-group .vs-slot__time { font-size: 14px; font-weight: 700; min-width: 72px; }
.vs-day-group .vs-slot__left { font-size: 12px; font-weight: 700; color: var(--vs-brand); white-space: nowrap; }
.vs-day-group .vs-slot__price { font-size: 16px; font-weight: 800; color: var(--vs-ink); margin-left: auto; }

/* Nút Book — nền XANH */
.vs-day-group .vs-slot__btn {
	min-width: 78px; height: 38px; padding: 0 14px;
	font-size: 14px; font-weight: 800; color: #fff;
	background: var(--vs-green); border-radius: var(--vs-radius-sm);
	transition: background .15s ease;
}
.vs-day-group .vs-slot__btn:hover { background: var(--vs-green-dk); }

/* Bổ sung token màu xanh cho nút Book */
.vs-single { --vs-green: #1a9c5b; --vs-green-dk: #157a47; }

@media (max-width: 1200px) {
	.vs-single__cols { grid-template-columns: minmax(0, 1fr) 454px; }
	.vs-col--side { grid-column: 1 / -1; }
	.vs-col-placeholder { min-height: 80px; display: flex; align-items: center; justify-content: center; }
}
@media (max-width: 820px) {
	.vs-single__cols { grid-template-columns: 1fr; }
	.vs-col--schedule { position: static; }
	.vs-col--schedule .vs-ticketbox { max-height: none; overflow: visible; }
}
