.swp-cookie-consent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999;
	background: #1f2933;
	color: #f5f7fa;
	padding: 16px 20px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
	font-size: 14px;
	line-height: 1.5;
}

.swp-cookie-consent.is-hidden,
.swp-cookie-consent__trigger.is-hidden {
	display: none;
}

.swp-cookie-consent__content {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.swp-cookie-consent__text {
	flex: 1 1 100px;
	margin: 0;
}

.swp-cookie-consent__text a {
	color: #8ecdf7;
	text-decoration: underline;
}

.swp-cookie-consent__actions {
	display: flex;
	gap: 10px;
	flex: 0 0 auto;
}

.swp-cookie-consent__btn {
	cursor: pointer;
	border: none;
	border-radius: 4px;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
}

.swp-cookie-consent__btn--accept {
	background: #2f9e44;
	color: #fff;
}

.swp-cookie-consent__btn--accept:hover {
	background: #268a3a;
}

.swp-cookie-consent__btn--reject {
	background: transparent;
	color: #f5f7fa;
	border: 1px solid #f5f7fa;
}

.swp-cookie-consent__btn--reject:hover {
	background: rgba(255, 255, 255, 0.1);
}

.swp-cookie-consent__manage-link {
	background: none;
	border: none;
	padding: 0;
	color: inherit;
	text-decoration: underline;
	cursor: pointer;
	font: inherit;
}

.swp-cookie-consent__trigger {
	position: fixed;
	left: 16px;
	bottom: calc(16px + env(safe-area-inset-bottom));
	z-index: 999998;
	box-sizing: border-box;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	background: #1f2933;
	color: #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.swp-cookie-consent__trigger:hover,
.swp-cookie-consent__trigger:focus-visible {
	background: #335386;
	transform: translateY(-2px);
	box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

.swp-cookie-consent__trigger:focus-visible {
	outline: 3px solid #8ecdf7;
	outline-offset: 2px;
}

.swp-cookie-consent__trigger svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

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

	.swp-cookie-consent__actions {
		justify-content: flex-end;
	}

	.swp-cookie-consent__trigger {
		left: 12px;
		bottom: calc(12px + env(safe-area-inset-bottom));
		width: 38px;
		height: 38px;
	}
}
