.pyrotech-precision {
	/* Base + diagonal: solid layer under angled gradient (same as Figma stack) */
	padding: 78px 0 60px;
	background: linear-gradient(45deg, #11326a 0%, #1f5cc2 100%);
}

/* Dark section: light text on shared heading utilities */
.pyrotech-precision .heading-common,
.pyrotech-precision .heading-common-desc {
	color: #fff;
}

/* Carousel — full viewport width, flush to screen edges */
.pyrotech-precision__carousel-wrap {
	position: relative;
	margin: auto;
	margin-bottom: 32px;
	max-width: var(--container-max-width);
	padding-left: 24px;
	padding-right: 24px;
	box-sizing: border-box;
	display: block;
}

/* One row only: horizontal track, never wrap (theme CSS often adds flex-wrap) */
.pyrotech-precision .swiper.pyrotech-precision-swiper {
	overflow: hidden;
	padding: 4px 0;
	width: 100%;
	max-width: 100%;
	display: block;
}

.pyrotech-precision .swiper-wrapper {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: stretch;
}

.pyrotech-precision-swiper.swiper-horizontal .swiper-wrapper {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: stretch;
}

/* When all slides fit, center the row (see carousels.js .pyrotech-precision--locked) */
.pyrotech-precision-swiper.pyrotech-precision--locked .swiper-wrapper {
	justify-content: center !important;
}

/* Swiper default .swiper-slide { width: 100% } — fixed card size 272×360 */
.pyrotech-precision-swiper .swiper-slide {
	flex: 0 0 272px !important;
	width: 272px !important;
	min-width: 272px !important;
	max-width: 272px !important;
	height: auto;
	box-sizing: border-box;
	display: block !important;
}

.pyrotech-precision-swiper .swiper-slide > a.pyrotech-precision__card {
	display: block !important;
	width: 272px !important;
	max-width: 272px !important;
	height: 360px;
	min-height: 360px;
	box-sizing: border-box;
}

.pyrotech-precision__card {
	width: 272px !important;
	max-width: 272px !important;
	height: 360px;
	min-height: 360px;
	border-radius: 14px;
	padding: 0;
	box-sizing: border-box;
	display: block !important;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	text-decoration: none;
}

.pyrotech-precision__card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	border-radius: 14px;
	z-index: 1;
}

.pyrotech-precision__card-label {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 2;
	
	font-weight: 600;
	font-size: 18px;
	
	
	text-transform: uppercase;
	color: #fff;
	margin: 0;
	text-align: left;
}

/* Footer: View All (left) + Nav (right), aligned to same row as header content */
.pyrotech-precision__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	gap: 24px;
	width: 100%;
}

.pyrotech-precision__footer .pyrotech-cta-big {
	flex-shrink: 0;
}

.pyrotech-precision__footer .pyrotech-precision__nav {
	flex-shrink: 0;
}

.pyrotech-precision__nav {
	display: flex;
	gap: 12px;
}

.pyrotech-precision__nav-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #fff;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}

.pyrotech-precision__nav-btn:hover {
	opacity: 0.9;
}

.pyrotech-precision__nav-btn svg {
	width: 24px;
	height: 24px;
}

.pyrotech-precision__nav-btn path {
	stroke: #1a232c;
}

@media (max-width: 768px) {
	.pyrotech-precision__footer {
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}
