/**
 * HD Quote Manager — customer-facing request form.
 * Everything is namespaced under .hdqm so it cannot collide with the theme.
 * Brand colours arrive as --hdqm-primary / --hdqm-accent from settings.
 */

.hdqm {
	--hdqm-ink: #16202a;
	--hdqm-ink-mid: #4a5964;
	--hdqm-ink-soft: #71818d;
	--hdqm-surface: #ffffff;
	--hdqm-sunk: #f4f6f7;
	--hdqm-edge: #dde3e7;
	--hdqm-edge-soft: #e9edf0;
	--hdqm-danger: #9c2b2b;
	--hdqm-ok: #256b4f;
	--hdqm-radius: 4px;

	box-sizing: border-box;
	color: var(--hdqm-ink);
	font-size: 16px;
	line-height: 1.55;
	max-width: 860px;
	margin: 0 auto;
}

/*
 * Full-width page templates commonly force their children to 100% width,
 * which stretches the form until the product name and its controls are half
 * a screen apart. The doubled class raises specificity above a theme's own
 * rule, and the !important covers themes that use one themselves.
 *
 * A form is a component with its own comfortable measure. A container has no
 * business overriding that, so this is the case where !important is correct.
 */
.hdqm.hdqm {
	max-width: 860px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	width: auto !important;
	float: none !important;
}

.hdqm *,
.hdqm *::before,
.hdqm *::after {
	box-sizing: inherit;
}

.hdqm .hdqm-sr {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.hdqm .hdqm-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ------------------------------------------------------------- sections */

.hdqm .hdqm-section {
	margin: 0 0 40px;
}

.hdqm .hdqm-section__head {
	margin: 0 0 18px;
}

.hdqm .hdqm-step {
	margin: 0 0 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--hdqm-primary);
}

.hdqm .hdqm-h {
	margin: 0 0 6px;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--hdqm-ink);
	text-wrap: balance;
}

.hdqm .hdqm-sub {
	margin: 0;
	font-size: 15px;
	color: var(--hdqm-ink-mid);
}

/* Said once, before anyone starts counting, so a box is never mistaken
   for a single instrument. Sits a clear 8px under the line above; a
   negative margin here once pulled it up into that line. */
.hdqm .hdqm-note {
	max-width: 62ch;
	margin: 8px 0 18px;
	font-size: 13px;
	line-height: 1.55;
	color: var(--hdqm-ink-soft);
}

/* -------------------------------------------------------------- toolbar */

.hdqm .hdqm-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 0 0 16px;
}

.hdqm .hdqm-search {
	position: relative;
	flex: 1 1 260px;
	display: flex;
	align-items: center;
}

.hdqm .hdqm-search__icon {
	position: absolute;
	left: 12px;
	width: 18px;
	height: 18px;
	color: var(--hdqm-ink-soft);
	pointer-events: none;
}

.hdqm .hdqm-search__input {
	width: 100%;
	padding: 11px 38px 11px 38px;
	font-size: 15px;
	font-family: inherit;
	color: var(--hdqm-ink);
	background: var(--hdqm-surface);
	border: 1px solid var(--hdqm-edge);
	border-radius: var(--hdqm-radius);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	-webkit-appearance: none;
	appearance: none;
}

.hdqm .hdqm-search__input::-webkit-search-cancel-button {
	display: none;
}

.hdqm .hdqm-search__input:hover {
	border-color: var(--hdqm-ink-soft);
}

.hdqm .hdqm-search__clear {
	position: absolute;
	right: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	font-size: 20px;
	line-height: 1;
	color: var(--hdqm-ink-soft);
	background: none;
	border: 0;
	border-radius: var(--hdqm-radius);
	cursor: pointer;
	transition: color 0.15s ease, background-color 0.15s ease;
}

.hdqm .hdqm-search__clear:hover {
	color: var(--hdqm-ink);
	background: var(--hdqm-sunk);
}

.hdqm .hdqm-count {
	margin: 0;
	flex: 0 0 auto;
	padding: 7px 13px;
	font-size: 13px;
	font-weight: 600;
	color: var(--hdqm-ink-soft);
	background: var(--hdqm-sunk);
	border: 1px solid var(--hdqm-edge-soft);
	border-radius: 100px;
	font-variant-numeric: tabular-nums;
	transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.hdqm .hdqm-count.is-active {
	color: #fff;
	background: var(--hdqm-primary);
	border-color: var(--hdqm-primary);
}

.hdqm .hdqm-noresults {
	margin: 0 0 16px;
	padding: 18px;
	font-size: 15px;
	color: var(--hdqm-ink-mid);
	background: var(--hdqm-sunk);
	border-radius: var(--hdqm-radius);
	text-align: center;
}

.hdqm .hdqm-link {
	padding: 0;
	font: inherit;
	color: var(--hdqm-primary);
	background: none;
	border: 0;
	text-decoration: underline;
	text-underline-offset: 2px;
	cursor: pointer;
}

/* -------------------------------------------------------------- catalog */

.hdqm .hdqm-catalog {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hdqm .hdqm-group {
	border: 1px solid var(--hdqm-edge);
	border-radius: var(--hdqm-radius);
	background: var(--hdqm-surface);
	overflow: hidden;
}

.hdqm .hdqm-group__head {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
}

.hdqm .hdqm-group__toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 14px 16px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	color: var(--hdqm-ink);
	text-align: left;
	background: var(--hdqm-sunk);
	border: 0;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.hdqm .hdqm-group__toggle:hover {
	background: var(--hdqm-edge-soft);
}

.hdqm .hdqm-chev {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	color: var(--hdqm-ink-soft);
	transition: transform 0.2s ease;
}

.hdqm .hdqm-group__toggle[aria-expanded="true"] .hdqm-chev {
	transform: rotate(90deg);
}

.hdqm .hdqm-group__name {
	flex: 1 1 auto;
}

.hdqm .hdqm-group__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
}

.hdqm .hdqm-group__count {
	font-size: 12px;
	font-weight: 500;
	color: var(--hdqm-ink-soft);
	font-variant-numeric: tabular-nums;
}

.hdqm .hdqm-group__chosen {
	padding: 2px 8px;
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	background: var(--hdqm-primary);
	border-radius: 100px;
	font-variant-numeric: tabular-nums;
}

/* ---------------------------------------------------------------- items */

.hdqm .hdqm-items {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hdqm .hdqm-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	border-top: 1px solid var(--hdqm-edge-soft);
	transition: background-color 0.15s ease;
}

.hdqm .hdqm-item:first-child {
	border-top: 0;
}

.hdqm .hdqm-item:hover {
	background: #fafcfc;
}

.hdqm .hdqm-item.is-chosen {
	background: #f5fafb;
	box-shadow: inset 3px 0 0 var(--hdqm-primary);
}

.hdqm .hdqm-item__media {
	flex: 0 0 56px;
}

.hdqm .hdqm-item__media img,
.hdqm .hdqm-item__noimg {
	display: block;
	width: 56px;
	height: 56px;
	object-fit: contain;
	background: var(--hdqm-sunk);
	border: 1px solid var(--hdqm-edge-soft);
	border-radius: 3px;
}

.hdqm .hdqm-item__info {
	flex: 1 1 auto;
	min-width: 0;
}

.hdqm .hdqm-item__name {
	margin: 0 0 3px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--hdqm-ink);
}

.hdqm .hdqm-item__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 10px;
	margin: 0;
	font-size: 12.5px;
	color: var(--hdqm-ink-soft);
}

.hdqm .hdqm-sku {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 12px;
	letter-spacing: 0.01em;
}

.hdqm .hdqm-item__controls {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

/*
 * What has been asked for, size by size. The counter edits whichever size
 * the dropdown is showing, so without this the other sizes would be out of
 * sight and feel lost.
 */
.hdqm .hdqm-chosen {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 6px;
	margin: 6px 0 0;
	padding: 0;
	list-style: none;
}

.hdqm .hdqm-chosen[hidden] {
	display: none;
}

.hdqm .hdqm-chosen__row {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 2px 4px 2px 8px;
	font-size: 12px;
	color: var(--hdqm-ink-mid);
	background: var(--hdqm-sunk);
	border: 1px solid var(--hdqm-edge-soft);
	border-radius: 999px;
}

.hdqm .hdqm-chosen__rm {
	width: 18px;
	height: 18px;
	padding: 0;
	font-size: 13px;
	line-height: 1;
	cursor: pointer;
	color: var(--hdqm-ink-soft);
	background: transparent;
	border: 0;
	border-radius: 50%;
	transition: color 150ms ease, background-color 150ms ease;
}

.hdqm .hdqm-chosen__rm:hover {
	color: var(--hdqm-danger);
	background: var(--hdqm-edge-soft);
}

.hdqm .hdqm-chosen__rm:focus-visible {
	outline: 2px solid var(--hdqm-primary);
	outline-offset: 1px;
}

.hdqm .hdqm-onlyopt {
	font-size: 12.5px;
	color: var(--hdqm-ink-soft);
}

/*
 * The chevron is drawn rather than left to the browser. Themes routinely
 * apply appearance:none to form controls, which strips the native arrow and
 * leaves a select looking like a read-only text box. Without an arrow nobody
 * knows there is a choice to make.
 */
.hdqm .hdqm-select {
	max-width: 170px;
	padding: 8px 30px 8px 10px;
	font-family: inherit;
	font-size: 13.5px;
	color: var(--hdqm-ink);
	background-color: var(--hdqm-surface);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='m1 1.75 5 4.5 5-4.5' stroke='%2371818d' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 11px center;
	background-size: 11px 8px;
	border: 1px solid var(--hdqm-edge);
	border-radius: var(--hdqm-radius);
	cursor: pointer;
	transition: border-color 0.15s ease;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* Edge and IE draw their own arrow on top of ours without this. */
.hdqm .hdqm-select::-ms-expand {
	display: none;
}

.hdqm .hdqm-select:hover {
	border-color: var(--hdqm-ink-soft);
}

/* -------------------------------------------------------------- quantity */

.hdqm .hdqm-qty {
	display: flex;
	align-items: center;
	border: 1px solid var(--hdqm-edge);
	border-radius: var(--hdqm-radius);
	overflow: hidden;
	background: var(--hdqm-surface);
	transition: border-color 0.15s ease;
}

.hdqm .hdqm-qty:hover {
	border-color: var(--hdqm-ink-soft);
}

.hdqm .hdqm-qty__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	font-family: inherit;
	font-size: 18px;
	line-height: 1;
	color: var(--hdqm-ink-mid);
	background: var(--hdqm-surface);
	border: 0;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.hdqm .hdqm-qty__btn:hover {
	background: var(--hdqm-sunk);
	color: var(--hdqm-primary);
}

.hdqm .hdqm-qty__btn:disabled {
	color: #c2ccd2;
	cursor: not-allowed;
	background: var(--hdqm-surface);
}

.hdqm .hdqm-qty__input {
	width: 52px;
	height: 44px;
	padding: 0;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	color: var(--hdqm-ink);
	background: var(--hdqm-surface);
	border: 0;
	border-left: 1px solid var(--hdqm-edge-soft);
	border-right: 1px solid var(--hdqm-edge-soft);
	font-variant-numeric: tabular-nums;
	-moz-appearance: textfield;
	appearance: textfield;
}

.hdqm .hdqm-qty__input::-webkit-outer-spin-button,
.hdqm .hdqm-qty__input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* ---------------------------------------------------------------- fields */

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

.hdqm .hdqm-field--wide {
	grid-column: 1 / -1;
}

.hdqm .hdqm-field label {
	display: block;
	margin: 0 0 5px;
	font-size: 13px;
	font-weight: 600;
	color: var(--hdqm-ink-mid);
}

.hdqm .hdqm-req {
	color: var(--hdqm-primary);
}

.hdqm .hdqm-field input,
.hdqm .hdqm-field textarea {
	width: 100%;
	padding: 11px 12px;
	font-family: inherit;
	font-size: 15px;
	color: var(--hdqm-ink);
	background: var(--hdqm-surface);
	border: 1px solid var(--hdqm-edge);
	border-radius: var(--hdqm-radius);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	-webkit-appearance: none;
	appearance: none;
}

.hdqm .hdqm-field input:hover,
.hdqm .hdqm-field textarea:hover {
	border-color: var(--hdqm-ink-soft);
}

.hdqm .hdqm-field textarea {
	resize: vertical;
	min-height: 96px;
	line-height: 1.5;
}

.hdqm .hdqm-field input.is-invalid,
.hdqm .hdqm-field textarea.is-invalid {
	border-color: var(--hdqm-danger);
}

.hdqm .hdqm-err {
	margin: 5px 0 0;
	font-size: 12.5px;
	color: var(--hdqm-danger);
}

.hdqm .hdqm-hint {
	margin: 6px 0 0;
	font-size: 12.5px;
	color: var(--hdqm-ink-soft);
	min-height: 1.2em;
}

.hdqm .hdqm-label-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin: 0 0 5px;
}

.hdqm .hdqm-label-row label {
	margin: 0;
}

/* ------------------------------------------------------------------- mic */

.hdqm .hdqm-mic {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 12px;
	font-family: inherit;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--hdqm-ink-mid);
	background: var(--hdqm-surface);
	border: 1px solid var(--hdqm-edge);
	border-radius: 100px;
	cursor: pointer;
	transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.hdqm .hdqm-mic:hover {
	color: var(--hdqm-primary);
	border-color: var(--hdqm-primary);
}

.hdqm .hdqm-mic__icon {
	width: 15px;
	height: 15px;
}

.hdqm .hdqm-mic__dot {
	display: none;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #c8342f;
}

.hdqm .hdqm-mic.is-listening {
	color: #c8342f;
	border-color: #c8342f;
	background: #fdf3f2;
}

.hdqm .hdqm-mic.is-listening .hdqm-mic__icon {
	display: none;
}

.hdqm .hdqm-mic.is-listening .hdqm-mic__dot {
	display: block;
	animation: hdqm-pulse 1.4s ease-in-out infinite;
}

.hdqm .hdqm-mic.is-done {
	color: var(--hdqm-ok);
	border-color: var(--hdqm-ok);
}

@keyframes hdqm-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.35; }
}

/* ---------------------------------------------------------------- submit */

.hdqm .hdqm-submit {
	margin: 28px 0 0;
	text-align: center;
}

.hdqm .hdqm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 260px;
	min-height: 52px;
	padding: 14px 32px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #fff;
	background: var(--hdqm-primary);
	border: 0;
	border-radius: var(--hdqm-radius);
	cursor: pointer;
	transition: background-color 0.15s ease, transform 0.1s ease, opacity 0.15s ease;
}

.hdqm .hdqm-btn:hover:not(:disabled) {
	background: var(--hdqm-accent);
}

.hdqm .hdqm-btn:active:not(:disabled) {
	transform: scale(0.985);
}

.hdqm .hdqm-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.hdqm .hdqm-spinner {
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: hdqm-spin 0.7s linear infinite;
}

@keyframes hdqm-spin {
	to { transform: rotate(360deg); }
}

.hdqm .hdqm-submit__note {
	margin: 12px 0 0;
	font-size: 13px;
	color: var(--hdqm-ink-soft);
}

.hdqm .hdqm-formerror {
	margin: 14px auto 0;
	max-width: 44ch;
	padding: 12px 16px;
	font-size: 14px;
	color: var(--hdqm-danger);
	background: #fbf0f0;
	border: 1px solid #eccfcf;
	border-radius: var(--hdqm-radius);
}

/* ----------------------------------------------------------------- done */

.hdqm .hdqm-done {
	padding: 44px 28px;
	text-align: center;
	background: var(--hdqm-surface);
	border: 1px solid var(--hdqm-edge);
	border-top: 3px solid var(--hdqm-primary);
	border-radius: var(--hdqm-radius);
}

.hdqm .hdqm-done:focus {
	outline: none;
}

.hdqm .hdqm-done__mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin: 0 auto 18px;
	color: var(--hdqm-ok);
	background: #e8f3ee;
	border-radius: 50%;
}

.hdqm .hdqm-done__mark svg {
	width: 26px;
	height: 26px;
}

.hdqm .hdqm-done__h {
	margin: 0 0 10px;
	font-size: 23px;
	font-weight: 600;
	line-height: 1.25;
	color: var(--hdqm-ink);
	text-wrap: balance;
}

.hdqm .hdqm-done__no {
	margin: 0 0 18px;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--hdqm-ink-soft);
}

.hdqm .hdqm-done__no strong {
	display: inline-block;
	margin-left: 6px;
	padding: 3px 10px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 14px;
	letter-spacing: 0;
	text-transform: none;
	color: var(--hdqm-ink);
	background: var(--hdqm-sunk);
	border-radius: 3px;
}

.hdqm .hdqm-done__body {
	max-width: 46ch;
	margin: 0 auto;
	font-size: 15px;
	color: var(--hdqm-ink-mid);
}

.hdqm .hdqm-done__summary {
	margin-top: 10px;
	font-size: 13.5px;
	color: var(--hdqm-ink-soft);
}

.hdqm .hdqm-empty {
	padding: 32px;
	text-align: center;
	color: var(--hdqm-ink-mid);
	background: var(--hdqm-sunk);
	border-radius: var(--hdqm-radius);
}

/* ---------------------------------------------------------------- focus */

.hdqm button:focus-visible,
.hdqm input:focus-visible,
.hdqm select:focus-visible,
.hdqm textarea:focus-visible,
.hdqm a:focus-visible {
	outline: 2px solid var(--hdqm-primary);
	outline-offset: 2px;
	border-radius: var(--hdqm-radius);
}

/* ------------------------------------------------------------ responsive */

@media (max-width: 720px) {
	.hdqm .hdqm-fields {
		grid-template-columns: 1fr;
	}

	.hdqm .hdqm-item {
		flex-wrap: wrap;
		gap: 10px 12px;
	}

	.hdqm .hdqm-item__info {
		flex: 1 1 60%;
	}

	.hdqm .hdqm-item__controls {
		flex: 1 1 100%;
		justify-content: space-between;
	}

	.hdqm .hdqm-select {
		max-width: none;
		flex: 1 1 auto;
	}

	.hdqm .hdqm-btn {
		width: 100%;
		min-width: 0;
	}

	.hdqm .hdqm-h {
		font-size: 21px;
	}
}

@media (max-width: 360px) {
	.hdqm .hdqm-item__media {
		display: none;
	}

	.hdqm .hdqm-qty__btn {
		width: 44px;
	}
}

/* --------------------------------------------------------- reduced motion */

@media (prefers-reduced-motion: reduce) {
	.hdqm *,
	.hdqm *::before,
	.hdqm *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* ------------------------------------------------------------- dark mode */

@media (prefers-color-scheme: dark) {
	.hdqm.hdqm-dark-aware {
		--hdqm-ink: #e4ebf0;
		--hdqm-ink-mid: #a9b7c2;
		--hdqm-ink-soft: #7e8e9b;
		--hdqm-surface: #161e26;
		--hdqm-sunk: #1c262f;
		--hdqm-edge: #2a3640;
		--hdqm-edge-soft: #222d36;
	}
}

/* ------------------------------------------------------------ brand bar */

.hdqm .hdqm-brandbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 0 0 18px;
	margin: 0 0 28px;
	border-bottom: 1px solid var(--hdqm-edge);
}

.hdqm .hdqm-brandbar__id {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.hdqm .hdqm-brandbar__mark,
.hdqm .hdqm-brandbar__mono {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	height: 38px;
	border-radius: 4px;
	overflow: hidden;
}

.hdqm .hdqm-brandbar__mark img {
	display: block;
	height: 100%;
	width: auto;
}

.hdqm .hdqm-brandbar__mono {
	width: 44px;
	background: var(--hdqm-primary);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.hdqm .hdqm-brandbar__co {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.15;
	text-transform: uppercase;
	color: var(--hdqm-ink);
}

.hdqm .hdqm-brandbar__sub {
	margin: 3px 0 0;
	font-size: 9.5px;
	letter-spacing: 0.082em;
	text-transform: uppercase;
	color: var(--hdqm-ink-soft);
	line-height: 1.2;
}

.hdqm .hdqm-brandbar__contact {
	display: flex;
	align-items: center;
	gap: 9px;
	flex: 0 0 auto;
	padding: 6px 12px 6px 10px;
	text-decoration: none;
	color: var(--hdqm-ink);
	border: 1px solid var(--hdqm-edge);
	border-radius: 100px;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.hdqm .hdqm-brandbar__contact:hover {
	border-color: var(--hdqm-primary);
	background: var(--hdqm-sunk);
}

.hdqm .hdqm-brandbar__contact svg {
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
	color: var(--hdqm-primary);
}

.hdqm .hdqm-brandbar__contact span {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
	min-width: 0;
}

.hdqm .hdqm-brandbar__contact b {
	font-size: 13.5px;
	font-weight: 600;
}

.hdqm .hdqm-brandbar__contact em {
	font-size: 11px;
	font-style: normal;
	color: var(--hdqm-ink-soft);
}

@media (max-width: 600px) {
	.hdqm .hdqm-brandbar__contact em {
		display: none;
	}
}

/* Monogram in the product image placeholder, when a product has no photo. */
.hdqm .hdqm-item__noimg {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--hdqm-primary);
	opacity: 0.55;
}
