/* ===== Enhancers ===== */

/* Card scroll arrows (themable values come from the plugin admin as inline CSS).
   Selectors are intentionally hardened (doubled class + !important) so the
   arrows never inherit the theme's / Elementor's <button> styling. */
.card-scroll { position: relative; }
.card-scroll-host { position: relative; }

.card-scroll-arrow.card-scroll-arrow {
	position: absolute;
	z-index: 5;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	box-sizing: border-box !important;
	width: 40px;
	height: 40px;
	min-width: 0 !important;
	min-height: 0 !important;
	max-width: none !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0;
	border-radius: 999px;
	background: #fff;
	color: inherit;
	font: inherit !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	text-shadow: none !important;
	line-height: 0 !important;
	cursor: pointer !important;
	outline: none;
	overflow: visible;
	-webkit-appearance: none !important;
	appearance: none !important;
	transition: opacity .2s ease;
}
.card-scroll-arrow.card-scroll-arrow::before,
.card-scroll-arrow.card-scroll-arrow::after { content: none !important; display: none !important; }
.card-scroll-arrow.card-scroll-arrow svg { display: block !important; }

.card-scroll-arrow.prev { left: -6px; }
.card-scroll-arrow.next { right: -6px; }
.card-scroll-arrow.is-hidden { opacity: 0 !important; pointer-events: none !important; }
