.ky-cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: -100%;
	z-index: 99999;
	background: #0B0B0B;
	border-top: 1px solid #C8A45B;
	color: #F7F7F7;
	transition: bottom 0.4s ease;
	font-family: 'Montserrat', sans-serif;
}
.ky-cookie-banner.ky-cookie-visible {
	bottom: 0;
}
.ky-cookie-banner-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 24px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.ky-cookie-text strong {
	color: #C8A45B;
	display: block;
	margin-bottom: 4px;
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
}
.ky-cookie-text p {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: #d9d9d9;
	max-width: 640px;
}
.ky-cookie-text a {
	color: #C8A45B;
	text-decoration: underline;
}
.ky-cookie-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.ky-cookie-btn {
	padding: 10px 20px;
	border-radius: 4px;
	font-size: 13px;
	cursor: pointer;
	border: 1px solid #C8A45B;
	white-space: nowrap;
}
.ky-cookie-btn-primary {
	background: #C8A45B;
	color: #0B0B0B;
	font-weight: 600;
}
.ky-cookie-btn-primary:hover {
	background: #d9b96f;
}
.ky-cookie-btn-ghost {
	background: transparent;
	color: #F7F7F7;
}
.ky-cookie-btn-ghost:hover {
	background: rgba(200, 164, 91, 0.1);
}
.ky-cookie-panel {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
}
.ky-cookie-panel.ky-cookie-panel-open {
	max-height: 500px;
	padding: 0 24px 20px;
}
.ky-cookie-panel-item {
	border-top: 1px solid rgba(200, 164, 91, 0.2);
	padding: 14px 0;
}
.ky-cookie-panel-item-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	margin-bottom: 6px;
}
.ky-cookie-panel-item p {
	margin: 0;
	font-size: 12px;
	color: #b3b3b3;
	line-height: 1.4;
}
@media (max-width: 768px) {
	.ky-cookie-banner-inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.ky-cookie-actions {
		width: 100%;
	}
	.ky-cookie-btn {
		flex: 1;
	}
}