/* Cookie Consent Banner Styles */
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #0a1929;
	color: #ffffff;
	padding: 20px;
	box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
	z-index: 9999;
	display: none;
	animation: slideUp 0.4s ease;
}

.cookie-consent.show {
	display: block;
}

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

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

.cookie-text {
	flex: 1;
	min-width: 300px;
}

.cookie-text p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
}

.cookie-text a {
	color: #ff9500;
	text-decoration: underline;
}

.cookie-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.cookie-btn {
	padding: 12px 30px;
	border: none;
	border-radius: 25px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cookie-btn-accept {
	background: #ff9500;
	color: #ffffff;
}

.cookie-btn-accept:hover {
	background: #ff8000;
	transform: translateY(-2px);
}

.cookie-btn-decline {
	background: transparent;
	color: #ffffff;
	border: 2px solid #ffffff;
}

.cookie-btn-decline:hover {
	background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
	.cookie-content {
		flex-direction: column;
		text-align: center;
	}
	
	.cookie-buttons {
		width: 100%;
		justify-content: center;
	}
	
	.cookie-btn {
		flex: 1;
		min-width: 120px;
	}
}