/*
 * Interior Design Planner app shell.
 * Every rule is scoped to planner body classes or the plugin shell so the
 * WoodMart storefront remains untouched everywhere else.
 */

body.hdp-app-page {
	--hdp-navy: #071b3a;
	--hdp-deep-navy: #020d24;
	--hdp-gold: #c99a4a;
	--hdp-soft-gold: #f2eadc;
	--hdp-white: #fff;
	--hdp-off-white: #fbfaf7;
	--hdp-border: #e7e3da;
	--hdp-muted: #667085;
	--hdp-success: #2f7d46;
	--hdp-shadow: 0 24px 80px rgba(7, 27, 58, .10);
	--hdp-radius-lg: 28px;
	--hdp-radius-md: 18px;
	background: var(--hdp-off-white) !important;
	color: var(--hdp-navy);
	overflow-x: hidden;
}

/* WoodMart / WooCommerce chrome removal — planner pages only. */
body.hdp-hide-theme-chrome #wpadminbar,
body.hdp-hide-theme-chrome .whb-header,
body.hdp-hide-theme-chrome .wd-header,
body.hdp-hide-theme-chrome .site-header:not(.hdp-app-header),
body.hdp-hide-theme-chrome .website-wrapper > header,
body.hdp-hide-theme-chrome .topbar-wrapp,
body.hdp-hide-theme-chrome .wd-top-bar,
body.hdp-hide-theme-chrome .page-title,
body.hdp-hide-theme-chrome .breadcrumbs,
body.hdp-hide-theme-chrome .wd-breadcrumbs,
body.hdp-hide-theme-chrome .entry-header,
body.hdp-hide-theme-chrome .main-page-wrapper > .container > .row > aside,
body.hdp-hide-theme-chrome .footer-container,
body.hdp-hide-theme-chrome .wd-prefooter,
body.hdp-hide-theme-chrome .site-footer,
body.hdp-hide-theme-chrome .wd-sticky-social,
body.hdp-hide-theme-chrome .wd-sidebar,
body.hdp-hide-theme-chrome .woodmart-sidebar-content,
body.hdp-hide-theme-chrome .wd-search-form,
body.hdp-hide-theme-chrome .wd-search-full-screen,
body.hdp-hide-theme-chrome .wd-close-side,
body.hdp-hide-theme-chrome .cart-widget-side,
body.hdp-hide-theme-chrome .mobile-nav,
body.hdp-hide-theme-chrome .wd-side-hidden,
body.hdp-hide-theme-chrome .wd-toolbar,
body.hdp-hide-theme-chrome .wd-toolbar-label-show,
body.hdp-hide-theme-chrome .wd-popup,
body.hdp-hide-theme-chrome .mfp-wrap,
body.hdp-hide-theme-chrome .mfp-bg,
body.hdp-hide-theme-chrome .woocommerce-MyAccount-navigation,
body.hdp-hide-theme-chrome .custom-lang-vertical,
body.hdp-hide-theme-chrome .scrollToTop {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

html:has(body.hdp-app-page.admin-bar) {
	margin-top: 0 !important;
}

body.hdp-app-page.admin-bar {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body.hdp-app-page.admin-bar .website-wrapper,
body.hdp-app-page.admin-bar .main-page-wrapper {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body.hdp-app-page .woocommerce-MyAccount-content {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.hdp-app-page .website-wrapper,
body.hdp-app-page .main-page-wrapper,
body.hdp-app-page .site-content,
body.hdp-app-page .container,
body.hdp-app-page .content-layout-wrapper,
body.hdp-app-page .entry-content,
body.hdp-app-page .page,
body.hdp-app-page .wp-site-blocks,
body.hdp-app-page .row,
body.hdp-app-page .site-content > .col-12 {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.hdp-app-page .main-page-wrapper {
	min-height: 100vh;
	background: var(--hdp-off-white);
}

body.hdp-app-page.sticky-toolbar-on,
body.hdp-app-page.sticky-toolbar-on .website-wrapper,
body.hdp-app-page.sticky-toolbar-on .main-page-wrapper {
	padding-bottom: 0 !important;
}

.hdp-app-shell,
.hdp-app-shell * {
	box-sizing: border-box;
}

.hdp-app-shell {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	min-height: 100vh;
	overflow-x: clip;
	background:
		radial-gradient(circle at 75% 10%, rgba(201,154,74,.12), transparent 28%),
		linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
	color: var(--hdp-navy);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hdp-app-shell .hdp-app-header {
	height: 86px;
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 0 clamp(24px, 5vw, 72px);
	border-bottom: 1px solid rgba(7,27,58,.08);
	background: rgba(255,255,255,.88);
	-webkit-backdrop-filter: blur(22px);
	backdrop-filter: blur(22px);
	position: sticky;
	top: 0;
	z-index: 100;
}

body.admin-bar .hdp-app-shell .hdp-app-header {
	top: 0;
}

body.admin-bar .hdp-app-shell .hdp-progress {
	top: 86px;
}

.hdp-brand {
	display: inline-flex;
	gap: 8px;
	align-items: baseline;
	letter-spacing: .22em;
	text-decoration: none !important;
	color: var(--hdp-navy) !important;
	font-size: 17px;
	font-weight: 800;
	white-space: nowrap;
}

.hdp-brand-sub {
	color: var(--hdp-gold);
	font-size: .72em;
}

.hdp-app-nav {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2.2vw, 30px);
}

.hdp-app-nav a {
	color: var(--hdp-navy) !important;
	text-decoration: none !important;
	font-size: 14px;
	font-weight: 650;
	white-space: nowrap;
}

.hdp-app-nav a:hover {
	color: var(--hdp-gold) !important;
}

.hdp-app-nav .hdp-exit-link {
	padding: 10px 16px;
	border: 1px solid var(--hdp-border);
	border-radius: 999px;
	background: #fff;
}

.hdp-app-main {
	min-height: calc(100vh - 86px);
}

.hdp-app-shell .hdp {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: clamp(30px, 4vw, 58px) clamp(20px, 4vw, 60px) 72px;
	color: var(--hdp-navy);
	font-family: inherit;
}

.hdp-app-shell .hdp-dashboard {
	max-width: 1600px;
}

.hdp-app-shell .hdp-planner-entry {
	display: none;
}

.hdp-app-shell .hdp-progress {
	position: sticky;
	top: 86px;
	z-index: 45;
	margin: -10px 0 30px;
	padding: 16px 0 12px;
	background: rgba(251,250,247,.92);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.hdp-app-shell .hdp-progress__bar {
	height: 5px;
	background: #ede9df;
}

.hdp-app-shell .hdp-progress__label {
	margin-top: 10px;
	color: var(--hdp-muted);
	font-size: 12px;
	font-weight: 750;
	letter-spacing: .08em;
	text-transform: uppercase;
}

/* Premium landing screen. */
.hdp-app-shell .hdp-planner.is-landing {
	max-width: none;
	padding: 0 0 64px;
}

.hdp-planner.is-landing > .hdp-progress,
.hdp-planner.is-landing > .hdp-nav,
.hdp-planner.is-landing > .hdp-fineprint {
	display: none !important;
}

.hdp-screen {
	padding: clamp(48px, 7vw, 100px) clamp(24px, 5vw, 72px);
}

.hdp-hero-screen {
	display: grid !important;
	grid-template-columns: minmax(0,.9fr) minmax(420px,1.25fr);
	align-items: center;
	gap: clamp(36px,6vw,96px);
	min-height: calc(100vh - 86px);
}

.hdp-eyebrow {
	color: var(--hdp-gold);
	text-transform: uppercase;
	letter-spacing: .18em;
	font-weight: 800;
	font-size: 13px;
	margin-bottom: 18px;
}

.hdp-hero-copy h1 {
	max-width: 760px;
	margin: 0 0 26px;
	color: var(--hdp-deep-navy);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 400;
	letter-spacing: -.055em;
	line-height: .94;
	font-size: clamp(54px,7vw,108px);
}

.hdp-hero-copy > p {
	max-width: 610px;
	margin: 0 0 32px;
	color: var(--hdp-muted);
	font-size: clamp(17px,1.4vw,22px);
	line-height: 1.65;
}

.hdp-hero-visual {
	min-height: 620px;
	border-radius: 34px;
	overflow: hidden;
	box-shadow: var(--hdp-shadow);
	position: relative;
	background: #ebe7df;
}

.hdp-hero-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.3);
	border-radius: inherit;
	pointer-events: none;
}

.hdp-hero-visual img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 620px;
	object-fit: cover;
}

.hdp-persona-toggle {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 580px;
	gap: 10px;
	padding: 8px;
	margin-bottom: 22px;
	border: 1px solid var(--hdp-border);
	border-radius: 22px;
	background: rgba(255,255,255,.75);
	box-shadow: 0 16px 48px rgba(7,27,58,.06);
}

.hdp-persona-card {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 64px;
	padding: 16px 18px;
	border: 0;
	border-radius: 16px;
	background: transparent;
	color: var(--hdp-navy);
	font: inherit;
	font-weight: 750;
	cursor: pointer;
	transition: .22s ease;
}

.hdp-persona-card.is-selected,
.hdp-persona-card:hover {
	background: #fff;
	box-shadow: 0 10px 30px rgba(7,27,58,.09);
}

.hdp-persona-icon {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--hdp-soft-gold);
	color: #8a6425;
	font-size: 17px;
}

.hdp-hero-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 580px;
}

.hdp-app-shell .hdp-btn {
	min-height: 52px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 24px;
	text-decoration: none !important;
	font-weight: 780;
	letter-spacing: -.01em;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hdp-app-shell .hdp-btn:hover {
	transform: translateY(-2px);
}

.hdp-account-identity {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 28px;
	padding: 14px 18px;
	border: 1px solid var(--hdp-border);
	border-radius: 18px;
	background: rgba(255,255,255,.82);
	box-shadow: 0 12px 36px rgba(7,27,58,.05);
}

.hdp-account-identity__type {
	color: var(--hdp-navy);
	font-size: 15px;
	font-weight: 800;
}

.hdp-account-identity__email {
	color: var(--hdp-muted);
	font-size: 13px;
}

.hdp-account-identity__signin {
	color: var(--hdp-navy);
	font-size: 14px;
	font-weight: 750;
	text-decoration: none !important;
}

.hdp-account-path,
.hdp-account-create-note {
	max-width: 580px;
	margin: 0 0 22px;
	padding: 18px 20px;
	border: 1px solid var(--hdp-border);
	border-radius: 18px;
	background: rgba(255,255,255,.82);
	box-shadow: 0 14px 38px rgba(7,27,58,.06);
}

.hdp-account-path span,
.hdp-account-create-note span {
	display: block;
	color: var(--hdp-muted);
	font-size: 14px;
	line-height: 1.5;
}

.hdp-account-path > span {
	margin-bottom: 4px;
	color: var(--hdp-gold);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.hdp-account-path strong,
.hdp-account-create-note strong {
	display: block;
	color: var(--hdp-navy);
	font-size: 18px;
}

.hdp-account-path p {
	margin: 6px 0 0;
	color: var(--hdp-muted);
	line-height: 1.5;
}

.hdp-account-create-note {
	max-width: none;
	background: var(--hdp-soft-gold);
}

.hdp-account-create-note strong {
	margin-bottom: 3px;
}

.hdp-project-form-message {
	grid-column: 1 / -1;
	min-height: 22px;
	color: var(--hdp-success);
	font-weight: 700;
}

.hdp-project-form-message.has-error {
	color: #b42318;
}

.hdp-project-form-message a {
	color: inherit;
	text-decoration: underline;
}

.hdp-dashboard.is-pro-dashboard .hdp-saas-head {
	padding: clamp(24px,3vw,38px);
	border: 1px solid rgba(201,154,74,.28);
	border-radius: 24px;
	background:
		radial-gradient(circle at 88% 18%, rgba(201,154,74,.17), transparent 31%),
		linear-gradient(135deg,#071b3a 0%,#102c54 100%);
	box-shadow: 0 22px 60px rgba(7,27,58,.15);
}

.hdp-dashboard.is-pro-dashboard .hdp-saas-head .hdp-step__title,
.hdp-dashboard.is-pro-dashboard .hdp-saas-head .hdp-step__sub {
	color: #fff;
}

.hdp-dashboard.is-pro-dashboard .hdp-saas-head .hdp-workspace-summary__label {
	color: #e2bd77;
}

body.hdp-builder-open {
	overflow: hidden !important;
}

.hdp-sku-builder-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: grid;
	place-items: center;
	padding: clamp(14px,3vw,46px);
	background: rgba(2,13,36,.64);
	backdrop-filter: blur(12px);
}

.hdp-sku-builder-overlay .hdp-sku-builder {
	display: flex;
	flex-direction: column;
	width: min(1320px,100%);
	max-width: 1320px;
	max-height: calc(100vh - clamp(28px,6vw,92px));
	margin: 0;
	padding: clamp(20px,3vw,34px);
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.72);
	border-radius: 26px;
	background: #f8fafc;
	box-shadow: 0 36px 110px rgba(2,13,36,.34);
}

.hdp-sku-builder-overlay .hdp-sku-builder > header {
	flex: 0 0 auto;
}

.hdp-sku-builder-overlay .hdp-sku-builder h4 {
	font-size: clamp(24px,2.5vw,38px);
}

.hdp-sku-builder-overlay .hdp-sku-builder__table {
	flex: 1 1 auto;
	min-height: 220px;
	max-height: none;
	overflow: auto;
}

.hdp-sku-builder-overlay .hdp-sku-builder__actions {
	flex: 0 0 auto;
	margin-bottom: 0;
	padding-top: 4px;
}

.hdp-app-shell .hdp-btn--text {
	min-height: auto;
	padding: 8px 6px;
	border-radius: 8px;
	box-shadow: none;
}

.hdp-app-shell .hdp-btn--text:hover {
	transform: none;
}

.hdp-app-shell .hdp-btn-primary,
.hdp-app-shell .hdp-btn--primary {
	background: var(--hdp-navy);
	border-color: var(--hdp-navy);
	color: #fff !important;
	box-shadow: 0 16px 38px rgba(7,27,58,.18);
}

.hdp-app-shell .hdp-btn-secondary,
.hdp-app-shell .hdp-btn--ghost {
	background: #fff;
	color: var(--hdp-navy) !important;
	border-color: var(--hdp-border);
}

.hdp-small-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 9px 18px;
	max-width: 620px;
	margin-top: 24px;
	color: var(--hdp-muted);
	font-size: 12px;
	font-weight: 700;
}

.hdp-small-proof span::before {
	content: "✓";
	margin-right: 7px;
	color: var(--hdp-success);
}

.hdp-benefits-row {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 22px;
	padding: 0 clamp(24px,5vw,72px) 48px;
	margin-top: -70px;
	position: relative;
	z-index: 2;
}

.hdp-benefit-card {
	padding: 28px;
	border: 1px solid rgba(231,227,218,.9);
	border-radius: 24px;
	background: rgba(255,255,255,.94);
	box-shadow: 0 20px 60px rgba(7,27,58,.08);
}

.hdp-benefit-icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--hdp-soft-gold);
	color: #9a6e29;
	font-size: 24px;
}

.hdp-benefit-card h3 {
	margin: 0 0 8px;
	color: var(--hdp-navy);
	font-size: 20px;
}

.hdp-benefit-card p {
	margin: 0;
	color: var(--hdp-muted);
	line-height: 1.6;
}

.hdp-flow-preview {
	margin: 0 clamp(24px,5vw,72px) 30px;
	padding: 22px 16px;
	display: grid;
	grid-template-columns: repeat(6,1fr);
	align-items: center;
	min-height: 112px;
	border: 1px solid var(--hdp-border);
	border-radius: 24px;
	background: rgba(255,255,255,.92);
	box-shadow: 0 18px 54px rgba(7,27,58,.06);
	overflow: hidden;
}

.hdp-flow-step {
	position: relative;
	text-align: center;
	color: var(--hdp-muted);
	font-size: 12px;
	font-weight: 750;
}

.hdp-flow-step::before {
	content: "";
	display: block;
	width: 42px;
	height: 42px;
	margin: 0 auto 8px;
	border: 1px solid var(--hdp-border);
	border-radius: 50%;
	background: #fff;
}

.hdp-flow-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 21px;
	left: calc(50% + 25px);
	width: calc(100% - 50px);
	height: 1px;
	background: var(--hdp-border);
}

.hdp-flow-step.is-active {
	color: var(--hdp-navy);
}

.hdp-flow-step.is-active::before {
	border-color: var(--hdp-navy);
	background: var(--hdp-navy);
	box-shadow: inset 0 0 0 11px var(--hdp-navy), inset 0 0 0 13px #fff;
}

/* Existing flow, now presented as app screens. */
.hdp-app-shell .hdp-step.is-active:not(.hdp-hero-screen) {
	max-width: 1260px;
	margin: 0 auto;
	padding: clamp(28px,4vw,56px);
	border: 1px solid rgba(231,227,218,.85);
	border-radius: var(--hdp-radius-lg);
	background: rgba(255,255,255,.82);
	box-shadow: 0 24px 72px rgba(7,27,58,.07);
}

.hdp-app-shell .hdp-step__title {
	margin: 0 0 10px;
	color: var(--hdp-deep-navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(36px,4vw,58px);
	font-weight: 400;
	letter-spacing: -.035em;
	line-height: 1.03;
}

.hdp-app-shell .hdp-step__sub {
	max-width: 760px;
	margin-bottom: 28px;
	color: var(--hdp-muted);
	font-size: 17px;
	line-height: 1.6;
}

.hdp-app-shell .hdp-cards {
	gap: 20px;
}

.hdp-app-shell .hdp-card {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--hdp-border);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 12px 35px rgba(7,27,58,.05);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.hdp-app-shell .hdp-card:hover {
	transform: translateY(-5px);
	border-color: rgba(201,154,74,.75);
	box-shadow: 0 22px 52px rgba(7,27,58,.10);
}

.hdp-app-shell .hdp-card.is-selected {
	border: 2px solid var(--hdp-navy);
	box-shadow: 0 0 0 5px rgba(201,154,74,.18), 0 20px 55px rgba(7,27,58,.10);
}

.hdp-app-shell .hdp-card.is-selected::after {
	content: "✓";
	position: absolute;
	top: 24px;
	right: 24px;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--hdp-navy);
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	box-shadow: 0 7px 20px rgba(7,27,58,.22);
}

.hdp-app-shell .hdp-card__media--hero {
	height: 230px;
	border: 0;
	border-radius: 16px;
}

.hdp-app-shell .hdp-card__title {
	color: var(--hdp-navy);
	font-size: 19px;
}

.hdp-app-shell .hdp-card__desc {
	color: var(--hdp-muted);
	line-height: 1.55;
}

.hdp-bundle-callout {
	display: inline-flex;
	align-items: center;
	margin: -8px 0 24px;
	padding: 10px 14px;
	border: 1px solid #ead8b3;
	border-radius: 999px;
	background: #fff8e8;
	color: #806023;
	font-size: 12px;
	font-weight: 750;
}

.hdp-bundle-callout::before {
	content: "✦";
	margin-right: 8px;
	color: var(--hdp-gold);
}

.hdp-app-shell .hdp-input {
	min-height: 56px;
	padding: 14px 16px;
	border: 1px solid var(--hdp-border);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(7,27,58,.04);
}

.hdp-app-shell .hdp-input:focus {
	outline: none;
	border-color: var(--hdp-gold);
	box-shadow: 0 0 0 4px rgba(201,154,74,.14);
}

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

.hdp-project-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 18px;
	border: 1px solid var(--hdp-border);
	border-radius: 18px;
	background: rgba(255,255,255,.88);
	color: var(--hdp-muted);
	font-size: 12px;
	font-weight: 800;
}

.hdp-project-field.is-wide {
	grid-column: 1 / -1;
}

.hdp-project-field .hdp-input {
	margin: 0;
}

.hdp-app-shell .hdp-nav {
	max-width: 1260px;
	margin: 22px auto 0;
	padding: 14px 0;
	justify-content: space-between;
	position: sticky;
	bottom: 0;
	z-index: 40;
	background: linear-gradient(180deg,rgba(251,250,247,0),rgba(251,250,247,.96) 30%);
}

.hdp-app-shell .hdp-results {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(min(100%,320px),1fr));
	gap: 22px;
	align-items: stretch;
}

.hdp-app-shell .hdp-result,
.hdp-app-shell .hdp-projectcard,
.hdp-app-shell .hdp-dashboard-room,
.hdp-app-shell .hdp-cabinet-cart {
	border-color: var(--hdp-border);
	border-radius: 22px;
	box-shadow: 0 16px 46px rgba(7,27,58,.06);
}

.hdp-app-shell .hdp-result {
	min-width: 0;
	height: 100%;
}

.hdp-app-shell .hdp-result__media {
	height: 230px;
}

.hdp-app-shell .hdp-result__body {
	padding: 20px;
	gap: 11px;
	min-width: 0;
}

.hdp-app-shell .hdp-result__name {
	color: var(--hdp-navy);
	font-size: clamp(18px,1.9vw,22px);
	line-height: 1.14;
}

.hdp-app-shell .hdp-result__brand {
	font-size: 11px;
	letter-spacing: .11em;
}

.hdp-app-shell .hdp-result__price {
	font-size: 18px;
	line-height: 1.2;
}

.hdp-app-shell .hdp-result__actions {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	gap: 10px;
	align-items: stretch;
}

.hdp-app-shell .hdp-result__actions--collection {
	grid-template-columns: 1fr;
}

.hdp-app-shell .hdp-result__actions .hdp-btn,
.hdp-app-shell .hdp-result__actions .hdp-detail {
	width: 100%;
	margin: 0;
}

.hdp-app-shell .hdp-detail {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 18px;
	border: 1px solid var(--hdp-border);
	border-radius: 14px;
	color: var(--hdp-muted);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none !important;
	transition: transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.hdp-app-shell .hdp-detail:hover {
	transform: translateY(-2px);
	border-color: rgba(7,27,58,.18);
	color: var(--hdp-navy);
	box-shadow: 0 10px 28px rgba(7,27,58,.08);
}

.hdp-screen-title > span,
.hdp-selection-sidebar > span {
	color: var(--hdp-gold);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.hdp-screen-title h1 {
	margin: 8px 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(38px,5vw,68px);
	font-weight: 400;
	letter-spacing: -.04em;
}

.hdp-screen-title p {
	color: var(--hdp-muted);
	font-size: 17px;
}

.hdp-selection-sidebar {
	padding: 24px;
	border: 1px solid var(--hdp-border);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 16px 44px rgba(7,27,58,.06);
}

.hdp-bottom-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 18px 0;
}

@media (max-width: 1024px) {
	.hdp-hero-screen {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.hdp-hero-visual,
	.hdp-hero-visual img {
		min-height: 440px;
	}

	.hdp-benefits-row {
		margin-top: 0;
		grid-template-columns: 1fr;
	}

	.hdp-flow-preview {
		grid-template-columns: repeat(3,1fr);
		gap: 22px 8px;
	}

	.hdp-flow-step::after {
		display: none;
	}
}

@media (max-width: 640px) {
	.hdp-app-shell .hdp-app-header {
		height: 72px;
		padding: 0 18px;
	}

	.hdp-brand {
		font-size: 14px;
	}

	.hdp-app-nav {
		gap: 10px;
	}

	.hdp-app-nav a:not(.hdp-cart-link):not(.hdp-exit-link) {
		display: none;
	}

	.hdp-app-nav .hdp-exit-link {
		padding: 8px 11px;
		font-size: 12px;
	}

	.hdp-app-main {
		min-height: calc(100vh - 72px);
	}

	.hdp-app-shell .hdp {
		padding: 20px 14px 52px;
	}

	.hdp-app-shell .hdp-planner.is-landing {
		padding: 0 0 42px;
	}

	.hdp-screen {
		padding: 44px 18px;
	}

	.hdp-persona-toggle {
		grid-template-columns: 1fr;
	}

	.hdp-account-identity {
		align-items: stretch;
		flex-direction: column;
	}

	.hdp-sku-builder-overlay {
		padding: 8px;
		place-items: stretch;
	}

	.hdp-sku-builder-overlay .hdp-sku-builder {
		width: 100%;
		max-height: calc(100vh - 16px);
		padding: 16px;
		border-radius: 18px;
	}

	.hdp-sku-builder-overlay .hdp-sku-builder > header {
		flex-direction: column;
		align-items: flex-start;
	}

	.hdp-sku-builder-overlay .hdp-sku-builder h4 {
		font-size: clamp(22px,7vw,30px);
		line-height: 1.08;
	}

	.hdp-sku-builder-overlay .hdp-sku-builder__photo {
		width: 54px;
		min-width: 54px;
	}

	.hdp-sku-builder-overlay .hdp-sku-builder__photo img {
		width: 46px;
		height: 46px;
	}

	.hdp-project-form-grid {
		grid-template-columns: 1fr;
	}

	.hdp-project-field.is-wide {
		grid-column: auto;
	}

	.hdp-hero-copy h1 {
		font-size: 48px;
	}

	.hdp-hero-copy > p {
		font-size: 17px;
	}

	.hdp-hero-visual,
	.hdp-hero-visual img {
		min-height: 330px;
	}

	.hdp-benefits-row {
		padding: 0 18px 36px;
	}

	.hdp-flow-preview {
		margin: 0 18px 20px;
		grid-template-columns: repeat(2,1fr);
	}

	.hdp-app-shell .hdp-step.is-active:not(.hdp-hero-screen) {
		padding: 25px 18px;
		border-radius: 22px;
	}

	.hdp-app-shell .hdp-results {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.hdp-app-shell .hdp-result__media {
		height: 184px;
	}

	.hdp-app-shell .hdp-result__body {
		padding: 16px;
	}

	.hdp-app-shell .hdp-result__name {
		font-size: 18px;
	}

	.hdp-app-shell .hdp-result__actions {
		grid-template-columns: 1fr;
	}

	.hdp-app-shell .hdp-step__title {
		font-size: 38px;
	}

	.hdp-app-shell .hdp-card__media--hero {
		height: 210px;
	}

	.hdp-app-shell .hdp-progress {
		top: 72px;
	}
}

@media (max-width: 782px) {
	body.admin-bar .hdp-app-shell .hdp-app-header {
		top: 0;
	}

	body.admin-bar .hdp-app-shell .hdp-progress {
		top: 72px;
	}
}
