/* ==========================================================================
   OnMerch — widgets marketing (shortcodes)
   Chargé sur tout le site : utilisable dans Divi partout.
   ========================================================================== */

.omc-w {
	--omc-primary: #C97B5A;
	--omc-primary-dark: #B4663F;
	--omc-primary-soft: #F2D9CD;
	--omc-cream: #FBF6F2;
	--omc-ink: #1A2E35;
	--omc-muted: #6B7A80;
	--omc-border: #F0E4DC;

	font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
	color: var(--omc-ink);
	margin: 48px 0;
}

.omc-w *,
.omc-w *::before,
.omc-w *::after {
	box-sizing: border-box;
}

/* ---------- Éléments communs ---------- */

.omc-w__eyebrow {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--omc-muted);
	text-align: center;
	margin: 0 0 12px;
}

.omc-w__eyebrow--light {
	color: rgba(255, 255, 255, 0.8);
}

.omc-w__title {
	font-size: clamp(1.7rem, 4vw, 2.5rem);
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
	margin: 0 0 12px;
	color: var(--omc-ink);
}

.omc-w__title span {
	color: var(--omc-primary);
}

.omc-w__title--light {
	color: #fff;
}

.omc-w__title--light span {
	color: #F6C4AC;
}

.omc-w__actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 32px;
}

/* Boutons charte : pill, padding généreux comme "Get Free Quote" */
.omc-w-btn {
	display: inline-block;
	background: var(--omc-primary);
	color: #fff !important;
	font-weight: 500;
	font-size: 1.02rem;
	text-decoration: none !important;
	border-radius: 999px;
	padding: 18px 52px;
	transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.omc-w-btn:hover {
	background: var(--omc-primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 10px 26px rgba(201, 123, 90, 0.35);
}

.omc-w-btn--soft {
	background: var(--omc-primary-soft);
	color: var(--omc-ink) !important;
}

.omc-w-btn--soft:hover {
	background: #ecd0c2;
	box-shadow: 0 10px 26px rgba(26, 46, 53, 0.10);
}

.omc-w-btn--white {
	background: #fff;
	color: var(--omc-ink) !important;
}

.omc-w-btn--white:hover {
	background: var(--omc-cream);
	box-shadow: 0 10px 26px rgba(26, 46, 53, 0.18);
}

.omc-w-btn--small {
	padding: 14px 34px;
	font-size: 0.95rem;
}

/* ==========================================================================
   [omc_how_it_works] — process en 4 étapes
   ========================================================================== */

.omc-w-process__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 20px;
	margin-top: 36px;
}

.omc-w-process__step {
	position: relative;
	background: #fff;
	border: 1px solid var(--omc-border);
	border-radius: 16px;
	padding: 28px 24px 24px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.omc-w-process__step:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(26, 46, 53, 0.10);
}

.omc-w-process__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--omc-primary-soft);
	color: var(--omc-primary-dark);
	font-weight: 700;
	margin-bottom: 16px;
}

.omc-w-process__step h3 {
	font-size: 1.08rem;
	font-weight: 600;
	margin: 0 0 8px;
	color: var(--omc-ink);
}

.omc-w-process__step p {
	font-size: 0.9rem;
	color: var(--omc-muted);
	line-height: 1.55;
	margin: 0;
}

/* ==========================================================================
   [omc_support] — bandeau accompagnement personnalisé
   ========================================================================== */

.omc-w-support {
	background: linear-gradient(135deg, #1A2E35 0%, #24404A 100%);
	border-radius: 20px;
	padding: clamp(40px, 6vw, 64px);
}

.omc-w-support .omc-w__title--light {
	text-align: left;
}

.omc-w-support .omc-w__eyebrow--light {
	text-align: left;
}

.omc-w-support__content {
	max-width: 640px;
}

.omc-w-support__text {
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.65;
	margin: 0 0 20px;
}

.omc-w-support__list {
	list-style: none;
	margin: 0 0 30px;
	padding: 0;
}

.omc-w-support__list li {
	color: #fff;
	padding: 7px 0 7px 30px;
	position: relative;
	font-size: 0.95rem;
}

.omc-w-support__list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 7px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--omc-primary);
	color: #fff;
	font-size: 0.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ==========================================================================
   [omc_delivery_rush] — livraison mondiale + service rush
   ========================================================================== */

.omc-w-duo {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}

.omc-w-duo__card {
	background: var(--omc-cream);
	border: 1px solid var(--omc-border);
	border-radius: 20px;
	padding: 36px 32px;
}

.omc-w-duo__card--dark {
	background: linear-gradient(135deg, #C97B5A 0%, #DFA083 100%);
	border: none;
	color: #fff;
}

.omc-w-duo__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--omc-primary-soft);
	color: var(--omc-primary-dark);
	font-size: 1.4rem;
	margin-bottom: 18px;
}

.omc-w-duo__icon--rush {
	background: rgba(255, 255, 255, 0.22);
	color: #fff;
}

.omc-w-duo__card h3 {
	font-size: 1.35rem;
	font-weight: 600;
	margin: 0 0 10px;
	color: inherit;
}

.omc-w-duo__card p {
	line-height: 1.65;
	margin: 0 0 22px;
	color: var(--omc-muted);
	font-size: 0.95rem;
}

.omc-w-duo__card--dark p {
	color: rgba(255, 255, 255, 0.92);
}

.omc-w-duo__card--dark strong {
	color: #fff;
}

.omc-w-duo__tag {
	display: inline-block;
	background: #fff;
	border: 1px solid var(--omc-border);
	color: var(--omc-primary-dark);
	font-size: 0.82rem;
	font-weight: 600;
	border-radius: 999px;
	padding: 8px 18px;
}

.omc-w-duo__card--dark .omc-w-btn--small {
	background: #fff;
	color: var(--omc-ink) !important;
}

.omc-w-duo__card--dark .omc-w-btn--small:hover {
	background: var(--omc-cream);
}

/* ==========================================================================
   [omc_cta] — bannière de conversion à double bouton
   ========================================================================== */

.omc-w-cta {
	background: var(--omc-cream);
	border: 1px solid var(--omc-border);
	border-radius: 20px;
	padding: clamp(40px, 6vw, 64px) 24px;
	text-align: center;
}

.omc-w-cta__text {
	color: var(--omc-muted);
	max-width: 520px;
	margin: 0 auto;
	line-height: 1.6;
}

/* ---------- Responsive ---------- */

@media (max-width: 640px) {
	.omc-w-btn {
		width: 100%;
		text-align: center;
		padding: 16px 32px;
	}

	.omc-w-support {
		border-radius: 14px;
	}
}
