.swimsweet-cookie-consent {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 99999;
	background: #ffffff;
	border: 1px solid #dcdcdc;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	border-radius: 6px;
	padding: 14px 16px;
}

.swimsweet-cookie-consent__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.swimsweet-cookie-consent__text {
	margin: 0;
	color: #333333;
	font-size: 14px;
	line-height: 1.5;
}

.swimsweet-cookie-consent__text a {
	color: #258cc7;
	text-decoration: underline;
}

.swimsweet-cookie-consent__text a:hover,
.swimsweet-cookie-consent__text a:focus {
	color: #1d6f9f;
}

.swimsweet-cookie-consent__button {
	flex-shrink: 0;
	border: 1px solid #258cc7;
	background: #258cc7;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	padding: 10px 16px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.swimsweet-cookie-consent__button:hover,
.swimsweet-cookie-consent__button:focus {
	background: #1d6f9f;
	border-color: #1d6f9f;
}

.swimsweet-cookie-consent--hidden {
	display: none;
}

@media (max-width: 767px) {
	.swimsweet-cookie-consent {
		left: 10px;
		right: 10px;
		bottom: 10px;
	}

	.swimsweet-cookie-consent__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.swimsweet-cookie-consent__button {
		width: 100%;
	}
}
