.gtt-product-hero,
.gtt-product-hero *,
.gtt-product-hero *::before,
.gtt-product-hero *::after {
	box-sizing: border-box;
}

.gtt-product-hero {
	--gtt-media-col-width: 52%;
	--gtt-thumb-size: 80px;
	--gtt-thumb-gap: 12px;
	--gtt-img-fit-mode: contain;
	width: 100%;
	position: relative;
}

.gtt-product-hero__inner {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 1400px;
	min-height: 620px;
	margin: 0 auto;
	gap: 48px;
}

.gtt-product-hero__media {
	flex: 0 0 var(--gtt-media-col-width);
	min-width: 0;
	width: var(--gtt-media-col-width);
}

.gtt-product-hero__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-self: center;
	min-width: 0;
	max-width: 680px;
	gap: 16px;
}

.gtt-product-hero__gallery {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-width: 0;
}

.gtt-product-hero__gallery--pos-left,
.gtt-product-hero__gallery--pos-right {
	display: grid;
	align-items: stretch;
	gap: var(--gtt-thumb-gap);
}

.gtt-product-hero__gallery--pos-left {
	grid-template-columns: var(--gtt-thumb-size) minmax(0, 1fr);
}

.gtt-product-hero__gallery--pos-right {
	grid-template-columns: minmax(0, 1fr) var(--gtt-thumb-size);
}

.gtt-product-hero__gallery--pos-left .gtt-product-hero__thumbnails {
	grid-column: 1;
	grid-row: 1 / span 2;
	flex-direction: column;
	margin-top: 0;
	overflow-x: hidden;
	overflow-y: auto;
	max-height: 100%;
}

.gtt-product-hero__gallery--pos-left .gtt-product-hero__main-image-stage,
.gtt-product-hero__gallery--pos-left .gtt-product-hero__caption {
	grid-column: 2;
}

.gtt-product-hero__gallery--pos-right .gtt-product-hero__main-image-stage,
.gtt-product-hero__gallery--pos-right .gtt-product-hero__caption {
	grid-column: 1;
}

.gtt-product-hero__gallery--pos-right .gtt-product-hero__thumbnails {
	grid-column: 2;
	grid-row: 1 / span 2;
	flex-direction: column;
	margin-top: 0;
	overflow-x: hidden;
	overflow-y: auto;
	max-height: 100%;
}

.gtt-product-hero__main-image-stage,
.gtt-product-hero__media-stage {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-width: 0;
	overflow: hidden;
}

.gtt-product-hero__main-image-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.gtt-product-hero__main-image {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	object-fit: var(--gtt-img-fit-mode);
	transform-origin: center;
}

.gtt-product-hero__main-image.has-transition {
	transition: opacity 180ms ease;
}

.gtt-product-hero__main-image.is-changing {
	opacity: 0.25;
}

.gtt-product-hero__image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 320px;
	padding: 24px;
	text-align: center;
	border: 1px dashed rgba(0, 0, 0, 0.18);
	background: rgba(0, 0, 0, 0.03);
	color: rgba(0, 0, 0, 0.58);
}

.gtt-product-hero__caption {
	width: 100%;
	margin-top: 10px;
	text-align: center;
}

.gtt-product-hero__thumbnails {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: var(--gtt-thumb-gap);
	width: 100%;
	margin-top: 12px;
	padding-bottom: 2px;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}

.gtt-product-hero__thumbnail {
	display: flex;
	flex: 0 0 var(--gtt-thumb-size);
	align-items: center;
	justify-content: center;
	width: var(--gtt-thumb-size);
	height: var(--gtt-thumb-size);
	min-width: 0;
	padding: 4px;
	border: 1px solid rgba(0, 0, 0, 0.14);
	background: transparent;
	cursor: pointer;
	overflow: hidden;
}

.gtt-product-hero__thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.gtt-product-hero__thumbnail:focus-visible,
.gtt-product-hero__main-image-button:focus-visible,
.gtt-product-hero__highlight-tooltip-trigger:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.gtt-product-hero__thumbnail.is-active {
	opacity: 1;
}

.gtt-product-hero__badge {
	display: flex;
	align-items: center;
}

.gtt-product-hero__badge-text {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	white-space: normal;
}

.gtt-product-hero__classification {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	min-width: 0;
}

.gtt-product-hero__class-term {
	min-width: 0;
	overflow-wrap: anywhere;
}

.gtt-product-hero__class-separator {
	display: inline-block;
	margin: 0 0.5em;
	flex: 0 0 auto;
}

.gtt-product-hero__title,
.gtt-product-hero__tagline,
.gtt-product-hero__summary,
.gtt-product-hero__score,
.gtt-product-hero__verdict,
.gtt-product-hero__highlights,
.gtt-product-hero__quick-specs {
	min-width: 0;
	max-width: 100%;
}

.gtt-product-hero__title {
	margin: 0;
	overflow-wrap: anywhere;
}

.gtt-product-hero__tagline,
.gtt-product-hero__summary {
	overflow-wrap: anywhere;
}

.gtt-product-hero__score {
	display: inline-flex;
	align-items: baseline;
	flex-wrap: wrap;
	width: fit-content;
	max-width: 100%;
	gap: 8px;
}

.gtt-product-hero__score--layout-inline {
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.gtt-product-hero__score--layout-badge {
	padding: 8px 14px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 999px;
}

.gtt-product-hero__score--layout-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 16px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

.gtt-product-hero__score-value {
	display: inline-flex;
	align-items: baseline;
	overflow-wrap: anywhere;
}

.gtt-product-hero__score-suffix {
	margin-left: 0.2em;
	font-size: 0.6em;
}

.gtt-product-hero__highlights {
	display: grid;
	width: 100%;
	gap: 12px;
}

.gtt-product-hero__highlights--grid,
.gtt-product-hero__highlights--grid.gtt-product-hero__highlights--cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gtt-product-hero__highlights--grid.gtt-product-hero__highlights--cols-1 {
	grid-template-columns: minmax(0, 1fr);
}

.gtt-product-hero__highlights--grid.gtt-product-hero__highlights--cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gtt-product-hero__highlights--flex {
	display: flex;
	flex-wrap: wrap;
}

.gtt-product-hero__highlights--flex .gtt-product-hero__highlight {
	flex: 1 1 220px;
}

.gtt-product-hero__highlights--stack {
	grid-template-columns: minmax(0, 1fr);
}

.gtt-product-hero__highlight {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-width: 0;
	gap: 10px;
	padding: 12px 14px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 8px;
	background: transparent;
}

.gtt-product-hero__highlight.is-emphasized {
	font-weight: 700;
	border-width: 2px;
}

.gtt-product-hero__highlight-icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	line-height: 1;
}

.gtt-product-hero__highlight-icon svg {
	display: block;
	width: 24px;
	height: 24px;
	max-width: 100%;
	max-height: 100%;
	fill: currentColor;
}

.gtt-product-hero__highlight-text {
	min-width: 0;
	flex: 1 1 auto;
	overflow-wrap: anywhere;
}

.gtt-product-hero__tooltip-wrapper {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
}

.gtt-product-hero__highlight-tooltip-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

.gtt-product-hero__highlight-tooltip-trigger svg {
	display: block;
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.gtt-product-hero__highlight-tooltip-content {
	position: absolute;
	z-index: 50;
	left: 50%;
	bottom: calc(100% + 10px);
	width: min(280px, calc(100vw - 32px));
	padding: 10px 12px;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
	color: #111;
	font-size: 13px;
	line-height: 1.45;
	transform: translateX(-50%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 140ms ease, visibility 140ms ease;
}

.gtt-product-hero__tooltip-wrapper.is-open .gtt-product-hero__highlight-tooltip-content,
.gtt-product-hero__highlight-tooltip-trigger[aria-expanded="true"] + .gtt-product-hero__highlight-tooltip-content {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.gtt-product-hero__verdict {
	width: 100%;
}

.gtt-product-hero__verdict-content {
	font-style: normal;
	overflow-wrap: anywhere;
}

.gtt-product-hero__verdict-content > :first-child {
	margin-top: 0;
}

.gtt-product-hero__verdict-content > :last-child {
	margin-bottom: 0;
}

.gtt-product-hero__verdict-content ul,
.gtt-product-hero__verdict-content ol {
	padding-left: 1.25em;
}

.gtt-product-hero__quick-specs {
	width: 100%;
	min-width: 0;
}

.gtt-product-hero__quick-specs-heading {
	margin: 0 0 12px;
	overflow-wrap: anywhere;
}

.gtt-product-hero__quick-specs-list {
	display: grid;
	width: 100%;
	margin: 0;
	column-gap: 24px;
	row-gap: 12px;
}

.gtt-product-hero__quick-specs-list--grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gtt-product-hero__quick-specs-list--grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gtt-product-hero__quick-specs-list--list {
	grid-template-columns: minmax(0, 1fr);
}

.gtt-product-hero__quick-specs-list--inline {
	grid-template-columns: minmax(0, 1fr);
}

.gtt-product-hero__quick-specs-list--inline .gtt-product-hero__quick-spec {
	display: flex;
	align-items: baseline;
	gap: 12px;
}

.gtt-product-hero__quick-spec {
	min-width: 0;
	margin: 0;
}

.gtt-product-hero__quick-spec-label,
.gtt-product-hero__quick-spec-value {
	margin: 0;
	min-width: 0;
	overflow-wrap: anywhere;
}

.gtt-product-hero__quick-spec-label {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.gtt-product-hero__quick-spec-value {
	margin-top: 3px;
	font-size: 15px;
	line-height: 1.45;
}

.gtt-product-hero__quick-specs-list--inline .gtt-product-hero__quick-spec-value {
	margin-top: 0;
}

.gtt-product-hero__editor-notice {
	width: 100%;
}

@media (max-width: 1024px) {
	.gtt-product-hero {
		--gtt-thumb-size: 72px;
		--gtt-thumb-gap: 10px;
	}

	.gtt-product-hero__inner {
		min-height: 520px;
		gap: 32px;
	}

	.gtt-product-hero__content {
		max-width: 620px;
	}

	.gtt-product-hero__highlights--grid.gtt-product-hero__highlights--cols-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gtt-product-hero__quick-specs-list--grid-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.gtt-product-hero {
		--gtt-thumb-size: 64px;
		--gtt-thumb-gap: 8px;
	}

	.gtt-product-hero__inner {
		flex-direction: column;
		align-items: stretch;
		min-height: 0;
		gap: 24px;
	}

	.gtt-product-hero__media,
	.gtt-product-hero__content {
		width: 100%;
		max-width: 100%;
		flex: 0 0 auto;
	}

	.gtt-product-hero__gallery--pos-left,
	.gtt-product-hero__gallery--pos-right {
		display: flex;
		flex-direction: column;
	}

	.gtt-product-hero__gallery--pos-left .gtt-product-hero__thumbnails,
	.gtt-product-hero__gallery--pos-right .gtt-product-hero__thumbnails {
		flex-direction: row;
		margin-top: 12px;
		overflow-x: auto;
		overflow-y: hidden;
		max-height: none;
	}

	.gtt-product-hero__highlights,
	.gtt-product-hero__highlights--grid,
	.gtt-product-hero__highlights--grid.gtt-product-hero__highlights--cols-2,
	.gtt-product-hero__highlights--grid.gtt-product-hero__highlights--cols-3,
	.gtt-product-hero__highlights--stack {
		grid-template-columns: minmax(0, 1fr);
	}

	.gtt-product-hero__quick-specs-list,
	.gtt-product-hero__quick-specs-list--grid-2,
	.gtt-product-hero__quick-specs-list--grid-3,
	.gtt-product-hero__quick-specs-list--list {
		grid-template-columns: minmax(0, 1fr);
	}

	.gtt-product-hero__quick-specs-list--inline .gtt-product-hero__quick-spec {
		flex-direction: column;
		gap: 2px;
	}

	.gtt-product-hero__score {
		width: fit-content;
	}

	.gtt-product-hero__highlight-tooltip-content {
		left: auto;
		right: 0;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gtt-product-hero__main-image.has-transition,
	.gtt-product-hero__highlight-tooltip-content,
	.gtt-product-hero__thumbnails {
		transition: none;
		scroll-behavior: auto;
	}
}