/* 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);
	z-index: 10000;
	display: none;
	animation: slideUp 0.4s ease-out;
	border-top: 2px solid #d35400;
	min-height: fit-content;
	padding: 0;
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.cookie-banner-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.5rem 2rem;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 2rem;
}

.cookie-banner-text {
	flex: 1;
}

.cookie-banner-text h3 {
	color: #3b3b3b;
	font-size: 1.35rem;
	font-weight: 400;
	margin: 0 0 0.5rem 0;
	letter-spacing: -0.025rem;
	line-height: 1.3 !important;
}

.cookie-banner-text p {
	color: #3b3b3b;
	font-size: 0.95rem;
	line-height: 1.6 !important;
	margin: 0;
	opacity: 0.9;
}

.cookie-banner-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
	flex-wrap: wrap;
}

.cookie-btn {
	font-family: "Manrope", Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-size: 0.9rem;
	padding: 0.75rem 2rem;
	border: none;
	border-radius: 2.75rem;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	text-transform: none;
	letter-spacing: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: auto;
}

.cookie-btn-accept {
	background: #d35400;
	color: #ffffff !important;
	box-shadow: 0 2px 8px rgba(211, 84, 0, 0.3);
}

.cookie-btn-accept:hover {
	background: #e05d00;
	box-shadow: 0 4px 12px rgba(211, 84, 0, 0.4);
	transform: translateY(-2px);
}

.cookie-btn-decline {
	background: transparent;
	color: #3b3b3b;
	border: 1px solid #eeeeee;
}

.cookie-btn-decline:hover {
	background: #f5f5f5;
	border-color: #d35400;
	color: #d35400;
}

.cookie-link {
	color: #3b3b3b;
	font-size: 0.9rem;
	text-decoration: none;
	border-bottom: dotted 1px #3b3b3b;
	transition: all 0.2s ease-in-out;
	white-space: nowrap;
}

.cookie-link:hover {
	color: #d35400;
	border-bottom-color: transparent;
}

/* Responsive Design */
@media screen and (max-width: 980px) {
	.cookie-banner-content {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 1.5rem 1.5rem;
	}
	
	.cookie-banner-actions {
		flex-direction: column;
		width: 100%;
		align-items: stretch;
	}
	
	.cookie-btn {
		width: 100%;
		text-align: center;
	}
}

@media screen and (max-width: 736px) {
	.cookie-banner-content {
		padding: 1.25rem 1rem;
	}
	
	.cookie-banner-text h3 {
		font-size: 1.25rem;
	}
	
	.cookie-banner-text p {
		font-size: 0.9rem;
	}
	
	.cookie-btn {
		padding: 0.65rem 1.5rem;
		font-size: 0.85rem;
	}
}

@media screen and (max-width: 480px) {
	.cookie-banner {
		border-top-width: 1px;
	}
	
	.cookie-banner-content {
		padding: 1rem 0.85rem;
		gap: 1rem;
	}
	
	.cookie-banner-text h3 {
		font-size: 1.1rem;
		margin-bottom: 0.35rem;
	}
	
	.cookie-banner-text p {
		font-size: 0.85rem;
		line-height: 1.5;
	}
	
	.cookie-banner-actions {
		gap: 0.75rem;
	}
	
	.cookie-link {
		font-size: 0.85rem;
		text-align: center;
	}
}

/* Animation for banner dismissal */
.cookie-banner.hide {
	animation: slideDown 0.4s ease-in forwards;
}

@keyframes slideDown {
	from {
		transform: translateY(0);
		opacity: 1;
	}
	to {
		transform: translateY(100%);
		opacity: 0;
	}
}
