/*
 * Brotherled product system
 * Product overview, family, landing and single-product templates.
 */

.products_overview,
.family_page,
.product_landing,
.single_led_product {
	--product-ink: #172b3a;
	--product-copy: #4e5963;
	--product-muted: #71808c;
	--product-line: #dce6eb;
	--product-surface: #f4f8fa;
	--product-blue: var(--i_color, #0787b8);
	--product-yellow: var(--i_color2, #f5c344);
	color: var(--product-copy);
	overflow: hidden;
}

.products_overview img,
.family_page img,
.product_landing img,
.single_led_product img {
	display: block;
	max-width: 100%;
	height: auto;
}

.product_section_space {
	padding: clamp(70px, 8vw, 120px) 0;
}

.product_surface {
	background: var(--product-surface);
}

.product_narrow {
	max-width: 980px !important;
}

.product_readable {
	color: var(--product-copy);
	font-size: 17px;
	line-height: 1.8;
}

.product_readable > *:first-child {
	margin-top: 0;
}

.product_readable > *:last-child {
	margin-bottom: 0;
}

.product_readable h2,
.product_readable h3,
.product_readable h4 {
	color: var(--product-ink);
	line-height: 1.3;
}

.product_readable ul,
.product_readable ol {
	padding-left: 1.2em;
}

.product_eyebrow {
	margin: 0 0 12px;
	color: var(--product-blue);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.product_breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 34px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
}

.product_breadcrumb a {
	color: inherit;
	font-size: inherit;
}

.product_breadcrumb a:hover {
	color: var(--product-yellow);
}

.product_image_placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 230px;
	color: var(--product-blue);
	background:
		linear-gradient(135deg, rgba(7, 135, 184, 0.08), rgba(245, 195, 68, 0.12)),
		#f8fbfc;
}

.product_image_placeholder iconify-icon {
	font-size: 64px;
	opacity: 0.7;
}

/* Products overview */

.products_overview_banner {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(500px, 63vw, 720px);
	padding: 110px 0 90px;
	color: #fff;
	background:
		linear-gradient(90deg, rgba(8, 31, 48, 0.96), rgba(8, 49, 71, 0.78) 58%, rgba(7, 135, 184, 0.42)),
		linear-gradient(135deg, #081f30, #0a6b93);
}

.products_overview_banner::after {
	position: absolute;
	right: -8vw;
	bottom: -32%;
	width: 44vw;
	height: 44vw;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 50%;
	content: "";
}

.products_overview_banner_content {
	position: relative;
	z-index: 1;
	max-width: 800px;
}

.products_overview_banner .product_eyebrow {
	color: var(--product-yellow);
}

.products_overview_banner h1 {
	max-width: 760px;
	margin: 0;
	color: #fff;
	font-size: clamp(50px, 6vw, 84px);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.05;
}

.products_banner_line {
	display: block;
	width: 78px;
	height: 4px;
	margin: 28px 0;
	background: var(--product-yellow);
}

.products_overview_lead {
	max-width: 720px;
	margin: 0 0 34px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 18px;
	line-height: 1.8;
}

.products_overview_banner .site_btn_outline {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.5);
}

.product_family_grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.product_family_item {
	display: flex;
	flex-direction: column;
	min-width: 0;
	color: var(--product-copy);
	background: #fff;
	border: 1px solid var(--product-line);
	border-radius: 6px;
	box-shadow: 0 12px 36px rgba(23, 43, 58, 0.06);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product_family_item:hover {
	color: var(--product-copy);
	border-color: rgba(7, 135, 184, 0.45);
	box-shadow: 0 20px 52px rgba(23, 43, 58, 0.13);
	transform: translateY(-6px);
}

.product_family_img {
	aspect-ratio: 4 / 3;
	background: #edf4f7;
	overflow: hidden;
}

.product_family_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s ease;
}

.product_family_item:hover .product_family_img img {
	transform: scale(1.045);
}

.product_family_info {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 28px;
}

.product_family_info h2 {
	margin: 0 0 13px;
	color: var(--product-ink);
	font-size: 25px;
	line-height: 1.25;
}

.product_family_info p {
	margin: 0 0 23px;
	color: var(--product-copy);
	font-size: 15px;
	line-height: 1.7;
}

.product_family_link,
.product_card_link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: var(--product-blue);
	font-size: 14px;
	font-weight: 700;
}

.product_family_link iconify-icon,
.product_card_link iconify-icon {
	font-size: 18px;
	transition: transform 0.25s ease;
}

.product_family_item:hover .product_family_link iconify-icon,
.led_product_card:hover .product_card_link iconify-icon {
	transform: translateX(4px);
}

.product_empty_state {
	padding: 48px;
	text-align: center;
	background: var(--product-surface);
	border: 1px dashed #bfd0d9;
}

.product_empty_state h3 {
	margin: 0 0 10px;
	color: var(--product-ink);
	font-size: 25px;
}

.product_empty_state p {
	margin: 0;
}

.products_overview_cta {
	background: #fff;
}

.products_cta_inner,
.product_cta_panel {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	padding: clamp(42px, 5vw, 70px);
	color: #fff;
	background: linear-gradient(120deg, #0a273a, #075f82);
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(7, 54, 78, 0.17);
	overflow: hidden;
}

.products_cta_inner::after,
.product_cta_panel::after {
	position: absolute;
	right: -90px;
	bottom: -160px;
	width: 330px;
	height: 330px;
	border: 54px solid rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	content: "";
}

.products_cta_content,
.product_cta_panel > div {
	position: relative;
	z-index: 1;
	max-width: 730px;
}

.products_cta_inner h2,
.product_cta_panel h2 {
	margin: 0 0 16px;
	color: #fff;
	font-size: clamp(32px, 3.2vw, 48px);
	line-height: 1.16;
}

.products_cta_inner p:not(.product_eyebrow),
.product_cta_panel p:not(.product_eyebrow) {
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 16px;
	line-height: 1.75;
}

.products_cta_inner .product_eyebrow,
.product_cta_panel .product_eyebrow {
	color: var(--product-yellow);
}

.products_cta_inner .site_btns,
.product_cta_panel .site_btn {
	position: relative;
	z-index: 1;
	flex: none;
}

.products_cta_inner .site_btn_outline {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.42);
}

.family_intro_wrap {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: center;
	gap: 7%;
}

.family_intro_image img {
	width: 100%;
	aspect-ratio: 5 / 4;
	object-fit: cover;
	border-radius: 5px;
}

.family_intro_content .section_title {
	margin-bottom: 26px;
}

.family_intro_text {
	margin-bottom: 28px;
	color: var(--product-copy);
	font-size: 16px;
	line-height: 1.8;
}

.family_series {
	background: var(--product-surface);
}

.family_series_grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.family_series_item {
	display: flex;
	flex-direction: column;
	color: var(--product-copy);
	background: #fff;
	border: 1px solid var(--product-line);
	border-radius: 5px;
	box-shadow: 0 10px 30px rgba(23, 43, 58, 0.05);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.family_series_item:hover {
	color: var(--product-copy);
	box-shadow: 0 18px 46px rgba(23, 43, 58, 0.12);
	transform: translateY(-5px);
}

.family_series_image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.family_series_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.family_series_item:hover .family_series_image img {
	transform: scale(1.04);
}

.family_series_content {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 26px;
}

.family_series_content h3 {
	margin: 0 0 12px;
	color: var(--product-ink);
	font-size: 23px;
	line-height: 1.3;
}

.family_series_content p {
	margin: 0 0 20px;
	color: var(--product-copy);
	font-size: 15px;
	line-height: 1.7;
}

.family_series_content > span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: var(--product-blue);
	font-size: 14px;
	font-weight: 700;
}

.family_custom {
	padding: clamp(65px, 7vw, 105px) 0;
}

.family_custom_wrap {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	gap: 7%;
	padding: clamp(42px, 5vw, 70px);
	color: #fff;
	background: linear-gradient(125deg, #0a273a, #076b91);
	border-radius: 7px;
}

.family_custom h2 {
	margin: 0 0 18px;
	color: #fff;
	font-size: clamp(34px, 3.7vw, 50px);
	line-height: 1.18;
}

.family_custom_content > p,
.family_custom_action p {
	color: rgba(255, 255, 255, 0.76);
	font-size: 16px;
	line-height: 1.7;
}

.family_custom_options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 22px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.family_custom_options li {
	display: flex;
	gap: 9px;
	color: #fff;
	font-size: 15px;
}

.family_custom_options iconify-icon {
	flex: none;
	margin-top: 2px;
	color: var(--product-yellow);
	font-size: 20px;
}

.family_custom_action {
	align-self: center;
	padding: 34px;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 5px;
}

.family_custom_action h3 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 28px;
	line-height: 1.3;
}

/* Product landing and single */

.product_landing_hero,
.product_detail_hero {
	color: #fff;
	background:
		radial-gradient(circle at 86% 20%, rgba(7, 135, 184, 0.28), transparent 32%),
		linear-gradient(125deg, #081f30, #0a354e);
}

.product_landing_hero_grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
	align-items: center;
	gap: 7%;
	min-height: 590px;
}

.product_landing_hero h1,
.product_summary h1 {
	margin: 0 0 24px;
	color: #fff;
	font-size: clamp(44px, 5vw, 70px);
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.product_landing_intro,
.product_short_description {
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 17px;
	line-height: 1.8;
}

.product_landing_intro p,
.product_short_description p {
	margin: 0 0 12px;
	font-size: inherit;
}

.product_landing_hero .product_eyebrow,
.product_detail_hero .product_eyebrow {
	color: var(--product-yellow);
}

.product_landing_hero .site_btn_outline,
.product_detail_hero .site_btn_outline {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.46);
}

.product_landing_hero_image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.led_product_grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.led_product_card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	color: var(--product-copy);
	background: #fff;
	border: 1px solid var(--product-line);
	border-radius: 5px;
	box-shadow: 0 10px 30px rgba(23, 43, 58, 0.05);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.led_product_card:hover {
	color: var(--product-copy);
	box-shadow: 0 18px 48px rgba(23, 43, 58, 0.13);
	transform: translateY(-5px);
}

.led_product_card_image {
	aspect-ratio: 4 / 3;
	background: #edf4f7;
	overflow: hidden;
}

.led_product_card_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.led_product_card:hover .led_product_card_image img {
	transform: scale(1.045);
}

.led_product_card_content {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 25px;
}

.led_product_model {
	margin-bottom: 8px;
	color: var(--product-blue);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.led_product_card h3 {
	margin: 0 0 12px;
	color: var(--product-ink);
	font-size: 23px;
	line-height: 1.3;
}

.led_product_card p {
	margin: 0 0 20px;
	color: var(--product-copy);
	font-size: 14px;
	line-height: 1.7;
}

.product_feature_grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.product_feature_card {
	padding: 30px 26px;
	background: #fff;
	border: 1px solid var(--product-line);
	border-top: 3px solid var(--product-blue);
	border-radius: 4px;
}

.product_feature_icon,
.product_feature_default_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 22px;
	color: var(--product-blue);
	background: rgba(7, 135, 184, 0.09);
	border-radius: 50%;
	font-size: 30px;
}

.product_feature_icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.product_feature_card h3 {
	margin: 0 0 10px;
	color: var(--product-ink);
	font-size: 20px;
	line-height: 1.35;
}

.product_feature_card p {
	margin: 0;
	color: var(--product-copy);
	font-size: 14px;
	line-height: 1.7;
}

.product_application_grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.product_application_card {
	background: #fff;
	border: 1px solid var(--product-line);
	border-radius: 5px;
	overflow: hidden;
}

.product_application_image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.product_application_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.product_application_card:hover .product_application_image img {
	transform: scale(1.04);
}

.product_application_content {
	padding: 24px;
}

.product_application_content h3 {
	margin: 0 0 10px;
	color: var(--product-ink);
	font-size: 21px;
	line-height: 1.35;
}

.product_application_content p {
	margin: 0;
	color: var(--product-copy);
	font-size: 14px;
	line-height: 1.7;
}

/* Single-product hero */

.product_detail_hero {
	padding-top: 85px;
}

.product_detail_hero_grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
	align-items: start;
	gap: 7%;
}

.product_gallery_primary {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
}

.product_gallery_primary img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product_gallery_thumbs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	margin-top: 12px;
}

.product_gallery_thumbs a {
	aspect-ratio: 1;
	background: #fff;
	border: 2px solid transparent;
	border-radius: 3px;
	overflow: hidden;
}

.product_gallery_thumbs a:first-child,
.product_gallery_thumbs a:hover {
	border-color: var(--product-yellow);
}

.product_gallery_thumbs img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product_summary {
	padding-top: 6px;
}

.product_summary h1 {
	font-size: clamp(39px, 4.2vw, 62px);
}

.product_item_number {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: -6px 0 22px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 13px;
}

.product_item_number span,
.product_item_number strong {
	font-size: inherit;
}

.product_item_number strong {
	padding: 5px 10px;
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
	letter-spacing: 0.04em;
}

.product_highlight_list {
	display: grid;
	gap: 11px;
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}

.product_highlight_list li {
	display: flex;
	gap: 10px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	line-height: 1.5;
}

.product_highlight_list iconify-icon {
	flex: none;
	margin-top: 1px;
	color: var(--product-yellow);
	font-size: 20px;
}

.product_quick_specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	margin: 0 0 30px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.product_quick_specs > div {
	padding: 13px 15px;
	background: rgba(4, 24, 37, 0.36);
}

.product_quick_specs dt {
	margin-bottom: 3px;
	color: rgba(255, 255, 255, 0.56);
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.product_quick_specs dd {
	margin: 0;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

/* Specifications and product content */

.product_spec_list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--product-line);
	border-left: 1px solid var(--product-line);
}

.product_spec_row {
	display: grid;
	grid-template-columns: minmax(130px, 0.42fr) minmax(0, 0.58fr);
	min-width: 0;
	border-right: 1px solid var(--product-line);
	border-bottom: 1px solid var(--product-line);
}

.product_spec_row span,
.product_spec_row strong {
	padding: 15px 18px;
	font-size: 14px;
	line-height: 1.5;
}

.product_spec_row span {
	color: var(--product-muted);
	background: var(--product-surface);
}

.product_spec_row strong {
	color: var(--product-ink);
	font-weight: 600;
}

.product_table_scroll {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.product_variant_table {
	width: 100%;
	min-width: 1120px;
	border-collapse: collapse;
	background: #fff;
}

.product_variant_table th,
.product_variant_table td {
	padding: 14px 13px;
	border: 1px solid var(--product-line);
	font-size: 13px;
	line-height: 1.45;
	text-align: left;
	vertical-align: middle;
	white-space: nowrap;
}

.product_variant_table th {
	color: #fff;
	background: #0b5775;
	font-weight: 600;
}

.product_variant_table tbody tr:nth-child(even):not(.product_variant_diagram) {
	background: #f8fbfc;
}

.product_variant_diagram td {
	padding: 22px;
	background: #fff;
}

.product_variant_diagram img {
	max-height: 300px;
	margin: 0 auto;
	object-fit: contain;
}

.product_content_grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
	align-items: center;
	gap: 7%;
}

.product_content_section .section_title {
	margin-bottom: 25px;
}

.product_content_image img {
	width: 100%;
	max-height: 620px;
	object-fit: cover;
	border-radius: 5px;
}

.product_layout_image-left .product_content_image {
	grid-column: 1;
	grid-row: 1;
}

.product_layout_image-left .product_content_copy {
	grid-column: 2;
}

.product_layout_full .product_content_grid {
	display: block;
}

.product_layout_full .product_content_copy {
	max-width: 900px;
	margin: 0 auto 42px;
}

.product_layout_full .product_content_image img {
	max-height: none;
}

.product_diagram_grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.product_diagram_grid a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	padding: 24px;
	background: #fff;
	border: 1px solid var(--product-line);
}

.product_diagram_grid img {
	max-height: 440px;
	object-fit: contain;
}

.product_video_frame {
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
}

.product_video_frame iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	border: 0;
}

.product_download_grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.product_download_item {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	color: var(--product-ink);
	background: #fff;
	border: 1px solid var(--product-line);
	border-radius: 4px;
	transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.product_download_item:hover {
	color: var(--product-blue);
	border-color: var(--product-blue);
	transform: translateY(-2px);
}

.product_download_item iconify-icon:first-child {
	color: var(--product-blue);
	font-size: 27px;
}

.product_download_item iconify-icon:last-child {
	font-size: 19px;
}

.product_download_item span {
	font-size: 15px;
	font-weight: 600;
}

.product_certificate_grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
	margin-top: 34px;
}

.product_certificate_grid a {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	padding: 16px;
	background: #fff;
	border: 1px solid var(--product-line);
}

.product_certificate_grid img {
	max-height: 100%;
	object-fit: contain;
}

.product_faq_list {
	border-top: 1px solid var(--product-line);
}

.product_faq_item {
	border-bottom: 1px solid var(--product-line);
}

.product_faq_item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 2px;
	color: var(--product-ink);
	cursor: pointer;
	list-style: none;
}

.product_faq_item summary::-webkit-details-marker {
	display: none;
}

.product_faq_item summary span {
	font-size: 18px;
	font-weight: 600;
}

.product_faq_item summary iconify-icon {
	flex: none;
	color: var(--product-blue);
	font-size: 25px;
	transition: transform 0.25s ease;
}

.product_faq_item[open] summary iconify-icon {
	transform: rotate(45deg);
}

.product_faq_item > div {
	padding: 0 44px 23px 2px;
	color: var(--product-copy);
	font-size: 15px;
	line-height: 1.75;
}

.product_faq_item > div p {
	margin: 0 0 10px;
	font-size: inherit;
}

.product_bottom_cta {
	background: #fff;
}

/* Responsive */

@media screen and (max-width: 1100px) {
	.product_family_grid,
	.family_series_grid,
	.led_product_grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product_feature_grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product_detail_hero_grid,
	.product_landing_hero_grid,
	.family_intro_wrap {
		gap: 5%;
	}

	.product_detail_hero_grid {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	}

	.product_summary h1 {
		font-size: 42px;
	}

	.products_cta_inner,
	.product_cta_panel {
		align-items: flex-start;
		flex-direction: column;
		gap: 30px;
	}
}

@media screen and (max-width: 820px) {
	.product_section_space {
		padding: 65px 0;
	}

	.products_overview_banner {
		min-height: 570px;
		padding: 100px 0 75px;
	}

	.products_overview_banner h1 {
		font-size: 52px;
	}

	.family_intro_wrap,
	.product_landing_hero_grid,
	.product_detail_hero_grid,
	.product_content_grid,
	.family_custom_wrap {
		grid-template-columns: 1fr;
	}

	.product_landing_hero_image {
		margin-top: 55px;
	}

	.family_intro_image {
		margin-bottom: 40px;
	}

	.product_landing_hero_grid {
		min-height: auto;
	}

	.product_gallery {
		margin-bottom: 45px;
	}

	.product_summary {
		padding-top: 0;
	}

	.product_layout_image-left .product_content_image,
	.product_layout_image-left .product_content_copy {
		grid-column: auto;
		grid-row: auto;
	}

	.product_content_image {
		margin-top: 35px;
	}

	.product_layout_image-left .product_content_image {
		grid-row: 2;
	}

	.product_spec_list {
		grid-template-columns: 1fr;
	}

	.family_custom_action {
		margin-top: 35px;
	}

	.product_certificate_grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media screen and (max-width: 600px) {
	.product_section_space {
		padding: 52px 0;
	}

	.product_breadcrumb {
		margin-bottom: 25px;
	}

	.products_overview_banner h1,
	.product_landing_hero h1,
	.product_summary h1 {
		font-size: 38px;
	}

	.products_overview_lead,
	.product_landing_intro,
	.product_short_description {
		font-size: 15px;
	}

	.product_family_grid,
	.family_series_grid,
	.led_product_grid,
	.product_feature_grid,
	.product_application_grid,
	.product_diagram_grid,
	.product_download_grid {
		grid-template-columns: 1fr;
	}

	.family_custom_options {
		grid-template-columns: 1fr;
	}

	.product_family_info,
	.family_series_content,
	.led_product_card_content {
		padding: 22px;
	}

	.family_custom_wrap,
	.products_cta_inner,
	.product_cta_panel {
		padding: 32px 24px;
	}

	.family_custom_action {
		padding: 25px 22px;
	}

	.product_quick_specs {
		grid-template-columns: 1fr;
	}

	.product_spec_row {
		grid-template-columns: minmax(105px, 0.4fr) minmax(0, 0.6fr);
	}

	.product_spec_row span,
	.product_spec_row strong {
		padding: 13px 12px;
		font-size: 13px;
	}

	.product_gallery_thumbs {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.product_certificate_grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product_faq_item summary span {
		font-size: 16px;
	}
}
