/**
 * Section page Soins holistiques — Bienfaits + déroulé (2 colonnes).
 * Shortcode : [wpcursor name="holistique-bienfaits"]
 */

.wpcursor-holistique-bienfaits {
	--wpcursor-hol-ben-bg: #faf9fb;
	--wpcursor-hol-ben-heading: #4a2d5c;
	--wpcursor-hol-ben-accent: #e8a598;
	--wpcursor-hol-ben-body: #5f5f6a;
	--wpcursor-hol-ben-muted: #7a7a85;
	--wpcursor-hol-ben-cta: #5e3a71;
	--wpcursor-hol-ben-cta-hover: #8f689a;
	--wpcursor-hol-ben-check-bg: #5e3a71;
	--wpcursor-hol-ben-purple: #5e3a71;
	--wpcursor-hol-ben-coral: #d48f7f;
	--wpcursor-hol-ben-orange: #d49a5c;
	--wpcursor-hol-ben-teal: #5e9fa3;

	position: relative;
	box-sizing: border-box;
	width: 100%;
	padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 2rem);
	background: var(--wpcursor-hol-ben-bg);
	color: var(--wpcursor-hol-ben-body);
	overflow: hidden;
}

.wpcursor-holistique-bienfaits__deco {
	position: absolute;
	z-index: 0;
	width: min(22vw, 170px);
	height: auto;
	object-fit: contain;
	pointer-events: none;
}

.wpcursor-holistique-bienfaits__deco--left {
	left: 1.5%;
	top: 10%;
	opacity: 0.55;
}

.wpcursor-holistique-bienfaits__deco--right {
	right: 2%;
	top: 14%;
	width: min(20vw, 155px);
	opacity: 0.5;
}

.wpcursor-holistique-bienfaits__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
	gap: clamp(2rem, 4vw, 3.25rem);
	align-items: start;
	max-width: 1180px;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

.wpcursor-holistique-bienfaits__col {
	min-width: 0;
}

.wpcursor-holistique-bienfaits__col--deroule {
	position: relative;
	padding-left: clamp(1.25rem, 2.5vw, 2rem);
	border-left: 1px solid rgba(74, 45, 92, 0.08);
}

.wpcursor-holistique-bienfaits__heading,
.wpcursor-holistique-bienfaits__deroule-heading {
	margin: 0;
	font-family: var(--wpcursor-font-title);
	font-size: clamp(1.45rem, 2.4vw, 1.85rem);
	font-weight: var(--wpcursor-title-weight, 700);
	line-height: 1.22;
	letter-spacing: var(--wpcursor-title-letter-spacing, -0.027em);
	color: var(--wpcursor-hol-ben-heading);
}

.wpcursor-holistique-bienfaits__deroule-heading {
	text-align: center;
}

.wpcursor-holistique-bienfaits__divider,
.wpcursor-holistique-bienfaits__deroule-divider {
	width: 3.25rem;
	height: 2px;
	margin: 1rem 0 1.15rem;
	border-radius: 999px;
	background: var(--wpcursor-hol-ben-accent);
}

.wpcursor-holistique-bienfaits__deroule-divider {
	margin-left: auto;
	margin-right: auto;
}

.wpcursor-holistique-bienfaits__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wpcursor-holistique-bienfaits__item {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	padding: 0.5rem 0;
}

.wpcursor-holistique-bienfaits__item + .wpcursor-holistique-bienfaits__item {
	border-top: 1px solid rgba(74, 45, 92, 0.06);
}

.wpcursor-holistique-bienfaits__check {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 1.55rem;
	height: 1.55rem;
	margin-top: 0.1rem;
	border-radius: 50%;
	background: var(--wpcursor-hol-ben-check-bg);
	color: #ffffff;
}

.wpcursor-holistique-bienfaits__item-text {
	margin: 0;
	font-family: var(--wpcursor-font-body);
	font-size: 0.88rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--wpcursor-hol-ben-body);
}

.wpcursor-holistique-bienfaits__item-label {
	font-weight: 600;
	color: var(--wpcursor-hol-ben-heading);
}

.wpcursor-holistique-bienfaits__item-sep {
	color: var(--wpcursor-hol-ben-muted);
}

.wpcursor-holistique-bienfaits__note {
	margin: 1.25rem 0 0;
	padding: 0.85rem 1rem;
	border-left: 3px solid var(--wpcursor-hol-ben-accent);
	border-radius: 0 10px 10px 0;
	background: rgba(94, 58, 113, 0.04);
	font-family: var(--wpcursor-font-body);
	font-size: 0.82rem;
	font-weight: 400;
	font-style: italic;
	line-height: 1.55;
	color: var(--wpcursor-hol-ben-muted);
}

.wpcursor-holistique-bienfaits__steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(0.55rem, 1.2vw, 0.85rem);
	align-items: stretch;
	margin: 0 auto;
	padding: 0;
	padding-inline: 0;
	list-style: none;
	width: 100%;
	box-sizing: border-box;
}

.wpcursor-holistique-bienfaits__step {
	position: relative;
	display: flex;
	min-width: 0;
}

.wpcursor-holistique-bienfaits__step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 2.85rem;
	right: calc(-0.5 * clamp(0.55rem, 1.2vw, 0.85rem) - 0.15rem);
	width: clamp(0.55rem, 1.2vw, 0.85rem);
	height: 2px;
	border-top: 2px dotted rgba(94, 58, 113, 0.28);
	pointer-events: none;
}

.wpcursor-holistique-bienfaits__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	min-height: 100%;
	padding: 1rem 0.65rem 1.1rem;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 8px 28px rgba(74, 45, 92, 0.08);
	box-sizing: border-box;
	text-align: center;
}

.wpcursor-holistique-bienfaits__badge {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	margin: 0 0 0.75rem;
	border-radius: 50%;
	color: #ffffff;
}

.wpcursor-holistique-bienfaits__badge--purple {
	background: var(--wpcursor-hol-ben-purple);
	box-shadow: 0 6px 18px rgba(94, 58, 113, 0.22);
}

.wpcursor-holistique-bienfaits__badge--coral {
	background: var(--wpcursor-hol-ben-coral);
	box-shadow: 0 6px 18px rgba(212, 143, 127, 0.28);
}

.wpcursor-holistique-bienfaits__badge--orange {
	background: var(--wpcursor-hol-ben-orange);
	box-shadow: 0 6px 18px rgba(212, 154, 92, 0.28);
}

.wpcursor-holistique-bienfaits__badge--teal {
	background: var(--wpcursor-hol-ben-teal);
	box-shadow: 0 6px 18px rgba(94, 159, 163, 0.28);
}

.wpcursor-holistique-bienfaits__badge-number {
	position: absolute;
	top: -0.15rem;
	right: -0.15rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.2rem;
	height: 1.2rem;
	border: 2px solid #ffffff;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.22);
	font-family: var(--wpcursor-font-body);
	font-size: 0.58rem;
	font-weight: 700;
	line-height: 1;
}

.wpcursor-holistique-bienfaits__badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.wpcursor-holistique-bienfaits__badge-icon svg,
.wpcursor-holistique-bienfaits__badge-icon-image {
	width: 1.45rem;
	height: 1.45rem;
}

.wpcursor-holistique-bienfaits__badge-icon-image {
	display: block;
	object-fit: contain;
}

.wpcursor-holistique-bienfaits__step-title {
	margin: 0 0 0.55rem;
	font-family: var(--wpcursor-font-body);
	font-size: clamp(0.76rem, 1.1vw, 0.86rem);
	font-weight: 700;
	line-height: 1.35;
	color: var(--wpcursor-hol-ben-heading);
}

.wpcursor-holistique-bienfaits__step-index {
	color: var(--wpcursor-hol-ben-muted);
}

.wpcursor-holistique-bienfaits__step-text {
	margin: 0;
	font-family: var(--wpcursor-font-body);
	font-size: 0.74rem;
	font-weight: 400;
	line-height: 1.48;
	color: var(--wpcursor-hol-ben-body);
}

.wpcursor-holistique-bienfaits__cta-block {
	display: flex;
	justify-content: center;
	margin-top: 1.35rem;
}

.wpcursor-holistique-bienfaits__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	max-width: 100%;
	padding: 0.82rem 1.35rem;
	border: none;
	border-radius: 999px;
	background: var(--wpcursor-hol-ben-cta);
	color: #ffffff;
	font-family: var(--wpcursor-font-body);
	font-size: 0.84rem;
	font-weight: 600;
	line-height: 1.25;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(94, 58, 113, 0.22);
	transition: background 0.2s ease, transform 0.15s ease;
}

.wpcursor-holistique-bienfaits__cta:hover,
.wpcursor-holistique-bienfaits__cta:focus-visible {
	background: var(--wpcursor-hol-ben-cta-hover);
	color: #ffffff;
	outline: none;
	transform: translateY(-1px);
}

.wpcursor-holistique-bienfaits__cta-icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
}

@media (max-width: 1100px) {
	.wpcursor-holistique-bienfaits__steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wpcursor-holistique-bienfaits__step:nth-child(2)::after {
		display: none;
	}
}

@media (max-width: 960px) {
	.wpcursor-holistique-bienfaits__inner {
		grid-template-columns: 1fr;
		gap: clamp(2.5rem, 6vw, 3.5rem);
	}

	.wpcursor-holistique-bienfaits__col--deroule {
		padding-left: 0;
		border-left: none;
		padding-top: clamp(1.5rem, 4vw, 2rem);
		border-top: 1px solid rgba(74, 45, 92, 0.08);
	}
}

@media (max-width: 640px) {
	.wpcursor-holistique-bienfaits__col--deroule {
		width: 100%;
	}

	.wpcursor-holistique-bienfaits__steps {
		grid-template-columns: minmax(0, 1fr);
		max-width: none;
		width: 100%;
		margin-inline: auto;
	}

	.wpcursor-holistique-bienfaits__step:not(:last-child)::after {
		display: none;
	}

	.wpcursor-holistique-bienfaits__cta-block {
		width: 100%;
	}
}

@media (max-width: 560px) {
	.wpcursor-holistique-bienfaits {
		padding: clamp(2.5rem, 7vw, 3.5rem) clamp(1.25rem, 4vw, 2rem);
	}
}
