/* Pitador cookie consent banner — same visual language as /kibbeh/ */

#pitador-cookie-root { position: fixed; left: 0; right: 0; bottom: 0; z-index: 999999; display: flex; justify-content: center; padding: 14px; pointer-events: none; }
#pitador-cookie-root .cookie-banner,
#pitador-cookie-root .cookie-panel { pointer-events: auto; }

.cookie-banner {
	background: #1b4742;
	max-width: 820px;
	width: 100%;
	border-radius: 12px;
	padding: 18px 22px;
	box-shadow: 0 -6px 28px rgba(0,0,0,0.35);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	justify-content: space-between;
}
.cookie-banner .cookie-text {
	font-size: 12.5px;
	font-family: 'FuturaL', sans-serif;
	font-weight: 300;
	line-height: 1.55;
	color: rgba(255,255,255,0.82);
	flex: 1 1 240px;
}
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-btn {
	padding: 9px 16px;
	border-radius: 24px;
	border: 1px solid rgba(255,255,255,0.3);
	background: transparent;
	color: #fff;
	font-family: 'FuturaB', sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	white-space: nowrap;
}
.cookie-btn.cookie-btn-accept {
	padding: 9px 18px;
	border: none;
	background: #a8936a;
	color: #123c37;
	font-weight: 800;
}

.cookie-panel {
	background: #1b4742;
	max-width: 560px;
	width: 100%;
	max-height: 76vh;
	overflow-y: auto;
	border-radius: 12px;
	padding: 24px 26px;
	box-shadow: 0 -6px 28px rgba(0,0,0,0.35);
}
.cookie-panel .cookie-panel-title {
	font-family: 'FuturaB', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 6px;
}
.cookie-panel .cookie-panel-text {
	font-size: 12px;
	font-family: 'FuturaL', sans-serif;
	font-weight: 300;
	line-height: 1.6;
	color: rgba(255,255,255,0.6);
	margin-bottom: 16px;
}
.cookie-row {
	border-top: 1px solid rgba(255,255,255,0.12);
	padding: 12px 0;
}
.cookie-row.cookie-row-last { border-bottom: 1px solid rgba(255,255,255,0.12); }
.cookie-row-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.cookie-row-title { font-size: 13px; font-family: 'FuturaM', sans-serif; font-weight: 500; color: #fff; }
.cookie-row-badge {
	font-size: 9px;
	font-family: 'FuturaB', sans-serif;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #c1b295;
	white-space: nowrap;
}
.cookie-row-desc {
	font-size: 11.5px;
	font-family: 'FuturaL', sans-serif;
	font-weight: 300;
	line-height: 1.6;
	color: rgba(255,255,255,0.5);
	margin-top: 5px;
}

.cookie-toggle {
	width: 44px;
	height: 24px;
	border-radius: 12px;
	flex-shrink: 0;
	position: relative;
	transition: background 0.2s ease;
	background: rgba(255,255,255,0.18);
	border: none;
	padding: 0;
	cursor: pointer;
}
.cookie-toggle.is-on { background: #a8936a; }
.cookie-toggle .cookie-toggle-thumb {
	position: absolute;
	top: 2px;
	left: 2px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	transition: left 0.2s ease;
	box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.cookie-toggle.is-on .cookie-toggle-thumb { left: 22px; }

.cookie-panel-more {
	font-size: 11px;
	font-family: 'FuturaL', sans-serif;
	font-weight: 300;
	color: rgba(255,255,255,0.5);
	margin-top: 14px;
}
.cookie-panel-more a { color: #c1b295; }

.cookie-panel-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
	margin-top: 18px;
}

.pitador-cookie-reopen { cursor: pointer; }

#pitador-cookie-root :focus-visible { outline: 2px solid #ede8dc; outline-offset: 3px; border-radius: 2px; }

@media (max-width: 768px) {
	.cookie-actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
	.cookie-btn { width: 100%; }
	.cookie-btn:nth-child(3) { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
	.cookie-toggle, .cookie-toggle-thumb { transition: none !important; }
}
