/**
 * Weatherby - Custom Cookie Consent Banner styling
 * Save as: <child-theme>/assets/css/wby-consent-banner.css
 * Colors/fonts below are placeholders - swap to match goya-child's palette.
 */

#wby-consent-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	transform: translateY(100%);
	transition: transform 0.3s ease;
	background: #1a1a1a;
	color: #fff;
	padding: 16px 24px max(24px, env(safe-area-inset-bottom));
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

#wby-consent-banner.is-visible {
	transform: translateY(0);
}

.wby-consent-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.wby-consent-text {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	flex: 1 1 320px;
}

.wby-consent-text a {
	color: #fff;
	text-decoration: underline;
}

.wby-consent-actions {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.wby-consent-btn {
	border: 1px solid #fff;
	background: transparent;
	color: #fff;
	padding: 10px 20px;
	font-size: 14px;
	cursor: pointer;
	border-radius: 2px;
}

.wby-consent-accept {
	background: #fff;
	color: #1a1a1a;
}

.wby-cookie-settings-link {
	background: none;
	border: none;
	color: inherit;
	text-decoration: underline;
	cursor: pointer;
	font: inherit;
	padding: 0;
	font-size: 12px;
	opacity: 0.7;
}
