/*
 * Cookie float button — above the accessibility float (bottom-left).
 * Colors match .pojo-a11y-float-btn (#122231 / #fff).
 */
.sbs-cookie-float-btn {
	position: fixed;
	left: 20px;
	bottom: 86px; /* a11y 50px + 16px gap + 20px bottom offset */
	z-index: 10001;
	width: 50px;
	height: 50px;
	padding: 0;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #CCA967;
	color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	transition: box-shadow 0.2s;
}

.sbs-cookie-float-btn:hover {
	background-color: #CCA967;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.sbs-cookie-float-btn:focus {
	outline: 2px solid #CCA967;
	outline-offset: 2px;
}

.sbs-cookie-float-btn svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	pointer-events: none;
}

@media (max-width: 950px) {
	.sbs-cookie-float-btn {
		width: 40px;
		height: 40px;
		left: 10px;
		bottom: 66px; /* a11y 40px + 16px gap + 10px bottom offset */
	}

	.sbs-cookie-float-btn svg {
		width: 20px;
		height: 20px;
	}
}
