.chc-sticky-atc {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	display: none;
	padding: 10px 12px;
	background: #fff;
	border-top: 1px solid var(--chc-color-border);
	box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}

.chc-sticky-atc.is-visible {
	display: block;
}

.chc-sticky-atc__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
}

.chc-sticky-atc__meta {
	min-width: 0;
}

.chc-sticky-atc__title {
	margin: 0 0 4px;
	font-size: 0.95rem;
	line-height: 1.25;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.chc-sticky-atc__price {
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.2;
}

.chc-sticky-atc__action .button,
.chc-sticky-atc__action a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 14px;
	border-radius: var(--chc-radius);
	text-decoration: none;
	white-space: nowrap;
}

@media (min-width: 981px) {
	.chc-sticky-atc {
		display: none !important;
	}
}