.smpt-cookie-notice {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100000;
	background: #1a1a1f;
	color: #f2f2f2;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.35);
}

.smpt-cookie-notice[hidden] {
	display: none;
}

.smpt-cookie-notice__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 14px 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 20px;
}

.smpt-cookie-notice__text {
	margin: 0;
	flex: 1 1 320px;
	font-size: 0.9rem;
	line-height: 1.5;
}

.smpt-cookie-notice__text a {
	color: #ffd700;
	text-decoration: underline;
}

.smpt-cookie-notice__actions {
	display: flex;
	gap: 10px;
	flex: 0 0 auto;
}

.smpt-cookie-notice__accept,
.smpt-cookie-notice__decline {
	border: 1px solid transparent;
	border-radius: 6px;
	padding: 9px 18px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
}

.smpt-cookie-notice__accept {
	background: #ffd700;
	color: #1a1a1f;
}

.smpt-cookie-notice__accept:hover {
	background: #e6c200;
}

.smpt-cookie-notice__decline {
	background: transparent;
	color: #f2f2f2;
	border-color: #55555c;
}

.smpt-cookie-notice__decline:hover {
	background: #2a2a31;
}

@media (max-width: 600px) {
	.smpt-cookie-notice__inner {
		flex-direction: column;
		align-items: stretch;
	}

	.smpt-cookie-notice__actions {
		justify-content: stretch;
	}

	.smpt-cookie-notice__accept,
	.smpt-cookie-notice__decline {
		flex: 1 1 0;
	}
}
