.cro-hero-slider {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	overflow: hidden;
	background: #111;
}

/* Break out of Elementor's boxed container (max-width + side padding) so the
   slider is always full-bleed, regardless of how the section around it is
   configured. Scoped via :has() to the container's inner wrapper only when
   the slider is its first element, so it doesn't affect other sections. */
.e-con-inner:has( > .elementor-widget-cro_hero_slider:first-child ) {
	padding-top: 0;
}

/* When the trust-badges widget sits directly below the hero slider, pull it
   up into a full-bleed dark band overlapping the slider's bottom edge,
   instead of a plain white strip. Scoped to that specific pairing so other
   pages using the trust-badges widget on its own are unaffected. */
   .elementor-17064 .elementor-element.elementor-element-7e43137 .cro-trust-badges {
    gap: 74px;
}
.elementor-widget-cro_hero_slider + .elementor-widget-cro_trust_badges {
	position: relative;
	z-index: 2;
	margin-top: -20px;
}
svg.e-font-icon-svg {
    width: 15px;
}
svg.e-font-icon-svg.e-fas-shipping-fast{
	width: 20px;
}
svg.e-font-icon-svg path {
    fill: white;
}

.elementor-widget-cro_hero_slider + .elementor-widget-cro_trust_badges .cro-trust-badges {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: 16px 24px;
	background: linear-gradient(0deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.55) 100%);
}

.elementor-widget-cro_hero_slider + .elementor-widget-cro_trust_badges .cro-trust-badges__text {
	color: #ffffff !important;
}

.elementor-widget-cro_hero_slider + .elementor-widget-cro_trust_badges .cro-trust-badges__icon {
	color: #ffffff !important;
}

@media only screen and (max-width: 767px) {
	.elementor-widget-cro_hero_slider + .elementor-widget-cro_trust_badges {
		margin-top: 0;
	}
}

.cro-hero-slider__track {
	position: absolute;
	inset: 0;
}

.cro-hero-slider__slide {
	position: absolute;
	inset: 0;
	background-image: var(--cro-slide-bg);
	background-size: cover;
	background-position: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 900ms ease;
	display: flex;
	align-items: flex-end;
}

.cro-hero-slider__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}

.cro-hero-slider__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.cro-hero-slider__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	max-width: 620px;
	padding: 0 5% 8%;
}

.cro-hero-slider__eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #f10104;
	background: rgba(255, 255, 255, 0.92);
	padding: 5px 12px;
	border-radius: 999px;
}

.cro-hero-slider__headline {
	margin: 0;
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1.08;
	letter-spacing: 0.01em;
	font-size: clamp(28px, 5vw, 56px);
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.cro-hero-slider__subheadline {
	margin: 0;
	font-size: clamp(14px, 1.6vw, 18px);
	line-height: 1.5;
	max-width: 46ch;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.cro-hero-slider__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 6px;
}

.cro-hero-slider__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 200ms ease, opacity 200ms ease;
}

.cro-hero-slider__cta:hover,
.cro-hero-slider__cta:focus-visible {
	transform: translateY(-2px);
	opacity: 0.92;
}

.cro-hero-slider__cta--primary {
	background-color: #f10104;
	color: #ffffff !important;
}

.cro-hero-slider__cta--secondary {
	background-color: rgba(255, 255, 255, 0.95);
	color: #1a1a1a;
}

.cro-hero-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: rgba(0, 0, 0, 0.35);
	color: #ffffff;
	cursor: pointer;
	transition: background-color 200ms ease;
}

.cro-hero-slider__arrow:hover,
.cro-hero-slider__arrow:focus-visible {
	background: rgba(0, 0, 0, 0.55);
}

.cro-hero-slider__arrow--prev {
	left: 20px;
}

.cro-hero-slider__arrow--next {
	right: 20px;
}

.cro-hero-slider__arrow svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.cro-hero-slider__dots {
	position: absolute;
	left: 24px;
	bottom: 20px;
	z-index: 3;
	display: flex;
	gap: 8px;
}

.cro-hero-slider__dot {
	width: 28px;
	height: 4px;
	border-radius: 999px;
	border: none;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	padding: 0;
	transition: background-color 200ms ease, width 200ms ease;
}

.cro-hero-slider__dot:hover {
	background: rgba(255, 255, 255, 0.7);
}

.cro-hero-slider__dot.is-active {
	width: 40px;
	background: #f10104;
}

.cro-hero-slider__arrow:focus-visible,
.cro-hero-slider__dot:focus-visible,
.cro-hero-slider__cta:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}

@media only screen and (max-width: 767px) {
	.cro-hero-slider__slide {
		background-image: var(--cro-slide-bg-mobile);
	}

	.cro-hero-slider__content {
		padding: 0 6% 10%;
		gap: 10px;
	}

	.cro-hero-slider__arrow {
		width: 36px;
		height: 36px;
	}

	.cro-hero-slider__arrow--prev {
		left: 10px;
	}

	.cro-hero-slider__arrow--next {
		right: 10px;
	}

	.cro-hero-slider__cta {
		padding: 12px 22px;
		font-size: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cro-hero-slider__slide {
		transition: none;
	}

	.cro-hero-slider__cta:hover,
	.cro-hero-slider__cta:focus-visible {
		transform: none;
	}
}
