/* Simple GDPR Cookie Popup Styles */
.cookie-popup {
	position: fixed;
	bottom: 10px;
	left: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(15px);
	color: white;
	padding: 15px 20px;
	z-index: 9999;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	display: none;
	border-radius: 20px;
	animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(0);
	}
}

.cookie-popup.show {
	display: block;
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.cookie-text {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	flex: 1;
}

.cookie-text a {
	color: #3498db;
	text-decoration: none;
}

.cookie-text a:hover {
	text-decoration: underline;
}

.cookie-buttons {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.cookie-btn {
	padding: 8px 20px;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.cookie-btn-accept {
	background: #27ae60;
	color: white;
}

.cookie-btn-accept:hover {
	background: #219a52;
}

.cookie-btn-decline {
	background: transparent;
	color: white;
	border: 1px solid #7f8c8d;
}

.cookie-btn-decline:hover {
	background: #7f8c8d;
}

/* Mobile responsive */
@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;
	}
}