/* ========================================================================
   GlycemicLife — Cookie / Google Consent Mode banner
   ======================================================================== */

.consent-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	display: none;
	background: var(--navy-900);
	color: #fff;
	padding: 20px 24px;
	box-shadow: 0 -8px 30px rgba(0, 0, 0, .25);
}

.consent-banner.is-visible {
	display: flex;
}

.consent-banner__inner {
	max-width: var(--container);
	margin: 0 auto;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.consent-banner__text {
	flex: 1 1 420px;
	margin: 0;
	font-size: .92rem;
	line-height: 1.55;
	color: #e5e7eb;
}

.consent-banner__text a {
	color: var(--brand-500);
	text-decoration: underline;
}

.consent-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.consent-banner__actions button {
	font-family: inherit;
	font-size: .92rem;
	font-weight: 700;
	border-radius: var(--radius-sm);
	padding: 10px 18px;
	cursor: pointer;
	border: 1px solid transparent;
	transition: transform .1s, box-shadow .15s, background .15s;
}

.consent-banner__accept {
	background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
	color: #fff;
	box-shadow: 0 6px 16px rgba(242, 102, 30, .35);
}

.consent-banner__accept:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(242, 102, 30, .45);
}

.consent-banner__reject {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, .35);
}

.consent-banner__reject:hover {
	background: rgba(255, 255, 255, .08);
}

@media (max-width: 640px) {
	.consent-banner { padding: 16px; }
	.consent-banner__actions { width: 100%; }
	.consent-banner__actions button { flex: 1 1 auto; }
}
