/* Himeros Core — cookie consent banner. */
.himeros-cookie {
	position: fixed;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 99999;
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border: 1px solid #E4D9CB;
	border-radius: 8px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
	padding: 1rem 1.25rem;
	font-size: 0.9rem;
	line-height: 1.45;
}

.himeros-cookie__text {
	margin: 0;
	color: #2B2724;
}

.himeros-cookie__text a {
	color: #B9743F;
	text-decoration: underline;
}

.himeros-cookie__actions {
	flex: 0 0 auto;
	display: flex;
	gap: 0.6rem;
	align-items: center;
}

.himeros-cookie__btn {
	flex: 0 0 auto;
	background: #B9743F;
	color: #fff;
	border: 1px solid #B9743F;
	border-radius: 6px;
	padding: 0.6rem 1.1rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
}

.himeros-cookie__btn:hover {
	background: #9C5C2C;
	border-color: #9C5C2C;
}

/* "Len nevyhnutné" — quieter, outline style. */
.himeros-cookie__btn--secondary {
	background: transparent;
	color: #6C6359;
	border-color: #D8CCBC;
	font-weight: 500;
}

.himeros-cookie__btn--secondary:hover {
	background: #F6F0E8;
	color: #2B2724;
	border-color: #C9BBA8;
}

/* Discreet trigger to re-open the banner (change/withdraw consent). */
.himeros-cookie-reopen {
	position: fixed;
	left: 1rem;
	bottom: 1rem;
	z-index: 99998;
	background: #fff;
	color: #6C6359;
	border: 1px solid #E4D9CB;
	border-radius: 999px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
	padding: 0.4rem 0.85rem;
	font-size: 0.78rem;
	cursor: pointer;
}

.himeros-cookie-reopen:hover {
	color: #B9743F;
	border-color: #B9743F;
}

.himeros-cookie--hidden {
	display: none;
}

@media (max-width: 560px) {
	.himeros-cookie {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.himeros-cookie__actions {
		justify-content: center;
	}

	.himeros-cookie__btn {
		flex: 1 1 0;
	}
}
