.pyrotech-products {
	background: #f2f5fb;
	color: #000;
}

.pyrotech-products .section-inner {
	padding-top: 120px;
	padding-bottom: 80px;
	box-sizing: border-box;
}

.pyrotech-products .section-head {
	flex-wrap: wrap;
	gap: 24px 48px;
	margin-bottom: 40px;
}

.pyrotech-products .heading-common {
	font-size: 40px;
	font-weight: 400;
}

.heading-common-small {
	font-size: 32px;
	font-weight: 400;
}

.pyrotech-products .heading-common-light {
	font-weight: 400;
}

.pyrotech-products .heading-common-line--heavy {
	font-weight: 900;
}

.pyrotech-products .heading-common-desc {
	font-weight: 500;
	line-height: 150%;
	flex: 1 1 320px;
	max-width: 560px;
	min-width: 0;
}

.pyrotech-products__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	align-items: stretch;
	justify-content: flex-start;
}

.product-card {
	box-shadow: none;
	transform: translateY(0);
	transition: all 0.3s ease;
}

.product-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	transition: all 0.3s ease;
}

/* FAQ (below product grid) */
.pyrotech-products-faq {
	margin-top: 40px;
	padding-top: 0;
}

@media (min-width: 769px) {
	.pyrotech-products-faq {
		margin-top: 108px;
	}
}

.pyrotech-products-faq__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 40px 48px;
	align-items: flex-start;
}

.pyrotech-products-faq__intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	min-width: 0;
}

.pyrotech-products-faq__label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	max-width: 100%;
	min-height: 34px;
	padding: 6px 16px;
	border: 1px solid #d3d3d3;
	border-radius: 100px;
	
	font-weight: 400;
	font-size: 14px;
	line-height: 160%;
	
	color: #3e3e3e;
}

.pyrotech-products-faq__copy {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.pyrotech-products-faq__title {
	
	font-size: 30px;
	
	
	text-transform: uppercase;
	color: #000000;
	margin: 0;
}

.pyrotech-products-faq__title br {
	display: none;
}

.pyrotech-products-faq__title-line {
	display: block;
	font-weight: 400;
}

.pyrotech-products-faq__title-line--heavy {
	font-weight: 900;
}

.pyrotech-products-faq__desc {
	
	font-weight: 300;
	font-size: 16px;
	line-height: 160%;
	width: 482px;
	color: #3e3e3e;
	margin: 0;
}

.pyrotech-products-faq__accordion {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
	width: 100%;
}

.pyrotech-faq-item {
	box-sizing: border-box;
	background: #ffffff;
	border-radius: 12px;
	padding: 24px;
}

.pyrotech-faq-item__toggle {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	text-align: left;
	font: inherit;
	color: inherit;
	outline: none;
}

.pyrotech-faq-item__toggle:focus-visible {
	outline: 2px solid #ff8e2a;
	outline-offset: 2px;
}

.pyrotech-faq-item__question {
	flex: 1 1 auto;
	min-width: 0;
	
	font-weight: 500;
	font-size: 18px;
	line-height: 160%;
	
	color: #000000;
}

.pyrotech-faq-item__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 30px;
	min-height: 28px;
	padding: 11.25px 7.5px;
	border-radius: 4px;
	background: #ffd2aa;
	transition: background-color 0.35s ease;
	line-height: 0;
}

.pyrotech-faq-item__icon img {
	display: block;
	width: 13px;
	height: 7px;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	transform: rotate(180deg);
}

.pyrotech-faq-item.is-open .pyrotech-faq-item__icon {
	background: #ff8e2a;
}

.pyrotech-faq-item.is-open .pyrotech-faq-item__icon img {
	transform: rotate(0deg);
}

.pyrotech-faq-item__panel-wrap {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pyrotech-faq-item.is-open .pyrotech-faq-item__panel-wrap {
	grid-template-rows: 1fr;
}

.pyrotech-faq-item__panel-inner {
	overflow: hidden;
	min-height: 0;
}

.pyrotech-faq-item__panel {
	margin-top: 10px;
}

.pyrotech-faq-item__answer {
	
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	
	color: #00000099;
	margin: 0;
}

@media (prefers-reduced-motion: reduce) {
	.pyrotech-faq-item__panel-wrap,
	.pyrotech-faq-item__icon,
	.pyrotech-faq-item__icon img {
		transition: none;
	}
}

@media (max-width: 1024px) {
	.pyrotech-products-faq__layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.pyrotech-products .section-inner {
		padding-top: 88px;
		padding-bottom: 68px;
	}

	.pyrotech-products .section-head {
		margin-bottom: 32px;
		gap: 20px 32px;
	}

	.pyrotech-products .heading-common {
		font-size: 32px;
	}

	.pyrotech-products-faq__title {
		font-size: 26px;
	}

	.pyrotech-products-faq__desc {
		width: 100%;
		max-width: 100%;
	}

	.pyrotech-products-faq {
		margin-top: 56px;
	}
}

@media (max-width: 768px) {
	.pyrotech-products .section-inner {
		padding-top: 72px;
		padding-bottom: 56px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.pyrotech-products__grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.pyrotech-products .heading-common {
		font-size: 28px;
	}

	.pyrotech-products .section-head {
		flex-direction: column;
		margin-bottom: 32px;
	}

	.pyrotech-products__grid {
		gap: 20px;
	}

	.pyrotech-products-faq__title {
		font-size: 24px;
	}

	.pyrotech-products-faq__layout {
		gap: 28px;
	}

	.pyrotech-products-faq__intro {
		gap: 16px;
	}

	.pyrotech-faq-item {
		padding: 18px 16px;
		border-radius: 10px;
	}

	.pyrotech-faq-item__question {
		font-size: 16px;
	}

	.pyrotech-faq-item__answer {
		font-size: 15px;
	}

	.pyrotech-products-faq {
		margin-top: 40px;
	}
}

@media (max-width: 480px) {
	.pyrotech-products .section-inner {
		padding-top: 56px;
		padding-bottom: 48px;
		padding-left: 16px;
		padding-right: 16px;
	}

	.pyrotech-products .heading-common {
		font-size: 24px;
	}

	.pyrotech-products-faq__title {
		font-size: 22px;
	}

	.pyrotech-products-faq__label {
		font-size: 13px;
		padding: 5px 12px;
	}
}
