/* 产品列表 / 分类页 */

.site-archive-products {
	background: #f8f8f8;
}

.products-catalog {
	padding: 56px 0 80px;
}

.products-catalog__inner {
	display: flex;
	align-items: flex-start;
	gap: 28px;
	max-width: 1470px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.products-nav {
	flex: 0 0 250px;
	width: 250px;
	max-width: 250px;
	background: #7a7a7a;
	color: #fff;
}

.products-nav__head {
	padding: 18px 20px;
	background: #111;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}

.products-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.products-nav__item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.products-nav__item:last-child {
	border-bottom: none;
}

.products-nav__row {
	display: flex;
	align-items: center;
	min-height: 48px;
}

.products-nav__link {
	flex: 1 1 auto;
	min-width: 0;
	padding: 14px 12px 14px 20px;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
	color: #fff;
	text-decoration: none;
	transition: color 0.2s ease, background 0.2s ease;
}

.products-nav__link:hover,
.products-nav__link:focus-visible,
.products-nav__link.is-current {
	color: #fff;
	background: rgba(0, 0, 0, 0.12);
}

.products-nav__toggle {
	flex: 0 0 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 48px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
}

.products-nav__toggle:hover,
.products-nav__toggle:focus-visible {
	background: rgba(0, 0, 0, 0.12);
}

.products-nav__toggle-icon {
	display: block;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-45deg);
	transition: transform 0.2s ease;
}

.products-nav__item.is-open > .products-nav__row .products-nav__toggle-icon {
	transform: rotate(45deg);
}

.products-nav__children {
	list-style: none;
	margin: 0;
	padding: 0;
	background: rgba(0, 0, 0, 0.12);
}

.products-nav__child {
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.products-nav__child-link {
	display: block;
	padding: 12px 20px 12px 32px;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.products-nav__child-link:hover,
.products-nav__child-link:focus-visible,
.products-nav__child-link.is-current {
	background: rgba(0, 0, 0, 0.16);
	color: #fff;
}

.products-catalog__main {
	flex: 1 1 auto;
	min-width: 0;
	overflow: visible;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	overflow: visible;
}

.products-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: #fff;
	border: 1px solid #e0e0e0;
	box-sizing: border-box;
	overflow: hidden;
}

.products-card__media {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f3f3f3;
}

.products-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.products-card:hover .products-card__media img {
	transform: scale(1.04);
}

.products-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	padding: 16px 12px 18px;
	background: #ececec;
}

.products-card__title {
	margin: 0;
	width: 100%;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	text-align: center;
	color: #111;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.products-card__title a {
	color: inherit;
	text-decoration: none;
}

.products-card__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 132px;
	height: 36px;
	padding: 0 16px;
	border-radius: 999px;
	background: #2a2a2a;
	color: #fff;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	transition: background 0.2s ease;
}

.products-card__more:hover,
.products-card__more:focus-visible {
	background: #111;
	color: #fff;
}

.products-catalog__pager {
	padding-top: 40px;
}

.products-catalog__pager .pagination {
	margin: 0;
}

.products-catalog__pager .pagination .page-numbers a,
.products-catalog__pager .pagination .page-numbers span,
.products-catalog__pager .navigation.pagination .page-numbers {
	border-color: #111;
	background: #fff;
	color: #111;
}

.products-catalog__pager .pagination .page-numbers a:hover,
.products-catalog__pager .pagination .page-numbers a:focus,
.products-catalog__pager .navigation.pagination a.page-numbers:hover {
	border-color: #111;
	background: #111;
	color: #fff;
}

.products-catalog__pager .pagination .page-numbers .current,
.products-catalog__pager .navigation.pagination span.page-numbers.current {
	background: #111;
	border-color: #111;
	color: #fff;
}

.products-catalog__pager .pagination .page-numbers .dots {
	border: none;
	background: transparent;
	color: #111;
}

@media (max-width: 1200px) {
	.products-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1100px) {
	.products-catalog {
		padding: 48px 0 64px;
	}

	.products-catalog__inner {
		padding: 0 28px;
		gap: 20px;
	}

	.products-nav__head {
		font-size: 28px;
		padding: 16px 18px;
	}
}

@media (max-width: 900px) {
	.products-catalog__inner {
		flex-direction: column;
	}

	.products-nav {
		flex: none;
		width: 100%;
		max-width: none;
	}

	.products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}
}

@media (max-width: 640px) {
	.products-catalog {
		padding: 36px 0 48px;
	}

	.products-catalog__inner {
		padding: 0 20px;
		gap: 16px;
	}

	.products-nav__head {
		font-size: 24px;
		padding: 14px 16px;
	}

	.products-nav__link {
		padding-left: 16px;
		font-size: 14px;
	}

	.products-card__body {
		padding: 14px 10px 16px;
		gap: 12px;
	}

	.products-card__title {
		font-size: 14px;
	}

	.products-catalog__pager {
		padding-top: 28px;
	}
}

/* ── 产品详情上方展示 ── */

.site-single-products {
	background: #f8f8f8;
}

.product-hero {
	padding: 48px 0 40px;
}

.product-hero__inner {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	max-width: 1470px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.product-gallery {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	flex: 0 0 auto;
}

.product-gallery__thumbs {
	position: relative;
	width: 100px;
	height: 424px; /* 4 × 100 + 3 × 8，刚好四张，不露第五张 */
}

.product-gallery__nav {
	position: absolute;
	left: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 32px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #666;
	cursor: pointer;
	font-size: 28px;
	line-height: 1;
}

.product-gallery__nav--prev {
	top: 0;
	transform: translate(-50%, -100%);
}

.product-gallery__nav--next {
	bottom: 0;
	transform: translate(-50%, 100%);
}

.product-gallery__nav:hover,
.product-gallery__nav:focus-visible {
	color: #111;
}

.product-gallery__nav--prev span,
.product-gallery__nav--next span {
	display: inline-block;
	transform: rotate(90deg);
}

.product-gallery__thumbs-viewport {
	width: 100px;
	height: 424px;
	overflow: hidden;
}

.product-gallery__thumbs-track {
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition: transform 0.3s ease;
}

.product-gallery__thumb {
	position: relative;
	display: block;
	width: 100px;
	height: 100px;
	margin: 0;
	padding: 0;
	border: 1px solid transparent;
	background: #fff;
	cursor: pointer;
	overflow: hidden;
	box-sizing: border-box;
	flex: 0 0 100px;
}

.product-gallery__thumb.is-active {
	border-color: #111;
}

.product-gallery__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-gallery__thumb-play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	width: 28px;
	height: 28px;
	border: 1.5px solid rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.product-gallery__thumb-play::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 52%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 8px;
	border-color: transparent transparent transparent #fff;
	transform: translate(-50%, -50%);
}

.product-gallery__stage {
	position: relative;
	width: 438px;
	height: 438px;
	background: #fff;
	overflow: hidden;
	flex: 0 0 438px;
}

.product-gallery__slide {
	position: absolute;
	inset: 0;
}

.product-gallery__slide[hidden] {
	display: none !important;
}

.product-gallery__main-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #fff;
}

.product-gallery__video {
	position: relative;
	width: 100%;
	height: 100%;
}

.product-gallery__player {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #000;
	z-index: 2;
}

.product-gallery__player[hidden] {
	display: none !important;
}

.product-gallery__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin: 0;
	padding: 0;
	border: 2px solid rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	cursor: pointer;
	transform: translate(-50%, -50%);
	transition: background 0.2s ease, transform 0.2s ease;
}

.product-gallery__play:hover,
.product-gallery__play:focus-visible {
	background: rgba(0, 0, 0, 0.6);
	transform: translate(-50%, -50%) scale(1.05);
}

.product-gallery__play-icon {
	display: block;
	width: 0;
	height: 0;
	margin: 0 0 0 3px;
	border-style: solid;
	border-width: 12px 0 12px 20px;
	border-color: transparent transparent transparent #fff;
}

.product-gallery__video.is-playing .product-gallery__main-img,
.product-gallery__video.is-playing .product-gallery__play {
	opacity: 0;
	pointer-events: none;
}

.product-hero__info {
	flex: 1 1 auto;
	min-width: 0;
	padding-top: 8px;
}

.product-hero__title {
	margin: 0 0 18px;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
	color: #111;
}

.product-hero__desc {
	margin: 0 0 28px;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
	color: #666;
}

.product-hero__desc p {
	margin: 0 0 0.4em;
}

.product-hero__desc p:last-child {
	margin-bottom: 0;
}

.product-hero__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 170px;
	height: 44px;
	padding: 0 16px;
	border-radius: 999px;
	background: #2a2a2a;
	color: #fff;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	box-sizing: border-box;
	transition: background 0.2s ease;
}

.product-hero__more:hover,
.product-hero__more:focus-visible {
	background: #111;
	color: #fff;
}

.product-description {
	padding: 48px 0 20px;
}

.product-description__inner {
	max-width: 1470px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.product-description__title {
	margin: 0 0 28px;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	color: #111;
}

.product-description__content {
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.85;
	color: #555;
}

.product-description__content > *:first-child {
	margin-top: 0;
}

.product-description__content > *:last-child {
	margin-bottom: 0;
}

.product-description__content p {
	margin: 0 0 1.1em;
}

.product-description__content strong,
.product-description__content b {
	font-weight: 700;
	color: #111;
}

.product-description__content ul,
.product-description__content ol {
	margin: 0 0 1.1em;
	padding-left: 1.2em;
}

.product-description__content li {
	margin: 0 0 0.35em;
}

.product-description__content li:last-child {
	margin-bottom: 0;
}

.product-description__content img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 1.2em 0;
}

.product-description__content a {
	color: #111;
	text-decoration: underline;
}

.product-related {
	padding: 56px 0 40px;
}

.product-related__inner {
	max-width: 1470px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.product-related__title {
	margin: 0 0 40px;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	color: #111;
}

.product-faq {
	padding: 48px 0 20px;
}

.product-faq__inner {
	max-width: 1470px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.product-faq__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.product-faq__item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.product-faq__badge {
	flex: 0 0 36px;
	width: 36px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 999px;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	user-select: none;
}

.product-faq__badge-q,
.product-faq__badge-a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 48px;
	border-radius: 0;
}

.product-faq__badge-q {
	background: #000;
}

.product-faq__badge-a {
	background: #666;
	font-weight: 700;
}

.product-faq__body {
	flex: 1 1 auto;
	min-width: 0;
	padding-top: 8px;
}

.product-faq__q {
	margin: 0 0 14px;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.45;
	color: #111;
}

.product-faq__a {
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
	color: #777;
}

.product-faq__a > *:first-child {
	margin-top: 0;
}

.product-faq__a > *:last-child {
	margin-bottom: 0;
}

.product-faq__a p {
	margin: 0 0 0.6em;
}

.product-quote {
	padding: 56px 0 40px;
	scroll-margin-top: 24px;
}

.product-quote__inner {
	max-width: 1470px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
	text-align: center;
}

.product-quote__title {
	margin: 0 0 14px;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.3;
	color: #111;
}

.product-quote__subtitle {
	margin: 0 auto 40px;
	max-width: 720px;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #888;
}

.product-quote__form {
	text-align: left;
}

.product-quote__form .wpcf7 {
	margin: 0;
}

.product-quote__form .wpcf7-form {
	margin: 0;
}

.product-quote__form .wpcf7-form > p,
.product-quote__form .product-quote-form p {
	margin: 0;
}

.product-quote__form .wpcf7-form br,
.product-quote__form .product-quote-form br {
	display: none !important;
}

.product-quote-form__product {
	margin: 0 0 20px !important;
}

.product-quote-form__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 20px;
	row-gap: 20px;
	align-items: start;
}

.product-quote-form__stack {
	display: flex;
	flex-direction: column;
	gap: 0;
	min-width: 0;
}

.product-quote-form__stack > .product-quote-form__field:first-child {
	margin-bottom: 20px !important;
}

.product-quote-form__message {
	min-width: 0;
	/* 高度 = 左侧两个输入框 + 中间间距 */
	height: calc(56px + 20px + 56px);
	max-height: calc(56px + 20px + 56px);
}

.product-quote-form__field {
	position: relative;
	margin: 0;
	background: #a5a5a5;
	border-radius: 6px;
	box-sizing: border-box;
	overflow: hidden;
}

.product-quote-form__field > p {
	position: relative;
	margin: 0;
	height: 100%;
}

.product-quote-form__message.product-quote-form__field {
	border-radius: 6px;
	display: flex;
	flex-direction: column;
	height: calc(56px + 20px + 56px);
	min-height: 0;
	max-height: calc(56px + 20px + 56px);
}

.product-quote-form__message.product-quote-form__field > p {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
	height: 100%;
}

.product-quote-form__ph {
	position: absolute;
	left: 24px;
	right: 24px;
	top: 50%;
	z-index: 2;
	transform: translateY(-50%);
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.3;
	color: #fff;
	pointer-events: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: opacity 0.15s ease;
}

.product-quote-form__message .product-quote-form__ph {
	top: 16px;
	transform: none;
}

.product-quote-form__ph em {
	margin-left: 2px;
	color: #e53935;
	font-style: normal;
	font-weight: 700;
}

.product-quote-form__field:focus-within .product-quote-form__ph,
.product-quote-form__field.is-filled .product-quote-form__ph {
	opacity: 0;
	visibility: hidden;
}

.product-quote__form .wpcf7-form-control-wrap {
	display: block;
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.product-quote__form input.wpcf7-form-control.product-quote-form__input,
.product-quote__form textarea.wpcf7-form-control.product-quote-form__input {
	display: block;
	width: 100%;
	height: 56px;
	margin: 0;
	padding: 0 24px;
	border: 0;
	border-radius: 6px;
	background: transparent;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 15px;
	line-height: 56px;
	color: #fff;
	box-shadow: none;
	outline: none;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}

.product-quote__form input.wpcf7-form-control.product-quote-form__input::placeholder,
.product-quote__form textarea.wpcf7-form-control.product-quote-form__input::placeholder {
	color: transparent;
	opacity: 0;
}

.product-quote__form input.wpcf7-form-control.product-quote-form__input:focus,
.product-quote__form textarea.wpcf7-form-control.product-quote-form__input:focus {
	background: transparent;
}

.product-quote__form input.wpcf7-form-control.product-quote-form__input[readonly] {
	cursor: text;
}

.product-quote__form textarea.wpcf7-form-control.product-quote-form__input {
	height: 100% !important;
	min-height: 0 !important;
	max-height: 100%;
	padding: 16px 24px;
	line-height: 1.5;
	border-radius: 6px;
	resize: none;
}

.product-quote-form__message .wpcf7-form-control-wrap {
	flex: 1 1 auto;
	min-height: 0;
	height: 100%;
}

.product-quote-form__message textarea.wpcf7-form-control.product-quote-form__input {
	height: 100% !important;
}

.product-quote-form__submit {
	margin: 32px 0 0;
	text-align: center;
}

.product-quote-form__submit > p {
	margin: 0;
}

.product-quote__form input.wpcf7-submit.product-quote-form__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 280px;
	height: 52px;
	margin: 0;
	padding: 0 48px;
	border: 0;
	border-radius: 999px;
	background: #2a2a2a;
	color: #fff;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease;
}

.product-quote__form input.wpcf7-submit.product-quote-form__btn:hover,
.product-quote__form input.wpcf7-submit.product-quote-form__btn:focus-visible {
	background: #111;
}

.product-quote__form .wpcf7-not-valid-tip {
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: 4px;
	z-index: 3;
	margin: 0;
	font-size: 12px;
	line-height: 1.2;
	color: #ffe0e0;
}

.product-quote__form .wpcf7-response-output {
	margin: 18px 0 0;
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	text-align: center;
}

.product-quote__form .wpcf7-spinner {
	margin-left: 10px;
}

.product-pager {
	padding-top: 24px;
	padding-bottom: 60px;
}

.product-pager .article-pager {
	background: #111;
	border: 1px solid #111;
}

.product-pager .pager-link {
	background: #fff;
	color: #111;
}

.product-pager .pager-link:hover {
	background: #111;
	color: #fff;
	text-decoration: none;
}

.product-pager .pager-link:hover .pager-dir,
.product-pager .pager-link:hover .pager-title {
	color: #fff;
}

.product-pager .pager-dir,
.product-pager .pager-title {
	color: #111;
}

@media (max-width: 1100px) {
	.product-hero {
		padding: 40px 0 32px;
	}

	.product-hero__inner {
		padding: 0 28px;
		gap: 28px;
	}

	.product-description {
		padding: 36px 0 16px;
	}

	.product-description__inner {
		padding: 0 28px;
	}

	.product-related {
		padding: 40px 0 28px;
	}

	.product-related__inner {
		padding: 0 28px;
	}

	.product-related__title {
		font-size: 30px;
		margin-bottom: 28px;
	}

	.product-faq {
		padding: 36px 0 16px;
	}

	.product-faq__inner {
		padding: 0 28px;
	}

	.product-faq__list {
		gap: 28px;
	}

	.product-quote {
		padding: 44px 0 28px;
	}

	.product-quote__inner {
		padding: 0 28px;
	}

	.product-quote__title {
		font-size: 30px;
	}

	.product-quote__subtitle {
		margin-bottom: 28px;
		font-size: 15px;
	}

	.product-quote-form__grid {
		grid-template-columns: 1fr 1fr;
	}

	.product-quote-form__message {
		grid-column: 1 / -1;
		height: 140px;
		max-height: 140px;
	}

	.product-quote-form__message.product-quote-form__field {
		height: 140px;
		min-height: 0;
		max-height: 140px;
	}

	.product-quote__form textarea.wpcf7-form-control.product-quote-form__input {
		min-height: 0 !important;
	}

	.product-gallery__stage {
		width: 360px;
		height: 360px;
		flex-basis: 360px;
	}

	.product-gallery__thumbs,
	.product-gallery__thumbs-viewport {
		height: 316px; /* 3 × 100 + 2 × 8 */
	}
}

@media (max-width: 900px) {
	.product-hero__inner {
		flex-direction: column;
		align-items: stretch;
	}

	.product-gallery {
		width: 100%;
		justify-content: center;
	}

	.product-hero__info {
		padding-top: 0;
	}
}

@media (max-width: 640px) {
	.product-hero {
		padding: 28px 0 24px;
	}

	.product-hero__inner {
		padding: 0 20px;
		gap: 20px;
	}

	.product-description {
		padding: 28px 0 12px;
	}

	.product-description__inner {
		padding: 0 20px;
	}

	.product-description__title {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.product-description__content {
		font-size: 14px;
	}

	.product-related {
		padding: 32px 0 20px;
	}

	.product-related__inner {
		padding: 0 20px;
	}

	.product-related__title {
		font-size: 26px;
		margin-bottom: 22px;
	}

	.product-faq {
		padding: 28px 0 12px;
	}

	.product-faq__inner {
		padding: 0 20px;
	}

	.product-faq__item {
		gap: 14px;
	}

	.product-faq__badge {
		flex-basis: 32px;
		width: 32px;
		font-size: 14px;
	}

	.product-faq__badge-q,
	.product-faq__badge-a {
		height: 42px;
	}

	.product-faq__q {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.product-faq__a {
		font-size: 14px;
	}

	.product-quote {
		padding: 32px 0 20px;
	}

	.product-quote__inner {
		padding: 0 20px;
	}

	.product-quote__title {
		font-size: 26px;
	}

	.product-quote__subtitle {
		margin-bottom: 24px;
		font-size: 14px;
	}

	.product-quote-form__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.product-quote-form__stack {
		gap: 14px;
	}

	.product-quote-form__product {
		margin-bottom: 14px;
	}

	.product-quote__form input.wpcf7-form-control.product-quote-form__input,
	.product-quote__form textarea.wpcf7-form-control.product-quote-form__input {
		padding: 14px 20px;
		font-size: 14px;
	}

	.product-quote-form__ph {
		left: 20px;
		right: 20px;
		font-size: 14px;
	}

	.product-quote-form__submit {
		margin-top: 22px;
	}

	.product-quote__form input.wpcf7-submit.product-quote-form__btn {
		min-width: 0;
		width: 100%;
		max-width: 100%;
	}

	.product-gallery {
		flex-direction: column-reverse;
		align-items: center;
		gap: 12px;
	}

	.product-gallery__thumbs {
		position: relative;
		width: 100%;
		max-width: 438px;
		height: 100px;
		padding: 0 36px;
		box-sizing: border-box;
	}

	.product-gallery__nav {
		top: 50%;
		bottom: auto;
		z-index: 3;
		width: 32px;
		height: 32px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.92);
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	}

	.product-gallery__nav--prev {
		left: 0;
		right: auto;
		transform: translateY(-50%);
	}

	.product-gallery__nav--next {
		left: auto;
		right: 0;
		transform: translateY(-50%);
	}

	.product-gallery__nav--prev span,
	.product-gallery__nav--next span {
		transform: none;
	}

	.product-gallery__thumbs-viewport {
		width: 100%;
		height: 100px;
		overflow: hidden;
	}

	.product-gallery__thumbs-track {
		flex-direction: row;
	}

	.product-gallery__stage {
		width: min(100%, 438px);
		height: auto;
		aspect-ratio: 1 / 1;
		flex-basis: auto;
	}

	.product-hero__title {
		font-size: 20px;
	}

	.product-pager {
		padding-bottom: 40px;
	}
}
