/* ============================
ROSE&FLY – Mini header tunnel
DA rose poudré + icônes minimalistes
============================ */
:root{
	--rf-rose: #a14b68;
	--rf-rose-soft: #fdf0f6;
	--rf-rose-border: #f2d6e2;
	--rf-ink: #2d1f24;
	--rf-muted: #6f4a57;
	--rf-shadow: 0 10px 30px rgba(45,31,36,.08);
}
.rf-mini-checkout-header{
	position: sticky;
	top:0;
	z-index: 999;
	background: rgba(255,255,255,.86);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--rf-rose-border);
}
.rf-mini-checkout-header-inner{
	margin: 0 auto;
	padding: 12px 18px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
}
.main-header-bar{
    background-color: rosybrown!important;
}
/* Left */
.rf-mch-left{
	justify-self: start;
	display: flex;
	align-items: center;
}
.rf-mch-back{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--rf-rose-soft);
	border: 1px solid var(--rf-rose-border);
	color: var(--rf-rose);
	text-decoration: none !important;
	font-weight: 700;
	line-height: 1;
	transition: transform .12s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
	box-shadow: 0 6px 18px rgba(161,75,104,.10);
}
.rf-mch-back:hover{
	transform: translateY(-1px);
	background: #ffffff;
	border-color: rgba(161,75,104,.35);
	box-shadow: 0 12px 28px rgba(161,75,104,.16);
}
.rf-mch-back:focus{
	outline: none;
	box-shadow: 0 0 0 3px rgba(161,75,104,.20), 0 12px 28px rgba(161,75,104,.16);
}

/* Center */
.rf-mch-center{
	justify-self: center;
	display: flex;
	align-items: center;
}
.rf-mch-logo{
	display: inline-flex;
	align-items: center;
	text-decoration: none !important;
}
.rf-mch-logo img{
	display: block;
	height: 34px;
	width: auto;
	max-width: 220px;
}

/* Right */
.rf-mch-right{
	justify-self: end;
	display: flex;
	align-items: center;
}
.rf-mch-reassurance{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
}

/* Chip reassuring */
.rf-mch-reassurance li{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 999px;
	background: #ffffff;
	border: 1px solid var(--rf-rose-border);
	color: var(--rf-muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 8px 22px rgba(45,31,36,.05);
	transition: transform .12s ease, border-color .18s ease, background-color .18s ease;
}
.rf-mch-reassurance li:hover{
	transform: translateY(-1px);
	border-color: rgba(161,75,104,.35);
	background: var(--rf-rose-soft);
}

/* Icône minimaliste rose (SVG en background-image, pas de mask) */
.rf-mch-reassurance li::before{
	content: "";
	width: 16px;
	height: 16px;
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	flex: 0 0 16px;
}

/* 1) Livraison discrète : œil */
.rf-mch-reassurance li:nth-child(1)::before{
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a14b68' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7S2 12 2 12z'/%3E%3Ccircle cx='12' cy='12' r='2.5'/%3E%3C/svg%3E");
}

/* 2) Paiement sécurisé : cadenas */
.rf-mch-reassurance li:nth-child(2)::before{
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a14b68' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='11' width='14' height='10' rx='2'/%3E%3Cpath d='M8 11V8a4 4 0 0 1 8 0v3'/%3E%3C/svg%3E");
}

/* 3) Boutique française : cœur (minimal) */
.rf-mch-reassurance li:nth-child(3)::before{
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a14b68' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.8 4.6c-1.6-1.7-4.2-1.7-5.8 0L12 7.6 9 4.6c-1.6-1.7-4.2-1.7-5.8 0-1.7 1.8-1.7 4.7 0 6.5L12 21l8.8-9.9c1.7-1.8 1.7-4.7 0-6.5z'/%3E%3C/svg%3E");
}

/* ============================
Mobile
============================ */
@media (max-width: 768px){
	.rf-mini-checkout-header-inner{
		padding: 10px 12px;
		grid-template-columns: 1fr auto;
		grid-template-areas: "back logo" "reassurance reassurance";
		gap: 10px;
	}
	.rf-mch-left{ grid-area: back; }
	.rf-mch-center{ grid-area: logo; justify-self: end; }
	.rf-mch-right{ grid-area: reassurance; justify-self: start; }
	.rf-mch-logo img{ height: 28px; max-width: 180px; }
	.rf-mch-back{ padding: 9px 12px; font-size: 13px; }
	.rf-mch-reassurance{
		width: 100%;
		gap: 8px;
		white-space: normal;
	}
	.rf-mch-reassurance li{ font-size: 8px; padding: 7px 10px; }
	.rf-mch-reassurance{top:0;}
}
@media (max-width: 420px){
	.rf-mini-checkout-header-inner{
		grid-template-columns: 1fr;
		grid-template-areas: "back" "logo" "reassurance";
	}
	.rf-mch-center{ justify-self: center; }
	.rf-mch-left{ justify-self: start; }
}
