.akcc-bar {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99990;
	padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
	background: #fff;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
	transform: translateY(0);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.akcc-bar--hidden {
	opacity: 0;
	pointer-events: none;
	transform: translateY(100%);
}

.akcc-bar__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 16px;
	max-width: 1120px;
	margin: 0 auto;
}

.akcc-bar__message {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.4;
	color: #1f1f1f;
}

.akcc-bar__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.akcc-bar__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 16px;
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	font-family: inherit;
	box-sizing: border-box;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.akcc-bar__button--secondary {
	color: #1f1f1f;
	background: #f4f4f4;
	border: 1px solid #d9d9d9;
}

.akcc-bar__button--secondary:hover,
.akcc-bar__button--secondary:focus {
	color: #1f1f1f;
	background: #ebebeb;
}

.akcc-bar__button--primary {
	color: #fff;
	background: #b42318;
	border: 1px solid #b42318;
}

.akcc-bar__button--primary:hover,
.akcc-bar__button--primary:focus {
	color: #fff;
	background: #962018;
	border-color: #962018;
}

@media (max-width: 640px) {
	.akcc-bar__inner {
		flex-direction: column;
		align-items: stretch;
	}

	.akcc-bar__actions {
		width: 100%;
	}

	.akcc-bar__button {
		flex: 1 1 auto;
	}
}

.akcc-footer-switch {
	padding: 0 16px 24px;
	text-align: center;
}

.akcc-footer-switch__text {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.5;
	color: #5c5c5c;
}

.akcc-footer-switch__link {
	margin-left: 0.35em;
	font-weight: 600;
	color: #1f1f1f;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.akcc-footer-switch__link:hover,
.akcc-footer-switch__link:focus {
	color: #b42318;
}
