.hb-builder {
	--hb-accent: var(--theme-palette-color-1, #5b38ed);
	--hb-accent-hover: var(--theme-palette-color-2, #4928cf);
	--hb-heading: var(--theme-heading-color, #111518);
	--hb-text: var(--theme-text-color, #4d5d6d);
	--hb-muted: #6f7883;
	--hb-border: var(--theme-palette-color-5, #e7ebee);
	--hb-surface: var(--theme-palette-color-8, #ffffff);
	--hb-soft: var(--theme-palette-color-6, #f3f5f7);
	--hb-success: #157347;
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 54px 24px 80px;
	color: var(--hb-text);
	letter-spacing: 0;
}

.hb-builder *,
.hb-builder *::before,
.hb-builder *::after {
	box-sizing: border-box;
}

.hb-builder [hidden] {
	display: none !important;
}

.hb-builder button,
.hb-builder input,
.hb-builder textarea {
	font: inherit;
	letter-spacing: 0;
}

.hb-builder button:focus-visible,
.hb-builder input:focus-visible,
.hb-builder textarea:focus-visible,
.hb-builder a:focus-visible {
	outline: 2px solid var(--hb-accent);
	outline-offset: 3px;
}

.hb-builder-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--hb-border);
}

.hb-builder-kicker {
	display: block;
	margin-bottom: 8px;
	color: var(--hb-accent);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
}

.hb-builder-header h1 {
	margin: 0;
	color: var(--hb-heading);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0;
}

.hb-builder-count {
	flex: 0 0 auto;
	padding-bottom: 4px;
	color: var(--hb-muted);
	font-size: 14px;
}

.hb-builder-count strong {
	color: var(--hb-heading);
	font-size: 20px;
}

.hb-builder-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 720px;
	margin: 30px 0 46px;
}

.hb-step {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	min-height: 42px;
	padding: 0 18px 0 0;
	border: 0;
	background: transparent;
	color: var(--hb-muted);
	font-size: 13px;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
}

.hb-step::after {
	position: absolute;
	top: 20px;
	right: 10px;
	left: 42px;
	z-index: -1;
	height: 1px;
	content: "";
	background: var(--hb-border);
}

.hb-step:last-child::after {
	display: none;
}

.hb-step:disabled {
	cursor: not-allowed;
	opacity: 0.55;
}

.hb-step.is-active,
.hb-step.is-complete {
	color: var(--hb-heading);
}

.hb-step-number {
	display: grid;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid var(--hb-border);
	border-radius: 50%;
	background: var(--hb-surface);
	color: var(--hb-muted);
	font-size: 13px;
	line-height: 1;
}

.hb-step.is-active .hb-step-number {
	border-color: var(--hb-heading);
	background: var(--hb-heading);
	color: #fff;
}

.hb-step.is-complete .hb-step-number {
	border-color: var(--hb-success);
	background: #e8f5ee;
	color: var(--hb-success);
}

.hb-builder-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	align-items: start;
	gap: 42px;
}

.hb-builder-main {
	min-width: 0;
}

.hb-stage[hidden] {
	display: none;
}

.hb-stage {
	animation: hb-stage-in 180ms ease-out;
}

@keyframes hb-stage-in {
	from { opacity: 0; transform: translateY(7px); }
	to { opacity: 1; transform: translateY(0); }
}

.hb-stage-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
}

.hb-stage-heading > div {
	display: flex;
	align-items: baseline;
	gap: 12px;
}

.hb-stage-heading h2 {
	margin: 0;
	color: var(--hb-heading);
	font-size: 25px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0;
}

.hb-stage-index {
	color: var(--hb-accent);
	font-size: 12px;
	font-weight: 800;
}

.hb-results-count {
	color: var(--hb-muted);
	font-size: 13px;
}

.hb-product-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 26px;
}

.hb-category-tabs {
	display: flex;
	min-width: 0;
	overflow-x: auto;
	gap: 4px;
	padding: 3px;
	border: 1px solid var(--hb-border);
	border-radius: 6px;
	background: var(--hb-soft);
	scrollbar-width: thin;
}

.hb-category-tab {
	flex: 0 0 auto;
	min-height: 34px;
	padding: 6px 13px;
	border: 0;
	border-radius: 4px;
	background: transparent;
	color: var(--hb-muted);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}

.hb-category-tab:hover,
.hb-category-tab.is-active {
	background: var(--hb-surface);
	color: var(--hb-heading);
	box-shadow: 0 1px 2px rgba(17, 21, 24, 0.08);
}

.hb-search {
	flex: 0 0 210px;
}

.hb-search input {
	width: 100%;
	height: 42px;
	padding: 9px 13px;
	border: 1px solid var(--hb-border);
	border-radius: 6px;
	background: var(--hb-surface);
	color: var(--hb-heading);
	font-size: 13px;
}

.hb-search input:focus {
	border-color: var(--hb-accent);
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--hb-accent) 14%, transparent);
}

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

.hb-product-card {
	position: relative;
	display: flex;
	min-width: 0;
	height: 100%;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--hb-border);
	border-radius: 7px;
	background: var(--hb-surface);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hb-product-card:hover {
	border-color: color-mix(in srgb, var(--hb-accent) 32%, var(--hb-border));
	box-shadow: 0 14px 34px rgba(34, 56, 101, 0.1);
	transform: translateY(-2px);
}

.hb-product-card.is-selected {
	border-color: var(--hb-accent);
	box-shadow: 0 0 0 1px var(--hb-accent);
}

.hb-product-image {
	position: relative;
	width: 100%;
	aspect-ratio: 1.2 / 1;
	overflow: hidden;
	background: var(--hb-soft);
}

.hb-product-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.hb-product-card:hover .hb-product-image img {
	transform: scale(1.025);
}

.hb-selected-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	display: grid;
	width: 26px;
	height: 26px;
	place-items: center;
	border-radius: 50%;
	background: var(--hb-success);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
}

.hb-product-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 15px;
}

.hb-product-name {
	min-height: 42px;
	margin: 0 0 7px;
	color: var(--hb-heading);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0;
}

.hb-product-price {
	margin: 0 0 15px;
	color: var(--hb-text);
	font-size: 13px;
	font-weight: 600;
}

.hb-add-product {
	width: 100%;
	min-height: 38px;
	margin-top: auto;
	padding: 8px 13px;
	border: 1px solid var(--hb-heading);
	border-radius: 4px;
	background: transparent;
	color: var(--hb-heading);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}

.hb-add-product:hover {
	background: var(--hb-heading);
	color: #fff;
}

.hb-quantity-control {
	display: grid;
	grid-template-columns: 36px minmax(36px, 1fr) 36px;
	height: 38px;
	margin-top: auto;
	overflow: hidden;
	border: 1px solid var(--hb-accent);
	border-radius: 4px;
}

.hb-quantity-control button {
	display: grid;
	min-width: 0;
	padding: 0;
	place-items: center;
	border: 0;
	background: var(--hb-soft);
	color: var(--hb-heading);
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
}

.hb-quantity-control button:hover {
	background: color-mix(in srgb, var(--hb-accent) 12%, var(--hb-soft));
}

.hb-quantity-control span {
	display: grid;
	place-items: center;
	background: var(--hb-surface);
	color: var(--hb-heading);
	font-size: 13px;
	font-weight: 800;
}

.hb-empty-results {
	grid-column: 1 / -1;
	padding: 56px 20px;
	border: 1px dashed var(--hb-border);
	border-radius: 6px;
	color: var(--hb-muted);
	text-align: center;
}

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

.hb-package-card {
	position: relative;
	display: flex;
	height: 100%;
	min-height: 360px;
	flex-direction: column;
	overflow: hidden;
	padding: 0;
	border: 1px solid var(--hb-border);
	border-radius: 7px;
	background: var(--hb-surface);
	color: var(--hb-text);
	text-align: left;
	cursor: pointer;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hb-package-card:hover {
	border-color: color-mix(in srgb, var(--hb-accent) 38%, var(--hb-border));
	box-shadow: 0 14px 34px rgba(34, 56, 101, 0.1);
	transform: translateY(-2px);
}

.hb-package-card.is-selected {
	border-color: var(--hb-accent);
	box-shadow: 0 0 0 1px var(--hb-accent);
}

.hb-package-visual {
	position: relative;
	display: grid;
	height: 210px;
	place-items: center;
	overflow: hidden;
	background: #eef1f3;
}

.hb-package-visual::before {
	position: absolute;
	width: 156px;
	height: 88px;
	content: "";
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 3px;
	background: #cba878;
	box-shadow: 0 22px 30px rgba(17, 21, 24, 0.18);
	transform: perspective(500px) rotateX(58deg) rotateZ(-9deg);
}

.hb-package-visual::after {
	position: absolute;
	width: 26px;
	height: 115px;
	content: "";
	background: #6648d6;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
	transform: rotate(34deg);
}

.hb-package-visual[data-tone="black"] {
	background: #e7e9eb;
}

.hb-package-visual[data-tone="black"]::before {
	background: #202326;
}

.hb-package-visual[data-tone="black"]::after {
	background: #d8b25b;
}

.hb-package-visual[data-tone="white"] {
	background: #e6f0ed;
}

.hb-package-visual[data-tone="white"]::before {
	background: #fff;
}

.hb-package-visual[data-tone="white"]::after {
	background: #8d73d8;
}

.hb-package-check {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 1;
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.88);
	color: transparent;
	font-size: 13px;
	font-weight: 800;
}

.hb-package-card.is-selected .hb-package-check {
	background: var(--hb-success);
	color: #fff;
}

.hb-package-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px;
}

.hb-package-body h3 {
	margin: 0 0 7px;
	color: var(--hb-heading);
	font-size: 16px;
	line-height: 1.35;
	letter-spacing: 0;
}

.hb-package-body p {
	margin: 0 0 18px;
	color: var(--hb-muted);
	font-size: 13px;
	line-height: 1.55;
}

.hb-package-price {
	margin-top: auto;
	color: var(--hb-heading);
	font-size: 15px;
	font-weight: 800;
}

.hb-message-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
	gap: 28px;
}

.hb-message-field > span,
.hb-message-preview > span {
	display: block;
	margin-bottom: 9px;
	color: var(--hb-heading);
	font-size: 13px;
	font-weight: 700;
}

.hb-message-field .required {
	color: #b42318;
}

.hb-message-field textarea {
	display: block;
	width: 100%;
	height: 190px;
	min-height: 190px;
	padding: 15px;
	border: 1px solid var(--hb-border);
	border-radius: 6px;
	background: var(--hb-surface);
	color: var(--hb-heading);
	font-size: 14px;
	line-height: 1.65;
	resize: vertical;
}

.hb-message-field textarea.is-invalid {
	border-color: #b42318;
	box-shadow: 0 0 0 2px rgba(180, 35, 24, 0.12);
}

.hb-message-field small {
	display: block;
	margin-top: 7px;
	color: var(--hb-muted);
	font-size: 11px;
	text-align: right;
}

.hb-message-preview {
	min-height: 220px;
	padding: 22px;
	border: 1px solid var(--hb-border);
	border-radius: 6px;
	background: #f8f6ff;
}

.hb-message-preview blockquote {
	position: relative;
	margin: 18px 0 0;
	padding: 24px 0 0;
	border: 0;
	color: var(--hb-heading);
	font-family: Georgia, serif;
	font-size: 17px;
	font-style: italic;
	line-height: 1.7;
	white-space: pre-wrap;
}

.hb-message-preview blockquote::before {
	position: absolute;
	top: -9px;
	left: 0;
	content: "\201C";
	color: var(--hb-accent);
	font-family: Georgia, serif;
	font-size: 48px;
	font-style: normal;
	line-height: 1;
}

.hb-summary {
	position: sticky;
	top: calc(var(--admin-bar, 0px) + 24px);
	overflow: hidden;
	border: 1px solid var(--hb-border);
	border-radius: 7px;
	background: var(--hb-surface);
	box-shadow: 0 18px 50px rgba(34, 56, 101, 0.1);
}

.admin-bar .hb-summary {
	top: 56px;
}

.hb-summary-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	padding: 21px 22px 18px;
	border-bottom: 1px solid var(--hb-border);
}

.hb-summary-heading span {
	display: block;
	margin-bottom: 3px;
	color: var(--hb-muted);
	font-size: 11px;
	font-weight: 700;
}

.hb-summary-heading h2 {
	margin: 0;
	color: var(--hb-heading);
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: 0;
}

.hb-clear {
	width: auto;
	min-height: 0;
	padding: 2px 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--hb-accent);
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
}

.hb-clear:hover {
	background: transparent;
	color: var(--hb-accent-hover);
	text-decoration: underline;
}

.hb-summary-items {
	max-height: 280px;
	overflow-y: auto;
	padding: 4px 22px;
	scrollbar-width: thin;
}

.hb-summary-empty {
	padding: 28px 0;
	color: var(--hb-muted);
	font-size: 13px;
	text-align: center;
}

.hb-summary-item {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	padding: 12px 0;
	border-bottom: 1px solid var(--hb-border);
}

.hb-summary-item:last-child {
	border-bottom: 0;
}

.hb-summary-item img {
	display: block;
	width: 42px;
	height: 42px;
	border-radius: 4px;
	background: var(--hb-soft);
	object-fit: cover;
}

.hb-summary-item-copy {
	min-width: 0;
}

.hb-summary-item-copy strong {
	display: block;
	overflow: hidden;
	color: var(--hb-heading);
	font-size: 12px;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hb-summary-item-copy span {
	color: var(--hb-muted);
	font-size: 11px;
}

.hb-summary-remove {
	display: grid;
	width: 28px;
	height: 28px;
	min-height: 0;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--hb-muted);
	font-size: 19px;
	line-height: 1;
	cursor: pointer;
}

.hb-summary-remove:hover {
	background: #fbeceb;
	color: #b42318;
}

.hb-summary-package {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 22px;
	border-top: 1px solid var(--hb-border);
	border-bottom: 1px solid var(--hb-border);
	background: var(--hb-soft);
	font-size: 12px;
}

.hb-summary-package span {
	color: var(--hb-muted);
}

.hb-summary-package strong {
	max-width: 190px;
	color: var(--hb-heading);
	text-align: right;
}

.hb-summary-totals {
	padding: 18px 22px;
}

.hb-summary-totals > div {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 8px;
	font-size: 12px;
}

.hb-summary-totals span {
	color: var(--hb-muted);
}

.hb-summary-totals strong {
	color: var(--hb-heading);
}

.hb-summary-totals .hb-summary-total {
	align-items: baseline;
	margin: 15px 0 0;
	padding-top: 15px;
	border-top: 1px solid var(--hb-border);
	font-size: 15px;
}

.hb-summary-total strong {
	font-size: 21px;
}

.hb-summary-error {
	margin: 0 22px 15px;
	padding: 10px 11px;
	border-left: 3px solid #b42318;
	background: #fff2f1;
	color: #8f1d16;
	font-size: 12px;
	line-height: 1.45;
}

.hb-summary-actions {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 9px;
	padding: 0 22px 22px;
}

.hb-back,
.hb-primary-action,
.hb-dialog-secondary,
.hb-dialog-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 45px;
	padding: 10px 16px;
	border-radius: var(--theme-button-border-radius, 4px);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
}

.hb-back,
.hb-dialog-secondary {
	border: 1px solid var(--hb-border);
	background: var(--hb-surface);
	color: var(--hb-heading);
}

.hb-back:hover,
.hb-dialog-secondary:hover {
	border-color: var(--hb-heading);
	background: var(--hb-soft);
	color: var(--hb-heading);
}

.hb-primary-action,
.hb-dialog-primary {
	gap: 8px;
	border: 1px solid var(--hb-accent);
	background: var(--hb-accent);
	color: #fff;
	box-shadow: 0 9px 22px color-mix(in srgb, var(--hb-accent) 22%, transparent);
}

.hb-primary-action:hover,
.hb-dialog-primary:hover {
	border-color: var(--hb-accent-hover);
	background: var(--hb-accent-hover);
	color: #fff;
}

.hb-primary-action:disabled {
	border-color: #cdd2d8;
	background: #cdd2d8;
	box-shadow: none;
	color: #fff;
	cursor: not-allowed;
}

.hb-primary-action.is-loading {
	cursor: wait;
	opacity: 0.76;
}

.hb-success-dialog {
	width: min(440px, calc(100% - 28px));
	padding: 34px;
	border: 0;
	border-radius: 8px;
	background: var(--hb-surface);
	box-shadow: 0 28px 90px rgba(17, 21, 24, 0.24);
	color: var(--hb-text);
	text-align: center;
}

.hb-success-dialog::backdrop {
	background: rgba(17, 21, 24, 0.58);
	backdrop-filter: blur(3px);
}

.hb-dialog-close {
	position: absolute;
	top: 12px;
	right: 12px;
	display: grid;
	width: 34px;
	height: 34px;
	min-height: 0;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: var(--hb-soft);
	color: var(--hb-heading);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.hb-success-mark {
	display: grid;
	width: 54px;
	height: 54px;
	margin: 0 auto 18px;
	place-items: center;
	border-radius: 50%;
	background: #e8f5ee;
	color: var(--hb-success);
	font-size: 24px;
	font-weight: 800;
}

.hb-success-dialog h2 {
	margin: 0 0 25px;
	color: var(--hb-heading);
	font-size: 23px;
	letter-spacing: 0;
}

.hb-dialog-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

@media (max-width: 1100px) {
	.hb-builder-layout {
		grid-template-columns: minmax(0, 1fr) 310px;
		gap: 28px;
	}

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

@media (max-width: 860px) {
	.hb-builder {
		padding-top: 38px;
	}

	.hb-builder-layout {
		grid-template-columns: 1fr;
	}

	.hb-summary {
		position: static;
		grid-row: 1;
	}

	.hb-builder-main {
		grid-row: 2;
	}

	.hb-summary-items {
		max-height: 210px;
	}

	.hb-message-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 620px) {
	.hb-builder {
		padding: 30px 16px 58px;
	}

	.hb-builder-header {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.hb-builder-header h1 {
		font-size: 31px;
	}

	.hb-builder-count {
		padding: 0;
	}

	.hb-builder-steps {
		margin: 24px 0 34px;
	}

	.hb-step {
		align-items: flex-start;
		flex-direction: column;
		gap: 7px;
		padding-right: 8px;
		font-size: 11px;
	}

	.hb-step::after {
		top: 18px;
		right: 8px;
		left: 38px;
	}

	.hb-step-number {
		flex-basis: 38px;
		width: 38px;
		height: 38px;
	}

	.hb-stage-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.hb-stage-heading h2 {
		font-size: 22px;
	}

	.hb-product-toolbar {
		align-items: stretch;
		flex-direction: column-reverse;
		gap: 11px;
	}

	.hb-search {
		flex-basis: auto;
	}

	.hb-product-grid,
	.hb-package-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.hb-product-body {
		padding: 12px;
	}

	.hb-product-name {
		min-height: 38px;
		font-size: 12px;
	}

	.hb-product-price {
		font-size: 12px;
	}

	.hb-package-card {
		min-height: 310px;
	}

	.hb-package-visual {
		height: 165px;
	}

	.hb-package-visual::before {
		width: 126px;
		height: 72px;
	}

	.hb-package-visual::after {
		height: 95px;
	}

	.hb-package-body {
		padding: 14px;
	}

	.hb-package-body h3 {
		font-size: 14px;
	}

	.hb-package-body p {
		font-size: 12px;
	}

	.hb-summary-heading,
	.hb-summary-items,
	.hb-summary-package,
	.hb-summary-totals {
		padding-right: 16px;
		padding-left: 16px;
	}

	.hb-summary-error {
		margin-right: 16px;
		margin-left: 16px;
	}

	.hb-summary-actions {
		padding-right: 16px;
		padding-left: 16px;
	}

	.hb-success-dialog {
		padding: 30px 22px 24px;
	}
}

@media (max-width: 390px) {
	.hb-product-grid,
	.hb-package-grid {
		grid-template-columns: 1fr;
	}

	.hb-product-image {
		aspect-ratio: 1.5 / 1;
	}

	.hb-dialog-actions {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hb-stage,
	.hb-product-card,
	.hb-product-image img,
	.hb-package-card {
		animation: none;
		transition: none;
	}
}
