/**
 * Cookie Banner Styles
 * @package Evoque
 */

.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #B8906A;
	box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.08);
	padding: 16px 20px;
	z-index: 9999;
	transform: translateY(100%);
	transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
	transform: translateY(0);
}

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

.cookie-text {
	flex: 1;
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
}

.cookie-text strong {
	font-size: 15px;
	color: #fff;
	font-weight: 600;
}

.cookie-text span {
	font-size: 14px;
	color: #fff;
	line-height: 1.4;
}

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

.cookie-btn {
	padding: 8px 20px;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: opacity 0.2s ease;
	white-space: nowrap;
}

.cookie-btn:hover {
	opacity: 0.85;
}

.cookie-accept {
	background: #fff;
	color: #B8906A;
}

.cookie-refuse {
	background: transparent;
	color: #fff;
	border: 1px solid #fff;
}

@media (max-width: 768px) {
	.cookie-banner {
		padding: 16px;
	}

	.cookie-banner-content {
		flex-direction: column;
		gap: 12px;
		align-items: stretch;
	}

	.cookie-text {
		flex-direction: column;
		gap: 4px;
		align-items: flex-start;
	}

	.cookie-buttons {
		width: 100%;
	}

	.cookie-btn {
		flex: 1;
	}
}
