/**
 * Cookie consent bar — classic fixed strip above page footer.
 */
.toyotomi-cookie-notice {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	background: #fff;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
}

.toyotomi-cookie-notice__inner {
	max-width: 100%;
}

/* Space so the last page content is not covered until the user accepts. */
body:has(#toyotomi-cookie-notice) {
	padding-bottom: 5.5rem;
}

@media (min-width: 640px) {
	body:has(#toyotomi-cookie-notice) {
		padding-bottom: 4.5rem;
	}
}

@media (min-width: 1024px) {
	.toyotomi-cookie-notice__inner {
		padding-bottom: 1rem;
		padding-top: 1rem;
	}
}
