/**
 * DedeBuy homepage modules — v1.5 editorial minimal
 */

/* ---- Front page mesh + grid background (CSS gradient layering) ---- */
body.dedebuy-front-page {
	background-color: var(--dedebuy-cream);
	background-image:
		radial-gradient(ellipse 100% 70% at 0% -15%, var(--dedebuy-bg-glow-warm, rgba(166, 124, 82, 0.09)), transparent 52%),
		radial-gradient(ellipse 80% 55% at 100% 5%, var(--dedebuy-bg-glow-cool, rgba(236, 234, 230, 0.75)), transparent 48%),
		linear-gradient(168deg, var(--dedebuy-bg-gradient-start, #fefdfb) 0%, var(--dedebuy-cream) 42%, var(--dedebuy-bg-gradient-end, #f5f0ea) 100%);
	background-position: center top;
	background-attachment: fixed;
}

body.dedebuy-front-page::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background-image:
		linear-gradient(var(--dedebuy-grid-line-color, rgba(23, 23, 23, 0.03)) 1px, transparent 1px),
		linear-gradient(90deg, var(--dedebuy-grid-line-color, rgba(23, 23, 23, 0.03)) 1px, transparent 1px);
	background-size: var(--dedebuy-grid-size, 52px) var(--dedebuy-grid-size, 52px);
	animation: dedebuy-grid-drift var(--dedebuy-grid-drift-duration, 28s) linear infinite;
}

@keyframes dedebuy-grid-drift {
	from {
		background-position: 0 0, 0 0;
	}
	to {
		background-position: calc(var(--dedebuy-grid-drift-x, -1) * var(--dedebuy-grid-size, 52px)) calc(var(--dedebuy-grid-drift-y, -1) * var(--dedebuy-grid-size, 52px)),
			calc(var(--dedebuy-grid-drift-x, -1) * var(--dedebuy-grid-size, 52px)) calc(var(--dedebuy-grid-drift-y, -1) * var(--dedebuy-grid-size, 52px));
	}
}

body.dedebuy-front-page.dedebuy-grid-static::before {
	animation: none;
}

@media (prefers-reduced-motion: reduce) {
	body.dedebuy-front-page::before {
		animation: none;
	}
}

/* ---- Shared section header ---- */
.dedebuy-section-head {
	margin-bottom: 2rem;
}

.dedebuy-section-head--center {
	text-align: center;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.dedebuy-section-head__eyebrow {
	display: inline-block;
	padding: 0.35rem 0.9rem;
	border-radius: var(--dedebuy-radius-pill);
	background: rgba(var(--wf-main-rgb), 0.1);
	color: var(--wf-main-color);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.75rem;
}

.dedebuy-section-head__title {
	font-family: var(--dedebuy-font-heading);
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	line-height: 1.2;
	margin: 0 0 0.75rem;
	color: var(--wf-secondary-color);
}

.dedebuy-section-head__subtitle {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--dedebuy-text-muted);
}

.dedebuy-btn--ghost {
	background: transparent;
	color: var(--wf-main-color);
	border: 2px solid rgba(var(--wf-main-rgb), 0.35);
}

.dedebuy-btn--ghost:hover {
	background: rgba(var(--wf-main-rgb), 0.08);
	color: var(--wf-main-color);
	transform: translateY(-2px);
}

/* ---- Hero: split card ---- */
.dedebuy-home .dedebuy-hero {
	padding: 1rem 0 0;
	margin-bottom: 0;
	border-radius: 0;
}

.dedebuy-hero__card {
	background: var(--dedebuy-surface);
	border: 1px solid rgba(23, 23, 23, 0.08);
	border-radius: var(--dedebuy-radius-lg);
	box-shadow: var(--dedebuy-shadow);
	padding: 1.25rem;
	overflow: hidden;
}

.dedebuy-hero__track {
	position: relative;
	height: var(--dedebuy-hero-track-h, 360px);
	min-height: var(--dedebuy-hero-track-h, 360px);
}

.dedebuy-hero__slide {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 1rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.35s ease, visibility 0.35s;
}

.dedebuy-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
	pointer-events: auto;
}

.dedebuy-hero__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1 1 0;
	min-width: 0;
	overflow: hidden;
	padding: 0.25rem 0.5rem 0.25rem 0;
	color: var(--wf-secondary-color);
}

.dedebuy-hero__copy .dedebuy-btn {
	align-self: flex-start;
	width: auto;
	max-width: 100%;
}

.dedebuy-hero__eyebrow {
	display: inline-block;
	padding: 0.35rem 0.9rem;
	border-radius: var(--dedebuy-radius-pill);
	background: rgba(23, 23, 23, 0.06);
	color: var(--wf-secondary-color);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 1rem;
}

.dedebuy-hero__title {
	font-family: var(--dedebuy-font-heading);
	font-size: clamp(1.65rem, 3.5vw, 2.75rem);
	line-height: 1.15;
	margin: 0 0 1rem;
	color: var(--wf-secondary-color);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.dedebuy-hero__text {
	font-size: 1.05rem;
	line-height: 1.65;
	margin: 0 0 1.5rem;
	color: var(--dedebuy-text-muted);
	max-width: 36rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.dedebuy-hero__media {
	position: relative;
	flex: 0 0 auto;
	align-self: stretch;
	height: 100%;
	width: auto;
	aspect-ratio: 16 / 9;
	border-radius: var(--dedebuy-radius);
	overflow: hidden;
	background: linear-gradient(145deg, var(--dedebuy-peach), var(--dedebuy-lavender));
}

.dedebuy-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	flex: 1;
}

.dedebuy-hero__img--placeholder {
	width: 100%;
	height: 100%;
	min-height: 100%;
}

.dedebuy-hero__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-top: 0.75rem;
	padding-top: 0;
	border-top: none;
}

.dedebuy-hero__dots {
	position: static;
	bottom: auto;
	left: auto;
	transform: none;
	z-index: auto;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
}

.dedebuy-hero__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: rgba(var(--wf-main-rgb), 0.25);
	padding: 0;
	cursor: pointer;
	transition: background var(--dedebuy-transition), transform var(--dedebuy-transition);
}

.dedebuy-hero__dot.is-active {
	background: var(--wf-main-color);
	transform: scale(1.25);
}

.dedebuy-hero__arrows {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem;
	flex: 0 0 auto;
	margin-left: auto;
}

.dedebuy-hero__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	border: 1px solid rgba(23, 23, 23, 0.12);
	background: #fff;
	color: var(--wf-secondary-color);
	cursor: pointer;
	transition: border-color var(--dedebuy-transition), color var(--dedebuy-transition), box-shadow var(--dedebuy-transition);
}

.dedebuy-hero__arrow:hover {
	border-color: var(--wf-main-color);
	color: var(--wf-main-color);
	box-shadow: var(--dedebuy-shadow);
}

/* ---- Product categories grid ---- */
.dedebuy-categories {
	padding: 3.5rem 0;
}

.dedebuy-categories__grid {
	display: grid;
	gap: 1.25rem;
}

/* Fallback when category count is not 5 */
.dedebuy-categories__grid--count-1 {
	grid-template-columns: 1fr;
	max-width: 480px;
	margin: 0 auto;
}

.dedebuy-categories__grid--count-2 {
	grid-template-columns: repeat(2, 1fr);
}

.dedebuy-categories__grid--count-3 {
	grid-template-columns: repeat(3, 1fr);
}

.dedebuy-categories__grid--count-4 {
	grid-template-columns: repeat(2, 1fr);
}

.dedebuy-categories__grid--count-6,
.dedebuy-categories__grid--count-8,
.dedebuy-categories__grid--count-9,
.dedebuy-categories__grid--count-10,
.dedebuy-categories__grid--count-11,
.dedebuy-categories__grid--count-12 {
	grid-template-columns: repeat(3, 1fr);
}

/* 7 categories: 7 → 4 → 3 → 2 columns by viewport */
.dedebuy-categories__grid--seven {
	grid-template-columns: repeat(4, 1fr);
	gap: 0.625rem;
	width: 100%;
	max-width: none;
	margin: 0;
}

@media (min-width: 1200px) {
	.dedebuy-categories__grid--seven {
		grid-template-columns: repeat(7, 1fr);
	}
}

@media (max-width: 991px) {
	.dedebuy-categories__grid--seven {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	.dedebuy-categories__grid--seven {
		grid-template-columns: repeat(2, 1fr);
	}

	.dedebuy-categories__grid--count-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	/* 2-column rows: image fill + text overlay bottom-right */
	.dedebuy-categories__grid .dedebuy-cat-card-wrap {
		height: auto;
	}

	.dedebuy-categories__grid .dedebuy-cat-card {
		display: block;
		aspect-ratio: 3 / 4;
		height: auto;
	}

	.dedebuy-categories__grid .dedebuy-cat-card__media {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		aspect-ratio: auto;
	}

	.dedebuy-categories__grid .dedebuy-cat-card__media::after {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(
			180deg,
			transparent 45%,
			rgba(23, 23, 23, 0.25) 68%,
			rgba(23, 23, 23, 0.88) 100%
		);
		pointer-events: none;
		z-index: 1;
	}

	.dedebuy-categories__grid .dedebuy-cat-card__body {
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 2;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		text-align: right;
		padding: 0.55rem 0.65rem 0.6rem;
		background: transparent;
	}

	.dedebuy-categories__grid .dedebuy-cat-card__name {
		font-size: 0.82rem;
		line-height: 1.2;
		color: #fff;
		margin: 0 0 0.15rem;
	}

	.dedebuy-categories__grid .dedebuy-cat-card__count {
		font-size: 0.68rem;
		color: rgba(255, 255, 255, 0.78);
	}

	.dedebuy-categories__grid .dedebuy-cat-card__placeholder .dedebuy-icon {
		width: 2rem;
		height: 2rem;
	}

	.dedebuy-categories__grid .dedebuy-cat-card:hover {
		color: #fff;
	}

	.dedebuy-categories__grid--five .dedebuy-cat-card:nth-child(5) {
		grid-column: auto;
	}
}

.dedebuy-categories__grid--seven .dedebuy-cat-card__media {
	aspect-ratio: 3 / 4;
}

.dedebuy-categories__grid--seven .dedebuy-cat-card__body {
	padding: 0.55rem 0.65rem 0.65rem;
}

.dedebuy-categories__grid--seven .dedebuy-cat-card__name {
	font-size: 0.9rem;
	line-height: 1.2;
}

.dedebuy-categories__grid--seven .dedebuy-cat-card__count {
	font-size: 0.72rem;
}

.dedebuy-categories__grid--seven .dedebuy-cat-card__placeholder .dedebuy-icon {
	width: 2.25rem;
	height: 2.25rem;
}

.dedebuy-categories__grid--seven .dedebuy-cat-card-wrap {
	border-radius: 10px;
}

/* 5 categories: 2 on top + 3 below (compact) */
.dedebuy-categories__grid--five {
	grid-template-columns: repeat(6, 1fr);
}

.dedebuy-categories__grid--five .dedebuy-cat-card:nth-child(1),
.dedebuy-categories__grid--five .dedebuy-cat-card:nth-child(2) {
	grid-column: span 3;
}

.dedebuy-categories__grid--five .dedebuy-cat-card:nth-child(3),
.dedebuy-categories__grid--five .dedebuy-cat-card:nth-child(4),
.dedebuy-categories__grid--five .dedebuy-cat-card:nth-child(5) {
	grid-column: span 2;
}

.dedebuy-categories__grid--five .dedebuy-cat-card:nth-child(1) .dedebuy-cat-card__name,
.dedebuy-categories__grid--five .dedebuy-cat-card:nth-child(2) .dedebuy-cat-card__name {
	font-size: 1.25rem;
}

.dedebuy-cat-card-wrap {
	height: 100%;
	border-radius: var(--dedebuy-radius);
	box-shadow: var(--dedebuy-shadow);
	transition: box-shadow var(--dedebuy-transition), transform var(--dedebuy-transition);
}

.dedebuy-cat-card-wrap:hover {
	box-shadow: var(--dedebuy-shadow-soft);
	transform: translateY(-3px);
}

.dedebuy-cat-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: var(--wf-secondary-color);
	border-radius: inherit;
	overflow: hidden;
	background: var(--dedebuy-surface);
	border: 1px solid rgba(23, 23, 23, 0.08);
	cursor: pointer;
}

.dedebuy-cat-card:hover {
	color: var(--wf-secondary-color);
}

.dedebuy-cat-card__media {
	position: relative;
	flex-shrink: 0;
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: linear-gradient(145deg, var(--dedebuy-peach), var(--dedebuy-lavender));
}

.dedebuy-cat-card__img,
.dedebuy-cat-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.dedebuy-cat-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.dedebuy-cat-card__placeholder .dedebuy-icon {
	width: 3rem;
	height: 3rem;
	background: rgba(255, 255, 255, 0.85);
}

.dedebuy-cat-card__body {
	position: relative;
	flex: 1;
	padding: 0.85rem 1rem 1rem;
	background: var(--dedebuy-surface);
}

.dedebuy-cat-card__name {
	font-family: var(--dedebuy-font-heading);
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.25;
	margin: 0 0 0.25rem;
	color: var(--wf-secondary-color);
	letter-spacing: -0.02em;
}

.dedebuy-cat-card__count {
	font-size: 0.8rem;
	color: var(--dedebuy-text-muted);
	font-weight: 500;
}

.dedebuy-categories__footer {
	margin-top: 2rem;
	text-align: center;
}

/* ---- Features pills strip ---- */
.dedebuy-features {
	padding: 0 0 2.5rem;
}

.dedebuy-features__track {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.75rem;
}

.dedebuy-features__pill {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1rem 1.1rem;
	border-radius: var(--dedebuy-radius);
	background: var(--dedebuy-surface);
	border: 1px solid rgba(23, 23, 23, 0.08);
	box-shadow: var(--dedebuy-shadow);
}

.dedebuy-features__icon .dedebuy-icon {
	width: 2.5rem;
	height: 2.5rem;
	flex-shrink: 0;
}

.dedebuy-features__icon .dedebuy-icon svg {
	width: 1.1rem;
	height: 1.1rem;
}

.dedebuy-features__text {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.dedebuy-features__title {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--wf-secondary-color);
	line-height: 1.3;
}

.dedebuy-features__desc {
	font-size: 0.8rem;
	color: var(--dedebuy-text-muted);
	line-height: 1.45;
}

/* ---- Journey timeline ---- */
.dedebuy-journey {
	padding: 3.5rem 0;
	background: linear-gradient(180deg, transparent, rgba(23, 23, 23, 0.03) 50%, transparent);
}

.dedebuy-journey__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	counter-reset: journey;
}

.dedebuy-journey__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.dedebuy-journey__item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 1.75rem;
	left: calc(50% + 1.75rem);
	width: calc(100% - 3.5rem);
	height: 2px;
	background: repeating-linear-gradient(90deg, var(--dedebuy-secondary) 0, var(--dedebuy-secondary) 6px, transparent 6px, transparent 12px);
	opacity: 0.5;
	pointer-events: none;
}

.dedebuy-journey__marker {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	background: var(--wf-secondary-color);
	color: #fff;
	font-family: var(--dedebuy-font-heading);
	font-weight: 700;
	font-size: 1.15rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	box-shadow: 0 4px 16px rgba(23, 23, 23, 0.15);
	flex-shrink: 0;
}

.dedebuy-journey__card {
	background: var(--dedebuy-surface);
	border: 1px solid rgba(23, 23, 23, 0.08);
	border-radius: var(--dedebuy-radius);
	padding: 1.25rem 1.15rem;
	width: 100%;
	box-shadow: var(--dedebuy-shadow);
	transition: box-shadow var(--dedebuy-transition), transform var(--dedebuy-transition);
}

.dedebuy-journey__item:hover .dedebuy-journey__card {
	box-shadow: var(--dedebuy-shadow-soft);
	transform: translateY(-3px);
}

.dedebuy-journey__title {
	font-family: var(--dedebuy-font-heading);
	font-size: 1.05rem;
	margin: 0 0 0.5rem;
	color: var(--wf-secondary-color);
}

.dedebuy-journey__text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--dedebuy-text-muted);
}

/* ---- CTA split panel ---- */
.dedebuy-cta-panel {
	padding: 3rem 0 4rem;
}

.dedebuy-cta-panel__inner {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 2rem;
	align-items: center;
	padding: 2rem 2.25rem;
	border-radius: var(--dedebuy-radius-lg);
	background: var(--wf-secondary-color);
	border: none;
	box-shadow: var(--dedebuy-shadow-soft);
	color: #fff;
}

.dedebuy-cta-panel__title {
	font-family: var(--dedebuy-font-heading);
	font-size: clamp(1.35rem, 3vw, 2rem);
	line-height: 1.2;
	margin: 0 0 0.75rem;
	color: #fff;
}

.dedebuy-cta-panel__text {
	margin: 0 0 1.5rem;
	font-size: 1.05rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.78);
	max-width: 28rem;
}

.dedebuy-cta-panel .dedebuy-btn--primary {
	background: #fff;
	color: var(--wf-secondary-color);
}

.dedebuy-cta-panel .dedebuy-btn--primary:hover {
	background: var(--dedebuy-cream);
	color: var(--wf-secondary-color);
}

.dedebuy-cta-panel__visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.dedebuy-cta-panel__img {
	width: 100%;
	max-height: 280px;
	object-fit: cover;
	border-radius: var(--dedebuy-radius);
	box-shadow: var(--dedebuy-shadow-soft);
}

.dedebuy-cta-panel__blob {
	width: 100%;
	aspect-ratio: 1;
	max-width: 260px;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--dedebuy-peach), var(--dedebuy-lavender));
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--dedebuy-shadow-soft);
}

.dedebuy-cta-panel__blob .dedebuy-icon {
	width: 5rem;
	height: 5rem;
	background: rgba(255, 255, 255, 0.5);
}

.dedebuy-cta-panel__blob .dedebuy-icon svg {
	width: 2.25rem;
	height: 2.25rem;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
	.dedebuy-hero__track {
		height: auto;
		min-height: 0;
	}

	.dedebuy-hero__slide {
		flex-direction: column;
		gap: 0.75rem;
		height: auto;
	}

	.dedebuy-hero__slide.is-active {
		position: relative;
		inset: auto;
	}

	.dedebuy-hero__copy {
		flex: 0 0 auto;
		padding: 0;
		justify-content: flex-start;
		overflow: visible;
		min-height: 0;
	}

	.dedebuy-hero__title,
	.dedebuy-hero__text {
		display: block;
		overflow: visible;
		-webkit-line-clamp: unset;
	}

	.dedebuy-hero__media {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
		flex: 0 0 auto;
		align-self: auto;
	}

	.dedebuy-hero__controls {
		margin-top: 0.75rem;
		justify-content: space-between;
	}

	.dedebuy-categories__grid--count-6,
	.dedebuy-categories__grid--count-8,
	.dedebuy-categories__grid--count-9,
	.dedebuy-categories__grid--count-10,
	.dedebuy-categories__grid--count-11,
	.dedebuy-categories__grid--count-12 {
		grid-template-columns: repeat(2, 1fr);
	}

	.dedebuy-categories__grid--five {
		grid-template-columns: repeat(2, 1fr);
	}

	.dedebuy-categories__grid--five .dedebuy-cat-card:nth-child(1),
	.dedebuy-categories__grid--five .dedebuy-cat-card:nth-child(2),
	.dedebuy-categories__grid--five .dedebuy-cat-card:nth-child(3),
	.dedebuy-categories__grid--five .dedebuy-cat-card:nth-child(4),
	.dedebuy-categories__grid--five .dedebuy-cat-card:nth-child(5) {
		grid-column: span 1;
	}

	.dedebuy-categories__grid--five .dedebuy-cat-card:nth-child(5) {
		grid-column: 1 / -1;
	}

	.dedebuy-categories__grid--five .dedebuy-cat-card:nth-child(1) .dedebuy-cat-card__name,
	.dedebuy-categories__grid--five .dedebuy-cat-card:nth-child(2) .dedebuy-cat-card__name {
		font-size: 1.2rem;
	}

	.dedebuy-features__track {
		grid-template-columns: repeat(2, 1fr);
	}

	.dedebuy-journey__list {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.dedebuy-journey__item:not(:last-child)::after {
		display: none;
	}

	.dedebuy-journey__item {
		flex-direction: row;
		text-align: left;
		align-items: flex-start;
		gap: 1rem;
	}

	.dedebuy-journey__marker {
		margin-bottom: 0;
		width: 2.75rem;
		height: 2.75rem;
		font-size: 1rem;
	}

	.dedebuy-cta-panel__inner {
		grid-template-columns: 1fr;
		padding: 1.5rem;
	}

	.dedebuy-cta-panel__visual {
		order: -1;
	}

	.dedebuy-cta-panel__blob {
		max-width: 180px;
		margin: 0 auto;
	}
}

@media (max-width: 575px) {
	.dedebuy-hero__card {
		padding: 1rem;
	}

	.dedebuy-features__track {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dedebuy-hero__slide,
	.dedebuy-cat-card-wrap,
	.dedebuy-cat-card__media img,
	.dedebuy-journey__card {
		transition: none;
	}
}
