:root {
	--store-ink: var(--cms-color-text);
	--store-muted: var(--cms-color-text-muted);
	--store-surface: var(--cms-color-surface);
	--store-canvas: var(--cms-color-canvas);
	--store-line: var(--cms-color-border);
	--store-accent: var(--cms-color-accent);
	--store-accent-dark: var(--cms-color-accent-strong);
	--store-soft: color-mix(in srgb, var(--cms-color-canvas) 72%, var(--cms-color-surface));
	--store-danger: var(--cms-color-danger);
}

.store-shell {
	max-width: 1180px;
	margin: 0 auto;
	padding: 18px 24px 60px;
	color: var(--store-ink);
}

.store-hero,
.store-simple-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 14px 18px;
	background: var(--store-canvas);
	border: 1px solid var(--store-line);
	border-radius: 10px;
}

.store-hero h1,
.store-simple-header h1,
.store-product-copy h1,
.store-sandbox-screen h1,
.store-receipt h1 {
	margin: 6px 0 12px;
	color: var(--store-ink);
	font-size: clamp(2rem, 5vw, 3.3rem);
	line-height: 1.08;
}

.store-hero h1 { min-width: 0; margin: 0; font-size: clamp(1.65rem, 3.2vw, 2.25rem); }

.store-hero p,
.store-simple-header p,
.store-product-copy p,
.store-sandbox-screen p,
.store-receipt p {
	max-width: 68ch;
	margin: 0;
	color: var(--store-muted);
	line-height: 1.65;
}

.store-eyebrow {
	display: block;
	color: var(--store-accent-dark);
	font-size: .78rem;
	font-weight: 750;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.store-button,
.store-cart-link,
.store-load-button {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	padding: 11px 19px;
	border: 1px solid var(--store-accent);
	border-radius: 8px;
	background: var(--store-accent);
	color: var(--cms-color-on-accent);
	font: inherit;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}

.store-button:hover,
.store-cart-link:hover,
.store-load-button:hover {
	background: var(--store-accent-dark);
	color: var(--cms-color-on-accent);
}

.store-button:disabled {
	opacity: .55;
	cursor: not-allowed;
}

.store-category-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 14px 0;
}

.store-category-nav a {
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	padding: 8px 15px;
	border: 1px solid var(--store-line);
	border-radius: 999px;
	background: var(--cms-color-surface);
	color: var(--store-ink);
	text-decoration: none;
}

.store-category-nav a:hover,
.store-category-nav a.is-active {
	border-color: var(--store-accent);
	background: var(--store-soft);
}

.store-browse-tools {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin: 14px 0 18px;
	padding: 14px;
	border: 1px solid var(--store-line);
	border-radius: 10px;
	background: var(--cms-color-surface);
}

.store-browse-tools > div { min-width: 0; }
.store-browse-tools > div > strong { display: block; margin-bottom: 9px; color: var(--store-muted); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }
.store-browse-tools nav { display: flex; flex-wrap: wrap; gap: 7px; }
.store-browse-tools a { display: inline-flex; min-height: 40px; align-items: center; padding: 7px 12px; border: 1px solid var(--store-line); border-radius: 8px; color: var(--store-ink); text-decoration: none; }
.store-browse-tools a:hover,
.store-browse-tools a.is-active { border-color: var(--store-accent); background: var(--store-soft); color: var(--store-accent-dark); }

.store-results-heading,
.store-card-footer,
.store-card-meta,
.store-order-summary > div,
.store-cart-summary > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.store-results-heading {
	margin: 14px 0 10px;
	color: var(--store-muted);
}

.store-results-heading p { margin: 0; }

.store-grid {
	display: grid;
	gap: 24px;
}

.store-grid-one { grid-template-columns: 1fr; }
.store-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.store-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.store-grid-responsive { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.store-card {
	overflow: hidden;
	background: var(--store-surface);
	border: 1px solid var(--store-line);
	border-radius: 10px;
}

.store-card-media {
	display: flex;
	min-height: 220px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--store-canvas);
}

.store-card-media img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform .25s ease;
}

.store-card:hover .store-card-media img { transform: scale(1.025); }

.store-card-placeholder,
.store-product-placeholder {
	display: grid;
	place-items: center;
	color: var(--store-accent);
	font-size: 4rem;
	font-weight: 800;
}

.store-card-body { padding: 22px; }
.store-card h2 { margin: 10px 0 8px; font-size: 1.25rem; }
.store-card h2 a { color: var(--store-ink); text-decoration: none; }
.store-card-body > p { min-height: 3.2em; margin: 0 0 20px; color: var(--store-muted); }
.store-card-meta { color: var(--store-muted); font-size: .8rem; }
.store-stock { color: var(--cms-color-warning); }
.store-stock.is-out { color: var(--store-danger); }
.store-price { font-size: 1.12rem; font-weight: 750; }
.store-price del { margin-right: 5px; color: var(--store-muted); font-size: .9rem; font-weight: 400; }

.store-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin-top: 28px;
}
.store-pagination[hidden] { display: none !important; }

.store-load-zone {
	display: grid;
	place-items: center;
	min-height: 1px;
	margin-top: 1px;
	text-align: center;
}

.store-load-zone.is-loading,
.store-load-zone.is-fallback { min-height: 84px; margin-top: 14px; }
.store-load-zone.is-loading .store-load-button { opacity: .65; }
.store-load-button[hidden] { display: none !important; }
.store-load-status { margin: 6px 0 0; color: var(--store-muted); }

.store-empty,
.store-notice,
.store-provider-notice {
	margin: 24px 0;
	padding: 24px;
	border: 1px solid var(--store-line);
	border-radius: 10px;
	background: var(--store-canvas);
}

.store-notice.is-error {
	border-color: color-mix(in srgb, var(--cms-color-danger) 28%, var(--cms-color-surface));
	background: var(--cms-color-danger-soft);
	color: var(--store-danger);
}

.store-product-detail {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px;
	margin-top: 24px;
}

.store-product-media {
	display: grid;
	align-self: start;
	min-height: 0;
	place-items: start center;
	overflow: hidden;
	border-radius: 12px;
	background: var(--store-canvas);
}

.store-product-media-trigger { display: grid; width: 100%; place-items: start center; cursor: zoom-in; }
.store-product-media img { display: block; width: 100%; height: auto; object-fit: contain; object-position: top center; }
.store-product-image-dialog { width: min(94vw, 1080px); max-width: 1080px; max-height: 92vh; margin: auto; padding: 0; overflow: hidden; border: 1px solid var(--store-line); border-radius: 10px; background: var(--store-surface); color: var(--store-ink); box-shadow: 0 24px 80px rgba(0,0,0,.35); }
.store-product-image-dialog::backdrop { background: rgba(5,13,27,.82); }
.store-product-image-dialog-inner { position: relative; padding: 50px 18px 18px; }
.store-product-image-dialog-close { position: absolute; top: 10px; right: 10px; display: inline-flex; min-height: 34px; align-items: center; gap: 6px; padding: 6px 11px; border: 1px solid var(--store-line); border-radius: 4px; background: var(--store-surface); color: var(--store-ink); font: inherit; font-weight: 750; cursor: pointer; }
.store-product-image-dialog-close:hover,
.store-product-image-dialog-close:focus-visible { border-color: var(--store-accent); background: var(--store-soft); outline: 2px solid var(--store-accent); outline-offset: 2px; }
.store-product-image-dialog-close span { font-size: 1.25rem; line-height: .8; }
.store-product-image-dialog figure { display: grid; gap: 10px; margin: 0; place-items: center; }
.store-product-image-dialog img { display: block; width: auto; max-width: 100%; height: auto; max-height: calc(92vh - 105px); object-fit: contain; }
.store-product-image-dialog figcaption { color: var(--store-muted); font-size: .86rem; text-align: center; }
.store-product-copy { padding: 18px 0; }
.store-product-price { margin: 20px 0 !important; color: var(--store-ink) !important; font-size: 1.6rem; font-weight: 750; }
.store-product-description { margin: 24px 0; line-height: 1.7; }
.store-disclosure-group { display: grid; gap: 9px; margin-top: 24px; }
.store-disclosure-group > h2 { margin-bottom: 2px !important; }
.store-disclosure-item { overflow: clip; border: 1px solid var(--store-line); border-radius: 6px; background: var(--store-surface); }
.store-disclosure-item > summary { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 12px; align-items: center; min-height: 46px; padding: 10px 13px; color: var(--store-ink); font-weight: 750; cursor: pointer; list-style: none; }
.store-disclosure-item > summary::-webkit-details-marker { display: none; }
.store-disclosure-item > summary:hover { background: var(--store-soft); }
.store-disclosure-item > summary:focus-visible { outline: 2px solid var(--store-accent); outline-offset: -2px; }
.store-disclosure-preview { display: none; }
.store-disclosure-icon { width: 14px; height: 14px; position: relative; }
.store-disclosure-icon::before,
.store-disclosure-icon::after { position: absolute; top: 6px; left: 1px; width: 12px; height: 2px; background: currentColor; content: ""; }
.store-disclosure-icon::after { transform: rotate(90deg); transition: transform .16s ease; }
.store-disclosure-item[open] .store-disclosure-icon::after { transform: rotate(0); }
.store-disclosure-content { padding: 0 13px 13px; border-top: 1px solid var(--store-line); }
.store-disclosure-content > :first-child { margin-top: 12px; }
.store-disclosure-content > :last-child { margin-bottom: 0; }
.store-buy-form { display: grid; grid-template-columns: minmax(0, 1fr) 112px auto; gap: 12px; align-items: end; margin: 24px 0 16px; padding: 16px; border: 1px solid var(--store-line); background: var(--cms-color-surface); }
.store-account-required { margin: 24px 0 16px; padding: 16px; border: 1px solid var(--store-line); background: var(--store-surface); }
.store-account-required > strong { color: var(--store-ink); font-size: 1.05rem; }
.store-account-required > p { margin: 5px 0 12px !important; }
.store-account-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.store-buy-field { display: grid; min-width: 0; gap: 7px; }
.store-buy-field label { color: var(--store-ink); font-size: .82rem; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.store-buy-form select,
.store-buy-form input,
.store-field input,
.store-field select,
.store-cart-update input {
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	border: 1px solid var(--cms-color-border);
	border-radius: 8px;
	background: var(--cms-color-surface);
	color: var(--store-ink);
	font: inherit;
}
.store-add-cart-button { min-width: 132px; min-height: 46px; padding: 10px 18px; white-space: nowrap; }

.store-back-link,
.store-secondary-link { display: inline-flex; min-height: 42px; align-items: center; padding: 8px 13px; border: 1px solid var(--store-line); background: var(--cms-color-surface); color: var(--store-accent-dark); font-weight: 700; text-decoration: none; }
.store-back-link { margin-bottom: 16px; }
.store-back-link:hover,
.store-secondary-link:hover { border-color: var(--store-accent); background: var(--store-soft); color: var(--store-accent-dark); }
.store-fulfillment-note { padding: 14px 16px; border-left: 3px solid var(--store-accent); background: var(--store-soft); font-size: .92rem; }

.store-cart-lines { display: grid; gap: 14px; margin: 24px 0; }
.store-cart-line { display: grid; grid-template-columns: minmax(280px, 1fr) 110px 120px 220px; gap: 20px; align-items: center; padding: 20px 22px; border: 1px solid var(--store-line); border-radius: 10px; background: var(--cms-color-surface); }
.store-cart-product { min-width: 0; }
.store-cart-line h2 { margin: 5px 0; font-size: 1.15rem; }
.store-cart-line h2 a { color: var(--store-ink); text-decoration: none; }
.store-cart-line h2 a:hover { color: var(--store-accent-dark); text-decoration: underline; text-underline-offset: 3px; }
.store-cart-line p { margin: 0; color: var(--store-muted); }
.store-cart-money { display: grid; gap: 4px; }
.store-cart-money span { color: var(--store-muted); font-size: .75rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.store-cart-money strong { color: var(--store-ink); font-size: 1rem; white-space: nowrap; }
.store-cart-update { display: grid; grid-template-columns: 78px minmax(0, 1fr); gap: 10px; align-items: end; }
.store-cart-update label { display: grid; gap: 5px; }
.store-cart-update label > span { color: var(--store-muted); font-size: .75rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.store-cart-actions { display: flex; gap: 7px; }
.store-cart-update button { min-height: 42px; padding: 8px 12px; border: 1px solid var(--store-line); border-radius: 2px; background: var(--cms-color-surface); color: var(--store-ink); font: inherit; font-size: .82rem; font-weight: 700; cursor: pointer; }
.store-cart-update-button:hover { border-color: var(--store-accent); background: var(--store-soft); }
.store-text-button { border-color: transparent !important; background: transparent !important; color: var(--store-accent-dark) !important; }
.store-text-button:hover { background: var(--cms-color-warning-soft) !important; color: var(--cms-color-danger) !important; }
.store-cart-summary { max-width: 480px; margin-left: auto; padding: 24px; border: 1px solid var(--store-line); border-radius: 10px; background: var(--store-canvas); }
.store-cart-summary > div { padding: 8px 0; }
.store-cart-summary p { color: var(--store-muted); }
.store-cart-summary .store-button { width: 100%; }

@media (max-width: 1100px) and (min-width: 821px) {
	.store-cart-line { grid-template-columns: minmax(260px, 1fr) 100px 110px; }
	.store-cart-update { grid-column: 1 / -1; max-width: 270px; }
}

.store-checkout-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .8fr); gap: 28px; margin-top: 24px; }
.store-checkout-form { display: grid; gap: 18px; }
.store-checkout-section,
.store-order-summary,
.store-sandbox-screen,
.store-receipt { padding: 28px; border: 1px solid var(--store-line); border-radius: 10px; background: var(--cms-color-surface); }
.store-checkout-section legend { padding: 0 8px; font-size: 1.2rem; font-weight: 750; }
.store-field { display: grid; gap: 7px; margin-bottom: 16px; }
.store-field label { font-weight: 650; }
.store-field label span,
.store-field small { color: var(--store-muted); font-weight: 400; }
.store-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.store-choice { display: flex; align-items: flex-start; gap: 12px; min-height: 54px; padding: 14px; border: 1px solid var(--store-line); border-radius: 8px; cursor: pointer; }
.store-choice + .store-choice { margin-top: 9px; }
.store-choice small { display: block; color: var(--store-muted); }
.store-provider-notice { display: flex; gap: 16px; align-items: flex-start; margin: 0; background: var(--store-soft); }
.store-provider-notice h2 { margin: 0 0 4px; font-size: 1.1rem; }
.store-sandbox-badge { display: inline-flex; padding: 5px 9px; border-radius: 999px; background: var(--cms-color-success-soft); color: var(--cms-color-success); font-size: .75rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.store-terms { display: flex; gap: 10px; align-items: flex-start; color: var(--store-muted); }
.store-order-summary { align-self: start; position: sticky; top: 20px; }
.store-order-summary ul,
.store-receipt ul { list-style: none; margin: 18px 0; padding: 0; }
.store-order-summary li,
.store-receipt li { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--store-line); }

.store-sandbox-screen,
.store-receipt { max-width: 720px; margin: 40px auto; }
.store-sandbox-screen dl,
.store-receipt dl { display: grid; gap: 0; margin: 26px 0; }
.store-sandbox-screen dl div,
.store-receipt dl div { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--store-line); }
.store-sandbox-screen dt,
.store-receipt dt { color: var(--store-muted); }
.store-sandbox-screen dd,
.store-receipt dd { margin: 0; font-weight: 750; }
.store-sandbox-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.store-sandbox-actions button:not(.store-button) { min-height: 46px; padding: 10px 16px; border: 1px solid var(--store-line); border-radius: 8px; background: var(--cms-color-surface); color: var(--store-ink); cursor: pointer; }
.store-sandbox-footnote { margin-top: 24px !important; font-size: .9rem; }
.store-receipt-actions { display: flex; align-items: center; gap: 18px; margin-top: 24px; }

@media (max-width: 820px) {
	.store-shell { padding: 20px 14px 56px; }
	.store-hero { padding: 12px 14px; }
	.store-simple-header { align-items: flex-start; flex-direction: column; padding: 26px; }
	.store-grid-two,
	.store-grid-three { grid-template-columns: 1fr; }
	.store-product-detail,
	.store-checkout-grid { grid-template-columns: 1fr; gap: 22px; }
	.store-product-media { min-height: 0; }
	.store-buy-form { grid-template-columns: minmax(0, 1fr) 100px; }
	.store-add-cart-button { grid-column: 1 / -1; width: 100%; }
	.store-browse-tools { grid-template-columns: 1fr; }
	.store-cart-line { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; padding: 18px; }
	.store-cart-product,
	.store-cart-update { grid-column: 1 / -1; }
	.store-cart-update { max-width: 270px; }
	.store-order-summary { position: static; }
}

@media (max-width: 520px) {
	.store-buy-form { grid-template-columns: 1fr; }
	.store-add-cart-button { grid-column: auto; }
	.store-cart-line { grid-template-columns: 1fr; }
	.store-cart-product,
	.store-cart-update { grid-column: auto; }
	.store-cart-money { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
	.store-cart-update { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
	.store-card-media img { transition: none; }
}

/* FreeholdCMS Classic storefront integration. */
.theme-freeholdcms-classic {
	--store-ink: var(--cms-color-text);
	--store-muted: var(--cms-color-text-muted);
	--store-surface: var(--cms-color-surface);
	--store-canvas: var(--cms-color-canvas);
	--store-line: var(--cms-color-border);
	--store-accent: var(--cms-color-accent);
	--store-accent-dark: var(--cms-color-accent-strong);
	--store-soft: color-mix(in srgb, var(--cms-color-canvas) 72%, var(--cms-color-surface));
}

.theme-freeholdcms-classic .store-shell { padding-top: 18px; }
.theme-freeholdcms-classic .store-hero {
	align-items: center;
	padding: 14px 18px;
	border: 0;
	border-top: 4px solid var(--cms-color-highlight);
	border-radius: 2px;
	background: linear-gradient(90deg, color-mix(in srgb, var(--cms-color-text) 97%, transparent), color-mix(in srgb, var(--cms-color-text) 90%, transparent));
	box-shadow: 0 18px 42px color-mix(in srgb, var(--cms-color-text) 12%, transparent);
	color: var(--cms-color-text-inverse);
}
.theme-freeholdcms-classic .store-hero h1,
.theme-freeholdcms-classic .store-simple-header h1,
.theme-freeholdcms-classic .store-product-copy h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2rem, 4.5vw, 3rem); }
.theme-freeholdcms-classic .store-hero h1 { font-size: clamp(1.65rem, 3.2vw, 2.25rem); }
.theme-freeholdcms-classic .store-hero h1 { color: var(--cms-color-text-inverse); }
.theme-freeholdcms-classic .store-hero p { color: var(--cms-color-text-inverse-muted); }
.theme-freeholdcms-classic .store-hero .store-eyebrow { color: var(--cms-color-highlight); }
.theme-freeholdcms-classic .store-cart-link { flex: 0 0 auto; border-color: var(--cms-color-highlight); background: var(--cms-color-highlight); color: var(--cms-color-text); }
.theme-freeholdcms-classic .store-cart-link:hover { border-color: var(--cms-color-text-inverse); background: var(--cms-color-text-inverse); color: var(--cms-color-text); }

.store-search {
	display: grid;
	grid-template-columns: minmax(150px, .35fr) minmax(260px, 1fr);
	gap: 18px;
	align-items: center;
	margin: 12px 0 0;
	padding: 11px 14px;
	border: 1px solid var(--store-line);
	background: var(--cms-color-surface);
}
.store-search label { color: var(--store-ink); font-weight: 750; }
.store-search > div { display: flex; align-items: center; gap: 14px; }
.store-search input {
	width: 100%;
	min-height: 46px;
	padding: 10px 13px;
	border: 1px solid var(--cms-color-border);
	border-radius: 2px;
	background: var(--cms-color-surface);
	color: var(--store-ink);
	font: inherit;
}
.store-search [data-store-search-count] { flex: 0 0 auto; color: var(--store-muted); font-size: .86rem; }
.store-card[hidden] { display: none; }

.theme-freeholdcms-classic .store-category-nav a,
.theme-freeholdcms-classic .store-browse-tools,
.theme-freeholdcms-classic .store-browse-tools a,
.theme-freeholdcms-classic .store-card,
.theme-freeholdcms-classic .store-empty,
.theme-freeholdcms-classic .store-notice,
.theme-freeholdcms-classic .store-provider-notice,
.theme-freeholdcms-classic .store-product-media,
.theme-freeholdcms-classic .store-cart-line,
.theme-freeholdcms-classic .store-cart-summary,
.theme-freeholdcms-classic .store-checkout-section,
.theme-freeholdcms-classic .store-order-summary { border-radius: 2px; }
.theme-freeholdcms-classic .store-card { box-shadow: 0 12px 30px color-mix(in srgb, var(--cms-color-text) 8%, transparent); }
.theme-freeholdcms-classic .store-card h2 { font-family: Georgia, 'Times New Roman', serif; font-size: 1.35rem; }
.theme-freeholdcms-classic .store-button,
.theme-freeholdcms-classic .store-load-button { border-radius: 2px; }
.theme-freeholdcms-classic .store-button:disabled { border-color: var(--cms-color-text-muted); background: var(--cms-color-text-muted); color: var(--cms-color-text-inverse); opacity: 1; }
.store-demo-note { margin: 14px 0 !important; padding: 12px 14px; border-left: 3px solid var(--store-accent); background: var(--store-soft); color: var(--store-ink) !important; }
.theme-freeholdcms-classic .store-simple-header { padding: 30px 34px; border-radius: 2px; }
.theme-freeholdcms-classic .store-product-copy h1 { font-size: clamp(2rem, 3.5vw, 2.7rem); }
.theme-freeholdcms-classic .store-product-copy .store-demo-note { font-size: .88rem; line-height: 1.5; }
.theme-freeholdcms-classic .store-product-copy .store-fulfillment-note { margin-top: 10px; padding: 11px 0; border-top: 1px solid var(--store-line); border-left: 0; background: transparent; font-size: .88rem; }

@media (max-width: 680px) {
	.store-search { grid-template-columns: 1fr; gap: 8px; }
	.store-search > div { align-items: stretch; flex-direction: column; }
	.theme-freeholdcms-classic .store-hero { align-items: center; }
}

.store-buy-field > small,
.store-cart-product > small,
.store-order-summary li small {
	display: block;
	margin-top: 4px;
	color: var(--store-muted);
	font-size: 0.78rem;
	font-weight: 500;
}

.store-card-rating,
.store-review-stars { color: var(--cms-color-warning); font-weight: 750; }
.store-reviews { display: grid; gap: 20px; margin-top: 52px; padding: 32px 0 26px; border-top: 1px solid var(--store-line); }
.store-reviews-heading,
.store-review-summary,
.store-review-card > header { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.store-reviews-heading h2,
.store-review-card h3 { margin: 0; }
.store-review-list { display: grid; gap: 14px; margin-top: 0; }
.store-reviews .store-review-form { margin: 0; }
.store-review-empty { margin: 0; padding: 17px 19px; border: 1px solid var(--store-line); border-radius: 6px; background: var(--store-canvas); color: var(--store-muted); }
.store-review-byline { display: grid; gap: 2px; }
.store-review-byline small { color: var(--store-muted); }
.store-review-source { color: var(--store-accent-dark) !important; font-weight: 750; }
.store-review-disclosure { max-width: 76ch; margin: 12px 0 0; color: var(--store-muted); font-size: .78rem; line-height: 1.5; }
.store-your-reviews { margin: 20px 0; }
.store-your-reviews > h3 { margin-bottom: 6px; }
.store-review-owner-list { display: grid; gap: 14px; margin-top: 14px; }
.store-review-owner-card { padding: 20px; border: 1px solid var(--store-line); border-radius: 8px; background: var(--store-surface); }
.store-review-owner-card > header { margin-bottom: 12px; }
.store-review-owner-card > header p { margin: 6px 0 0; }
.store-review-owner-card textarea { width: 100%; min-height: 120px; padding: 10px 12px; border: 1px solid var(--store-line); border-radius: 8px; background: var(--store-surface); color: var(--store-ink); font: inherit; resize: vertical; }
.store-review-help { margin: 6px 0 14px; color: var(--store-muted); font-size: .88rem; }
.store-review-card,
.store-review-form { padding: 20px; border: 1px solid var(--store-line); border-radius: 8px; background: var(--store-surface); }
.store-review-card p { margin-bottom: 0; white-space: normal; }
.store-review-status,
.store-verified-purchase { display: inline-flex; padding: 4px 8px; border-radius: 999px; background: var(--store-soft); color: var(--store-muted); font-size: .78rem; font-weight: 700; }
.store-verified-purchase { color: var(--cms-color-success); }
.store-review-fields { display: grid; grid-template-columns: minmax(0, 180px) minmax(0, 1fr); gap: 14px; }
.store-review-form textarea { width: 100%; min-height: 120px; padding: 10px 12px; border: 1px solid var(--store-line); border-radius: 8px; background: var(--store-surface); color: var(--store-ink); font: inherit; resize: vertical; }
.store-review-withdraw { margin-top: 14px; }
.store-review-pagination { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 22px; }
.store-secondary-button { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; padding: 8px 13px; border: 1px solid var(--store-line); border-radius: 8px; background: var(--store-surface); color: var(--store-accent-dark); font: inherit; font-weight: 700; cursor: pointer; }
.store-secondary-button:hover { border-color: var(--store-accent); background: var(--store-soft); }

@media (max-width: 620px) {
	.store-reviews-heading,
	.store-review-summary,
	.store-review-card > header { align-items: flex-start; flex-direction: column; }
	.store-review-fields { grid-template-columns: 1fr; }
}

@media print {
	.store-product-media-trigger { cursor: default; }
	.store-product-image-dialog { display: none !important; }
}

/* Holden checkout repair — scoped commerce layout; no theme token replacement. */
.store-shell .store-product-description p { margin: 0 0 1em; }
.store-shell .store-product-description p:last-child { margin-bottom: 0; }
.store-shell .store-product-description :is(ul,ol) { margin: .65em 0 1.15em; padding-inline-start: 1.45em; }
.store-shell .store-product-description li + li { margin-top: .45em; }
.store-shell .store-product-description .store-disclosure-content > :last-child { margin-bottom: 0; }
.store-shell .store-buy-form { align-items: end; gap: 12px; padding: 16px; grid-template-columns: minmax(0,1fr) 88px minmax(126px,auto); }
.store-shell .store-buy-form .store-buy-field { min-width: 0; display: grid; gap: 6px; }
.store-shell .store-buy-form :is(input,select,button) { box-sizing: border-box; min-height: 44px; margin: 0; }
.store-shell .store-buy-form label { margin: 0; }
.store-shell .store-buy-form .store-buy-help { grid-column: 1 / -1; margin: 0; color: var(--store-muted); }
.store-shell [hidden], .store-customer [hidden] { display: none !important; }
.store-shell :is(input,select,textarea,button,a) { scroll-margin-top: 132px; }
.store-shell a:not(.store-button):not(.store-secondary-link):not(.store-back-link) { text-underline-offset: .17em; }
.store-shell .store-notice { margin: 16px 0; padding: 14px 16px; line-height: 1.55; }
.store-shell .store-notice p { margin: .45em 0 0; }
.store-shell .store-notice:focus { outline: 2px solid var(--store-accent); outline-offset: 3px; }
.store-shell .store-line-unavailable { color: var(--store-danger); margin-top: 8px; }
.store-shell .store-muted { color: var(--store-muted); font-size: .875rem; line-height: 1.5; }
.store-shell .store-mode-note { margin: 14px 0 0; padding: 10px 12px; border-inline-start: 3px solid var(--store-accent); background: var(--store-soft); font-size: .875rem; }
.store-shell.store-checkout-page .store-checkout-grid { display: grid; grid-template-columns: minmax(0,1.55fr) minmax(285px,1fr); align-items: start; gap: 20px 24px; margin-top: 20px; }
.store-shell.store-checkout-page .store-checkout-fields { display: grid; gap: 18px; min-width: 0; }
.store-shell.store-checkout-page .store-checkout-section { min-width: 0; margin: 0; padding: 16px 18px 18px; border: 1px solid var(--store-line); background: var(--store-surface); }
.store-shell.store-checkout-page legend { padding: 0 5px; font-size: 1.0625rem; font-weight: 700; }
.store-shell.store-checkout-page .store-checkout-section h2 { font-size: 1rem; margin: 16px 0 12px; }
.store-shell.store-checkout-page .store-order-summary { position: static; top: auto; min-width: 0; margin: 0; padding: 20px; grid-column: 2; grid-row: 1 / span 2; }
.store-shell.store-checkout-page .store-order-summary h2 { font-size: 1.125rem; margin: 0 0 16px; }
.store-shell.store-checkout-page .store-checkout-complete { grid-column: 1; display: grid; gap: 14px; margin: 0; min-width: 0; }
.store-shell.store-checkout-page .store-checkout-complete > .store-button { width: 100%; min-height: 46px; }
.store-shell.store-checkout-page .store-checkout-complete > p { margin: 0; }
.store-shell .store-terms { display: flex; align-items: flex-start; gap: 10px; margin: 0; font-weight: 400; line-height: 1.55; }
.store-shell .store-terms input[type="checkbox"] { flex: 0 0 18px; width: 18px; height: 18px; min-height: 0; margin: .2em 0 0; }
.store-shell .store-terms > span { flex: 1 1 auto; min-width: 0; }
.store-shell .store-terms a { display: inline; font-weight: 600; white-space: normal; }
.store-shell .store-choice { display: flex; gap: 10px; align-items: start; margin: 0; padding: 10px 0; font-size: .9375rem; font-weight: 400; }
.store-shell .store-choice + .store-choice { border-top: 1px solid var(--store-line); }
.store-shell.store-checkout-page #checkout-payment .store-choice { padding: 12px 14px; }
.store-shell.store-checkout-page #checkout-payment .store-choice + .store-choice { margin-top: 10px; }
.store-shell .store-choice > input { flex: 0 0 18px; width: 18px; height: 18px; min-height: 0; margin: .2em 0 0; }
.store-shell .store-choice > span { min-width: 0; }
.store-shell .store-choice small { display: block; margin-top: 3px; color: var(--store-muted); }
.store-shell.store-checkout-page .store-address-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px 16px; }
.store-shell.store-checkout-page .store-field { display: grid; gap: 6px; min-width: 0; margin: 0; }
.store-shell.store-checkout-page .store-field.is-wide { grid-column: 1 / -1; }
.store-shell.store-checkout-page .store-field :is(input,select) { width: 100%; max-width: 100%; min-height: 44px; margin: 0; box-sizing: border-box; font-size: .9375rem; }
.store-shell.store-checkout-page .store-field input[readonly] { color: var(--store-muted); }
.store-shell.store-checkout-page .store-field small { color: var(--store-muted); }
.store-shell.store-checkout-page [data-shipping-address] > button { margin-top: 16px; }
.store-shell.store-checkout-page [data-review-status] { min-height: 1.5em; margin: 10px 0; }
.store-shell [data-total-stale="true"] { opacity: .65; }
.store-shell .store-totals { margin: 16px 0 0; padding: 0; display: grid; gap: 8px; }
.store-shell .store-totals > div { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; }
.store-shell .store-totals :is(dt,dd) { margin: 0; padding: 0; }
.store-shell .store-totals dd { text-align: end; font-variant-numeric: tabular-nums; }
.store-shell .store-totals .store-total { border-top: 1px solid var(--store-line); padding-top: 12px; margin-top: 4px; font-size: 1.125rem; font-weight: 700; }
.store-shell .store-total small { color: var(--store-muted); font-size: .75rem; font-weight: 400; }
.store-shell :is(.store-saved-items,.store-order-summary > ul) { list-style: none; margin: 0; padding: 0; }
.store-shell :is(.store-saved-items,.store-order-summary > ul) > li { display: flex; align-items: start; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--store-line); }
.store-shell :is(.store-saved-items,.store-order-summary > ul) > li > span { min-width: 0; overflow-wrap: anywhere; }
.store-shell :is(.store-saved-items,.store-order-summary > ul) small { display: block; margin-top: 5px; color: var(--store-muted); }
.store-shell :is(.store-saved-items,.store-order-summary > ul) b { white-space: nowrap; font-variant-numeric: tabular-nums; }
.store-shell .store-pending-orders { border: 1px solid var(--store-line); background: var(--store-surface); padding: 18px; margin: 20px 0; }
.store-shell .store-pending-orders > h2 { font-size: 1.125rem; margin: 0 0 8px; }
.store-shell .store-pending-orders > p { margin: 0 0 12px; color: var(--store-muted); max-width: 80ch; }
.store-shell .store-pending-card { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 12px 16px; padding: 14px 0; border-top: 1px solid var(--store-line); }
.store-shell .store-pending-card > div { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 16px; }
.store-shell .store-pending-card > div span { color: var(--store-muted); }
.store-shell .store-pending-card > details { grid-column: 1 / -1; }
.store-shell summary { cursor: pointer; }
.store-shell .store-payment-result { max-width: 760px; margin: 0 auto; padding: 24px; text-align: start; }
.store-shell .store-payment-result h1 { font-size: clamp(1.4rem,2.6vw,1.85rem); margin: 0 0 12px; }
.store-shell .store-payment-result > p { margin: 0 0 16px; max-width: 70ch; }
.store-shell .store-payment-result .store-account-actions { margin-top: 20px; }
.store-shell .store-saved-order-summary { margin: 16px 0 22px; }
.store-shell .store-order-reference { margin: 0 0 8px; }
.store-shell .store-result-links { border-top: 1px solid var(--store-line); padding-top: 16px; }
.store-shell .store-cart-line { align-items: start; gap: 18px; padding: 18px; }
.store-shell .store-cart-product { min-width: 0; }
.store-shell .store-cart-product h2 { font-size: 1.0625rem; line-height: 1.4; margin: 0 0 6px; overflow-wrap: anywhere; }
.store-shell .store-cart-product p { margin: 0 0 5px; }
.store-shell .store-cart-product small { display: block; color: var(--store-muted); }
.store-shell .store-cart-money strong { white-space: nowrap; }
.store-shell .store-cart-update label { display: grid; gap: 6px; }
.store-shell .store-cart-update input { min-height: 42px; }
.store-shell .store-cart-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.store-shell .store-cart-summary { padding: 20px; }
.store-shell .store-cart-summary > div { display: flex; justify-content: space-between; gap: 18px; }
.store-shell .store-cart-summary > p { margin: 12px 0 16px; }
.store-shell :is(.store-account-actions,.store-account-actions form) { flex-wrap: wrap; gap: 12px; }
.store-shell button:disabled { opacity: .55; cursor: not-allowed; }
@media (max-width: 960px) {
	.store-shell .store-buy-form { grid-template-columns: minmax(0,1fr) 90px; }
	.store-shell .store-buy-form .store-add-cart-button { grid-column: 1 / -1; }
	.store-shell .store-cart-line { grid-template-columns: minmax(0,1fr) auto; }
}
@media (max-width: 760px) {
	.store-shell.store-checkout-page .store-checkout-grid { grid-template-columns: minmax(0,1fr); gap: 18px; }
	.store-shell.store-checkout-page :is(.store-order-summary,.store-checkout-complete) { grid-column: 1; grid-row: auto; }
	.store-shell.store-checkout-page .store-order-summary { position: static; }
	.store-shell .store-pending-card { grid-template-columns: minmax(0,1fr); }
	.store-shell .store-pending-card > details { grid-column: 1; }
	.store-shell .store-pending-card > a { justify-self: start; }
	.store-shell .store-payment-result { padding: 18px 0; }
}
@media (max-width: 440px) {
	.store-shell.store-checkout-page .store-address-grid { grid-template-columns: minmax(0,1fr); }
	.store-shell .store-cart-line { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
	.store-shell .store-cart-product,.store-shell .store-cart-update { grid-column: 1 / -1; }
	.store-shell .store-totals .store-total { font-size: 1rem; }
}


/* Restore Holden's source-labelled customer reviews without altering theme tokens. */
.store-shell .store-results-heading { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 10px 18px; }
.store-shell .store-reviews-link { display: inline-block; color: var(--store-accent-dark); font-weight: 650; text-decoration: underline; text-underline-offset: .18em; }
.store-shell .store-review-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.store-shell .store-review-filters a { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 7px 12px; border: 1px solid var(--store-line); border-radius: 6px; color: var(--store-ink); background: var(--store-surface); text-decoration: none; }
.store-shell .store-review-filters a.is-active { border-color: var(--store-accent); background: var(--store-soft); font-weight: 700; }
.store-shell .store-review-filters span { color: var(--store-muted); font-size: .85em; }
.store-shell .store-review-identity { display: grid; gap: 4px; min-width: 0; }
.store-shell .store-review-origin { color: var(--store-muted); line-height: 1.5; }
.store-shell .store-review-stars { white-space: nowrap; flex-shrink: 0; }
.store-shell .store-review-quote { margin: 14px 0 0; padding: 0; border: 0; font: inherit; color: var(--store-ink); background: none; }
.store-shell .store-review-quote p { margin: 0; line-height: 1.65; overflow-wrap: anywhere; }
.store-shell .store-review-source-prefix { font-weight: 650; }
.store-shell .store-review-card h3 { margin: 14px 0 0; font-size: 1rem; }
.store-shell .store-review-card .store-review-disclosure { margin: 14px 0 0; font-size: .78rem; line-height: 1.5; }
.store-shell .store-review-store-link, .store-shell .store-reviews-intro { margin: 0; line-height: 1.6; }
.store-shell .store-review-pagination { flex-wrap: wrap; }
.store-shell .store-reviews-page { margin-top: 16px; padding-top: 18px; }
@media (max-width: 620px) {
	.store-shell .store-review-card { padding: 16px; }
	.store-shell .store-review-card > header { flex-direction: row; align-items: flex-start; gap: 10px; }
}

/* Final page-level review: keep checkout totals full-width and headings compact. */
.store-shell > .store-simple-header h1 { margin: 0 0 8px; font-size: clamp(1.45rem,2.4vw,1.85rem); line-height: 1.2; }
.store-shell .store-order-summary > [data-checkout-totals] { display: block; width: 100%; }
.store-shell .store-order-summary .store-totals { width: 100%; box-sizing: border-box; }
.store-shell.store-checkout-page [data-review-status] { display: block; background: none; border: 0; border-radius: 0; padding: 0; font-size: .875rem; font-weight: 400; line-height: 1.5; }
.store-shell.store-checkout-page [data-review-status]:empty { display: none; min-height: 0; margin: 0; }
.store-shell.store-checkout-page .store-order-summary > button { margin-top: 14px; }

/* Local reviews are the primary Store review surface; marketplace imports remain secondary. */
.store-review-purchase-action { display:flex; margin:10px 0 14px; }
.store-review-purchase-action .store-button,
.store-review-purchase-action .store-secondary-button { width:auto; min-width:0; }
.store-review-filters { align-items:center; }
.store-customer-section-heading { display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.store-order-action-link + .store-order-action-link { margin-left:8px; }
@media (max-width:640px) {
	.store-review-purchase-action .store-button,
	.store-review-purchase-action .store-secondary-button { width:100%; justify-content:center; }
	.store-order-action-link + .store-order-action-link { margin-left:0; }
}

.store-review-quick-link { margin: -2px 0 14px; font-size: .86rem; font-weight: 700; }
.store-review-quick-link a { color: var(--store-link); text-underline-offset: 2px; }

/* Purchase-gated review entry and 30-day review editing contract. */
.store-shell .store-review-filters { align-items: center; }
.store-shell .store-review-filters .store-review-leave-link {
	border: 1px solid #000;
	background: var(--store-surface);
	color: var(--store-ink);
	font-weight: 700;
}
.store-shell .store-review-filters .store-review-leave-link:hover,
.store-shell .store-review-filters .store-review-leave-link:focus-visible {
	border-color: #000;
	background: var(--store-soft);
}
.store-shell .store-review-purchase-form { margin: 4px 0 2px; }
.store-shell .store-review-purchase-form > h2 { margin: 0 0 8px; font-size: 1.2rem; }
.store-shell .store-review-purchase-form > p { margin: 0 0 14px; }
.store-shell .store-review-purchase-form form { display: grid; gap: 14px; }
.store-shell .store-review-purchase-form label { display: grid; gap: 6px; font-weight: 700; }
.store-shell .store-review-purchase-form label small { font-weight: 400; color: var(--store-muted); }
.store-shell .store-review-purchase-form select,
.store-shell .store-review-purchase-form input,
.store-shell .store-review-purchase-form textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	border: 1px solid var(--store-line);
	border-radius: 8px;
	background: var(--store-surface);
	color: var(--store-ink);
	font: inherit;
}
.store-shell .store-review-purchase-form textarea { min-height: 120px; resize: vertical; }
.store-shell .store-review-readonly { display: grid; gap: 8px; }
.store-shell .store-review-readonly p { margin: 0; }
@media (max-width: 620px) {
	.store-shell .store-review-filters .store-review-leave-link { flex-basis: auto; }
}


/* Multi-dimensional variant selector and centrally managed build-surface guide. */
.store-shell .store-buy-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
	gap: 12px;
	min-width: 0;
}
.store-shell .store-buy-options .store-buy-field { min-width: 0; }
.store-shell .store-buy-noscript { margin-top: 10px; }
.store-shell .store-product-surface-guide {
	margin: 28px 0 24px;
	padding-top: 22px;
	border-top: 1px solid var(--store-line);
}
.store-shell .store-product-surface-panel { min-width: 0; }
.store-shell .store-product-surface-panel .store-product-surface-guide-note { margin-bottom: 0; }
.store-shell .store-product-surface-guide > h2 { margin: 0 0 18px; }
.store-shell .store-product-surface-guide article + article { margin-top: 20px; }
.store-shell .store-product-surface-guide h3 { margin: 0 0 8px; font-size: 1.05rem; }
.store-shell .store-product-surface-guide h4 { margin: 14px 0 6px; font-size: .92rem; }
.store-shell .store-product-surface-guide p { margin: 0 0 1em; line-height: 1.7; }
.store-shell .store-product-surface-guide p:last-child { margin-bottom: 0; }
.store-shell .store-product-surface-guide-note {
	margin-top: 20px;
	padding-top: 14px;
	border-top: 1px solid var(--store-line);
	color: var(--store-muted);
	font-size: .9rem;
}
@media (max-width: 680px) {
	.store-shell .store-buy-options { grid-template-columns: 1fr; }
}

/* Multi-option build plates keep configuration together and purchasing actions compact. */
.store-shell .store-buy-form-multi {
	grid-template-columns: 140px auto minmax(0, 1fr);
}
.store-shell .store-buy-form-multi .store-buy-options {
	grid-column: 1 / -1;
}
.store-shell .store-buy-form-multi .store-buy-quantity { grid-column: 1; }
.store-shell .store-buy-form-multi .store-add-cart-button {
	grid-column: 2;
	justify-self: start;
}
.store-shell .store-buy-form-multi .store-buy-help { grid-column: 1 / -1; }
@media (max-width: 520px) {
	.store-shell .store-buy-form-multi { grid-template-columns: 1fr; }
	.store-shell .store-buy-form-multi .store-buy-options,
	.store-shell .store-buy-form-multi .store-buy-quantity,
	.store-shell .store-buy-form-multi .store-add-cart-button,
	.store-shell .store-buy-form-multi .store-buy-help { grid-column: 1; }
}

/* Holden product-page audit hotfix: compact, top-aligned purchasing and restored progressive surface details. */
.store-shell .store-product-detail {
	align-items: start;
	gap: 36px;
}
.store-shell .store-product-media {
	border: 1px solid var(--store-line);
	border-radius: 8px;
	background: var(--store-surface);
}
.store-shell .store-product-copy { padding-top: 0; }
.store-shell .store-product-copy h1,
.theme-freeholdcms-classic .store-product-copy h1 {
	margin: 0 0 8px;
	font-size: clamp(1.75rem, 2.8vw, 2.25rem);
	line-height: 1.12;
}
.store-shell .store-product-brand { margin: 0 0 4px !important; }
.store-shell .store-product-price { margin: 14px 0 8px !important; }
.store-shell .store-review-quick-link { margin: 0 0 16px; }
.store-shell .store-buy-form-multi {
	grid-template-columns: minmax(96px, 120px) auto;
	justify-content: start;
}
.store-shell .store-buy-form-multi .store-buy-options { grid-column: 1 / -1; }
.store-shell .store-buy-form-multi .store-buy-quantity { grid-column: 1; }
.store-shell .store-buy-form-multi .store-add-cart-button {
	grid-column: 2;
	justify-self: start;
}
.store-shell .store-buy-form-multi .store-buy-help { grid-column: 1 / -1; }
.store-shell .store-product-surface-guide {
	margin: 28px 0 10px;
	padding-top: 22px;
	border-top: 1px solid var(--store-line);
}
.store-shell .store-product-surface-guide .store-disclosure-group { margin-top: 0; }
.store-shell .store-product-surface-guide-note {
	margin: 0 0 24px;
	padding: 10px 0 0;
	border-top: 0;
	color: var(--store-muted);
	font-size: .86rem;
	line-height: 1.55;
}
@media (max-width: 820px) {
	.store-shell .store-product-detail { gap: 20px; }
}
@media (max-width: 520px) {
	.store-shell .store-buy-form-multi { grid-template-columns: 1fr; }
	.store-shell .store-buy-form-multi .store-buy-options,
	.store-shell .store-buy-form-multi .store-buy-quantity,
	.store-shell .store-buy-form-multi .store-add-cart-button,
	.store-shell .store-buy-form-multi .store-buy-help { grid-column: 1; }
	.store-shell .store-buy-form-multi .store-add-cart-button { width: 100%; }
}


/* Holden product-page surface-guide placement: desktop under product image,
 * mobile after the product details. The dark element is a compact section
 * label only; disclosure content remains on the normal light surface. */
@media (min-width: 821px) {
	.store-shell .store-product-detail > .store-product-surface-panel {
		grid-column: 1;
		grid-row: 2;
		align-self: start;
		margin: -18px 0 0;
	}
	.store-shell .store-product-detail > .store-product-copy {
		grid-column: 2;
		grid-row: 1 / span 2;
	}
}
.store-shell .store-product-surface-panel .store-product-surface-guide {
	padding-top: 0;
	border-top: 0;
}
.store-shell .store-product-surface-guide > h2,
.store-shell .store-product-surface-guide .store-disclosure-group > h2 {
	margin: 0 0 8px !important;
	padding: 8px 11px;
	border-left: 3px solid var(--store-accent);
	border-radius: 4px;
	background: #26333d;
	color: #f7fafb;
	font-size: .86rem;
	font-weight: 750;
	line-height: 1.25;
	letter-spacing: .035em;
	text-transform: uppercase;
}
.store-shell .store-product-surface-guide .store-disclosure-item {
	border-radius: 5px;
}
@media (max-width: 820px) {
	.store-shell .store-product-detail > .store-product-surface-panel {
		grid-column: 1;
		margin: 20px 0 0;
	}
}
