.cookie-notice {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 95%;
	max-width: 900px;
	background: #000000;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
	z-index: 10000;
	font-family: 'Arial', 'Helvetica', sans-serif;
	color: #ffffff;
}

.cookie-notice__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.cookie-notice__text {
	font-size: 15px;
	line-height: 1.5;
	color: #e0e0e0;
	flex: 1;
}

.cookie-notice__text a {
	color: #ffffff;
	text-decoration: underline;
	font-weight: 600;
	transition: opacity 0.2s;
	white-space: nowrap;
}

.cookie-notice__text a:hover {
	opacity: 0.8;
	text-decoration: none;
}

.cookie-notice__button {
	background: #ffffff;
	color: #000000;
	border: none;
	padding: 10px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	border-radius: 8px;
	transition: all 0.2s;
	min-width: 80px;
	white-space: nowrap;
	flex-shrink: 0;
}

.cookie-notice__button:hover {
	background: #f0f0f0;
	transform: translateY(-1px);
}

@media (max-width: 768px) {
	.cookie-notice {
		bottom: 10px;
		padding: 20px;
		border-radius: 14px;
		width: calc(100% - 20px);
		max-width: none;
	}
  
	.cookie-notice__container {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
  
	.cookie-notice__button {
		align-self: flex-end;
		width: auto;
		padding: 10px 24px;
	}
}

@media (max-width: 480px) {
	.cookie-notice {
		padding: 18px 15px;
		border-radius: 12px;
	}
  
	.cookie-notice__text {
		font-size: 14px;
	}
  
	.cookie-notice__text a {
		white-space: normal;
	}
  
	.cookie-notice__button {
		width: 100%;
		padding: 12px;
	}
}