@charset "UTF-8";
/**
 * Socle Frenchie : reset, trame, en-tête, pied de page, navigation basse
 * mobile, boutons. Fidèle aux maquettes Header.dc / Footer.dc.
 */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--ff-bg); overflow-x: clip; }
body {
	font-family: var(--ff-sans);
	color: var(--ff-ink);
	-webkit-font-smoothing: antialiased;
}
body::before {
	content: '';
	position: fixed; inset: -10%; z-index: -1; pointer-events: none;
	background:
		radial-gradient(46% 36% at 10% 6%, rgba(224,147,190,.42), rgba(224,147,190,0) 70%),
		radial-gradient(40% 32% at 90% 18%, rgba(168,183,158,.26), rgba(168,183,158,0) 72%),
		radial-gradient(52% 42% at 78% 72%, rgba(233,170,204,.38), rgba(233,170,204,0) 70%),
		radial-gradient(40% 32% at 16% 84%, rgba(255,255,255,.65), rgba(255,255,255,0) 72%),
		linear-gradient(180deg, #FDF4F8, #FBEFF5 45%, #F9DCE9);
}
a { color: var(--ff-plum); text-decoration: none; }
a:hover { color: var(--ff-plum-deep); }
img { max-width: 100%; height: auto; }
input, select, textarea, button { font-family: var(--ff-sans); }
::selection { background: rgba(224,147,190,.35); }

.ff-wrap { max-width: var(--measure); margin: 0 auto; }
.ff-section { position: relative; padding: 50px var(--gut); }
.ff-entry__content { max-width: var(--measure); margin: 0 auto; padding: 34px var(--gut) 60px; }

.ff__kick, .ffc__kick {
	margin: 0 0 12px;
	font: var(--ff-kick);
	letter-spacing: var(--ff-track);
	text-transform: uppercase;
	color: var(--ff-plum);
}
.ff-h2 { margin: 12px 0 0; font: 500 clamp(27px, 3.1vw, 40px)/1.12 var(--ff-serif); color: var(--ff-ink); }
.ff-num { font: italic 500 15px var(--ff-serif); color: var(--ff-pink-mid); }
.ff-note { font: 600 19px var(--ff-script); color: var(--ff-sage-deep); white-space: nowrap; }
.ff-sechead { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 12px 24px; }
.ff-sechead__kick { display: flex; align-items: baseline; gap: 11px; }

/* ------------------------------------------------------------- Boutons */

.ff-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	border: none; border-radius: var(--ff-r-pill); cursor: pointer;
	padding: 16px 32px; background: var(--ff-pink); color: var(--ff-ink-deep);
	font: 700 12.5px var(--ff-sans); letter-spacing: .14em; text-transform: uppercase;
	white-space: nowrap; box-shadow: 0 10px 26px rgba(224,147,190,.4);
	transition: all .3s; text-decoration: none;
}
.ff-btn:hover { background: var(--ff-pink-soft); color: var(--ff-ink-deep); transform: translateY(-2px); }
.ff-btn--dark:hover { background: var(--ff-ink); color: var(--ff-surface); }
.ff-btn--block { display: flex; width: 100%; }
.ff-btn--ghost {
	background: none; box-shadow: none;
	border: 1px solid var(--ff-line-strong); color: var(--ff-plum);
}
.ff-btn--ghost:hover { background: var(--ff-veil); transform: none; }

/* -------------------------------------------------------------- Header */

.ff-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 60;
	background: rgba(255,255,255,.94);
	backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--ff-line);
}
.ff-header__bar {
	position: relative; max-width: 1480px; margin: 0 auto;
	display: flex; align-items: center; justify-content: space-between;
	gap: 14px; padding: 0 4vw; height: 64px;
}
.ff-header__spacer { height: 64px; flex: none; }

@keyframes lgSweep { 0% { background-position: -60% 0; } 100% { background-position: 160% 0; } }
@keyframes lgGlow { 0%, 100% { opacity: .3; transform: translate(-50%,-50%) scale(.9); } 50% { opacity: .7; transform: translate(-50%,-50%) scale(1.08); } }

.ff-logo { position: relative; display: flex; flex-direction: column; align-items: center; line-height: 1; white-space: nowrap; padding: 2px 6px; }
.ff-logo__glow {
	position: absolute; left: 50%; top: 50%; width: 124px; height: 46px; border-radius: 50%;
	background: radial-gradient(50% 50% at 50% 50%, rgba(224,147,190,.3), rgba(224,147,190,0) 72%);
	filter: blur(10px); animation: lgGlow 6s ease-in-out infinite; pointer-events: none;
}
.ff-logo__mark {
	position: relative; font: 600 19px var(--ff-serif); letter-spacing: .16em;
	background: linear-gradient(100deg, #1A1418 0%, #1A1418 45%, #C9679F 49.5%, #E9AACC 51%, #C9679F 52.5%, #1A1418 57%, #1A1418 100%);
	background-size: 300% 100%; background-position: -60% 0;
	-webkit-background-clip: text; background-clip: text; color: transparent;
	animation: lgSweep 4.5s cubic-bezier(.5,0,.4,1) infinite;
}
.ff-logo:hover .ff-logo__mark { animation-duration: 2.4s; }
.ff-logo__sig { position: relative; font: italic 500 15px var(--ff-serif); color: var(--ff-pink); margin-top: 3px; transition: color .3s, transform .45s var(--ff-ease); }
.ff-logo:hover .ff-logo__sig { color: var(--ff-plum); transform: translateY(-1px); }

.ff-nav { display: flex; align-items: center; gap: 34px; margin: 0; }
.ff-nav a {
	position: relative; font: 600 12px var(--ff-sans); letter-spacing: .16em;
	text-transform: uppercase; color: #1A1418; padding: 9px 1px;
}
.ff-nav a::after {
	content: ""; position: absolute; left: 50%; right: 50%; bottom: 0; height: 2px; border-radius: 2px;
	background: #1A1418; transition: left .32s var(--ff-ease), right .32s var(--ff-ease);
}
.ff-nav a:hover::after { left: 0; right: 0; }
.ff-nav a[aria-current="page"] { font-weight: 700; }
.ff-nav a[aria-current="page"]::after { left: 0; right: 0; background: var(--ff-pink); height: 2.5px; }

.ff-lang { display: flex; gap: 2px; background: rgba(26,20,24,.06); border-radius: var(--ff-r-pill); padding: 3px; }
.ff-lang a {
	display: flex; align-items: center; gap: 5px; border-radius: var(--ff-r-pill);
	padding: 6px 9px; font: 600 11px var(--ff-sans); letter-spacing: .06em;
	color: #1A1418; opacity: .5; transition: opacity .25s, background .25s, box-shadow .25s;
}
.ff-lang a.is-on { font-weight: 800; background: #fff; opacity: 1; box-shadow: 0 2px 6px rgba(26,20,24,.16); }
.ff-lang svg { border-radius: 2px; flex: none; }

.ff-hicon {
	position: relative; display: flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border: none; border-radius: 50%;
	background: rgba(26,20,24,.07); cursor: pointer; color: #1A1418; transition: background .25s;
}
.ff-hicon:hover { background: rgba(26,20,24,.14); color: #1A1418; }
.ff-hicon__count {
	position: absolute; top: -3px; right: -3px; min-width: 17px; height: 17px;
	border-radius: var(--ff-r-pill); background: var(--ff-pink); color: #fff;
	font: 700 10px/17px var(--ff-sans); text-align: center; padding: 0 3px;
}
.ff-hicon__dot {
	position: absolute; right: 1px; bottom: 1px; width: 9px; height: 9px; border-radius: 50%;
	background: var(--ff-sage); box-shadow: 0 0 0 2px #fff;
}
.ff-header__right { display: flex; align-items: center; gap: 14px; flex: none; }

.ff-burger { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; border: none; background: none; cursor: pointer; color: #1A1418; }

.ff-mmenu { display: none; flex-direction: column; gap: 2px; padding: 10px 4vw 16px; background: #fff; border-top: 1px solid rgba(224,147,190,.25); }
.ff-mmenu.is-open { display: flex; }
.ff-mmenu a { font: 600 14px var(--ff-sans); color: #1A1418; padding: 10px 0; }
.ff-mmenu a[aria-current="page"] { font-weight: 800; }
.ff-mmenu__langrow { margin-top: 8px; padding-top: 12px; border-top: 1px solid rgba(224,147,190,.25); }

@media (max-width: 900px) {
	.ff-nav { display: none; }
	.ff-burger { display: flex; }
}
@media (max-width: 640px) {
	.ff-header .ff-lang { display: none; }
	.ff-logo { padding: 2px 0; }
	.ff-logo__mark { font-size: 17px; }
	.ff-logo__sig { font-size: 13.5px; }
}

/* --------------------------------------------- Navigation basse mobile */

.ff-bnav {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
	display: none; align-items: stretch; justify-content: space-around;
	background: var(--ff-white-90); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
	border-top: 1px solid var(--ff-line);
	padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
}
.ff-bnav a {
	flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 3px;
	padding: 5px 2px; font: 600 9px var(--ff-sans); letter-spacing: .07em;
	text-transform: uppercase; color: var(--ff-ink-55);
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ff-bnav a.is-on { color: var(--ff-plum); }
.ff-bnav a.is-on::after { content: ''; width: 22px; height: 2.5px; border-radius: 2px; background: var(--ff-pink); }
.ff-bnav svg { width: 20px; height: 20px; }

@media (max-width: 768px) {
	.ff-bnav { display: flex; }
	body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
}

/* -------------------------------------------------------------- Footer */

.ff-footer {
	position: relative; overflow: hidden;
	background: linear-gradient(180deg, #E9AACC, #E093BE 45%, #D07FAE);
	padding: 56px calc(20px + clamp(26px, 3.2vw, 44px)) 26px;
}
.ff-footer::before {
	content: ''; position: absolute; inset: 0; pointer-events: none;
	background: radial-gradient(70% 80% at 86% 0%, rgba(255,253,251,.5), rgba(255,253,251,0) 72%);
}
.ff-footer__grid { position: relative; max-width: 1420px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 44px clamp(32px, 4vw, 72px); }
.ff-footer a { color: rgba(43,34,38,.86); transition: color .25s; }
.ff-footer a:hover { color: #2B2226; }
.ff-footer__brand { flex: 1 1 260px; max-width: 330px; }
.ff-footer__logo { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; white-space: nowrap; }
.ff-footer__logo b { font: 600 22px var(--ff-serif); letter-spacing: .16em; color: #2B2226; }
.ff-footer__logo i { font: italic 500 17px var(--ff-serif); color: var(--ff-surface); margin-top: 4px; }
.ff-footer__about { margin: 18px 0 0; font: 400 13px/1.75 var(--ff-sans); color: rgba(43,34,38,.84); }
.ff-footer__sig { margin-top: 14px; font: 600 20px var(--ff-script); color: var(--ff-surface); }
.ff-footer__soc { display: flex; align-items: center; gap: 10px; margin-top: 22px; }
.ff-footer__soc a {
	display: flex; width: 40px; height: 40px; border-radius: var(--ff-r-pill);
	border: 1px solid rgba(43,34,38,.3); align-items: center; justify-content: center;
	color: #2B2226; background: rgba(255,253,251,.42); transition: all .25s;
}
.ff-footer__soc a:hover { background: #2B2226; border-color: #2B2226; color: var(--ff-pink); }
.ff-footer__cols { flex: 1 1 440px; display: flex; flex-wrap: wrap; gap: 32px clamp(24px, 3vw, 44px); align-content: start; }
.ff-footer__col { flex: 1 1 112px; min-width: 108px; }
.ff-footer__label { font: 700 10px var(--ff-sans); letter-spacing: .28em; text-transform: uppercase; color: #5F2247; }
.ff-footer__links { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.ff-footer__links a { font: 500 13px var(--ff-sans); }
.ff-footer address { font-style: normal; display: flex; flex-direction: column; gap: 9px; margin-top: 16px; font: 500 13px/1.6 var(--ff-sans); color: rgba(43,34,38,.84); }
.ff-footer__bottom {
	position: relative; max-width: 1420px; margin: 40px auto 0; padding-top: 20px;
	border-top: 1px solid rgba(43,34,38,.22);
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 30px;
}
.ff-footer__legal { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 18px; }
.ff-footer__copy { font: 600 11.5px var(--ff-sans); color: #2B2226; }
.ff-footer__siret { font: 500 11.5px var(--ff-sans); color: rgba(43,34,38,.86); }
.ff-footer__pay { display: flex; align-items: center; gap: 8px; }
.ff-footer__paylbl { font: 700 10px var(--ff-sans); letter-spacing: .2em; text-transform: uppercase; color: #2B2226; margin-right: 2px; }

/* ------------------------------------------------------ Notices Woo */

.woocommerce-message, .woocommerce-info, .woocommerce-error {
	display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
	margin: 0 0 22px; padding: 15px 20px; border: none; border-radius: 16px;
	background: var(--ff-veil); font: 500 13px/1.6 var(--ff-sans); color: var(--ff-ink);
	list-style: none;
}
.woocommerce-message { background: rgba(168,183,158,.18); }
.woocommerce-error { background: rgba(165,72,76,.1); }
.woocommerce-message::before, .woocommerce-info::before, .woocommerce-error::before { display: none; }
.woocommerce-message a.button, .woocommerce-info a.button, .woocommerce-error a.button {
	order: 2; margin-left: auto; padding: 9px 16px; border-radius: var(--ff-r-pill);
	background: var(--ff-pink); color: var(--ff-ink-deep);
	font: 800 10px var(--ff-sans); letter-spacing: .12em; text-transform: uppercase;
}

/* Le thème signale l'ajout par le message flottant du bas et le compteur du
   panier. Le lien « Voir le panier » que WooCommerce glisse sous le bouton
   fait double emploi : il reste masqué sur toutes les pages. */
.added_to_cart { display: none !important; }

/* Notice « ajouté au panier » flottante façon toast. */
.ff-toast {
	position: fixed; left: 50%; bottom: 26px; z-index: 120; transform: translateX(-50%);
	display: flex; align-items: center; gap: 10px; padding: 14px 24px;
	border-radius: var(--ff-r-pill); background: var(--ff-ink); color: #fff;
	font: 600 12.5px var(--ff-sans); box-shadow: 0 18px 44px rgba(51,39,46,.35);
}
.ff-toast i { color: var(--ff-pink); font-style: normal; }

/* ---- FAQ / accordéons (partagés accueil + fiche produit) ---- */
.ffh-faq__row { display: flex; flex-wrap: wrap; gap: 26px 44px; }
.ffh-faq__side { flex: 1 1 250px; max-width: 320px; }
.ffh-faq__list { flex: 1 1 460px; min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.ffh-faq { border-radius: 14px; background: var(--ff-bg-soft); border: 1px solid transparent; transition: all .3s; }
.ffh-faq.is-open { background: var(--ff-surface); border-color: var(--ff-line); box-shadow: var(--ff-shadow-sm); }
.ffh-faq button {
	width: 100%; display: flex; align-items: center; gap: 16px;
	background: none; border: none; cursor: pointer; padding: 13px 18px; text-align: left;
}
.ffh-faq__num { flex: none; font: italic 500 14px var(--ff-serif); color: var(--ff-pink-mid); }
.ffh-faq__q { flex: 1; min-width: 0; font: 600 14.5px var(--ff-serif); color: var(--ff-ink); }
.ffh-faq__ico {
	flex: none; display: flex; align-items: center; justify-content: center;
	width: 26px; height: 26px; border-radius: 50%; background: var(--ff-veil); color: var(--ff-plum);
	transition: transform .35s var(--ff-ease);
}
.ffh-faq.is-open .ffh-faq__ico { transform: rotate(45deg); }
.ffh-faq__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ff-ease); }
.ffh-faq.is-open .ffh-faq__body { grid-template-rows: 1fr; }
.ffh-faq__body > div { min-height: 0; overflow: hidden; padding: 0 18px 0 60px; font: 400 13px/1.7 var(--ff-sans); color: var(--ff-ink-70); }
.ffh-faq.is-open .ffh-faq__body > div { padding-bottom: 15px; }

@media (max-width: 700px) {
	.ff-section { padding-top: 34px; padding-bottom: 34px; }
}

/* ------- Boutons : le style du thème gagne sur woocommerce-general ------- */
.woocommerce button.button.ff-btn,
.woocommerce a.button.ff-btn,
.woocommerce button.button.ffa-btn,
.woocommerce a.button.ffa-btn,
button.ff-btn, a.ff-btn {
	background: var(--ff-pink);
	color: var(--ff-ink-deep);
	border: none;
	border-radius: var(--ff-r-pill);
	font: 700 12.5px var(--ff-sans);
	letter-spacing: .14em;
	text-transform: uppercase;
	padding: 16px 32px;
	box-shadow: 0 10px 26px rgba(224,147,190,.4);
}
.woocommerce button.button.ff-btn:hover,
.woocommerce a.button.ff-btn:hover,
button.ff-btn:hover, a.ff-btn:hover { background: var(--ff-pink-soft); color: var(--ff-ink-deep); }
.woocommerce button.button.ffa-btn--solid { background: var(--ff-pink); color: var(--ff-ink-deep); }
.woocommerce button.button.ffa-btn--ghost, .woocommerce a.button.ffa-btn--ghost { background: none; border: 1px solid var(--ff-line-strong); color: var(--ff-plum); box-shadow: none; }
.woocommerce .ff-btn--block { display: flex; width: 100%; }

/* Utilitaire accessibilité (fourni normalement par WooCommerce). */
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}
/* Voile de chargement AJAX (blockUI) sans la feuille woo. */
.blockUI.blockOverlay { background: rgba(255,253,251,.7) !important; }

/* Toasts compacts sur mobile : une ligne, au-dessus de la navigation basse. */
@media (max-width: 768px) {
	/* body … : bat les redéfinitions de product.css, chargé après. */
	body .ff-toast, body .ffp-toast {
		left: 12px; right: 12px; transform: none;
		bottom: calc(72px + env(safe-area-inset-bottom, 0px));
		max-width: none; width: auto;
		padding: 10px 14px; gap: 8px;
		font-size: 12px; line-height: 1.35;
		border-radius: 14px;
	}
	body .ff-toast span, body .ffp-toast span {
		overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
		display: block; min-width: 0; flex: 1;
	}
	body .ffp-toast i, body .ff-toast i { width: 18px; height: 18px; font-size: 11px; flex: none; }
	body .ffp-toast a { padding: 7px 11px; font-size: 9px; letter-spacing: .08em; flex: none; }

	/* L'animation d'origine anime « translate(-50%, …) », prévue pour un
	   toast centré. Ici il est ancré aux deux bords : ce -50 % le projetait
	   d'une demi-largeur d'écran vers la gauche avant de claquer en place.
	   On rejoue donc la même entrée, mais sur l'axe vertical uniquement. */
	@keyframes ffp-toastin-mob {
		from { opacity: 0; transform: translateY(14px); }
		to { opacity: 1; transform: translateY(0); }
	}
	/* Uniquement le toast de la fiche produit : celui de la boutique n'a
	   jamais eu d'animation et fonctionne bien, on n'y touche pas. */
	body .ffp-toast { animation: ffp-toastin-mob .35s ease; }
}

/* Le sélecteur de langue du menu mobile reste visible (la règle du header ne
   doit masquer que celui de la barre). */
@media (max-width: 900px) {
	.ff-header .ff-mmenu .ff-lang { display: inline-flex; }
}

/* ---- « Afficher le mot de passe » : œil discret dans le champ ----
   Le span .show-password-input de WooCommerce (non stylé depuis le retrait
   de ses feuilles) devient une icône d'œil cliquable, alignée dans la saisie.
   Quand le mot de passe est visible (.display-password), l'œil se barre. */
.woocommerce form .password-input,
.woocommerce-page form .password-input {
	position: relative; display: block; width: 100%;
}
.woocommerce form .password-input input,
.woocommerce-page form .password-input input { padding-right: 48px !important; width: 100%; }
.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
	position: absolute; top: 50%; right: 8px; transform: translateY(-50%);
	width: 36px; height: 36px; padding: 0; border: none;
	display: flex; align-items: center; justify-content: center;
	background: transparent; cursor: pointer; border-radius: 50%;
	transition: background .2s;
}
.woocommerce form .show-password-input:hover,
.woocommerce-page form .show-password-input:hover { background: rgba(224,147,190,.16); }
.woocommerce form .show-password-input::after,
.woocommerce-page form .show-password-input::after {
	content: ''; width: 20px; height: 20px; display: block;
	background: var(--ff-plum);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-6.5 10-6.5S22 12 22 12s-3.5 6.5-10 6.5S2 12 2 12z'/%3E%3Ccircle cx='12' cy='12' r='2.8'/%3E%3C/svg%3E") center/contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-6.5 10-6.5S22 12 22 12s-3.5 6.5-10 6.5S2 12 2 12z'/%3E%3Ccircle cx='12' cy='12' r='2.8'/%3E%3C/svg%3E") center/contain no-repeat;
}
.woocommerce form .show-password-input.display-password::after,
.woocommerce-page form .show-password-input.display-password::after {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-6.5 10-6.5S22 12 22 12s-3.5 6.5-10 6.5S2 12 2 12z'/%3E%3Ccircle cx='12' cy='12' r='2.8'/%3E%3Cpath d='M4 4l16 16'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-6.5 10-6.5S22 12 22 12s-3.5 6.5-10 6.5S2 12 2 12z'/%3E%3Ccircle cx='12' cy='12' r='2.8'/%3E%3Cpath d='M4 4l16 16'/%3E%3C/svg%3E");
}
/* Cible tactile confortable sur mobile. */
@media (max-width: 700px) {
	.woocommerce form .show-password-input,
	.woocommerce-page form .show-password-input { width: 40px; height: 40px; right: 6px; }
}

/* Menu mobile : le sélecteur de langue reprend EXACTEMENT le style du
   header web (mêmes pilules compactes) — les règles génériques du menu
   (padding/typo des liens) ne doivent pas le déformer. */
.ff-mmenu .ff-lang { align-self: flex-start; width: auto; }
.ff-mmenu .ff-lang a {
	display: flex; align-items: center; gap: 5px;
	border-radius: var(--ff-r-pill);
	padding: 6px 9px;
	font: 600 11px var(--ff-sans); letter-spacing: .06em;
	color: #1A1418; opacity: .5;
}
.ff-mmenu .ff-lang a.is-on {
	font-weight: 800; background: #fff; opacity: 1;
	box-shadow: 0 2px 6px rgba(26,20,24,.16);
}
.ff-mmenu__langrow .ff-lang { display: inline-flex; }

/* ============ Confort tactile (mobile) ============
   Les liens fins du pied de page, du panier et de l'espace client gardent
   leur taille visuelle : seule la zone atteignable au doigt est étendue
   par un pseudo-élément transparent, sans décaler la mise en page. */
@media (max-width: 760px) {
	.ff-footer__links a,
	.ffa-login__links a,
	.ffh-link,
	.ffc-back,
	.woocommerce-remove-coupon,
	.shipping-calculator-button,
	.ffa-back {
		position: relative;
	}
	.ffa-login__links a::after,
	.ffh-link::after,
	.ffc-back::after,
	.woocommerce-remove-coupon::after,
	.shipping-calculator-button::after,
	.ffa-back::after {
		content: "";
		position: absolute;
		inset: -13px -10px;
	}
	/* Pied de page : l'espacement d'origine (10 px) est conservé — la zone
	   est simplement étendue jusqu'au pas de 28 px, sans chevauchement et
	   sans le moindre décalage visuel. */
	.ff-footer__links a::after {
		content: "";
		position: absolute;
		inset: -5px -10px;
	}
}
