/* Cookie consent bar — fixed bottom, above storefront drawers where possible */
.zed-cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100000;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 20px;
	padding: 14px 20px;
	background: #ffffff;
	border-top: 1px solid #e8e8e1;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
	font-family: Jost, sans-serif;
	font-size: 14px;
	line-height: 1.45;
	color: #000000;
}

.zed-cookie-banner--hidden {
	display: none !important;
}

.zed-cookie-banner__text {
	flex: 1 1 280px;
	max-width: 720px;
	margin: 0;
}

.zed-cookie-banner__text a {
	color: #ff97b6;
	text-decoration: underline;
}

.zed-cookie-banner__text a:hover {
	color: #ff7ea4;
}

.zed-cookie-banner__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 12px;
	flex-shrink: 0;
}

.zed-cookie-banner__btn {
	display: inline-block;
	padding: 10px 22px;
	border: none;
	border-radius: 3px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	background: #ff97b6;
	color: #ffffff;
	transition: background-color 0.2s ease;
}

.zed-cookie-banner__btn:hover,
.zed-cookie-banner__btn:focus {
	background: #ff7ea4;
	color: #ffffff;
}

.zed-cookie-banner__btn:focus {
	outline: 2px solid #000000;
	outline-offset: 2px;
}

@media only screen and (max-width: 749px) {
	.zed-cookie-banner {
		padding: 12px 16px;
	}

	.zed-cookie-banner__actions {
		width: 100%;
		justify-content: stretch;
	}

	.zed-cookie-banner__btn {
		flex: 1;
		text-align: center;
	}
}
