.scroll-bounce-container {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	margin: 0 auto;
	/* Force le conteneur à ne pas s'étendre au-delà de son parent grid */
	contain: inline-size;
}

.scroll-bounce-inner {
	display: flex;
	gap: 1rem;
	will-change: transform;
	cursor: grab;
}

.scroll-toggle {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 10;
	background: rgba(0, 0, 0, 0);
	color: #fff;
	border: none;
	padding: 6px 10px;
	border-radius: 6px;
	cursor: pointer;
}
.scroll-toggle:hover {
	background: rgba(0, 0, 0, 0.4);
}
