/* Cookie consent banner — isolated styles (high specificity) */

body.cookie-consent-visible .whatsapp-float {
	bottom: 7rem;
}

#cookie-consent-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100000;
	box-sizing: border-box;
	font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
	background: #3d4a4f;
	color: #ffffff;
	padding: 1.25rem 1.5rem;
	box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.22);
	border-top: 3px solid #d4a5a5;
	animation: cookieBannerSlideUp 0.35s ease-out;
}

@keyframes cookieBannerSlideUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

#cookie-consent-banner *,
#cookie-consent-banner *::before,
#cookie-consent-banner *::after {
	box-sizing: border-box;
}

#cookie-consent-banner .cookie-consent-banner__inner {
	max-width: 1140px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}

#cookie-consent-banner .cookie-consent-banner__content {
	flex: 1 1 280px;
	min-width: 0;
}

#cookie-consent-banner .cookie-consent-banner__title {
	margin: 0 0 0.35rem;
	font-family: 'Outfit', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: #ffffff;
	letter-spacing: 0.01em;
}

#cookie-consent-banner .cookie-consent-banner__text {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
}

#cookie-consent-banner .cookie-consent-banner__text a {
	color: #e8b4b8;
	text-decoration: underline;
	text-underline-offset: 2px;
	border-bottom: none;
	transition: color 0.2s ease;
}

#cookie-consent-banner .cookie-consent-banner__text a:hover {
	color: #ffffff !important;
	border-bottom: none;
}

#cookie-consent-banner .cookie-consent-banner__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}

#cookie-consent-banner button.cookie-consent-banner__btn {
	-webkit-appearance: none;
	appearance: none;
	display: inline-block;
	margin: 0;
	padding: 0.75rem 1.5rem;
	height: auto;
	min-height: 0;
	line-height: 1.2;
	font-family: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	text-transform: none;
	letter-spacing: normal;
	white-space: nowrap;
	border-radius: 999px;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

#cookie-consent-banner button.cookie-consent-banner__btn--decline {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.4);
	box-shadow: none;
	color: #ffffff !important;
}

#cookie-consent-banner button.cookie-consent-banner__btn--decline:hover,
#cookie-consent-banner button.cookie-consent-banner__btn--decline:focus {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.65);
	color: #ffffff !important;
	transform: none;
}

#cookie-consent-banner button.cookie-consent-banner__btn--accept {
	background: linear-gradient(135deg, #d4a5a5 0%, #e8b4b8 100%);
	border: none;
	box-shadow: 0 4px 15px rgba(212, 165, 165, 0.45);
	color: #ffffff !important;
}

#cookie-consent-banner button.cookie-consent-banner__btn--accept:hover,
#cookie-consent-banner button.cookie-consent-banner__btn--accept:focus {
	background: linear-gradient(135deg, #e8b4b8 0%, #d4a5a5 100%);
	box-shadow: 0 6px 20px rgba(212, 165, 165, 0.55);
	color: #ffffff !important;
	transform: translateY(-1px);
}

@media screen and (max-width: 736px) {
	#cookie-consent-banner {
		padding: 1rem;
	}

	#cookie-consent-banner .cookie-consent-banner__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}

	#cookie-consent-banner .cookie-consent-banner__actions {
		width: 100%;
	}

	#cookie-consent-banner button.cookie-consent-banner__btn {
		flex: 1;
		padding: 0.85rem 1rem;
	}

	body.cookie-consent-visible .whatsapp-float {
		bottom: 10rem;
	}
}
