#chc-toast-container {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99999;
	display: flex;
	flex-direction: column;
	gap: 10px;
	pointer-events: none;
}

.chc-toast {
	min-width: 220px;
	max-width: 90vw;
	padding: 12px 16px;
	border-radius: 8px;
	background: #111;
	color: #fff;
	font-size: 14px;
	line-height: 1.4;
	box-shadow: 0 12px 30px rgba(0,0,0,0.15);
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.25s ease;
	pointer-events: auto;
}

.chc-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.chc-toast--success {
	background: #111;
}

.chc-toast--error {
	background: #c0392b;
}

.chc-scroll-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--chc-color-border);
	border-radius: 10px;
	background: #fff;
	color: var(--chc-color-text);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.chc-scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.chc-scroll-top:hover {
	background: #111;
	color: #fff;
	border-color: #111;
}

@media (max-width: 768px) {
	.chc-scroll-top {
		right: 14px;
		bottom: 14px;
		width: 42px;
		height: 42px;
	}
}

.chc-cookie-notice {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 99998;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	max-width: 760px;
	margin: 0 auto;
	padding: 14px 16px;
	border: 1px solid var(--chc-color-border);
	border-radius: 12px;
	background: #fff;
	color: var(--chc-color-text);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.chc-cookie-notice__text {
	font-size: 0.92rem;
	line-height: 1.4;
}

.chc-cookie-notice__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 16px;
	border: 1px solid #111;
	border-radius: 8px;
	background: #111;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
}

@media (max-width: 560px) {
	.chc-cookie-notice {
		left: 12px;
		right: 12px;
		bottom: 12px;
		flex-direction: column;
		align-items: stretch;
	}

	.chc-cookie-notice__button {
		width: 100%;
	}
}

.chc-cookie-notice[hidden] {
	display: none !important;
}

.site-footer {
	margin-top: 60px;
	background: #111;
	color: #fff;
}

.chc-footer-widgets {
	padding: 40px 0;
}

.chc-footer-widgets-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.chc-footer-col {
	min-width: 0;
}

.chc-footer-widget-title {
	margin-bottom: 12px;
	font-size: 1rem;
	font-weight: 600;
}

.chc-footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 16px 0;
	font-size: 0.9rem;
	opacity: 0.85;
}

@media (max-width: 980px) {
	.chc-footer-widgets-inner {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.chc-footer-widgets-inner {
		grid-template-columns: 1fr;
	}
}

html,
body {
	min-height: 100%;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-main,
#primary {
	flex: 1 0 auto;
}

.site-footer {
	margin-top: auto;
}

.chc-footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.chc-footer-menu ul {
	display: flex;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.chc-footer-menu a {
	color: #fff;
	text-decoration: none;
	font-size: 0.9rem;
	opacity: 0.85;
}

.chc-footer-menu a:hover {
	opacity: 1;
}

.chc-cookie-notice {
	box-sizing: border-box;
	max-width: calc(100vw - 24px);
	left: 12px;
	right: 12px;
}

@media (max-width: 560px) {
	.chc-cookie-notice {
		width: auto;
		max-width: calc(100vw - 24px);
	}
}

html,
body {
	max-width: 100%;
	overflow-x: clip;
}

html,
body {
	max-width: 100%;
	overflow-x: hidden !important;
}

.site,
.site-main,
.chc-container,
.chc-main-content,
.entry-content,
.woocommerce,
.woocommerce-page {
	max-width: 100%;
	overflow-x: clip;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	html,
	body {
		width: 100%;
		max-width: 100%;
		overflow-x: hidden !important;
	}

	.site,
	.site-main,
	.chc-container,
	.entry-content {
		max-width: 100%;
		overflow-x: hidden;
	}
}

/* Cookie notice: desktop compact, mobile safe */
.chc-cookie-notice {
	left: 50%;
	right: auto;
	bottom: 20px;
	width: auto;
	max-width: min(760px, calc(100vw - 40px));
	transform: translateX(-50%);
	box-sizing: border-box;
}

@media (max-width: 560px) {
	.chc-cookie-notice {
		left: 12px;
		right: 12px;
		bottom: 12px;
		width: auto;
		max-width: calc(100vw - 24px);
		transform: none;
	}
}