/* Cookie Banner Styles */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
	padding: 1.5rem;
	z-index: 9999;
	transform: translateY(100%);
	opacity: 0;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
				opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-top: 2px solid rgba(45, 131, 230, 0.2);
}

.cookie-banner--visible {
	transform: translateY(0);
	opacity: 1;
}

.cookie-banner-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.cookie-banner-text {
	flex: 1;
	min-width: 300px;
}

.cookie-banner-text h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--core-dark-grey, #262a35);
	margin: 0 0 0.5rem 0;
}

.cookie-banner-text p {
	font-size: 0.9375rem;
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.75);
	margin: 0;
}

.cookie-banner-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	align-items: center;
}

.cookie-banner-btn {
	padding: 0.75rem 1.75rem;
	border-radius: 8px;
	font-size: 0.9375rem;
	font-weight: 500;
	cursor: pointer;
	border: none;
	text-decoration: none;
	transition: all 0.1s;
	/* transition: all 0.2s ease; */
	white-space: nowrap;
	display: inline-block;
	font-family: inherit;
}

.cookie-banner-btn--primary {
	background: var(--core-blue, #2d83e6);
	color: white;
	/* box-shadow: 0 2px 8px rgba(45, 131, 230, 0.25); */
}

.cookie-banner-btn--primary:hover {
	background: #3d8fe8;
	/* box-shadow: 0 4px 12px rgba(45, 131, 230, 0.35); */
}

.cookie-banner-btn--primary:active {
	background: var(--core-blue, #2d83e6);
}

.cookie-banner-btn--secondary {
	background: transparent;
	color: var(--core-blue, #2d83e6);
	border: 1.5px solid var(--core-blue, #2d83e6);
}

.cookie-banner-btn--secondary:hover {
	background: rgba(45, 131, 230, 0.08);
	border-color: var(--core-blue, #2d83e6);
	color: var(--core-blue, #2d83e6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.cookie-banner {
		padding: 1.25rem;
	}

	.cookie-banner-content {
		flex-direction: column;
		align-items: stretch;
		gap: 1.25rem;
	}

	.cookie-banner-text {
		min-width: 100%;
	}

	.cookie-banner-actions {
		flex-direction: column;
		width: 100%;
	}

	.cookie-banner-btn {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.cookie-banner-text h3 {
		font-size: 1rem;
	}

	.cookie-banner-text p {
		font-size: 0.875rem;
	}

	.cookie-banner-btn {
		padding: 0.625rem 1.5rem;
		font-size: 0.875rem;
	}
}
