/**
 * Single product page (Aquael-inspired).
 *
 * @package Zenova_Child
 */

.zenova-single-product {
	--zenova-product-gap: 2rem;
	padding-block-start: 0;
	padding-block-end: var(--zenova-space-lg);
}

body.zenova-single-product-page .ast-single-entry-banner[data-post-type="product"] {
	display: none;
}

.zenova-breadcrumb--product {
	margin-bottom: var(--zenova-product-gap);
}

/*
 * Only the product body is widened. --zenova-container-width is shared with the
 * archive, About, Contact and this page's own breadcrumb, so it stays put and
 * the extra width is a modifier on this one container.
 */
.zenova-container--product {
	width: min(100% - 2rem, 1560px);
}

.zenova-product-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 2.5rem;
	align-items: start;
}

/* Gallery */
.zenova-product-gallery {
	display: flex;
	flex-direction: column;
	gap: var(--zenova-product-gap, 2rem);
}

.zenova-product-gallery__main {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border: 1px solid var(--zenova-color-border);
	border-radius: var(--zenova-radius);
	background: var(--zenova-color-surface);
}

.zenova-product-gallery__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zenova-product-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	width: 100%;
}

.zenova-product-gallery__thumb {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	margin: 0;
	padding: 0;
	border: 1px solid var(--zenova-color-border);
	border-radius: var(--zenova-radius);
	overflow: hidden;
	background: #ffffff;
	cursor: pointer;
	box-shadow: none;
}

.zenova-product-gallery__thumb.is-active {
	border-color: var(--zenova-color-text);
}

.zenova-product-gallery__thumb:hover,
.zenova-product-gallery__thumb:focus,
.zenova-product-gallery__thumb:focus-visible,
.zenova-product-gallery__thumb:active {
	border-color: var(--zenova-color-text);
	background: #ffffff;
	box-shadow: none;
}

.zenova-product-gallery__thumb-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zenova-product-gallery__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: linear-gradient(135deg, #f8f8f8, #efefef);
}

/* Summary */
.zenova-product-summary__title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	font-weight: 400;
	line-height: 1.15;
	color: var(--zenova-color-text);
}

.zenova-product-summary__subtitle {
	margin: 0 0 2rem;
	color: var(--zenova-color-muted);
	font-size: 1.125rem;
	line-height: 1.55;
}

.zenova-product-summary__subtitle > :first-child {
	margin-top: 0;
}

.zenova-product-summary__subtitle > :last-child {
	margin-bottom: 0;
}

.zenova-product-quote__heading {
	margin: 0 0 1.75rem;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--zenova-color-text);
}

.zenova-product-quote__group + .zenova-product-quote__group {
	margin-top: 1.75rem;
}

.zenova-product-quote__group-title {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 0 0 0.875rem;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--zenova-color-text);
}

.zenova-product-quote__group-number {
	font-variant-numeric: tabular-nums;
}

.zenova-product-quote__group-separator {
	font-weight: 400;
	color: var(--zenova-color-muted);
}

/* Validation state ------------------------------------------------------- */

/*
 * Set by JS when Add to list is blocked, cleared as soon as that group gets a
 * selection. Three signals on purpose: the word, the heading colour and the
 * option outlines. Recolouring alone would say "something is wrong here" only
 * to people who can see the difference, and the toast deliberately does not
 * name the groups — this is the only thing that says *which* one.
 */
.zenova-product-quote__group-required {
	display: none;
}

.zenova-product-quote__group--missing .zenova-product-quote__group-required {
	display: inline;
	font-weight: 500;
	color: #c62f24;
}

.zenova-product-quote__group--missing .zenova-product-quote__group-number,
.zenova-product-quote__group--missing .zenova-product-quote__group-label {
	color: #c62f24;
}

.zenova-product-quote__group--missing .zenova-product-quote__option {
	border-color: #d98a83;
}

.zenova-product-quote__options {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.zenova-product-quote__option {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 4.5rem;
	min-height: 2.75rem;
	margin: 0;
	padding: 0.625rem 1.125rem;
	border: 1px solid #c8c8c8;
	border-radius: 2px;
	background: #ffffff;
	cursor: pointer;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.2;
	color: var(--zenova-color-text);
	box-shadow: none;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.zenova-product-quote__option:hover,
.zenova-product-quote__option:focus,
.zenova-product-quote__option:focus-visible,
.zenova-product-quote__option:active {
	border-color: var(--zenova-color-text);
}

.zenova-product-quote__option.is-selected,
.zenova-product-quote__option.is-selected:hover,
.zenova-product-quote__option.is-selected:focus-visible {
	border-color: var(--zenova-color-text);
	background: var(--zenova-color-text);
	color: #ffffff;
}

/* Colour swatches and configuration diagrams ---------------------------- */

/*
 * Both are image-plus-caption buttons rather than pills: the frame belongs to
 * the image, the label sits under it, and selection is a ring so a dark swatch
 * cannot be mistaken for a selected state.
 */
.zenova-product-quote__options--swatch,
.zenova-product-quote__options--diagram {
	gap: 0.75rem 1.25rem;
}

.zenova-product-quote__option--swatch,
.zenova-product-quote__option--diagram {
	flex-direction: column;
	gap: 0.5rem;
	min-width: 0;
	min-height: 0;
	padding: 0;
	border: 0;
	background: none;
	text-align: center;
}

.zenova-product-quote__option--swatch:hover,
.zenova-product-quote__option--swatch:focus,
.zenova-product-quote__option--swatch:focus-visible,
.zenova-product-quote__option--swatch:active,
.zenova-product-quote__option--diagram:hover,
.zenova-product-quote__option--diagram:focus,
.zenova-product-quote__option--diagram:focus-visible,
.zenova-product-quote__option--diagram:active {
	border: 0;
	background: none;
}

.zenova-product-quote__option--swatch.is-selected,
.zenova-product-quote__option--swatch.is-selected:hover,
.zenova-product-quote__option--swatch.is-selected:focus-visible,
.zenova-product-quote__option--diagram.is-selected,
.zenova-product-quote__option--diagram.is-selected:hover,
.zenova-product-quote__option--diagram.is-selected:focus-visible {
	background: none;
	color: var(--zenova-color-text);
}

.zenova-product-quote__option-name {
	display: block;
	max-width: 5.5rem;
	font-size: 0.8125rem;
	line-height: 1.3;
	color: var(--zenova-color-muted);
}

.zenova-product-quote__option--swatch .zenova-product-quote__option-image {
	display: block;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	/* Keeps a pale swatch (chrome) from disappearing into the page. */
	border: 1px solid var(--zenova-color-border);
}

.zenova-product-quote__option--diagram .zenova-product-quote__option-image {
	display: block;
	width: 84px;
	height: 84px;
	object-fit: contain;
	border: 1px solid var(--zenova-color-border);
	border-radius: 2px;
	background: #ffffff;
}

.zenova-product-quote__option--swatch.is-selected .zenova-product-quote__option-image,
.zenova-product-quote__option--diagram.is-selected .zenova-product-quote__option-image {
	border-color: var(--zenova-color-text);
	box-shadow: 0 0 0 2px var(--zenova-color-text);
}

.zenova-product-quote__option--swatch.is-selected .zenova-product-quote__option-name,
.zenova-product-quote__option--diagram.is-selected .zenova-product-quote__option-name {
	color: var(--zenova-color-text);
	font-weight: 500;
}

/*
 * No swatch image and no diagram — the caption is all there is, so it gets the
 * pill treatment rather than leaving a bare word floating.
 */
.zenova-product-quote__option--plain,
.zenova-product-quote__option--plain:hover,
.zenova-product-quote__option--plain:focus,
.zenova-product-quote__option--plain:focus-visible,
.zenova-product-quote__option--plain:active {
	min-height: 2.75rem;
	padding: 0.625rem 1.125rem;
	border: 1px solid #c8c8c8;
	background: #ffffff;
}

.zenova-product-quote__option--plain:hover,
.zenova-product-quote__option--plain:focus,
.zenova-product-quote__option--plain:focus-visible,
.zenova-product-quote__option--plain:active {
	border-color: var(--zenova-color-text);
}

.zenova-product-quote__option--plain .zenova-product-quote__option-name {
	max-width: none;
	font-size: 0.9375rem;
	color: var(--zenova-color-text);
}

.zenova-product-quote__option--plain.is-selected,
.zenova-product-quote__option--plain.is-selected:hover,
.zenova-product-quote__option--plain.is-selected:focus-visible {
	border-color: var(--zenova-color-text);
	background: var(--zenova-color-text);
}

.zenova-product-quote__option--plain.is-selected .zenova-product-quote__option-name {
	color: #ffffff;
	font-weight: 400;
}

.zenova-product-quote__footer {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--zenova-color-border);
}

.zenova-product-quote__interest {
	margin: 0 0 1rem;
	font-size: 1rem;
	font-weight: 600;
	color: var(--zenova-color-text);
}

.zenova-product-quote__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem 2rem;
}

.zenova-product-quote__list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
}

.zenova-product-quote__add-to-list {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	font: inherit;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4;
	color: var(--zenova-color-text);
	text-decoration: underline;
	text-underline-offset: 0.15em;
	cursor: pointer;
	box-shadow: none;
}

.zenova-product-quote__add-to-list:hover,
.zenova-product-quote__add-to-list:focus,
.zenova-product-quote__add-to-list:focus-visible {
	color: var(--zenova-color-text);
	background: none;
	text-decoration: underline;
}

.zenova-product-quote__add-to-list.is-in-list {
	font-weight: 500;
}

.zenova-button--product-quote {
	background: #000000;
	border-color: #000000;
	color: #ffffff;
}

.zenova-button--product-quote:hover,
.zenova-button--product-quote:focus-visible {
	background: rgba(255, 255, 255, 0.5);
	border-color: rgba(0, 0, 0, 0.2);
	color: #000000;
}

.zenova-product-quote__hint {
	margin: 0;
	font-size: 0.8125rem;
	color: var(--zenova-color-muted);
}

/*
 * The hint already sits under the button and already says what to do, so a
 * blocked click promotes it rather than adding a second sentence beside it.
 */
.zenova-product-quote__hint--error {
	font-weight: 500;
	color: #c62f24;
}

.zenova-product-inquiry-anchor {
	margin-top: var(--zenova-space-xl);
	scroll-margin-top: 6rem;
}

/* Quote form / drawer ---------------------------------------------------- */

/*
 * One markup, two layouts. Everything below the `.is-drawer` marker only
 * applies once single-product.js has taken over; without it this stays an
 * ordinary section at the bottom of the page, which is what the "Request a
 * quote" anchor lands on.
 */
.zenova-product-quote-form {
	margin-top: var(--zenova-space-xl);
	scroll-margin-top: 6rem;
}

.zenova-product-quote-form__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

.zenova-product-quote-form__title {
	margin: 0;
	font-size: clamp(1.5rem, 2vw, 2rem);
	line-height: 1.2;
	color: var(--zenova-color-text);
}

.zenova-product-quote-form__close {
	flex: none;
	margin: 0;
	padding: 0.5rem;
	border: 0;
	border-radius: 2px;
	background: none;
	box-shadow: none;
	color: var(--zenova-color-muted);
	font-size: 1.125rem;
	line-height: 1;
	cursor: pointer;
}

.zenova-product-quote-form__close:hover,
.zenova-product-quote-form__close:focus,
.zenova-product-quote-form__close:focus-visible {
	background: none;
	color: var(--zenova-color-text);
}

.zenova-product-quote-form__intro {
	margin: 0.75rem 0 1.5rem;
	max-width: 60ch;
	color: var(--zenova-color-muted);
}

.zenova-product-quote-form__notice {
	margin: 0 0 1.5rem;
	padding: 0.875rem 1rem;
	border-left: 4px solid #c62f24;
	background: #fdf3f2;
	color: #c62f24;
}

/* This form's only notice was an error, so the base class carries the red.
   The re-attach line is an instruction, not a failure, and inherits it
   otherwise — every colour it sets is undoing that, not decoration. */
.zenova-product-quote-form__notice--reattach {
	border-left-color: #b8860b;
	background: #fffdf3;
	color: #111111;
}

.zenova-product-quote-form__fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

/* Honeypot: off-screen rather than display:none so bots still fill it. */
.zenova-product-quote-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
}

.zenova-product-quote-form__summary {
	margin: 0 0 1.75rem;
	padding: 1.125rem 1.25rem;
	border: 1px solid var(--zenova-color-border);
	border-radius: var(--zenova-radius);
	background: #fafafa;
}

.zenova-product-quote-form__summary-title {
	margin: 0 0 0.625rem;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--zenova-color-muted);
}

.zenova-product-quote-form__summary-body {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.zenova-product-quote-form__summary-diagram {
	flex: none;
	width: 64px;
	height: 64px;
	object-fit: contain;
	border: 1px solid var(--zenova-color-border);
	background: #ffffff;
}

.zenova-product-quote-form__summary-product {
	margin: 0;
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--zenova-color-text);
}

.zenova-product-quote-form__summary-options {
	margin: 0.25rem 0 0;
	color: var(--zenova-color-muted);
}

/* Empty until JS fills it; without the rule it still reserves a line box. */
.zenova-product-quote-form__summary-options:empty {
	display: none;
}

.zenova-product-quote-form__field {
	margin-bottom: 1.25rem;
}

.zenova-product-quote-form__label {
	display: block;
	margin-bottom: 0.375rem;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--zenova-color-text);
}

.zenova-product-quote-form__label--required::after {
	content: " *";
	color: #c62f24;
}

.zenova-product-quote-form__input,
.zenova-product-quote-form__textarea {
	width: 100%;
	padding: 0.75rem 0.875rem;
	border: 1px solid var(--zenova-color-border);
	border-radius: 2px;
	background: #f2f2f0;
	font: inherit;
	font-size: 1rem;
	color: var(--zenova-color-text);
}

.zenova-product-quote-form__textarea {
	resize: vertical;
}

.zenova-product-quote-form__input:focus,
.zenova-product-quote-form__textarea:focus {
	border-color: var(--zenova-color-text);
	outline: none;
}

.zenova-product-quote-form__input--error,
.zenova-product-quote-form__textarea--error {
	border-color: #c62f24;
}

.zenova-product-quote-form__error {
	margin: 0.375rem 0 0;
	font-size: 0.8125rem;
	color: #c62f24;
}

/* The real input is offscreen-adjacent; the label is the visible control. */
.zenova-product-quote-form__file-input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.zenova-product-quote-form__file {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
}

.zenova-product-quote-form__file-btn {
	display: inline-flex;
	align-items: center;
	padding: 0.625rem 1.125rem;
	border: 1px solid var(--zenova-color-border);
	background: #6c757d;
	color: #ffffff;
	font-size: 0.9375rem;
}

.zenova-product-quote-form__file-name {
	font-size: 0.875rem;
	color: var(--zenova-color-muted);
	overflow-wrap: anywhere;
}

.zenova-product-quote-form__file-hint {
	margin: 0.5rem 0 0;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: #666666;
}

.zenova-product-quote-form__actions {
	margin-top: 1.75rem;
}

.zenova-product-quote-form__submit {
	padding: 0.875rem 1.75rem;
	border: 1px solid var(--zenova-color-button);
	border-radius: 2px;
	background: var(--zenova-color-button);
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
}

.zenova-product-quote-form__submit:hover,
.zenova-product-quote-form__submit:focus-visible {
	background: var(--zenova-color-button-hover);
	border-color: var(--zenova-color-button-hover);
	color: #ffffff;
}

/* Promoted to a drawer (JS only) ----------------------------------------- */

.zenova-product-quote-form.is-drawer {
	margin-top: 0;
}

.zenova-product-quote-form.is-drawer .zenova-product-quote-form__backdrop {
	position: fixed;
	inset: 0;
	/* Above the fixed header (200) and the toast region (300) is deliberate:
	   a toast raised before opening must not float over the dialog. */
	z-index: 400;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.zenova-product-quote-form.is-drawer .zenova-product-quote-form__panel {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 401;
	width: min(100%, 42rem);
	padding: 2rem 2.5rem 3rem;
	background: var(--zenova-color-surface);
	box-shadow: -12px 0 32px rgba(0, 0, 0, 0.18);
	/*
	 * The panel is the scroll container — the page behind it is locked while
	 * it is open. `auto`, never `hidden`: this box has to scroll.
	 */
	overflow-y: auto;
	overscroll-behavior: contain;
	transform: translateX(100%);
	visibility: hidden;
	transition: transform 0.25s ease, visibility 0s linear 0.25s;
}

.zenova-product-quote-form.is-drawer.is-open .zenova-product-quote-form__backdrop {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.25s ease;
}

.zenova-product-quote-form.is-drawer.is-open .zenova-product-quote-form__panel {
	transform: none;
	visibility: visible;
	transition: transform 0.25s ease;
}

/*
 * Scroll lock. position:fixed rather than overflow:hidden on the body — Astra
 * already sets body { overflow-x: hidden } and stacking a second overflow rule
 * on the same element to mean something different is how these fight later.
 * The offset is restored by closeDrawer().
 */
body.zenova-quote-drawer-open {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
}

@media (max-width: 640px) {
	.zenova-product-quote-form.is-drawer .zenova-product-quote-form__panel {
		width: 100%;
		padding: 1.5rem 1.25rem 2.5rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.zenova-product-quote-form.is-drawer .zenova-product-quote-form__backdrop,
	.zenova-product-quote-form.is-drawer .zenova-product-quote-form__panel {
		transition: none;
	}
}

@media (max-width: 921px) {
	.zenova-product-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.zenova-product-quote__option {
		transition: none;
	}
}

/* Product specifications (inherited from the configuration term) ---------- */

/*
 * One flowing "Label : value" list per the owner's reference, not the ruled
 * two-column table this used to be. Still a <dl> — these are name/value pairs,
 * and the visual change does not make them stop being pairs.
 */
.zenova-product-specs__title {
	margin: 0 0 var(--zenova-space-md);
	font-size: 1.25rem;
	color: var(--zenova-color-text);
}

.zenova-product-specs__list {
	margin: 0;
}

.zenova-product-specs__row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0 0.35rem;
	padding: 0.15rem 0;
}

.zenova-product-specs__term {
	margin: 0;
	color: var(--zenova-color-muted);
}

.zenova-product-specs__term::after {
	content: " :";
}

.zenova-product-specs__value {
	margin: 0;
	color: var(--zenova-color-muted);
}

/* Second value of the same item, e.g. the side-panel adjustment. */
.zenova-product-specs__sub {
	display: block;
	color: var(--zenova-color-muted);
}

@media (max-width: 640px) {
	.zenova-product-specs__row {
		padding: 0.2rem 0;
	}
}

/* Configuration accordion -------------------------------------------------- */

.zenova-product-configurations {
	margin-top: var(--zenova-space-xl);
}

.zenova-product-configurations__title {
	margin: 0 0 var(--zenova-space-md);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--zenova-color-text);
}

.zenova-product-configurations__list {
	background: var(--zenova-color-surface, #f7f7f7);
}

.zenova-product-configurations__item + .zenova-product-configurations__item {
	border-top: 1px solid var(--zenova-color-border);
}

/*
 * Marker is drawn from [open] rather than toggled by script, so the state is
 * correct on first paint and stays correct with JS off.
 */
.zenova-product-configurations__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.5rem clamp(1rem, 3vw, 2.5rem);
	cursor: pointer;
	list-style: none;
}

.zenova-product-configurations__summary::-webkit-details-marker {
	display: none;
}

.zenova-product-configurations__summary::after {
	content: "+";
	flex: 0 0 auto;
	font-size: 1.75rem;
	font-weight: 400;
	line-height: 1;
	color: var(--zenova-color-text);
}

.zenova-product-configurations__item[open] .zenova-product-configurations__summary::after {
	content: "\2212";
}

.zenova-product-configurations__summary:focus-visible {
	outline: 2px solid var(--zenova-color-text);
	outline-offset: -2px;
}

.zenova-product-configurations__code {
	font-size: clamp(1.125rem, 2vw, 1.5rem);
	font-weight: 500;
	line-height: 1.2;
	color: var(--zenova-color-text);
}

.zenova-product-configurations__body {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: start;
	padding: 0 clamp(1rem, 3vw, 2.5rem) 2.5rem;
}

.zenova-product-configurations__media {
	background: #ffffff;
}

.zenova-product-configurations__diagram {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.zenova-product-configurations__details-title {
	margin: 0 0 var(--zenova-space-sm);
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	font-weight: 500;
	line-height: 1.2;
	color: var(--zenova-color-text);
}

.zenova-product-configurations__note {
	margin: var(--zenova-space-md) 0 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--zenova-color-muted);
}

@media (max-width: 921px) {
	.zenova-product-configurations__body {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Hardware colour swatches inside the spec list ------------------------- */

.zenova-product-specs__colors {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1rem;
}

.zenova-product-specs__color {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.zenova-product-specs__swatch {
	display: block;
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	object-fit: cover;
	/* Keeps a pale swatch (chrome) from disappearing into the page. */
	border: 1px solid var(--zenova-color-border);
}

.zenova-product-specs__color-name {
	color: var(--zenova-color-text);
}
