.bar-app {
	--bar-bg: #f8f2eb;
	--bar-accent: #e94e1b;
	--bar-accent-bright: #ff6b3d;
	--bar-accent-dark: #bd3510;
	--bar-amber: #ffa701;
	--bar-ink: #1c1713;
	--bar-muted: #71645b;
	--bar-line: rgba(28, 23, 19, 0.13);
	--bar-line-strong: rgba(28, 23, 19, 0.2);
	--bar-paper: #fffdf9;
	--bar-soft: #f0e5da;
	--bar-success: #17653a;
	--bar-success-soft: #eaf7ef;
	--bar-warning: #76570b;
	--bar-warning-soft: #fff7da;
	--bar-danger: #8c2828;
	--bar-danger-soft: #fff0ef;
	--bar-radius-sm: 14px;
	--bar-radius: 24px;
	--bar-radius-lg: 38px;
	--bar-shadow: 0 24px 70px rgba(64, 35, 19, 0.12);
	box-sizing: border-box;
	position: relative;
	isolation: isolate;
	width: min(100%, 1040px);
	margin: clamp(1rem, 5vw, 4.5rem) auto;
	padding: clamp(1.25rem, 3.2vw, 3rem);
	overflow: hidden;
	border: 1px solid rgba(28, 23, 19, 0.09);
	border-radius: var(--bar-radius-lg);
	background:
		radial-gradient(circle at 88% 4%, rgba(255, 167, 1, 0.13), transparent 28%),
		radial-gradient(circle at 5% 92%, rgba(233, 78, 27, 0.07), transparent 31%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0) 42%),
		var(--bar-bg);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 26px 90px rgba(64, 35, 19, 0.09);
	color: var(--bar-ink);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

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

.bar-app h1,
.bar-app h2,
.bar-app h3,
.bar-app p {
	margin-top: 0;
}

.bar-app a {
	color: inherit;
}

.bar-app [hidden] {
	display: none !important;
}

.bar-progress {
	width: min(100%, 680px);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0 auto clamp(2.25rem, 4vw, 3rem);
	padding: 0;
	list-style: none;
}

.bar-progress-step {
	position: relative;
	display: grid;
	justify-items: center;
	gap: 0.55rem;
	min-width: 0;
	color: #95877e;
	text-align: center;
}

.bar-progress-step:not(:last-child)::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 17px;
	left: calc(50% + 24px);
	width: calc(100% - 48px);
	height: 1px;
	background: var(--bar-line-strong);
}

.bar-progress-step span {
	width: 35px;
	height: 35px;
	display: grid;
	place-items: center;
	border: 1px solid var(--bar-line-strong);
	border-radius: 50%;
	background: rgba(255, 253, 249, 0.88);
	box-shadow: 0 4px 14px rgba(64, 35, 19, 0.06);
	font-size: 0.72rem;
	font-weight: 900;
	transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.bar-progress-step small {
	overflow: hidden;
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.04em;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bar-progress-step.is-current {
	color: var(--bar-accent-dark);
}

.bar-progress-step.is-current span {
	transform: translateY(-1px);
	border-color: var(--bar-accent);
	background: var(--bar-accent);
	box-shadow: 0 0 0 6px rgba(233, 78, 27, 0.1), 0 10px 24px rgba(233, 78, 27, 0.2);
	color: #fff;
}

.bar-progress-step.is-complete {
	color: var(--bar-ink);
}

.bar-progress-step.is-complete span {
	border-color: var(--bar-ink);
	background: var(--bar-ink);
	color: #fff;
}

.bar-progress-step.is-complete:not(:last-child)::after {
	background: var(--bar-ink);
}

.bar-header {
	width: min(100%, 800px);
	margin: 0 auto clamp(2rem, 3.2vw, 2.75rem);
	text-align: center;
}

.bar-header h1,
.bar-receipt h1 {
	margin: 0;
	color: var(--bar-ink);
	font-size: clamp(2.55rem, 6.1vw, 4.35rem);
	font-weight: 900;
	letter-spacing: -0.058em;
	line-height: 0.98;
	text-wrap: balance;
}

.bar-header > p:last-child,
.bar-receipt > p:last-child {
	max-width: 680px;
	margin: 1.4rem auto 0;
	color: var(--bar-muted);
	font-size: clamp(1rem, 1.8vw, 1.16rem);
	line-height: 1.68;
	text-wrap: pretty;
}

.bar-kicker {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	margin: 0 0 1.2rem;
	color: var(--bar-accent-dark);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.145em;
	line-height: 1.3;
	text-transform: uppercase;
}

.bar-kicker::before {
	content: "";
	width: 30px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.bar-access-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	align-items: start;
	gap: 1.15rem;
}

.bar-access-grid.is-guest-only {
	grid-template-columns: minmax(0, 760px);
	justify-content: center;
}

.bar-card {
	position: relative;
	margin: 1rem 0;
	padding: clamp(1.35rem, 3.5vw, 2.5rem);
	overflow: hidden;
	border: 1px solid var(--bar-line);
	border-radius: var(--bar-radius);
	background: rgba(255, 253, 249, 0.94);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.92) inset, 0 16px 44px rgba(64, 35, 19, 0.075);
	backdrop-filter: blur(12px);
	transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bar-card:not(.bar-card--form):hover {
	transform: translateY(-3px);
	border-color: rgba(233, 78, 27, 0.22);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.94) inset, 0 24px 60px rgba(64, 35, 19, 0.11);
}

.bar-card h2,
.bar-form legend {
	margin: 0 0 0.75rem;
	color: var(--bar-ink);
	font-size: clamp(1.35rem, 2.4vw, 1.75rem);
	font-weight: 900;
	letter-spacing: -0.035em;
	line-height: 1.12;
}

.bar-card > p,
.bar-card > form > p,
.bar-card > form > .bar-grid p {
	color: var(--bar-muted);
}

.bar-card-index {
	width: fit-content;
	margin-bottom: 1.25rem;
	padding: 0.38rem 0.62rem;
	border: 1px solid rgba(233, 78, 27, 0.2);
	border-radius: 999px;
	background: rgba(233, 78, 27, 0.065);
	color: var(--bar-accent-dark);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.bar-alert {
	width: min(100%, 860px);
	margin: 1rem auto 1.3rem;
	padding: 1rem 1.15rem;
	border: 1px solid;
	border-radius: var(--bar-radius-sm);
	box-shadow: 0 8px 24px rgba(64, 35, 19, 0.05);
}

.bar-alert strong {
	display: block;
	margin-bottom: 0.15rem;
}

.bar-alert--success {
	border-color: rgba(23, 101, 58, 0.24);
	background: var(--bar-success-soft);
	color: var(--bar-success);
}

.bar-alert--review {
	border-color: rgba(118, 87, 11, 0.22);
	background: var(--bar-warning-soft);
	color: var(--bar-warning);
}

.bar-alert--error {
	border-color: rgba(140, 40, 40, 0.22);
	background: var(--bar-danger-soft);
	color: var(--bar-danger);
}

.bar-form {
	color: var(--bar-ink);
}

.bar-form p {
	margin-bottom: 1rem;
}

.bar-form label,
.bar-form legend {
	font-weight: 850;
}

.bar-form label {
	display: block;
	color: var(--bar-ink);
	font-size: 0.88rem;
}

.bar-form input,
.bar-form select,
.bar-form textarea {
	width: 100%;
	min-height: 52px;
	margin-top: 0.48rem;
	padding: 0.78rem 0.92rem;
	border: 1px solid rgba(28, 23, 19, 0.2);
	border-radius: 13px;
	outline: 0;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.88) inset, 0 4px 12px rgba(64, 35, 19, 0.035);
	color: var(--bar-ink);
	font: inherit;
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.bar-form textarea {
	min-height: 132px;
	resize: vertical;
}

.bar-form input:hover,
.bar-form select:hover,
.bar-form textarea:hover {
	border-color: rgba(28, 23, 19, 0.32);
	background: #fff;
}

.bar-form input:focus,
.bar-form select:focus,
.bar-form textarea:focus {
	transform: translateY(-1px);
	border-color: rgba(233, 78, 27, 0.72);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(233, 78, 27, 0.1), 0 12px 26px rgba(64, 35, 19, 0.07);
}

.bar-form input[readonly] {
	background: #f5eee7;
	color: #64574f;
	cursor: not-allowed;
}

.bar-form small {
	display: block;
	margin-top: 0.48rem;
	color: var(--bar-muted);
	font-size: 0.77rem;
	font-weight: 600;
	line-height: 1.45;
}

.bar-form fieldset {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.bar-form-section {
	margin: 0;
	padding: clamp(1.15rem, 3vw, 2rem) 0;
	border-bottom: 1px solid var(--bar-line);
}

.bar-form-section:first-of-type {
	padding-top: 0;
}

.bar-form-section:last-of-type {
	border-bottom: 0;
}

.bar-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.bar-grid > p {
	min-width: 0;
	margin-bottom: 0;
}

.bar-card--guest .bar-form > .button[type="submit"] {
	margin-top: 1.25rem;
}

.bar-items {
	display: grid;
	gap: 0.72rem;
	margin-top: 1.1rem;
}

.bar-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.05rem;
	border: 1px solid var(--bar-line);
	border-radius: 16px;
	background: rgba(248, 242, 235, 0.72);
	transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.bar-item:hover,
.bar-item:focus-within,
.bar-item.has-selection {
	transform: translateY(-1px);
	border-color: rgba(233, 78, 27, 0.3);
	background: rgba(255, 253, 249, 0.96);
	box-shadow: 0 10px 28px rgba(64, 35, 19, 0.065);
}

.bar-item.has-selection {
	box-shadow: 0 0 0 3px rgba(233, 78, 27, 0.075), 0 10px 28px rgba(64, 35, 19, 0.065);
}

.bar-item > div {
	min-width: 0;
}

.bar-item > div > strong {
	display: block;
	font-size: 0.96rem;
	font-weight: 850;
	line-height: 1.35;
}

.bar-item small {
	margin-top: 0.28rem;
	color: var(--bar-muted);
}

.bar-item label {
	flex: 0 0 108px;
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.bar-item input[type="number"] {
	min-height: 44px;
	padding-block: 0.5rem;
	text-align: center;
}

.bar-item.is-unavailable {
	opacity: 0.56;
}

.bar-item.is-unavailable:hover {
	transform: none;
	box-shadow: none;
}

.bar-evidence {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.55rem;
	margin: 1rem auto 1.45rem;
}

.bar-evidence span {
	padding: 0.52rem 0.78rem;
	border: 1px solid rgba(28, 23, 19, 0.09);
	border-radius: 999px;
	background: rgba(255, 253, 249, 0.78);
	box-shadow: 0 5px 16px rgba(64, 35, 19, 0.035);
	color: var(--bar-muted);
	font-size: 0.78rem;
	font-weight: 750;
}

.bar-order-list,
.bar-review-items {
	margin: 1.1rem 0 0;
	padding: 0;
	list-style: none;
}

.bar-order-list li,
.bar-review-items li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.95rem 0;
	border-bottom: 1px solid var(--bar-line);
}

.bar-order-list li:last-child,
.bar-review-items li:last-child {
	border-bottom: 0;
}

.bar-order-list li > span,
.bar-review-items li > span {
	min-width: 0;
}

.bar-order-card-row {
	align-items: flex-start;
	flex-wrap: wrap;
}

.bar-order-card-copy {
	min-width: 0;
	display: grid;
	flex: 1 1 auto;
	flex-basis: 100%;
	gap: 0.62rem;
}

.bar-order-meta {
	color: var(--bar-muted);
	font-size: 0.9rem;
	line-height: 1.5;
}

.bar-order-meta strong {
	color: var(--bar-ink);
}

.bar-order-status {
	width: fit-content;
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0.34rem 0.68rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.02em;
	line-height: 1.2;
}

.bar-order-status.is-available {
	border-color: rgba(23, 101, 58, 0.18);
	background: var(--bar-success-soft);
	color: var(--bar-success);
}

.bar-order-status.is-pending {
	border-color: var(--bar-line);
	background: #f1ece6;
	color: var(--bar-muted);
}

.bar-order-status.is-progress {
	border-color: rgba(233, 78, 27, 0.2);
	background: rgba(233, 78, 27, 0.075);
	color: var(--bar-accent-dark);
}

.bar-order-window {
	display: grid;
	gap: 0.8rem;
	padding: 0.88rem;
	overflow: hidden;
	border: 1px solid rgba(28, 23, 19, 0.1);
	border-radius: 17px;
	background:
		radial-gradient(circle at 100% 0, rgba(255, 167, 1, 0.11), transparent 48%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 242, 235, 0.88));
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.96) inset, 0 10px 24px rgba(64, 35, 19, 0.065);
	color: var(--bar-muted);
	font-size: 0.78rem;
	line-height: 1.45;
}

.bar-order-window-head {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.bar-order-window-icon {
	width: 34px;
	height: 34px;
	display: grid;
	flex: 0 0 34px;
	place-items: center;
	border: 1px solid rgba(233, 78, 27, 0.16);
	border-radius: 11px;
	background: rgba(233, 78, 27, 0.075);
	box-shadow: 0 6px 16px rgba(233, 78, 27, 0.08);
	color: var(--bar-accent-dark);
}

.bar-order-window-icon svg,
.bar-legal-icon svg {
	width: 20px;
	height: 20px;
	overflow: visible;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.75;
}

.bar-order-window-head strong {
	color: var(--bar-ink);
	font-size: 0.82rem;
	font-weight: 850;
	letter-spacing: -0.01em;
	line-height: 1.3;
}

.bar-order-window-details {
	display: flex;
	flex-wrap: wrap;
	gap: 0.48rem;
}

.bar-order-window time,
.bar-order-countdown {
	min-height: 35px;
	display: flex;
	align-items: center;
	flex: 1 1 132px;
	padding: 0.48rem 0.62rem;
	border: 1px solid rgba(28, 23, 19, 0.08);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.72);
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 1.35;
}

.bar-order-countdown {
	border-color: rgba(233, 78, 27, 0.14);
	background: rgba(233, 78, 27, 0.07);
	color: var(--bar-accent-dark);
	font-weight: 850;
}

.bar-order-window.is-expired {
	border-color: rgba(140, 40, 40, 0.16);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), var(--bar-danger-soft));
}

.bar-order-window.is-expired .bar-order-window-icon,
.bar-order-window.is-expired .bar-order-countdown {
	border-color: rgba(140, 40, 40, 0.16);
	background: rgba(140, 40, 40, 0.07);
	color: var(--bar-danger);
}

.bar-card--order-state {
	width: min(100%, 820px);
	margin-right: auto;
	margin-left: auto;
}

.bar-card--order-state .bar-order-status {
	margin-bottom: 1rem;
}

.bar-app .button.is-disabled,
.bar-app .button.is-disabled:hover {
	transform: none;
	border-color: rgba(28, 23, 19, 0.08);
	background: #eee8e2;
	box-shadow: none;
	color: #8a7f77;
	cursor: not-allowed;
	opacity: 0.86;
}

.bar-summary {
	display: grid;
	grid-template-columns: minmax(155px, 0.58fr) minmax(0, 1.42fr);
	margin: 0 0 2rem;
	padding: 0;
	border-top: 1px solid var(--bar-line);
}

.bar-summary dt,
.bar-summary dd {
	margin: 0;
	padding: 0.82rem 0;
	border-bottom: 1px solid var(--bar-line);
}

.bar-summary dt {
	color: var(--bar-muted);
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.bar-summary dd {
	min-width: 0;
	overflow-wrap: anywhere;
	font-weight: 720;
}

.bar-legal-statement {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: start;
	gap: 1rem;
	margin: 1.75rem 0;
	padding: clamp(1.05rem, 2.4vw, 1.35rem);
	overflow: hidden;
	border: 1px solid rgba(28, 23, 19, 0.1);
	border-radius: 22px;
	background:
		radial-gradient(circle at 94% 2%, rgba(255, 167, 1, 0.12), transparent 38%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 242, 235, 0.86));
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.96) inset, 0 14px 36px rgba(64, 35, 19, 0.08);
}

.bar-legal-statement::after {
	content: "";
	position: absolute;
	top: 0;
	right: clamp(1.1rem, 3vw, 2rem);
	left: clamp(4.95rem, 8vw, 6.2rem);
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--bar-accent), var(--bar-amber), transparent 82%);
}

.bar-legal-icon {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(233, 78, 27, 0.18);
	border-radius: 15px;
	background: linear-gradient(145deg, rgba(233, 78, 27, 0.12), rgba(255, 167, 1, 0.08));
	box-shadow: 0 10px 24px rgba(233, 78, 27, 0.1);
	color: var(--bar-accent-dark);
}

.bar-legal-icon svg {
	width: 24px;
	height: 24px;
}

.bar-legal-copy {
	min-width: 0;
}

.bar-legal-statement p {
	margin: 0;
}

.bar-legal-statement p:first-child {
	margin: 0.08rem 0 0.48rem;
	color: var(--bar-accent-dark);
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.095em;
	line-height: 1.3;
	text-transform: uppercase;
}

.bar-legal-statement p:last-child {
	color: var(--bar-ink);
	font-size: 0.96rem;
	font-weight: 570;
	line-height: 1.62;
	text-wrap: pretty;
}

.bar-confirm-form,
.bar-form-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 1.5rem 0 0;
}

.bar-app .button,
.bar-app button.button,
.bar-confirm-button {
	min-height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.78rem 1.3rem;
	border: 1px solid transparent;
	border-radius: 999px;
	outline: 0;
	background: #ebe3dc;
	box-shadow: 0 8px 20px rgba(64, 35, 19, 0.06);
	color: var(--bar-ink);
	font: inherit;
	font-size: 0.9rem;
	font-weight: 850;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease, opacity 0.22s ease;
}

.bar-app .button:hover,
.bar-app button.button:hover {
	transform: translateY(-2px);
	border-color: rgba(28, 23, 19, 0.12);
	background: #fff;
	box-shadow: 0 14px 28px rgba(64, 35, 19, 0.11);
	color: var(--bar-ink);
}

.bar-app .button:active,
.bar-app button.button:active {
	transform: translateY(0) scale(0.985);
}

.bar-app .button.alt,
.bar-app button.button.alt,
.bar-confirm-button {
	border-color: var(--bar-accent);
	background: var(--bar-accent);
	box-shadow: 0 12px 28px rgba(233, 78, 27, 0.24);
	color: #fff;
}

.bar-app .button.alt:hover,
.bar-app button.button.alt:hover,
.bar-confirm-button:hover {
	border-color: var(--bar-accent-bright);
	background: var(--bar-accent-bright);
	box-shadow: 0 16px 34px rgba(233, 78, 27, 0.3);
	color: #fff;
}

.bar-app a:focus-visible,
.bar-app button:focus-visible,
.bar-app input:focus-visible,
.bar-app select:focus-visible,
.bar-app textarea:focus-visible {
	outline: 3px solid var(--bar-amber);
	outline-offset: 4px;
}

.bar-form.is-submitting .button[type="submit"] {
	opacity: 0.72;
	cursor: progress;
}

.bar-secondary-link {
	color: var(--bar-muted);
	font-size: 0.88rem;
	font-weight: 750;
	text-decoration-color: rgba(233, 78, 27, 0.35);
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
	transition: color 0.2s ease;
}

.bar-secondary-link:hover {
	color: var(--bar-accent-dark);
}

.bar-receipt {
	width: min(100%, 800px);
	margin: 0 auto clamp(2rem, 4vw, 3rem);
	text-align: center;
}

.bar-app--receipt .bar-kicker {
	width: fit-content;
	margin-inline: auto;
	padding: 0.52rem 0.82rem;
	border: 1px solid rgba(23, 101, 58, 0.2);
	border-radius: 999px;
	background: var(--bar-success-soft);
	color: var(--bar-success);
}

.bar-app--receipt .bar-kicker::before {
	display: none;
}

.bar-card--receipt .bar-summary dd:first-of-type strong {
	color: var(--bar-accent-dark);
	font-size: 1.05rem;
	letter-spacing: 0.02em;
}

.bar-app--error {
	width: min(100%, 760px);
}

.bar-app--error .bar-card {
	max-width: 660px;
	margin-inline: auto;
}

.bar-checkout-notice {
	margin: 0 0 1rem;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(233, 78, 27, 0.16);
	border-left: 3px solid #e94e1b;
	border-radius: 10px;
	background: #fff8f2;
	color: #55463e;
	font-size: 0.9rem;
}

.bar-checkout-notice a {
	color: #bd3510;
	font-weight: 800;
	text-decoration-color: rgba(233, 78, 27, 0.35);
	text-underline-offset: 3px;
}

.bar-app .bar-trap {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.bar-app.is-enhanced [data-bar-reveal] {
	opacity: 0;
	transform: translateY(18px);
}

.bar-app.is-enhanced [data-bar-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.62s ease, transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bar-app.is-enhanced [data-bar-reveal]:nth-of-type(2).is-visible {
	transition-delay: 0.07s;
}

.bar-app.is-enhanced [data-bar-reveal]:nth-of-type(3).is-visible {
	transition-delay: 0.13s;
}

@media (max-width: 860px) {
	.bar-app {
		border-radius: 28px;
	}

	.bar-access-grid {
		grid-template-columns: 1fr;
	}

	.bar-card--orders,
	.bar-card--guest {
		width: 100%;
	}
}

@media (max-width: 640px) {
	.bar-app {
		margin: 0.75rem auto 1.5rem;
		padding: 1.2rem;
		border-radius: 22px;
	}

	.bar-progress {
		margin-bottom: 2.3rem;
	}

	.bar-progress-step small {
		font-size: 0.58rem;
		letter-spacing: 0;
	}

	.bar-header h1,
	.bar-receipt h1 {
		font-size: clamp(2.25rem, 11.2vw, 3.25rem);
		line-height: 1;
	}

	.bar-header > p:last-child,
	.bar-receipt > p:last-child {
		font-size: 0.96rem;
		line-height: 1.58;
	}

	.bar-card {
		padding: 1.25rem;
		border-radius: 18px;
	}

	.bar-grid {
		grid-template-columns: 1fr;
	}

	.bar-item,
	.bar-order-list li,
	.bar-review-items li {
		align-items: flex-start;
		flex-direction: column;
	}

	.bar-order-card-row > .button {
		width: 100%;
	}

	.bar-item label {
		width: 100%;
		flex-basis: auto;
	}

	.bar-summary {
		grid-template-columns: 1fr;
	}

	.bar-summary dt {
		padding-bottom: 0.2rem;
		border-bottom: 0;
	}

	.bar-summary dd {
		padding-top: 0;
	}

	.bar-confirm-form,
	.bar-form-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.bar-confirm-form .button,
	.bar-form-actions .button,
	.bar-form > .button,
	.bar-card--guest .button {
		width: 100%;
	}

	.bar-secondary-link {
		padding: 0.5rem;
		text-align: center;
	}

	.bar-legal-statement {
		gap: 0.78rem;
		border-radius: 18px;
	}

	.bar-legal-icon {
		width: 42px;
		height: 42px;
		border-radius: 13px;
	}

	.bar-legal-icon svg {
		width: 21px;
		height: 21px;
	}
}

@media (max-width: 390px) {
	.bar-app {
		padding: 1rem;
	}

	.bar-progress-step small {
		max-width: 76px;
		white-space: normal;
	}

	.bar-progress-step span {
		width: 32px;
		height: 32px;
	}

	.bar-progress-step:not(:last-child)::after {
		top: 15px;
	}

	.bar-kicker {
		font-size: 0.62rem;
		letter-spacing: 0.1em;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bar-app *,
	.bar-app *::before,
	.bar-app *::after {
		scroll-behavior: auto !important;
		animation: none !important;
		transition: none !important;
	}

	.bar-app.is-enhanced [data-bar-reveal] {
		opacity: 1;
		transform: none;
	}
}

@media (forced-colors: active) {
	.bar-app,
	.bar-card,
	.bar-alert,
	.bar-form input,
	.bar-form textarea,
	.bar-form select,
	.bar-progress-step span {
		border: 1px solid CanvasText;
		background: Canvas;
		color: CanvasText;
	}
}
