/*
 * nespěchej – styly podle design handoffu (design_handoff_nespechej).
 * Komiksový „neo-brutal“ jazyk: tlusté černé okraje, tvrdé stíny bez rozmazání.
 * Breakpoint mobil: < 720px.
 */

:root {
	--bg: #F4EFE6;
	--surface: #FFFDF8;
	--ink: #17130F;
	--muted: #5E574E;
	--pink: #FF4FA3;
	--lime: #C8F03C;
	--blue: #4D5BFF;
	--orange: #FF7A1A;

	--border: 2.5px solid var(--ink);
	--dashed: 2.5px dashed var(--ink);
	--dashed-thin: 1.5px dashed var(--ink);

	--shadow-sm: 4px 4px 0 var(--ink);
	--shadow: 6px 6px 0 var(--ink);
	--shadow-lg: 10px 10px 0 var(--ink);

	--halftone: radial-gradient(rgba(23, 19, 15, .2) 1.8px, transparent 2.2px);
	--stripes: repeating-linear-gradient(135deg, rgba(23, 19, 15, .08) 0 10px, transparent 10px 20px);

	--font-display: 'Bricolage Grotesque', system-ui, sans-serif;
	--font-text: 'Instrument Sans', system-ui, sans-serif;
	--font-mono: 'JetBrains Mono', ui-monospace, monospace;

	--gutter: clamp(16px, 4vw, 40px);
	--spring: cubic-bezier(.2, .9, .3, 1.25);
}


/* ---------- Základ ---------- */

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

html, body { overflow-x: clip; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-text);
	-webkit-font-smoothing: antialiased;
}

a { color: var(--ink); text-decoration: underline; }
a:hover { color: var(--pink); }
input, button, select { font-family: inherit; color: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

.container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.display { font-family: var(--font-display); font-weight: 800; }
.mono { font-family: var(--font-mono); font-weight: 500; }
.muted { color: var(--muted); }
.outline { color: transparent; -webkit-text-stroke: 2.5px var(--ink); }
.nowrap { white-space: nowrap; }
.tabular { font-variant-numeric: tabular-nums; }

.visually-hidden {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.plain-link { text-decoration: none; }
.plain-link:hover { color: inherit; }

.back-link {
	display: inline-block;
	font-weight: 600;
	text-decoration: none;
	margin-bottom: 12px;
}

.screen { animation: pop .5s var(--spring) both; }


/* ---------- Animace ---------- */

@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pop { 0% { opacity: 0; transform: translateY(28px) scale(.97); } 100% { opacity: 1; transform: none; } }
@keyframes fall { 0% { transform: translateY(-10vh) rotate(0deg); } 100% { transform: translateY(110vh) rotate(900deg); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .2; } }
@keyframes wob { 0%, 100% { transform: rotate(-6deg); } 50% { transform: rotate(4deg) scale(1.05); } }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}


/* ---------- Tlačítka, pilly, karty ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: var(--border);
	border-radius: 16px;
	padding: 16px 24px;
	font-weight: 800;
	font-size: 19px;
	text-decoration: none;
	color: var(--ink);
	background: var(--surface);
	transition: transform .12s, box-shadow .12s;
}
.btn:hover { color: var(--ink); }
.btn--block { display: flex; width: 100%; }
.btn--pink { background: var(--pink); }
.btn--lime { background: var(--lime); }
.btn--shadow { box-shadow: var(--shadow-sm); }
.btn--shadow:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow); }
.btn--shadow:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--ink); }
.btn[disabled], .btn.is-disabled { background: var(--bg); opacity: .5; pointer-events: none; box-shadow: none; }

.pill-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 999px;
	padding: 12px 20px;
	font-weight: 700;
	text-decoration: none;
	color: var(--ink);
	border: var(--border);
	background: transparent;
}
.pill-btn:hover { color: var(--ink); background: var(--lime); }
.pill-btn--dark { background: var(--ink); color: var(--bg); padding: 14px 20px; border: 0; }
.pill-btn--dark:hover { color: var(--bg); background: var(--ink); }

.pill {
	display: inline-block;
	background: var(--surface);
	color: var(--ink);
	border: 2px solid var(--ink);
	border-radius: 999px;
	padding: 5px 11px;
	font-size: 13px;
	font-weight: 700;
}
.pill--dark { background: var(--ink); color: var(--surface); }

.card {
	background: var(--surface);
	border: var(--border);
	border-radius: 24px;
	padding: 24px;
}
.card--shadow { box-shadow: var(--shadow); }
.card__title { font-family: var(--font-display); font-weight: 800; font-size: 26px; margin: 0 0 16px; }

.label { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }

.photo-tag {
	font-family: var(--font-mono);
	font-size: 11px;
	background: var(--surface);
	color: var(--ink);
	border: 1.5px solid var(--ink);
	padding: 3px 7px;
	border-radius: 6px;
}

.empty-box {
	border: var(--dashed);
	border-radius: 28px;
	padding: clamp(32px, 6vw, 64px);
	text-align: center;
}
.empty-box__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.03em; }
.empty-box__text { color: var(--muted); font-size: 18px; margin: 8px 0 24px; }


/* ---------- Header ---------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: var(--bg);
	border-bottom: var(--border);
}
.site-header__inner {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	padding-top: 12px;
	padding-bottom: 12px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--ink);
}
.logo:hover { color: var(--ink); }
.logo__word { font-family: var(--font-display); font-weight: 800; font-size: 30px; letter-spacing: -1.5px; line-height: 1; }
.logo__badge {
	background: var(--pink);
	border: 2px solid var(--ink);
	border-radius: 999px;
	padding: 3px 8px;
	font-size: 11px;
	font-weight: 700;
	transform: rotate(-8deg);
}

.main-nav { display: flex; gap: 4px; margin-left: auto; flex-wrap: wrap; align-items: center; }
.main-nav__link {
	padding: 10px 14px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	color: var(--ink);
}
.main-nav__link:hover, .main-nav__link.is-active { background: var(--lime); color: var(--ink); }
.main-nav__cart {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--ink);
	color: var(--bg);
	padding: 10px 16px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
}
.main-nav__cart:hover { color: var(--bg); }

.badge {
	background: var(--lime);
	color: var(--ink);
	border-radius: 999px;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
}


/* ---------- Marquee a pásky ---------- */

.marquee {
	background: var(--lime);
	border-bottom: var(--border);
	overflow: hidden;
	white-space: nowrap;
}
.marquee__track {
	display: inline-flex;
	animation: mq 28s linear infinite;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 18px;
	padding: 9px 0;
}
.marquee__track span { padding-right: 40px; }

.ribbons {
	margin: 36px calc(50% - 50vw) 48px;
	height: 150px;
	position: relative;
	pointer-events: none;
}
.ribbons__row { position: absolute; inset: 0; display: flex; align-items: center; }
.ribbon {
	border-top: var(--border);
	border-bottom: var(--border);
	white-space: nowrap;
	overflow: hidden;
	width: 110vw;
	margin-left: -5vw;
}
.ribbon--blue { background: var(--blue); color: var(--surface); transform: rotate(3deg); }
.ribbon--pink { background: var(--pink); color: var(--ink); transform: rotate(-2.5deg); }
.ribbon__track {
	display: inline-flex;
	animation: mq 24s linear infinite;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(20px, 2.6vw, 32px);
	padding: 10px 0;
}
.ribbon--blue .ribbon__track { animation-direction: reverse; }
.ribbon__track span { padding-right: 32px; }


/* ---------- Flash zprávy ---------- */

.flashes { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; }
.flash {
	border: var(--border);
	border-radius: 16px;
	padding: 14px 18px;
	font-weight: 600;
	background: var(--surface);
	box-shadow: var(--shadow-sm);
}
.flash--error { background: var(--pink); }
.flash--success { background: var(--lime); }


/* ---------- Úvod: hero ---------- */

.hero {
	padding: clamp(32px, 6vw, 72px) 0 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: flex-end;
}
.hero__main { flex: 1 1 520px; min-width: 0; position: relative; }
.hero__side { flex: 1 1 380px; min-width: 0; position: relative; }

.live-line {
	font-family: var(--font-mono);
	font-size: 13px;
	margin-bottom: 18px;
	display: flex;
	gap: 8px;
	align-items: center;
}
.live-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--pink);
	display: inline-block;
	animation: blink 1.4s ease-in-out infinite;
}

.hero__title {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(60px, 10.5vw, 156px);
	line-height: .86;
	letter-spacing: -0.05em;
	margin: 0;
}
.hero__highlight {
	background: var(--pink);
	padding: 0 .12em;
	border-radius: .12em;
	display: inline-block;
	transform: rotate(-2deg);
	transition: transform .25s cubic-bezier(.2, .9, .3, 1.6);
}
.hero__highlight:hover { transform: rotate(4deg) scale(1.06); }
.hero__perex {
	font-size: clamp(18px, 1.8vw, 22px);
	line-height: 1.45;
	max-width: 520px;
	margin: 28px 0 0;
	text-wrap: pretty;
}

.search {
	margin-top: 28px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	background: var(--surface);
	border: var(--border);
	border-radius: 20px;
	padding: 8px;
	box-shadow: var(--shadow);
	max-width: 620px;
}
.search__input {
	flex: 1 1 200px;
	min-width: 0;
	border: none;
	outline: none;
	background: transparent;
	font-size: 17px;
	padding: 12px 14px;
}
.search__actions { display: flex; gap: 6px; flex-wrap: wrap; }
.search__city {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	padding: 12px 34px 12px 14px;
	border-radius: 12px;
	background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2317130F' stroke-width='2.5'/%3E%3C/svg%3E") no-repeat right 12px center;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
}
.search__city:hover { background-color: var(--lime); }
.search__submit {
	padding: 12px 18px;
	border-radius: 12px;
	background: var(--ink);
	color: var(--bg);
	font-weight: 700;
	font-size: 16px;
	border: 0;
}

/* Hvězda „DNES VEČER!“ – 24cípý polygon */
.star {
	position: absolute;
	top: -48px;
	right: -6px;
	z-index: 2;
	width: 128px;
	height: 128px;
	animation: wob 3s ease-in-out infinite;
	pointer-events: none;
}
.star__shape {
	position: absolute;
	inset: 0;
	clip-path: polygon(100% 50%, 86.7% 59.8%, 93.3% 75%, 76.9% 76.9%, 75% 93.3%, 59.8% 86.7%, 50% 100%, 40.2% 86.7%, 25% 93.3%, 23.1% 76.9%, 6.7% 75%, 13.3% 59.8%, 0% 50%, 13.3% 40.2%, 6.7% 25%, 23.1% 23.1%, 25% 6.7%, 40.2% 13.3%, 50% 0%, 59.8% 13.3%, 75% 6.7%, 76.9% 23.1%, 93.3% 25%, 86.7% 40.2%);
}
.star__shape--shadow { background: var(--ink); transform: translate(4px, 4px); }
.star__shape--face {
	background: var(--lime);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 19px;
	line-height: .95;
}

.bubble {
	position: absolute;
	left: -14px;
	bottom: -52px;
	z-index: 2;
	background: var(--surface);
	border: var(--border);
	border-radius: 18px;
	padding: 10px 16px;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 18px;
	transform: rotate(-4deg);
	pointer-events: none;
}
.bubble::before {
	content: '';
	position: absolute;
	left: 28px;
	top: -9px;
	width: 14px;
	height: 14px;
	background: var(--surface);
	border-left: var(--border);
	border-top: var(--border);
	transform: rotate(45deg);
}

.featured {
	display: block;
	text-decoration: none;
	background: var(--blue);
	color: var(--surface);
	border: var(--border);
	border-radius: 28px;
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	transform: rotate(1.5deg);
	transition: transform .2s;
}
.featured:hover { transform: rotate(0deg); color: var(--surface); }
.featured__photo {
	height: 220px;
	background-image: radial-gradient(rgba(255, 253, 248, .35) 1.6px, transparent 2px);
	background-size: 12px 12px;
	display: flex;
	align-items: flex-end;
	padding: 16px;
	border-bottom: var(--border);
}
.featured__photo span { font-family: var(--font-mono); font-size: 12px; background: var(--ink); color: var(--surface); padding: 4px 8px; border-radius: 6px; }
.featured__body { padding: 22px 24px 24px; }
.featured__countdown {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(40px, 5vw, 60px);
	letter-spacing: -0.03em;
	line-height: 1;
	margin: 6px 0 14px;
	font-variant-numeric: tabular-nums;
}
.featured__foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; flex-wrap: wrap; }
.featured__title { font-weight: 700; font-size: 22px; }
.featured__price {
	background: var(--lime);
	color: var(--ink);
	border: 2px solid var(--ink);
	border-radius: 999px;
	padding: 10px 16px;
	font-weight: 700;
	white-space: nowrap;
}


/* ---------- Úvod: sekce ---------- */

.trust {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
	padding: 12px 0 56px;
}
.trust__item { border: var(--border); border-radius: 18px; padding: 18px; background: var(--surface); }
.trust__title { font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.trust__text { color: var(--muted); margin-top: 4px; line-height: 1.4; }

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}
.section-head__title-wrap { display: flex; align-items: flex-end; gap: 14px; }
.h2 {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(48px, 6vw, 80px);
	letter-spacing: -0.04em;
	line-height: .9;
	margin: 0;
}
.h2--sm { font-size: clamp(36px, 5vw, 64px); }

.swipe-hint {
	display: none;
	background: var(--lime);
	border: var(--border);
	border-radius: 999px;
	padding: 6px 12px;
	font-weight: 800;
	font-size: 14px;
	animation: wob 2.2s ease-in-out infinite;
	margin-bottom: 6px;
}

.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
	border: var(--border);
	border-radius: 999px;
	padding: 10px 18px;
	font-weight: 700;
	background: var(--surface);
	color: var(--ink);
	text-decoration: none;
}
.chip:hover { color: var(--ink); background: var(--lime); }
.chip.is-active { background: var(--ink); color: var(--bg); }

.events-section { padding-bottom: 72px; scroll-margin-top: 90px; }
.events-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
}

.event-card {
	display: block;
	position: relative;
	text-decoration: none;
	color: var(--ink);
	background: var(--surface);
	border: var(--border);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform .15s, box-shadow .15s;
	scroll-snap-align: center;
}
.event-card:hover { color: var(--ink); transform: translate(-3px, -3px) rotate(-0.6deg); box-shadow: var(--shadow-lg); }
.event-card:active { transform: scale(.97); }
.event-card__photo {
	height: 190px;
	background-image: var(--stripes);
	border-bottom: var(--border);
	position: relative;
	display: flex;
	align-items: flex-end;
	padding: 14px;
}
.event-card__type { position: absolute; top: 14px; left: 14px; }
.event-card__hot {
	position: absolute;
	top: 12px;
	right: 12px;
	background: var(--pink);
	border: 2px solid var(--ink);
	border-radius: 10px;
	padding: 6px 10px;
	font-weight: 800;
	font-size: 14px;
	animation: wob 2.6s ease-in-out infinite;
}
.event-card__body { padding: 18px 18px 20px; }
.event-card__title { font-family: var(--font-display); font-weight: 800; font-size: 28px; letter-spacing: -0.03em; line-height: 1.05; margin: 6px 0 4px; }
.event-card__foot { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
.event-card__price { font-weight: 700; font-size: 18px; }
.event-card__cta { background: var(--ink); color: var(--bg); border-radius: 999px; padding: 9px 16px; font-weight: 700; font-size: 14px; }

.no-results {
	border: var(--dashed);
	border-radius: 24px;
	padding: 40px;
	text-align: center;
	margin-bottom: 24px;
}
.no-results__title { font-family: var(--font-display); font-weight: 800; font-size: 32px; }

.how-block { padding-bottom: 72px; }
.how-block__inner { background: var(--ink); color: var(--bg); border-radius: 32px; padding: clamp(28px, 5vw, 56px); }
.how-block__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(36px, 5vw, 64px); letter-spacing: -0.04em; margin: 0 0 32px; line-height: .95; }
.how-block__title span { color: var(--lime); }
.how-block__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.how-block__num { font-family: var(--font-display); font-weight: 800; font-size: 88px; line-height: 1; }
.how-block__step { font-weight: 700; font-size: 20px; margin-top: 8px; }
.how-block__text { opacity: .75; line-height: 1.45; margin-top: 4px; }

.reviews-section { padding-bottom: 80px; }
.reviews-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.review { border: var(--border); border-radius: 22px; padding: 24px; scroll-snap-align: center; }
.review:nth-child(3n+1) { background: var(--lime); transform: rotate(-1.5deg); }
.review:nth-child(3n+2) { background: var(--surface); transform: rotate(1deg); }
.review:nth-child(3n+3) { background: var(--pink); transform: rotate(-0.5deg); }
.review__stars { font-size: 18px; letter-spacing: 2px; }
.review__text { font-size: 19px; line-height: 1.4; margin: 12px 0 18px; text-wrap: pretty; }


/* ---------- Dvousloupcové obrazovky ---------- */

.split { display: flex; flex-wrap: wrap; gap: 32px; align-items: flex-start; }
.split__main { flex: 1 1 540px; min-width: 0; display: flex; flex-direction: column; gap: 24px; }
.split__aside {
	flex: 1 1 320px;
	max-width: 420px;
	position: sticky;
	top: 96px;
}

.flow-h1 {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(44px, 7vw, 96px);
	letter-spacing: -0.05em;
	line-height: .9;
	margin: 0 0 28px;
}

.flow-steps { display: flex; gap: 8px; flex-wrap: wrap; padding: 28px 0 24px; }
.flow-step {
	display: flex;
	align-items: center;
	gap: 8px;
	border: var(--border);
	border-radius: 999px;
	padding: 6px 14px 6px 6px;
	font-weight: 700;
}
.flow-step.is-done { background: var(--surface); }
.flow-step.is-active { background: var(--lime); }
.flow-step__num {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--ink);
	color: var(--bg);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
}

.summary { background: var(--surface); border: var(--border); border-radius: 24px; padding: 24px; box-shadow: var(--shadow); }
.summary__title { font-family: var(--font-display); font-weight: 800; font-size: 26px; }
.summary__row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-top: var(--dashed-thin); }
.summary__row--first { border-top: 0; }
.summary__empty { padding: 14px 0; border-top: var(--dashed-thin); color: var(--muted); }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 12px; border-top: var(--border); }
.summary__total-value { font-family: var(--font-display); font-weight: 800; font-size: 36px; }
.summary .btn { margin-top: 16px; }
.summary__note { margin-top: 14px; font-size: 14px; color: var(--muted); line-height: 1.4; }
.guarantee { margin-top: 14px; border: 2px dashed var(--ink); border-radius: 14px; padding: 12px; font-size: 14px; line-height: 1.4; }


/* ---------- Detail akce ---------- */

.event-page { padding: 32px 0 80px; }
.event-hero {
	background-image: var(--halftone);
	background-size: 14px 14px;
	border: var(--border);
	border-radius: 32px;
	padding: clamp(24px, 5vw, 56px);
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}
.event-hero__pills { display: flex; gap: 8px; flex-wrap: wrap; }
.event-hero__pills .pill { font-size: 14px; padding: 6px 12px; }
.event-hero__title {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(56px, 11vw, 160px);
	letter-spacing: -0.05em;
	line-height: .85;
	margin: 28px 0 20px;
	max-width: 1000px;
	overflow-wrap: break-word;
}
.event-hero__countdown { font-family: var(--font-display); font-weight: 800; font-size: clamp(36px, 5vw, 64px); font-variant-numeric: tabular-nums; letter-spacing: -0.03em; }
.event-hero__photo { position: absolute; right: clamp(16px, 4vw, 48px); bottom: clamp(16px, 4vw, 40px); font-size: 12px; padding: 4px 8px; }

.event-page .split { margin-top: 40px; }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.fact { border: var(--border); border-radius: 18px; padding: 16px; background: var(--surface); }
.fact__value { font-weight: 700; font-size: 18px; margin-top: 4px; }
.h3 { font-family: var(--font-display); font-weight: 800; font-size: 32px; letter-spacing: -0.02em; margin: 12px 0 -14px; }
.event-desc { font-size: 19px; line-height: 1.55; margin: 0; max-width: 640px; text-wrap: pretty; }
.good-to-know { display: flex; flex-direction: column; gap: 10px; font-size: 17px; }
.good-to-know div { display: flex; gap: 12px; }
.good-to-know dt { font-weight: 700; min-width: 120px; }
.good-to-know dd { color: var(--muted); margin: 0; }
.price-big { font-family: var(--font-display); font-weight: 800; font-size: 44px; letter-spacing: -0.03em; }
.checks { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--muted); }


/* ---------- Výběr vstupenek ---------- */

.venue-map { background: var(--surface); border: var(--border); border-radius: 24px; padding: 20px; }
.venue-map__stage {
	background: var(--ink);
	color: var(--bg);
	border-radius: 12px;
	text-align: center;
	padding: 12px;
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: 4px;
}
.venue-map__zones { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.zone {
	border: var(--border);
	border-radius: 14px;
	min-height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 700;
	font-size: 17px;
	padding: 8px;
	background: var(--bg);
	cursor: pointer;
	flex: 1 1 120px;
}
.zone:first-child { min-height: 130px; font-size: 20px; flex-basis: 100%; }
.zone[disabled] { opacity: .4; cursor: not-allowed; }
.zone.is-selected { background: var(--accent, var(--lime)); }

.ticket-type {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	background: var(--surface);
	border: var(--border);
	border-radius: 20px;
	padding: 18px 20px;
}
.ticket-type.is-selected { background: var(--accent, var(--lime)); }
.ticket-type.is-soldout { opacity: .5; }
.ticket-type__info { flex: 1 1 200px; min-width: 0; }
.ticket-type__head { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.ticket-type__name { font-family: var(--font-display); font-weight: 800; font-size: 26px; }
.ticket-type__left { font-size: 13px; font-weight: 700; border: 2px solid var(--ink); border-radius: 999px; padding: 2px 9px; }
.ticket-type__price { font-weight: 800; font-size: 20px; min-width: 100px; }

.stepper {
	display: flex;
	align-items: center;
	gap: 6px;
	background: var(--bg);
	border: var(--border);
	border-radius: 999px;
	padding: 4px;
}
.stepper__btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: 700;
	border: 0;
	background: transparent;
	text-decoration: none;
	color: var(--ink);
	line-height: 1;
}
.stepper__btn:hover { background: var(--surface); color: var(--ink); }
.stepper__btn--plus, .stepper__btn--plus:hover { background: var(--ink); color: var(--bg); }
.stepper__btn[disabled] { opacity: .35; pointer-events: none; }
.stepper__value {
	width: 32px;
	text-align: center;
	font-weight: 800;
	font-size: 18px;
	border: 0;
	background: transparent;
	padding: 0;
	-moz-appearance: textfield;
}
.stepper__value::-webkit-outer-spin-button,
.stepper__value::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.stepper--sm .stepper__btn { width: 36px; height: 36px; font-size: 20px; }


/* ---------- Košík ---------- */

.cart-line {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	background: var(--surface);
	border: var(--border);
	border-radius: 20px;
	padding: 14px 18px 14px 14px;
}
.cart-line__swatch {
	width: 64px;
	height: 64px;
	border-radius: 14px;
	border: var(--border);
	background-image: radial-gradient(rgba(23, 19, 15, .2) 1.5px, transparent 1.9px);
	background-size: 10px 10px;
	flex: none;
}
.cart-line__info { flex: 1 1 140px; min-width: 0; }
.cart-line__title { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; text-decoration: none; }
.cart-line__total { font-weight: 800; font-size: 19px; min-width: 96px; text-align: right; }
.cart-line__remove {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	text-decoration: none;
	color: var(--ink);
}
.cart-line__remove:hover { background: var(--pink); color: var(--ink); }
.add-more { font-weight: 700; padding: 8px 4px; text-decoration: none; }


/* ---------- Pokladna ---------- */

.checkout-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.checkout-head .flow-h1 { margin: 0; }
.hold {
	background: var(--lime);
	border: var(--border);
	border-radius: 18px;
	padding: 12px 18px;
	transform: rotate(2deg);
}
.hold__small { font-size: 13px; }
.hold__small:first-child { font-weight: 600; }
.hold__time { font-family: var(--font-display); font-weight: 800; font-size: 34px; font-variant-numeric: tabular-nums; }

.fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: 14px; }
.field input {
	border: var(--border);
	border-radius: 12px;
	padding: 14px;
	font-size: 17px;
	background: var(--bg);
	outline: none;
}
.field input:focus { background: var(--surface); box-shadow: var(--shadow-sm); }
.field__error { color: #C4006A; font-size: 13px; }
.form-errors { margin: 0 0 16px; padding: 12px 16px; list-style: none; background: var(--pink); border: var(--border); border-radius: 14px; font-weight: 600; }

.pay-options { clear: both; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.pay-option { position: relative; }
.pay-option input { position: absolute; opacity: 0; }
.pay-option label {
	display: flex;
	flex-direction: column;
	gap: 4px;
	border: var(--border);
	border-radius: 14px;
	padding: 16px;
	font-weight: 700;
	background: var(--bg);
	cursor: pointer;
	height: 100%;
}
.pay-option label small { font-size: 13px; font-weight: 500; color: var(--muted); }
.pay-option input:checked + label { background: var(--lime); }
.pay-option input:focus-visible + label { outline: 3px solid var(--blue); outline-offset: 2px; }
.pay-note { margin-top: 16px; font-size: 14px; color: var(--muted); }


/* ---------- Potvrzení a e-vstupenka ---------- */

.done { padding: 24px 0 80px; display: flex; flex-wrap: wrap; gap: 40px; align-items: center; }
.done__main { flex: 1 1 440px; min-width: 0; }
.done__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(64px, 12vw, 176px); letter-spacing: -0.06em; line-height: .82; margin: 0; }
.done__title span { background: var(--lime); padding: 0 .1em; border-radius: .1em; display: inline-block; transform: rotate(-3deg); }
.done__title--sm { font-size: clamp(48px, 8vw, 112px); }
.done__text { font-size: 20px; line-height: 1.45; max-width: 480px; margin: 28px 0 0; }
.done__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.done__tickets { flex: 0 1 380px; min-width: 0; margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }

.eticket {
	border: var(--border);
	border-radius: 28px;
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	transform: rotate(-2deg);
}
.eticket + .eticket { transform: rotate(1.5deg); }
.eticket__head { padding: 22px 24px; }
.eticket__title { font-family: var(--font-display); font-weight: 800; font-size: 40px; letter-spacing: -0.03em; line-height: 1; margin-top: 6px; }
.eticket__meta { margin-top: 6px; font-weight: 600; }
.eticket__body {
	background: var(--surface);
	border-top: var(--dashed);
	padding: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
.eticket__qr { display: grid; grid-template-columns: repeat(21, 1fr); width: 210px; height: 210px; }
.eticket__qr i.on { background: var(--ink); }
.eticket__downloads { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.eticket__download {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	border: 2px solid var(--ink);
	border-radius: 12px;
	padding: 10px 14px;
	font-weight: 700;
	text-decoration: none;
	color: var(--ink);
}
.eticket__download:hover { background: var(--lime); color: var(--ink); }

.confetti { position: fixed; inset: 0; pointer-events: none; z-index: 50; overflow: hidden; }
.confetti i {
	position: absolute;
	top: 0;
	border: 2px solid var(--ink);
	animation: fall 3s cubic-bezier(.3, .1, .6, 1) 0s 1 both;
}


/* ---------- Moje lístky ---------- */

.account { padding: 40px 0 80px; }
.account__head { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; }
.avatar {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: var(--orange);
	border: var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 36px;
}
.account__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 6vw, 72px); letter-spacing: -0.04em; line-height: .95; margin: 0; }
.account__h2 { font-family: var(--font-display); font-weight: 800; font-size: 32px; margin: 0 0 16px; }
.my-tickets { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-bottom: 44px; }
.my-ticket { display: flex; border: var(--border); border-radius: 22px; overflow: hidden; background: var(--surface); box-shadow: 5px 5px 0 var(--ink); }
.my-ticket__stripe { width: 18px; border-right: var(--dashed); flex: none; }
.my-ticket__body { padding: 18px; flex: 1; min-width: 0; }
.my-ticket__title { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; }
.my-ticket__actions { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.my-ticket__actions a { border: 2px solid var(--ink); border-radius: 999px; padding: 6px 12px; font-weight: 700; font-size: 14px; text-decoration: none; color: var(--ink); background: var(--lime); }
.past-list { display: flex; flex-direction: column; gap: 10px; }
.past-item { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; border: var(--border); border-radius: 16px; padding: 14px 18px; opacity: .75; text-decoration: none; color: var(--ink); }


/* ---------- Textové stránky ---------- */

.page { padding: 48px 0 80px; max-width: 820px; }
.page__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(48px, 8vw, 112px); letter-spacing: -0.05em; line-height: .88; margin: 0 0 32px; }
.page__cards { display: flex; flex-direction: column; gap: 16px; font-size: 19px; line-height: 1.5; }
.page__card { border: var(--border); border-radius: 20px; padding: 22px; background: var(--surface); }
.prose { font-size: 18px; line-height: 1.6; }


/* ---------- Patička ---------- */

.site-footer { border-top: var(--border); background: var(--ink); color: var(--bg); }
.site-footer a { color: var(--bg); text-decoration: none; }
.site-footer a:hover { color: var(--lime); text-decoration: underline; }
.site-footer__inner { padding-top: 40px; padding-bottom: 40px; }
.pay-logos { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.pay-logos span { border: 1.5px solid var(--bg); border-radius: 8px; padding: 8px 14px; font-weight: 700; }
.footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
.footer-cols > div { line-height: 1.7; opacity: .85; }
.footer-cols .logo__word { font-size: 32px; letter-spacing: -1px; }


/* ---------- Mobilní navigace ---------- */

.tabbar, .actionbar, .mobile-spacer { display: none; }


/* ---------- Mobil < 720px ---------- */

@media (max-width: 719.98px) {
	.main-nav { display: none; }

	.hero__title { font-size: 17vw; }

	/* Horizontální karusely */
	.trust, .events-grid, .reviews {
		grid-template-columns: none;
		grid-auto-flow: column;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		margin: 0 -16px;
	}
	.trust::-webkit-scrollbar, .events-grid::-webkit-scrollbar, .reviews::-webkit-scrollbar { display: none; }
	.trust { grid-auto-columns: 72%; padding: 4px 16px 56px; }
	.trust__item { scroll-snap-align: center; }
	.events-grid { grid-auto-columns: 82%; padding: 14px 16px 24px; }
	.reviews { grid-auto-columns: 84%; padding: 10px 16px 20px; }

	.events-grid .event-card:nth-child(3n+1) { transform: rotate(-2deg); }
	.events-grid .event-card:nth-child(3n+2) { transform: rotate(1.5deg); }
	.events-grid .event-card:nth-child(3n+3) { transform: rotate(-1deg); }

	.swipe-hint { display: inline-block; }

	.split__aside { position: static; max-width: none; }
	body:has(.actionbar) .split__aside .btn { display: none; }

	.star { width: 104px; height: 104px; top: -40px; }
	.star__shape--face { font-size: 16px; }

	.mobile-spacer { display: block; height: 104px; background: var(--ink); }

	.tabbar {
		position: fixed;
		left: 12px;
		right: 12px;
		bottom: 12px;
		z-index: 40;
		background: var(--ink);
		border-radius: 26px;
		display: grid;
		grid-template-columns: 1fr 1fr 1.3fr 1fr 1fr;
		align-items: end;
		padding: 8px 6px;
		box-shadow: 0 5px 0 var(--pink);
	}
	.tabbar__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 4px;
		padding: 6px 0;
		color: var(--bg);
		font-weight: 700;
		font-size: 12px;
		text-decoration: none;
	}
	.tabbar__item:hover { color: var(--bg); }
	.tabbar__item.is-active { color: var(--lime); }
	.tabbar__icon-events { width: 18px; height: 18px; border-radius: 5px; background: currentColor; transform: rotate(12deg); }
	.tabbar__icon-search { width: 16px; height: 16px; border-radius: 50%; border: 3px solid currentColor; }
	.tabbar__icon-info { width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-bottom: 17px solid currentColor; }
	.tabbar__icon-account { width: 18px; height: 18px; border-radius: 50% 50% 4px 4px; background: currentColor; }
	.tabbar__cart { padding: 0; }
	.tabbar__cart:active { transform: scale(.92); }
	.tabbar__cart-bubble {
		width: 62px;
		height: 62px;
		margin-top: -34px;
		border-radius: 50%;
		background: var(--pink);
		border: var(--border);
		box-shadow: 0 4px 0 var(--ink);
		display: flex;
		align-items: center;
		justify-content: center;
		font-family: var(--font-display);
		font-weight: 800;
		font-size: 24px;
		color: var(--ink);
		transform: rotate(-8deg);
	}

	.actionbar {
		position: fixed;
		left: 12px;
		right: 12px;
		bottom: 12px;
		z-index: 40;
		background: var(--surface);
		border: var(--border);
		border-radius: 22px;
		padding: 10px 10px 10px 18px;
		display: flex;
		align-items: center;
		gap: 12px;
		box-shadow: 5px 5px 0 var(--ink);
		animation: pop .4s cubic-bezier(.2, .9, .3, 1.3) both;
	}
	.actionbar__info { flex: 1; min-width: 0; }
	.actionbar__label { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
	.actionbar__value { font-family: var(--font-display); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; white-space: nowrap; }
	.actionbar .btn { padding: 14px 18px; font-size: 16px; white-space: nowrap; }
	.actionbar .btn:active { transform: scale(.94); }
}
