/**
 * DPM homepage presentation.
 *
 * Isolated from the legacy stylesheet so the converted storefront can evolve
 * without changing cart, checkout, account, or product-page behaviour.
 */

.home {
	--dpm-home-accent: #ff7a1a;
	--dpm-home-accent-dark: #e85f00;
	--dpm-home-ink: #17211f;
	--dpm-home-muted: #66716e;
	--dpm-home-border: #eadfd7;
	--dpm-home-surface: #fbfaf7;
	--dpm-home-section-space: 1.25rem;
	background: var(--dpm-home-surface);
}

.home .dpm-main {
	background: var(--dpm-home-surface);
}

.home .dpm-site-header,
.home .dpm-site-header.is-sticky {
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	background: var(--dpm-brand-navy, #101d34);
	box-shadow: 0 4px 18px rgba(30, 42, 38, 0.07);
}

.home.dpm-has-sticky-header .dpm-site-header.is-sticky {
	position: sticky;
	top: 0;
	z-index: 1000;
}

.home.admin-bar.dpm-has-sticky-header .dpm-site-header.is-sticky { top: 32px; }

.home .dpm-header-inner {
	min-height: 108px;
	gap: 0 clamp(0.75rem, 2vw, 1.5rem);
}

.home.dpm-has-sticky-header .dpm-main {
	padding-top: 0;
}

.home .dpm-site-header .dpm-brand,
.home .dpm-site-header .dpm-brand:hover {
	color: #fff;
}

.home .dpm-site-header .dpm-brand-accent {
	color: var(--dpm-home-accent);
}

.home .dpm-site-header .dpm-primary-nav a:hover,
.home .dpm-site-header .dpm-primary-nav .current-menu-item > a {
	color: var(--dpm-menu-active, var(--dpm-home-accent));
}

.home .dpm-site-header .dpm-primary-nav a {
	color: var(--dpm-menu-text, #fff);
	font-size: 0.84rem;
}

@media (max-width: 1024px) {
	.home { --dpm-home-section-space: 1.125rem; }
	.home .dpm-header-inner { min-height: 68px; }
}

.home .dpm-site-header .dpm-icon-button {
	color: #fff;
}

.home .dpm-site-header .dpm-icon-button:hover {
	background: #fff3e8;
	color: var(--dpm-home-accent-dark);
}

.home .dpm-container {
	max-width: 1280px;
}

.home .dpm-section {
	padding-block: var(--dpm-home-section-space);
}

.home .dpm-section-heading {
	align-items: end;
	margin-bottom: 0.75rem;
}

.home .dpm-section-heading h2 {
	color: var(--dpm-home-ink);
	font-size: clamp(1.2rem, 2vw, 1.65rem);
	line-height: 1.2;
}

.home .dpm-section-heading h2::after {
	display: block;
	width: 2.5rem;
	height: 3px;
	margin-top: 0.45rem;
	border-radius: 999px;
	background: var(--dpm-home-accent);
	content: "";
}

.home .dpm-section-heading p {
	color: var(--dpm-home-muted);
}

.home .dpm-banner {
	padding-block: var(--dpm-home-section-space);
	background: var(--dpm-home-surface);
}

.home .dpm-banner__viewport,
.home .dpm-banner__slides,
.home .dpm-banner__slide {
	position: relative;
}

.home .dpm-banner__viewport {
	max-width: 1200px;
}

.home .dpm-banner__slides,
.home .dpm-banner__slide,
.home .dpm-banner__slide a,
.home .dpm-banner__slide picture {
	height: var(--dpm-banner-height, 500px);
}

.home .dpm-banner__slides.has-side-banner {
	display: grid;
	gap: clamp(0.75rem, 1.5vw, 1.25rem);
	grid-template-columns: minmax(0, 1fr) clamp(240px, calc(var(--dpm-banner-height, 500px) * 1.2195), 500px);
}

.home .dpm-banner__slide {
	overflow: hidden;
	border-radius: 12px;
	background: #f3f4f6;
}

.home .dpm-banner__side {
	order: 1;
	overflow: hidden;
	height: var(--dpm-banner-height, 500px);
	border-radius: 12px;
	background: #f3f4f6;
}

.home .dpm-banner__side a { display: block; height: 100%; }

@media (min-width: 641px) {
	.home .dpm-banner__slides.has-side-banner .dpm-banner__slide .dpm-banner__image {
		object-fit: cover;
	}
}

.home .dpm-banner__slide[hidden] {
	display: none;
}

.home .dpm-banner__slide a,
.home .dpm-banner__slide picture {
	display: block;
}

.home .dpm-banner__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.home .dpm-banner__controls {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 3;
	display: block;
	height: var(--dpm-banner-height, 500px);
	pointer-events: none;
}

.home .dpm-banner__viewport.has-side-banner .dpm-banner__controls {
	right: calc(clamp(240px, calc(var(--dpm-banner-height, 500px) * 1.2195), 500px) + clamp(0.75rem, 1.5vw, 1.25rem));
}

.home .dpm-banner__controls button {
	display: inline-grid;
	width: 2rem;
	height: 2rem;
	padding: 0;
	border: 1px solid var(--dpm-home-border);
	border-radius: 999px;
	background: #fff;
	color: var(--dpm-home-text);
	place-items: center;
	cursor: pointer;
	pointer-events: auto;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.14);
}

.home .dpm-banner__controls > [data-dpm-banner-prev],
.home .dpm-banner__controls > [data-dpm-banner-next] {
	position: absolute;
	top: 50%;
	width: 2.5rem;
	height: 2.5rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--dpm-home-accent);
	font-size: 1.75rem;
	font-weight: 900;
	line-height: 1;
	text-shadow: 0 1px 1px rgba(15, 23, 42, 0.18);
	transform: translateY(-50%);
}

.home .dpm-banner__controls > [data-dpm-banner-prev] { left: 0.75rem; }
.home .dpm-banner__controls > [data-dpm-banner-next] { right: 0.75rem; }
.home .dpm-banner__controls > [data-dpm-banner-pause] {
	display: none;
}

.home .dpm-banner__dots {
	position: absolute;
	bottom: 0.95rem;
	left: 1rem;
	display: flex;
	gap: 0.4rem;
	pointer-events: auto;
}

.home .dpm-banner__dots button {
	width: 0.65rem;
	height: 0.65rem;
	border: 0;
	background: #cbd5e1;
}

.home .dpm-banner__dots button[aria-current="true"] {
	background: var(--dpm-home-accent);
}

.home .dpm-category-section {
	padding-block: var(--dpm-home-section-space);
	background: var(--dpm-home-surface);
}

.home .dpm-category-section .dpm-section-heading {
	width: 100%;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.home .dpm-category-section .dpm-section-heading h2 {
	margin-inline: auto;
}

.home .dpm-category-section .dpm-section-heading h2::after {
	margin-inline: auto;
}

.home .dpm-category-carousel {
	position: relative;
	width: 100%;
	max-width: var(--dpm-category-viewport, 100%);
	margin-inline: auto;
}

.home .dpm-category-grid {
	display: flex;
	gap: clamp(0.65rem, 1.4vw, 1rem);
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0.2rem 0 0.65rem;
	overscroll-behavior-inline: contain;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	touch-action: pan-y;
	cursor: grab;
	user-select: none;
}

.home .dpm-category-grid.is-dragging {
	scroll-snap-type: none;
	cursor: grabbing;
}

.home .dpm-category-grid img {
	-webkit-user-drag: none;
}

.home .dpm-category-grid::-webkit-scrollbar {
	display: none;
}

.home .dpm-category-carousel__control {
	position: absolute;
	z-index: 3;
	top: calc(50% - 1.25rem);
	display: grid;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: var(--dpm-home-accent);
	box-shadow: 0 7px 18px rgba(51, 32, 18, 0.18);
	color: #fff;
	cursor: pointer;
	transform: translateY(-50%);
}

.home .dpm-category-carousel__control--previous { left: -0.75rem; }
.home .dpm-category-carousel__control--next { right: -0.75rem; }

.home .dpm-category-carousel__control:hover,
.home .dpm-category-carousel__control:focus-visible {
	background: var(--dpm-home-accent-dark);
}

.home .dpm-category-card {
	flex: 0 0 var(--dpm-category-icon-size, 220px);
	min-width: 0;
	min-height: 0;
	justify-content: flex-start;
	padding: 0;
	border: 0;
	border-radius: 14px;
	background: transparent;
	box-shadow: none;
	scroll-snap-align: start;
}

.home .dpm-category-card:hover {
	background: transparent;
	box-shadow: none;
	color: var(--dpm-home-accent-dark);
	transform: translateY(-3px);
}

.home .dpm-category-card .dpm-category-icon {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	margin-bottom: 0.65rem;
	border: 1px solid rgba(234, 223, 215, 0.72);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 7px 22px rgba(51, 32, 18, 0.055);
}

.home .dpm-category-icon img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	padding: clamp(0.65rem, 1.2vw, 1rem);
	box-sizing: border-box;
	object-fit: contain;
	object-position: center;
	transition: transform var(--dpm-transition);
}

.home .dpm-category-card:hover .dpm-category-icon {
	border-color: rgba(255, 122, 26, 0.5);
	box-shadow: 0 12px 28px rgba(51, 32, 18, 0.1);
}

.home .dpm-category-card h3 {
	max-width: 100%;
	color: var(--dpm-home-ink);
	font-size: clamp(0.82rem, 1.2vw, 0.96rem);
	font-weight: 600;
	line-height: 1.3;
}

.home .dpm-product-section ul.products {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.9rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.home .dpm-product-section {
	border-block: 0;
	background: var(--dpm-home-surface);
}

.home #dpm-featured-products.dpm-product-section {
	border-top: 0;
	background: var(--dpm-home-surface);
}

.home .dpm-product-section .dpm-section-heading {
	display: flex;
	padding-inline: 0;
	align-items: center;
	justify-content: space-between;
	text-align: left;
}

.home .dpm-product-section .dpm-section-heading > div {
	min-width: 0;
	flex: 1;
}

.home .dpm-product-section .dpm-section-heading p {
	max-width: 44rem;
	margin: 0.45rem 0 0;
	text-align: left;
}

.home #dpm-featured-products .dpm-section-heading p {
	margin-inline: auto;
	text-align: center;
}

.home .dpm-product-section .dpm-section-heading h2 {
	display: inline-flex;
	align-items: center;
}

.home .dpm-product-section .dpm-section-heading h2::after {
	display: none;
}

.home .dpm-product-section .dpm-section-heading > a {
	display: inline-flex;
	flex: 0 0 auto;
	min-height: 36px;
	padding: 0.45rem 0.9rem;
	align-items: center;
	border-radius: 999px;
	background: var(--dpm-home-accent);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
}

.home .woocommerce ul.products li.product {
	position: relative;
	min-width: 0;
	padding: 0.5rem;
	border: 1px solid #ead8ca;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 6px 20px rgba(93, 58, 32, 0.045);
}

.home .dpm-loop-badges {
	position: absolute;
	top: 0;
	left: -1rem;
	right: -1rem;
	z-index: 2;
	display: flex;
	flex-wrap: nowrap;
	gap: 0.3rem;
	justify-content: space-between;
	pointer-events: none;
}

.home .dpm-loop-badge {
	display: inline-flex;
	min-height: 22px;
	padding: 0.18rem 0.45rem;
	align-items: center;
	border-radius: 7px 0 6px 0;
	background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
	box-shadow: 0 4px 10px rgba(30, 41, 59, 0.14);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 800;
	line-height: 1;
}

.home .dpm-loop-badge:last-child:not(:first-child) {
	border-radius: 0 7px 0 6px;
}

.home .woocommerce ul.products li.product .woocommerce-loop-product__link {
	padding-top: 1.6rem;
}

.home .dpm-loop-badge--sale {
	background: linear-gradient(135deg, #059669 0%, #22c98b 100%);
	box-shadow: 0 4px 10px rgba(5, 150, 105, 0.2);
}

.home .dpm-loop-badge--new {
	background: linear-gradient(135deg, #4338ca 0%, #7c3aed 100%);
	box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.home .dpm-loop-badge--backorder {
	background: linear-gradient(135deg, #b45309 0%, #f59e0b 100%);
}

.home .dpm-loop-badge--out-of-stock {
	background: linear-gradient(135deg, #b42318 0%, #e5484d 100%);
}

.home .woocommerce ul.products li.product:hover {
	border-color: var(--dpm-home-accent);
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(51, 32, 18, 0.1);
}

.home .dpm-product-section ul.products li.product {
	height: auto;
	align-self: stretch;
}

.home .dpm-product-section--carousel ul.products {
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	gap: 0.9rem;
	overscroll-behavior-inline: contain;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	touch-action: pan-y;
	cursor: grab;
	user-select: none;
}

.home .dpm-product-section--carousel ul.products.is-dragging {
	scroll-snap-type: none;
	cursor: grabbing;
}

.home .dpm-product-section--carousel ul.products img {
	-webkit-user-drag: none;
}

.home .dpm-product-section--carousel ul.products::-webkit-scrollbar {
	display: none;
}

.home .dpm-product-section--carousel ul.products li.product {
	flex: 0 0 var(--dpm-product-card-width, 220px);
	scroll-snap-align: start;
}

.home .dpm-product-carousel__dots {
	display: flex;
	min-height: 2rem;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1rem;
}

.home .dpm-product-carousel__dots button {
	width: 0.6rem;
	height: 0.6rem;
	padding: 0;
	border: 1px solid var(--dpm-home-accent);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.home .dpm-product-carousel__dots button[aria-current="true"] {
	width: 1.15rem;
	border-radius: 999px;
	background: var(--dpm-home-accent);
}

.home .woocommerce ul.products li.product a img {
	width: 100%;
	height: auto;
	margin-bottom: 0.75rem;
	aspect-ratio: 1 / 1;
	border-radius: 4px;
	background: #fff;
	object-fit: contain;
}

.home .woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 2.8em;
	color: var(--dpm-home-ink);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.4;
	overflow-wrap: anywhere;
	text-align: center;
	white-space: normal;
}

.home .woocommerce ul.products li.product .dpm-product-stats {
	justify-content: center;
	flex-wrap: wrap;
	row-gap: 0.25rem;
	margin-top: 0.45rem;
}

.home .woocommerce ul.products li.product .dpm-product-stats--no-sales {
	row-gap: 0;
}

.home .woocommerce ul.products li.product .dpm-product-stats .price {
	width: 100%;
	margin: 0 !important;
	text-align: center;
}

.home .woocommerce ul.products li.product .price {
	color: #d12c74;
	font-size: 1.05rem;
	font-weight: 800;
	text-align: center;
}

.home .woocommerce ul.products li.product .price del {
	display: inline;
	color: #cbaac0;
	font-size: 0.78em;
	font-weight: 500;
}

.home .woocommerce ul.products li.product .button {
	position: static;
	display: inline-flex;
	width: 100%;
	min-height: 40px;
	padding: 0.55rem 0.65rem;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	margin: 0.4rem 0 0;
	gap: 0.4rem;
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1.2;
}

.home .woocommerce ul.products li.product .button {
	order: 21;
	border-color: #0b274d;
	background: linear-gradient(135deg, #123b68 0%, #0b274d 100%);
	box-shadow: 0 6px 14px rgba(11, 39, 77, 0.18);
	color: #fff;
}

.home .woocommerce ul.products li.product .button:hover {
	border-color: #071d3a;
	background: #071d3a;
}

.home .woocommerce ul.products li.product .dpm-loop-buy-now {
	order: 22;
	width: 100%;
	margin: 0;
}

.home .woocommerce ul.products li.product .dpm-loop-buy-now .button {
	position: static;
	width: 100%;
	min-height: 40px;
	margin-top: 0.4rem;
	border-color: #f26700;
	background: linear-gradient(135deg, #ff9300 0%, #f26700 100%);
	box-shadow: 0 6px 14px rgba(242, 103, 0, 0.2);
	color: #fff;
	font-size: 0.8rem;
}

.home .woocommerce ul.products li.product .dpm-loop-buy-now .button:hover,
.home .woocommerce ul.products li.product .dpm-loop-buy-now .button:focus-visible {
	border-color: #d95700;
	background: #e85f00;
	box-shadow: 0 8px 18px rgba(232, 95, 0, 0.25);
}

.home .woocommerce ul.products li.product > .button {
	border-color: #0b274d;
	background: linear-gradient(135deg, #123b68 0%, #0b274d 100%);
	box-shadow: 0 6px 14px rgba(11, 39, 77, 0.18);
}

.home .dpm-testimonials {
	background: var(--dpm-home-surface);
}

.home .dpm-testimonial-card {
	border-color: var(--dpm-home-border);
	box-shadow: none;
}

@media (max-width: 1100px) {
	.home .dpm-product-section ul.products {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 860px) {
	.home .dpm-product-section ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.home { --dpm-home-section-space: 0.875rem; }

	.home .dpm-banner__slides,
	.home .dpm-banner__slides.has-side-banner {
		display: block;
	}

	.home .dpm-banner__side {
		display: none;
	}

	.home .dpm-product-section .dpm-section-heading {
		align-items: center;
		flex-direction: row;
		gap: 0.75rem;
	}

	.home .dpm-product-section .dpm-section-heading > a {
		padding-inline: 0.7rem;
		white-space: nowrap;
	}

	.home .dpm-category-carousel {
		max-width: min(calc(100% - 4.5rem), var(--dpm-category-viewport-mobile, 100%));
	}

	.home .dpm-banner__viewport {
		width: 100%;
	}

	.home .dpm-banner__viewport.has-side-banner .dpm-banner__controls {
		right: 0;
	}

	.home .dpm-banner__controls {
		height: var(--dpm-banner-mobile-height, 156px);
	}

	.home .dpm-banner__slides,
	.home .dpm-banner__slide,
	.home .dpm-banner__slide a,
	.home .dpm-banner__slide picture {
		height: var(--dpm-banner-mobile-height, 156px);
	}

	.home .dpm-banner__image {
		width: 100%;
		height: 100%;
		aspect-ratio: auto;
		object-fit: contain;
	}

	.home .dpm-section {
		padding-block: var(--dpm-home-section-space);
	}

	.home .dpm-category-grid {
		gap: 0.65rem;
	}

	.home .dpm-category-carousel__control {
		top: calc(50% - 1.25rem);
		bottom: auto;
		width: 1.875rem;
		height: 1.875rem;
		transform: translateY(-50%);
	}

	.home .dpm-category-carousel__control--previous {
		left: min(-2.125rem, max(-4rem, calc((100vw - 100%) / -2 - 0.25rem)));
	}

	.home .dpm-category-carousel__control--next {
		right: min(-2.125rem, max(-4rem, calc((100vw - 100%) / -2 - 0.25rem)));
	}

	.home .dpm-category-card {
		flex-basis: var(--dpm-category-icon-size-mobile, 104px);
		min-width: 0;
	}

	.home .dpm-category-card .dpm-category-icon {
		width: 100%;
		height: auto;
		border-radius: 15px;
	}

	.home .dpm-product-section ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.65rem;
	}

	.home .woocommerce ul.products li.product {
		padding: 0.5rem;
	}

	.home .dpm-loop-badges {
		top: 0;
		left: -1rem;
		right: -1rem;
	}

	.home .woocommerce ul.products li.product .woocommerce-loop-product__title {
		font-size: 0.82rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home .dpm-category-card,
	.home .woocommerce ul.products li.product {
		transition: none;
	}
}
/* DevPro marketplace introduction; isolated from the existing banner hero. */
.home .dpm-sales-showcase {
	padding: clamp(1.25rem, 3vw, 2.5rem) 0;
	background: linear-gradient(135deg, #fbfaf7 0%, #fff7ed 52%, #f5f3ff 100%);
}

.home .dpm-sales-showcase__grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(18rem, 1fr);
	gap: 1rem;
}

.home .dpm-sales-showcase__feature,
.home .dpm-sales-showcase__list {
	border: 1px solid rgba(255, 147, 0, 0.18);
	border-radius: 24px;
	background: linear-gradient(145deg, #17263f 0%, #101d34 100%);
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
	color: #fff;
}

.home .dpm-sales-showcase__feature {
	position: relative;
	min-height: 21.5rem;
	background: radial-gradient(circle at 86% 42%, rgba(37, 99, 235, 0.2), transparent 28%), radial-gradient(circle at 68% 110%, rgba(124, 58, 237, 0.15), transparent 30%), linear-gradient(145deg, #17263f 0%, #101d34 100%);
	cursor: grab;
	overflow: hidden;
	touch-action: pan-y;
}

.home .dpm-sales-showcase__feature:active { cursor: grabbing; }

.home .dpm-sales-showcase__feature::after {
	position: absolute;
	top: 0;
	left: 2.5rem;
	width: 7rem;
	height: 3px;
	border-radius: 0 0 999px 999px;
	background: linear-gradient(90deg, #ff9300, #10b981, #7c3aed);
	content: "";
}

.home .dpm-sales-showcase__slide {
	display: grid;
	min-height: 21.5rem;
	grid-template-columns: minmax(0, 3fr) minmax(15rem, 2fr);
	column-gap: clamp(1rem, 2.2vw, 1.75rem);
	align-items: center;
	padding: clamp(1.5rem, 3vw, 2.4rem);
	padding-bottom: 4rem;
}

.home .dpm-sales-showcase__content {
	min-width: 0;
}

.home .dpm-sales-showcase__slide[hidden] {
	display: none;
}

.home .dpm-sales-showcase__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0 0 0.65rem;
	padding: 0.42rem 0.72rem;
	border: 1px solid rgba(255, 147, 0, 0.42);
	border-radius: 999px;
	background: rgba(255, 147, 0, 0.08);
	color: #ffbd66;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.home .dpm-sales-showcase__feature h1,
.home .dpm-sales-showcase__feature h2 {
	max-width: 34rem;
	margin: 0 0 0.85rem;
	color: #fff;
	font-size: clamp(1.8rem, 2.8vw, 2.5rem);
	line-height: 1.05;
}

.home .dpm-sales-showcase__content > p:not(.dpm-sales-showcase__eyebrow) {
	max-width: 32rem;
	margin: 0;
	color: #cbd5e1;
	line-height: 1.55;
}

.home .dpm-sales-showcase__proof {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.7rem;
}

.home .dpm-sales-showcase__proof span {
	padding: 0.38rem 0.65rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	color: #f8fafc;
	font-size: 0.76rem;
	font-weight: 750;
}

.home .dpm-sales-showcase__proof span:nth-child(1) { border-color: rgba(124, 58, 237, 0.55); background: rgba(124, 58, 237, 0.18); }
.home .dpm-sales-showcase__proof span:nth-child(2) { border-color: rgba(37, 99, 235, 0.5); background: rgba(37, 99, 235, 0.16); }
.home .dpm-sales-showcase__proof span:nth-child(3) { border-color: rgba(16, 185, 129, 0.55); background: rgba(16, 185, 129, 0.16); color: #d1fae5; }

.home .dpm-sales-showcase__proof strong { color: #fbbf24; }

.home .dpm-sales-showcase__benefits {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 1rem;
	margin: 0.9rem 0;
	padding: 0;
	color: #e2e8f0;
	font-size: 0.82rem;
	font-weight: 700;
	list-style: none;
}

.home .dpm-sales-showcase__benefits li::before {
	margin-right: 0.4rem;
	color: #10b981;
	content: "✓";
}

.home .dpm-sales-showcase__benefits--dense {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.3rem 0.55rem;
	margin: 0.7rem 0;
	padding: 0.65rem 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.035);
	font-size: 0.66rem;
	line-height: 1.3;
}

.home .dpm-sales-showcase__benefits--dense li {
	display: flex;
	min-width: 0;
	align-items: flex-start;
	font-weight: 700;
}

.home .dpm-sales-showcase__benefits--dense li::before {
	flex: 0 0 auto;
	margin-right: 0.32rem;
}

.home .dpm-sales-showcase__offer {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 0.8rem;
}

.home .dpm-sales-showcase__cta {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.75rem 1.15rem;
	border-radius: 12px;
	background: linear-gradient(135deg, #ff9d14 0%, #ff7a00 100%);
	box-shadow: 0 10px 24px rgba(255, 147, 0, 0.28);
	color: #fff;
	font-weight: 850;
}

.home .dpm-sales-showcase__cta:hover { background: linear-gradient(135deg, #f08a00 0%, #e86f00 100%); color: #fff; transform: translateY(-1px); }
.home .dpm-sales-showcase__cta:focus-visible { outline: 3px solid rgba(255, 147, 0, 0.4); outline-offset: 3px; }
.home .dpm-sales-showcase__price { display: flex; color: #fff; flex-direction: column; font-size: 1.55rem; font-weight: 850; line-height: 1.15; }
.home .dpm-sales-showcase__price del { color: #94a3b8; font-size: 0.8rem; }
.home .dpm-sales-showcase__price ins { color: #fff; text-decoration: none; }
.home .dpm-sales-showcase__price small { margin-top: 0.3rem; color: #cbd5e1; font-size: 0.7rem; font-weight: 650; }
.home .dpm-sales-showcase__content > .dpm-sales-showcase__assurance { margin-top: 0.75rem; color: #94a3b8; font-size: 0.72rem; }

.home .dpm-sales-showcase__artwork {
	display: flex;
	width: min(100%, var(--dpm-showcase-image-width, 300px));
	align-items: center;
	justify-content: center;
	justify-self: center;
}

.home .dpm-sales-showcase__artwork img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 20rem;
	object-fit: contain;
	filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.24));
}

.home .dpm-sales-showcase__visual {
	position: relative;
	display: flex;
	width: min(100%, 15rem);
	aspect-ratio: 1;
	align-items: center;
	justify-content: center;
	justify-self: center;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, #ffb454 0, #ff9300 30%, #2563eb 31%, #0b274d 72%);
	box-shadow: inset 0 0 0 0.7rem rgba(255, 255, 255, 0.04), 0 24px 50px rgba(0, 0, 0, 0.25);
	overflow: hidden;
}

.home .dpm-sales-showcase__visual::before,
.home .dpm-sales-showcase__visual::after {
	position: absolute;
	z-index: 3;
	display: grid;
	width: 2.65rem;
	aspect-ratio: 1;
	place-items: center;
	border: 2px solid #14233d;
	border-radius: 50%;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
	color: #fff;
	font-size: 0.7rem;
	font-style: normal;
	font-weight: 900;
}

.home .dpm-sales-showcase__visual::before { top: 8%; left: 3%; background: #10b981; content: "WP"; }
.home .dpm-sales-showcase__visual::after { right: 2%; bottom: 12%; background: #7c3aed; content: "Woo"; }

.home .dpm-sales-showcase__visual span {
	position: relative;
	z-index: 2;
	color: #fff;
	font-size: clamp(2.2rem, 5vw, 4.5rem);
	font-weight: 900;
	letter-spacing: -0.07em;
}

.home .dpm-sales-showcase__visual i {
	position: absolute;
	width: 2.5rem;
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	transform: none;
}

.home .dpm-sales-showcase__visual i:nth-of-type(1) { top: 4%; right: 19%; background: #6d28d9; }
.home .dpm-sales-showcase__visual i:nth-of-type(2) { bottom: 7%; left: 13%; width: 2.1rem; background: #10b981; }
.home .dpm-sales-showcase__visual i:nth-of-type(3) { right: 0; top: 42%; width: 1.8rem; background: #ff9300; }

.home .dpm-sales-showcase__navigation {
	position: absolute;
	left: clamp(1.5rem, 4vw, 2.75rem);
	right: clamp(1.5rem, 4vw, 2.75rem);
	bottom: 1.4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	z-index: 4;
}

.home .dpm-sales-showcase__dots,
.home .dpm-sales-showcase__arrows {
	display: flex;
	align-items: center;
	gap: 0.55rem;
}

.home .dpm-sales-showcase__dots button {
	width: 0.55rem;
	height: 0.55rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #64748b;
}

.home .dpm-sales-showcase__dots button[aria-current="true"] {
	width: 2rem;
	background: #ff9300;
}

.home .dpm-sales-showcase__arrows button {
	display: inline-grid;
	width: 2.35rem;
	height: 2.35rem;
	place-items: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	background: transparent;
	color: #fff;
}

.home .dpm-sales-showcase__arrows button:hover { border-color: #ff9300; color: #ffb454; }

.home .dpm-sales-showcase__list { overflow: hidden; }

.home .dpm-sales-showcase__list-head {
	display: flex;
	min-height: 4rem;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 1rem 1.2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home .dpm-sales-showcase__list-head h2 { margin: 0; color: #fff; font-size: 1rem; }
.home .dpm-sales-showcase__list-head a { color: #ffb454; font-size: 0.8rem; font-weight: 800; }
.home .dpm-sales-showcase__list ul { margin: 0; padding: 0; list-style: none; }
.home .dpm-sales-showcase__list li + li { border-top: 1px solid rgba(255, 255, 255, 0.1); }

.home .dpm-sales-showcase__list li a {
	display: grid;
	min-height: 4.35rem;
	grid-template-columns: 2.5rem minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.7rem;
	padding: 0.7rem 1.1rem;
	color: #e2e8f0;
}

.home .dpm-sales-showcase__list li a:hover { background: rgba(255, 255, 255, 0.05); color: #fff; }
.home .dpm-sales-showcase__list img { width: 2.5rem; height: 2.5rem; border-radius: 9px; object-fit: cover; }
.home .dpm-sales-showcase__item-name { min-width: 0; overflow: hidden; font-size: 0.82rem; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.home .dpm-sales-showcase__item-price { color: #34d399; font-size: 0.82rem; font-weight: 850; white-space: nowrap; }
.home .dpm-sales-showcase__item-price del { display: none; }
.home .dpm-sales-showcase__item-price ins { text-decoration: none; }
.home .dpm-sales-showcase__empty { padding: 1.25rem; color: #cbd5e1; }

@media (max-width: 900px) {
	.home .dpm-sales-showcase__grid { grid-template-columns: 1fr; }
	.home .dpm-sales-showcase__feature { min-height: 0; }
}

@media (max-width: 600px) {
	.home .dpm-sales-showcase__slide { min-height: 0; grid-template-columns: 1fr; padding: 1.35rem 1.35rem 5rem; }
	.home .dpm-sales-showcase__visual,
	.home .dpm-sales-showcase__artwork { display: none; }
	.home .dpm-sales-showcase__offer { align-items: flex-start; flex-direction: column; }
	.home .dpm-sales-showcase__cta { width: 100%; }
	.home .dpm-sales-showcase__list li a { grid-template-columns: 2.5rem minmax(0, 1fr) auto; gap: 0.55rem; padding-inline: 0.9rem; }
	.home .dpm-sales-showcase__item-price { grid-column: auto; font-size: 0.76rem; }
	.home .dpm-sales-showcase__navigation { left: 1.35rem; right: 1.35rem; }
	.home .dpm-sales-showcase__benefits--dense { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.home .dpm-marketplace-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
	background: #0c2b52;
	color: #fff;
}

.home .dpm-marketplace-hero::after {
	position: absolute;
	inset: auto 8% -11rem auto;
	width: 24rem;
	height: 24rem;
	border-radius: 50%;
	background: rgba(37, 99, 235, 0.16);
	content: "";
	pointer-events: none;
}

.home .dpm-marketplace-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 58rem;
	text-align: center;
}

.home .dpm-marketplace-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0 0 1rem;
	padding: 0.5rem 0.85rem;
	border: 1px solid rgba(255, 147, 0, 0.48);
	border-radius: 999px;
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
}

.home .dpm-marketplace-hero__eyebrow span,
.home .dpm-marketplace-hero__title span,
.home .dpm-marketplace-hero__benefits span {
	color: #ff9300;
}

.home .dpm-marketplace-hero__title {
	max-width: 46rem;
	margin: 0 auto 1rem;
	color: #fff;
	font-size: clamp(2.5rem, 6vw, 4.8rem);
	line-height: 1.05;
}

.home .dpm-marketplace-hero__copy {
	max-width: 44rem;
	margin: 0 auto;
	color: #e2e8f0;
	font-size: clamp(1rem, 2vw, 1.15rem);
}

.home .dpm-marketplace-hero__actions,
.home .dpm-marketplace-hero__benefits,
.home .dpm-marketplace-hero__platforms ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.home .dpm-marketplace-hero__actions {
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.home .dpm-marketplace-hero__button {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.7rem 1.1rem;
	border: 1px solid #ff9300;
	border-radius: 12px;
	background: #ff9300;
	color: #fff;
	font-weight: 800;
}

.home .dpm-marketplace-hero__button:hover { background: #e67f00; color: #fff; }
.home .dpm-marketplace-hero__button--ghost { border-color: rgba(255,255,255,.45); background: transparent; }
.home .dpm-marketplace-hero__button--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.home .dpm-marketplace-hero__benefits {
	gap: 0.75rem 1.5rem;
	margin: 1.35rem 0 0;
	padding: 0;
	color: #e2e8f0;
	font-size: 0.85rem;
	font-weight: 700;
	list-style: none;
}

.home .dpm-marketplace-hero__benefits li { display: inline-flex; gap: 0.4rem; }

.home .dpm-marketplace-hero__platforms {
	margin-top: 1.4rem;
	padding-top: 1.1rem;
	border-top: 1px solid rgba(255,255,255,.16);
	color: #cbd5e1;
}

.home .dpm-marketplace-hero__platforms p { margin: 0 0 0.65rem; font-weight: 700; }
.home .dpm-marketplace-hero__platforms ul { gap: 0.45rem 1.1rem; margin: 0; padding: 0; font-size: 0.82rem; list-style: none; }
.home .dpm-marketplace-hero__platforms li::before { margin-right: 0.45rem; color: #93c5fd; content: "◇"; }

@media (max-width: 600px) {
	.home .dpm-marketplace-hero { padding-block: 3rem 2.5rem; }
	.home .dpm-marketplace-hero__actions { align-items: stretch; flex-direction: column; }
	.home .dpm-marketplace-hero__button { width: 100%; }
	.home .dpm-marketplace-hero__benefits { align-items: center; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
	.home .dpm-sales-showcase__cta,
	.home .dpm-marketplace-hero__button { transition: none; }
}

@media (max-width: 782px) {
	.home .dpm-site-header,
	.home .dpm-site-header.is-sticky {
		border-top-color: var(--dpm-action);
		border-bottom-color: rgba(255, 255, 255, 0.14);
		background: var(--dpm-brand-navy, #0b274d);
		box-shadow: 0 6px 18px rgba(2, 12, 27, 0.18);
	}

	.home.dpm-has-sticky-header .dpm-site-header.is-sticky {
		position: sticky;
		top: 0;
		z-index: 1000;
	}

	.home.admin-bar.dpm-has-sticky-header .dpm-site-header.is-sticky { top: 46px; }

	.home .dpm-site-header .dpm-brand,
	.home .dpm-site-header .dpm-brand:hover,
	.home .dpm-site-header .dpm-icon-button { color: #fff; }

	.home .dpm-site-header .dpm-icon-button:hover,
	.home .dpm-site-header .dpm-icon-button:focus-visible {
		background: rgba(255, 255, 255, 0.12);
		color: #fff;
	}
}
