/* =========================================================================
 * Vandeto Espace Vendeur — MODULE 1 : Fondations
 * Tokens de la charte Vandeto (rouge + or) + typographie de base.
 * Tout est scopé sous body.vdev-on et sur .adt-seller-detail-section
 * (la page auteur AdForest). Aucune restructuration ici : les modules
 * suivants s'appuient sur ces variables. Zéro modification du thème.
 * ========================================================================= */

body.vdev-on {
	/* --- couleurs de marque --- */
	--vdev-brand: #ff1700;
	--vdev-brand-dark: #d31400;

	/* Rouge conforme au contraste, pour TOUT ce qui est du texte.
	   Mesuré : #ff1700 donne 3.91:1 sur blanc et 3.68:1 sur gris clair —
	   suffisant pour un grand titre (seuil 3:1), insuffisant pour du texte
	   courant (seuil 4.5:1). #e31400 monte à 4.81:1 sur blanc et 4.53:1 sur
	   gris clair, et blanc dessus passe aussi : un seul jeton couvre le
	   texte rouge ET les aplats rouges à texte blanc.
	   --vdev-brand reste la couleur de marque pour bordures, icônes,
	   dégradés et grands titres, où le seuil de 3:1 est déjà tenu. */
	--vdev-brand-text: #e31400;
	--vdev-brand-deep: #11151c;

	--vdev-gold: #ffc220;
	--vdev-gold-soft: #fff2cf;
	--vdev-gold-deep: #c9930f;

	/* --- exception fonctionnelle : vert (WhatsApp, vérifié, actif) ---
	   Jamais utilisé comme accent décoratif — uniquement pour ces trois
	   signaux précis, en plus du rouge/or qui restent les seuls accents
	   "de marque". */
	--vdev-success: #10b981;
	--vdev-success-deep: #0a8f68;
	--vdev-success-soft: rgba(16, 185, 129, 0.12);

	--vdev-ink: #11151c;
	--vdev-muted: #6a7075;
	--vdev-line: #e7e9ec;
	--vdev-paper: #f5f6f8;
	--vdev-surface: #ffffff;

	/* --- ombres en couches (remplacent les ombres plates à un seul niveau) --- */
	--vdev-shadow-card: 0 1px 2px rgba(17, 21, 28, 0.04), 0 22px 44px -26px rgba(17, 21, 28, 0.18);
	--vdev-shadow-card-hover: 0 2px 4px rgba(17, 21, 28, 0.05), 0 34px 64px -26px rgba(17, 21, 28, 0.26);
	--vdev-shadow-glow-brand: 0 12px 28px -10px rgba(255, 23, 0, 0.4);
	--vdev-shadow-glow-gold: 0 12px 26px -10px rgba(255, 194, 32, 0.4);
	--vdev-shadow-glow-success: 0 12px 26px -10px rgba(16, 185, 129, 0.35);

	/* --- cover premium (charcoal + halo rouge/or), pour le module 2 --- */
	--vdev-cover:
		radial-gradient(640px 240px at 88% 12%, rgba(255, 194, 32, 0.22), transparent 62%),
		radial-gradient(560px 260px at 6% 90%, rgba(255, 23, 0, 0.32), transparent 60%),
		linear-gradient(118deg, #0b0e13 0%, #1b1f27 52%, #11151c 100%);

	/* --- ambiance de page : halo très diffus, jamais un fond sombre --- */
	--vdev-ambient:
		radial-gradient(1000px 560px at 94% -8%, rgba(255, 23, 0, 0.05), transparent 60%),
		radial-gradient(760px 460px at -8% 68%, rgba(255, 194, 32, 0.07), transparent 60%);

	/* --- courbes d'animation --- */
	--vdev-ease: cubic-bezier(0.4, 0, 0.2, 1);
	--vdev-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
	/* Easing "premium" façon Apple : décélération longue et douce, pour
	   les interactions qu'on veut sentir vivantes (cartes, boutons). */
	--vdev-ease-premium: cubic-bezier(0.16, 1, 0.3, 1);

	/* --- rayons --- */
	--vdev-r-lg: 26px;
	--vdev-r-md: 22px;
	--vdev-r-sm: 16px;
}


/* --------------------------------------------------------------- socle */
/* Canvas de la page vendeur + police de corps Manrope. */
body.vdev-on .adt-seller-detail-section {
	background: var(--vdev-ambient), var(--vdev-paper);
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--vdev-ink);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

/* Hérédité douce de la police sur le contenu (sans forcer les tailles :
   le thème garde sa mise en page tant que les modules suivants ne l'ont
   pas reskinnée). */
body.vdev-on .adt-seller-detail-section p,
body.vdev-on .adt-seller-detail-section span,
body.vdev-on .adt-seller-detail-section small,
body.vdev-on .adt-seller-detail-section a,
body.vdev-on .adt-seller-detail-section li,
body.vdev-on .adt-seller-detail-section input,
body.vdev-on .adt-seller-detail-section textarea,
body.vdev-on .adt-seller-detail-section button {
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Utilitaire display serif (Fraunces) — utilisé par les modules suivants. */
body.vdev-on .vdev-display {
	font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
}

/* Utilitaire d'apparition au scroll — piloté par le socle JS (module 1),
   consommé par les modules suivants. */
body.vdev-on .vdev-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s var(--vdev-ease), transform 0.7s var(--vdev-ease);
	will-change: opacity, transform;
}
body.vdev-on .vdev-reveal.vdev-in {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	body.vdev-on .vdev-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* =========================================================================
 * Compatibilité Yellow Pencil : en contexte éditeur (body.vdev-yp), tout le
 * design est rendu figé — aucune animation, aucune transition, éléments
 * pleinement visibles — pour rester sélectionnable et stylable dans YP.
 * (Le JS neutralise en parallèle les interactions : recherche, tri, partage.)
 * ========================================================================= */
body.vdev-yp .vdev-reveal {
	opacity: 1 !important;
	transform: none !important;
}
body.vdev-yp *,
body.vdev-yp *::before,
body.vdev-yp *::after {
	animation: none !important;
	transition: none !important;
}
/* =========================================================================
 * Vandeto Espace Vendeur — MODULE 2 : cover + carte profil + stats
 * Injecté au-dessus de la section vendeur. S'appuie sur les tokens du
 * module 1. Charte Vandeto (rouge + or). Zéro modification du thème.
 * ========================================================================= */

/* Masquer les blocs dupliqués du thème une fois le module rendu
   (avatar/nom/note + dernière activité + boxes stats). Le reste de la
   sidebar (adresse, téléphone, intro, réseaux, formulaire) est conservé
   pour les modules suivants. */
body.vdev-on.vdev-profile-ready .adt-seller-detail-sidebar .top-meta,
body.vdev-on.vdev-profile-ready .adt-seller-detail-sidebar .last-active,
body.vdev-on.vdev-profile-ready .adt-seller-detail-sidebar .ad-sold-wrapper {
	display: none !important;
}

/* ---------------------------------------------------------------- cover */
body.vdev-on .vdev-cover {
	position: relative;
	overflow: hidden;
	color: #fff;
	background: var(--vdev-cover);
}
body.vdev-on .vdev-cover::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1.4px);
	background-size: 24px 24px;
	-webkit-mask-image: linear-gradient(to bottom, #000, transparent 90%);
	mask-image: linear-gradient(to bottom, #000, transparent 90%);
	pointer-events: none;
}
body.vdev-on .vdev-cover::after {
	content: "";
	position: absolute;
	width: 380px;
	height: 380px;
	right: -100px;
	top: -140px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 194, 32, 0.35), transparent 70%);
	filter: blur(50px);
	pointer-events: none;
	animation: vdev-float 12s var(--vdev-ease-premium) infinite;
}
body.vdev-on .vdev-cover-ring {
	position: absolute;
	border: 1.5px solid rgba(255, 194, 32, 0.4);
	border-radius: 50%;
	animation: vdev-float 9s ease-in-out infinite;
	pointer-events: none;
}
@keyframes vdev-float {
	0%, 100% { transform: translateY(0) rotate(0); }
	50% { transform: translateY(-16px) rotate(8deg); }
}
body.vdev-on .vdev-cover-inner {
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
	padding: 54px 20px 120px;
}
body.vdev-on .vdev-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--vdev-gold);
}
body.vdev-on .vdev-cover-inner h1 {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 600;
	line-height: 1.08;
	max-width: 640px;
	margin: 12px 0 0;
	color: #fff;
}
body.vdev-on .vdev-cover-inner h1 em {
	color: var(--vdev-gold);
	font-style: normal;
	font-weight: 700;
}
body.vdev-on .vdev-cover-inner p {
	margin: 12px 0 0;
	max-width: 560px;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.82);
}

/* --------------------------------------------------------- profile card */
body.vdev-on .vdev-profile-wrap {
	max-width: 1180px;
	margin: -92px auto 0;
	padding: 0 20px;
	position: relative;
	z-index: 10;
}
body.vdev-on .vdev-profile-card {
	background: var(--vdev-surface);
	border: 1px solid var(--vdev-line);
	border-radius: var(--vdev-r-lg);
	box-shadow: var(--vdev-shadow-card);
	padding: 30px;
	transition: box-shadow 0.4s var(--vdev-ease-premium);
}
body.vdev-on .vdev-profile-top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 24px;
}
body.vdev-on .vdev-avatar-box {
	position: relative;
	flex-shrink: 0;
}
body.vdev-on .vdev-avatar-box img {
	width: 112px;
	height: 112px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 0 0 4px #fff, 0 0 0 7px var(--vdev-gold), 0 18px 40px -12px rgba(17, 21, 28, 0.5);
	display: block;
}
body.vdev-on .vdev-avatar-check {
	position: absolute;
	bottom: -2px;
	right: -2px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--vdev-gold);
	display: grid;
	place-items: center;
	color: #231a05;
	border: 4px solid #fff;
	font-size: 14px;
}
body.vdev-on .vdev-pid {
	flex: 1;
	min-width: 220px;
}
body.vdev-on .vdev-name-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}
body.vdev-on .vdev-name {
	font-size: clamp(1.4rem, 3vw, 1.8rem);
	font-weight: 700;
	color: var(--vdev-ink);
}
body.vdev-on .vdev-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	color: var(--vdev-ink);
	background: var(--vdev-gold-soft);
	border-radius: 999px;
	padding: 5px 11px;
}
body.vdev-on .vdev-badge i {
	color: var(--vdev-gold-deep);
}
body.vdev-on .vdev-badge.vdev-badge-type {
	background: rgba(17, 21, 28, 0.05);
	color: var(--vdev-muted);
}
body.vdev-on .vdev-badge.vdev-badge-type i {
	color: var(--vdev-brand-text);
}
/* badge "vérifié" (pas .vdev-badge-type) — exception fonctionnelle verte */
body.vdev-on .vdev-badge:not(.vdev-badge-type) {
	background: var(--vdev-success-soft);
	color: var(--vdev-ink);
}
body.vdev-on .vdev-badge:not(.vdev-badge-type) i {
	color: var(--vdev-success-deep);
}
body.vdev-on .vdev-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	margin-top: 12px;
	font-size: 13.5px;
}
body.vdev-on .vdev-meta .vdev-mi {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--vdev-muted);
	font-weight: 500;
}
body.vdev-on .vdev-meta .vdev-mi i {
	color: var(--vdev-gold);
}
body.vdev-on .vdev-follow-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}
body.vdev-on .vdev-follow-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 34px;
	padding: 0 14px;
	font-family: inherit;
	font-weight: 700;
	font-size: 12.5px;
	border-radius: 999px;
	border: 1.5px solid var(--vdev-brand);
	background: #fff;
	color: var(--vdev-brand-text);
	cursor: pointer;
	transition: background 0.25s var(--vdev-ease-premium), color 0.25s var(--vdev-ease-premium), border-color 0.25s var(--vdev-ease-premium), transform 0.25s var(--vdev-ease-premium), box-shadow 0.25s var(--vdev-ease-premium);
}
body.vdev-on .vdev-follow-btn:hover {
	background: var(--vdev-brand-text);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: var(--vdev-shadow-glow-brand);
}
body.vdev-on .vdev-follow-btn.vdev-following {
	background: var(--vdev-success-soft);
	border-color: transparent;
	color: var(--vdev-success-deep);
}
body.vdev-on .vdev-follow-btn.vdev-following:hover {
	background: var(--vdev-success);
	color: #fff;
	box-shadow: var(--vdev-shadow-glow-success);
}
body.vdev-on .vdev-follow-btn:disabled {
	opacity: 0.6;
	cursor: default;
	transform: none;
}
body.vdev-on .vdev-follow-count {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--vdev-muted);
}
body.vdev-on .vdev-phone-display {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: 10px;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--vdev-ink);
}
body.vdev-on .vdev-phone-display i {
	color: var(--vdev-brand-text);
	font-size: 14px;
}
body.vdev-on .vdev-phone-display a,
body.vdev-on .vdev-phone-display span {
	color: inherit;
	text-decoration: none;
}
body.vdev-on .vdev-phone-display a {
	cursor: pointer;
	transition: color 0.25s var(--vdev-ease-premium);
}
body.vdev-on .vdev-phone-display a:hover {
	color: var(--vdev-brand-text);
}
body.vdev-on .vdev-phone-display.vdev-phone-pending {
	display: none;
}
body.vdev-on .vdev-stars {
	color: var(--vdev-gold);
	letter-spacing: 1px;
}
body.vdev-on .vdev-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
body.vdev-on .vdev-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 48px;
	padding: 0 22px;
	font-family: inherit;
	font-weight: 700;
	font-size: 14px;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	transition: transform 0.3s var(--vdev-ease-premium), background 0.3s var(--vdev-ease-premium), box-shadow 0.3s var(--vdev-ease-premium), border-color 0.3s var(--vdev-ease-premium), color 0.3s var(--vdev-ease-premium);
	text-decoration: none;
}
body.vdev-on .vdev-btn:active {
	transform: translateY(0) scale(0.97);
}
body.vdev-on .vdev-btn-primary {
	background: var(--vdev-brand-text);
	color: #fff;
	box-shadow: var(--vdev-shadow-glow-brand);
}
body.vdev-on .vdev-btn-primary:hover {
	background: var(--vdev-brand-dark);
	transform: translateY(-2px);
	color: #fff;
	box-shadow: 0 18px 36px -10px rgba(255, 23, 0, 0.48);
}
body.vdev-on .vdev-btn-outline {
	background: var(--vdev-surface);
	color: var(--vdev-ink);
	border: 1.5px solid var(--vdev-line);
}
body.vdev-on .vdev-btn-outline:hover {
	border-color: var(--vdev-brand);
	color: var(--vdev-brand-text);
	transform: translateY(-2px);
	box-shadow: var(--vdev-shadow-card);
}

/* -------------------------------------------------------------- stats */
body.vdev-on .vdev-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 26px;
}
body.vdev-on .vdev-stat {
	background: var(--vdev-surface);
	border: 1px solid var(--vdev-line);
	border-radius: 18px;
	padding: 18px;
	text-align: center;
	transition: transform 0.4s var(--vdev-ease-premium), border-color 0.4s var(--vdev-ease-premium), box-shadow 0.4s var(--vdev-ease-premium);
}
body.vdev-on .vdev-stat:hover {
	transform: translateY(-4px);
	border-color: var(--vdev-gold);
	box-shadow: var(--vdev-shadow-card-hover);
}
body.vdev-on .vdev-stat.vdev-stat-live:hover {
	border-color: rgba(16, 185, 129, 0.3);
}
body.vdev-on .vdev-stat-num {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1;
	color: var(--vdev-brand-text);
}
body.vdev-on .vdev-stat-num.vdev-gold {
	color: var(--vdev-gold-deep);
}
body.vdev-on .vdev-stat-num.vdev-sm {
	font-size: 1.3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
body.vdev-on .vdev-stat-num.vdev-sm i {
	color: var(--vdev-gold);
}
/* tuile "dernière activité" : pastille verte vivante (pulse), pas un
   simple texte statique — c'est la seule tuile réellement "temps réel". */
body.vdev-on .vdev-stat-live .vdev-stat-num.vdev-sm i {
	display: none;
}
body.vdev-on .vdev-stat-live .vdev-stat-num.vdev-sm::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--vdev-success);
	box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55);
	animation: vdev-pulse 2.2s var(--vdev-ease-premium) infinite;
}
@keyframes vdev-pulse {
	0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55); }
	70% { box-shadow: 0 0 0 9px rgba(16, 185, 129, 0); }
	100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
body.vdev-on .vdev-stat-lbl {
	font-size: 11.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--vdev-muted);
	margin-top: 6px;
}

@media (max-width: 640px) {
	body.vdev-on .vdev-stats { grid-template-columns: repeat(2, 1fr); }
	body.vdev-on .vdev-profile-card { padding: 22px; }
	body.vdev-on .vdev-profile-top { justify-content: center; text-align: center; }
	body.vdev-on .vdev-pid { text-align: center; }
	body.vdev-on .vdev-name-row,
	body.vdev-on .vdev-meta { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
	body.vdev-on .vdev-cover-ring { animation: none; }
	body.vdev-on .vdev-cover::after { animation: none; }
	body.vdev-on .vdev-stat-live .vdev-stat-num.vdev-sm::before { animation: none; }
}
/* =========================================================================
 * Vandeto Espace Vendeur — MODULE 3 : grille d'annonces + toolbar
 * Reskin des cartes .adt-property-ad-card (layout moderne) + toolbar chips
 * injectée. S'appuie sur les tokens du module 1. Zéro modification du thème.
 * ========================================================================= */

/* --------------------------------------------------------- en-tête section */
body.vdev-on .vdev-grid-head {
	margin: 8px 0 22px;
}
body.vdev-on .vdev-grid-eyebrow {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--vdev-gold-deep);
}
body.vdev-on .vdev-grid-title {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 1.7rem;
	font-weight: 600;
	margin: 4px 0 0;
	position: relative;
	display: inline-block;
	color: var(--vdev-ink);
}
body.vdev-on .vdev-grid-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 52px;
	height: 3px;
	background: var(--vdev-gold);
	border-radius: 2px;
}

/* ------------------------------------------------------------- toolbar */
body.vdev-on .vdev-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 0 0 16px;
}
body.vdev-on .vdev-search {
	position: relative;
	flex: 1;
	min-width: 200px;
}
body.vdev-on .vdev-search > i {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--vdev-muted);
	pointer-events: none;
}
body.vdev-on .vdev-field {
	width: 100%;
	border: 1.5px solid var(--vdev-line);
	background: var(--vdev-surface);
	border-radius: 999px;
	padding: 12px 16px 12px 42px;
	font-size: 14px;
	font-family: inherit;
	color: var(--vdev-ink);
	transition: border-color 0.25s var(--vdev-ease-premium), box-shadow 0.25s var(--vdev-ease-premium), background 0.25s var(--vdev-ease-premium);
}
body.vdev-on .vdev-field:focus {
	outline: none;
	border-color: var(--vdev-brand);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(255, 23, 0, 0.12);
}
body.vdev-on select.vdev-field {
	flex: 0 0 auto;
	width: auto;
	min-width: 170px;
	padding-left: 16px;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236a7075' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 38px;
	-webkit-appearance: none;
	appearance: none;
}

/* --------------------------------------------------------- filtre prix */
body.vdev-on .vdev-price-wrap {
	position: relative;
	flex: 0 0 auto;
}
body.vdev-on .vdev-price-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: auto;
	min-width: 150px;
	padding: 12px 16px;
	cursor: pointer;
	white-space: nowrap;
}
body.vdev-on .vdev-price-btn i {
	color: var(--vdev-muted);
	font-size: 13px;
}
body.vdev-on .vdev-price-btn.vdev-price-active {
	border-color: var(--vdev-brand);
	color: var(--vdev-brand-text);
}
body.vdev-on .vdev-price-btn.vdev-price-active i {
	color: var(--vdev-brand-text);
}
body.vdev-on .vdev-price-panel {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 20;
	width: 260px;
	background: var(--vdev-surface);
	border: 1px solid var(--vdev-line);
	border-radius: var(--vdev-r-sm);
	box-shadow: var(--vdev-shadow-card-hover);
	padding: 16px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.25s var(--vdev-ease-premium), transform 0.25s var(--vdev-ease-premium), visibility 0.25s;
}
body.vdev-on .vdev-price-panel.vdev-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
body.vdev-on .vdev-price-row {
	display: flex;
	align-items: center;
	gap: 8px;
}
body.vdev-on .vdev-price-row .vdev-field {
	padding: 10px 12px;
	border-radius: 12px;
	text-align: center;
}
body.vdev-on .vdev-price-sep {
	color: var(--vdev-muted);
	font-weight: 600;
}
body.vdev-on .vdev-price-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 12px;
}
body.vdev-on .vdev-price-reset {
	background: none;
	border: none;
	color: var(--vdev-muted);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	padding: 6px 4px;
}
body.vdev-on .vdev-price-reset:hover {
	color: var(--vdev-brand-text);
}
body.vdev-on .vdev-price-apply {
	background: var(--vdev-brand-text);
	color: #fff;
	border: none;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	padding: 9px 18px;
	cursor: pointer;
	transition: background 0.2s var(--vdev-ease);
}
body.vdev-on .vdev-price-apply:hover {
	background: var(--vdev-brand-dark);
}
@media (max-width: 600px) {
	body.vdev-on .vdev-price-panel {
		left: auto;
		right: 0;
		width: 240px;
	}
}

/* --------------------------------------------------------------- chips */
body.vdev-on .vdev-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 22px;
}
body.vdev-on .vdev-chip {
	border: 1.5px solid var(--vdev-line);
	background: var(--vdev-surface);
	border-radius: 999px;
	font-weight: 700;
	font-size: 13px;
	color: #4a5157;
	padding: 8px 15px;
	transition: all 0.3s var(--vdev-ease-premium);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: inherit;
}
body.vdev-on .vdev-chip:hover {
	border-color: var(--vdev-brand);
	color: var(--vdev-brand-text);
	transform: translateY(-1px);
}
body.vdev-on .vdev-chip.vdev-chip-on {
	background: var(--vdev-ink);
	border-color: var(--vdev-ink);
	color: #fff;
}
body.vdev-on .vdev-chip .vdev-count {
	background: var(--vdev-gold-soft);
	color: var(--vdev-gold-deep);
	border-radius: 999px;
	padding: 1px 8px;
	font-size: 11px;
}
body.vdev-on .vdev-chip.vdev-chip-on .vdev-count {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

/* ============================ RESKIN DES CARTES ============================ */

/* grille : colonnes configurables (variables posées par l'admin).
   Desktop = --vdev-cols (1-6), mobile = --vdev-cols-m (1-3). */
body.vdev-on .adt-search-ads-grid {
	display: grid;
	grid-template-columns: repeat(var(--vdev-cols, 3), minmax(0, 1fr));
	gap: 20px;
	float: none;
}
body.vdev-on .adt-search-ads-grid.adt-search-ads-grid > .item.item {
	width: auto;
	max-width: none;
	float: none;
	margin: 0;
	padding: 0;
	min-width: 0;
}
@media (max-width: 768px) {
	body.vdev-on .adt-search-ads-grid {
		grid-template-columns: repeat(var(--vdev-cols-m, 1), minmax(0, 1fr));
		gap: 14px;
	}
}

/* carte — pas d'animation au survol (choix Georges) */
body.vdev-on .adt-search-ads-grid .adt-property-ad-card {
	background: var(--vdev-surface);
	border: 1px solid var(--vdev-line);
	border-radius: var(--vdev-r-md);
	overflow: hidden;
}

/* média : ratio fixe + object-fit cover (uniformité, signature Georges) */
body.vdev-on .adt-property-img-box {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 0;
}
body.vdev-on .adt-property-img-box .adt-property-img-carousel,
body.vdev-on .adt-property-img-box .owl-stage-outer,
body.vdev-on .adt-property-img-box .owl-stage,
body.vdev-on .adt-property-img-box .owl-item,
body.vdev-on .adt-property-img-box .owl-item .item,
body.vdev-on .adt-property-img-box .owl-item .item a {
	height: 100%;
}
body.vdev-on .adt-property-img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* Verrou définitif : aucun zoom au survol, y compris si le thème AdForest
   applique son propre effet par défaut sur l'image ou la carte. */
body.vdev-on .adt-property-img-box img,
body.vdev-on .adt-search-ads-grid .adt-property-ad-card:hover .adt-property-img-box img,
body.vdev-on .adt-search-ads-grid .adt-property-ad-card:hover img {
	transform: none !important;
}

/* slider natif injecté (galerie de l'annonce) — 100% scroll-snap, sans
   librairie JS, remplace l'image unique quand l'annonce a plusieurs
   photos. */
body.vdev-on .vdev-img-slider {
	display: flex;
	width: 100%;
	height: 100%;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
body.vdev-on .vdev-img-slider::-webkit-scrollbar { display: none; }
body.vdev-on .vdev-img-slider .vdev-slide {
	flex: 0 0 100%;
	scroll-snap-align: start;
	height: 100%;
	display: block;
}
body.vdev-on .vdev-img-slider .vdev-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* points du slider : signature = 3 max */
body.vdev-on .vdev-slider-dots {
	position: absolute;
	bottom: 8px;
	left: 0;
	right: 0;
	z-index: 2;
	display: flex;
	justify-content: center;
	gap: 5px;
	pointer-events: none;
}
body.vdev-on .vdev-slider-dots .vdev-dot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.55);
	box-shadow: 0 1px 3px rgba(17, 21, 28, 0.35);
	transition: width 0.25s var(--vdev-ease-premium), background 0.25s var(--vdev-ease-premium);
	pointer-events: auto;
	cursor: pointer;
}
body.vdev-on .vdev-slider-dots .vdev-dot.vdev-dot-on {
	width: 16px;
	background: #fff;
}

/* favori */
body.vdev-on .adt-property-img-box .favorite-box {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
}
body.vdev-on .adt-property-img-box .favorite-box .favorite {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	display: grid;
	place-items: center;
	color: #9aa8a1;
	transition: color 0.25s var(--vdev-ease), transform 0.25s var(--vdev-ease);
	box-shadow: 0 4px 12px -4px rgba(17, 21, 28, 0.3);
}
body.vdev-on .adt-property-img-box .favorite-box .favorite:hover,
body.vdev-on .adt-property-img-box .favorite-box .favorite.ad-favourited {
	color: #e11d48;
	transform: scale(1.1);
}
body.vdev-on .adt-property-img-box .favorite-box .favorite i { color: inherit; }

/* badge "EN VEDETTE" injecté (l'image featured-tag du thème est masquée par JS) */
body.vdev-on .adt-property-img-box .featured-tag { display: none !important; }
body.vdev-on .vdev-featured {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 3;
	background: linear-gradient(120deg, #ffe08a, var(--vdev-gold));
	color: #241a04;
	font-weight: 800;
	font-size: 10.5px;
	letter-spacing: 0.06em;
	padding: 6px 10px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 5px;
}

/* tag catégorie injecté (bas-gauche du média) */
body.vdev-on .vdev-cat-tag {
	position: absolute;
	bottom: 12px;
	left: 12px;
	z-index: 3;
	background: rgba(11, 14, 19, 0.78);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	color: #f0f2f5;
	font-size: 11px;
	font-weight: 700;
	padding: 5px 11px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	max-width: calc(100% - 24px);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* auteur redondant (on est déjà sur sa page) -> masqué */
body.vdev-on .adt-property-img-box .author-box { display: none !important; }

/* contenu */
body.vdev-on .adt-property-content-box {
	padding: 16px 16px 6px;
}
body.vdev-on .adt-property-content-box .ctg-tag.used {
	display: inline-block;
	background: rgba(17, 21, 28, 0.05);
	color: var(--vdev-muted);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
	margin-bottom: 8px;
}
body.vdev-on .adt-property-content-box h3 {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.35;
	color: var(--vdev-ink);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 40px;
}
body.vdev-on .adt-property-content-box a:hover h3 { color: var(--vdev-brand-text); }
body.vdev-on .adt-property-content-box .price {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 700;
	font-size: 1.3rem;
	color: var(--vdev-ink);
	display: block;
	margin: 8px 0 0;
}
body.vdev-on .adt-property-content-box .publish-date {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--vdev-muted);
	font-size: 12px;
	font-weight: 500;
	margin-top: 6px;
}
body.vdev-on .adt-property-content-box .publish-date i { color: var(--vdev-gold); }

/* localisation */
body.vdev-on .adt-property-location-box {
	display: flex;
	align-items: center;
	gap: 7px;
	color: var(--vdev-muted);
	font-size: 12.5px;
	margin: 0 16px;
	padding: 12px 0 16px;
	border-top: 1px solid var(--vdev-line);
}
body.vdev-on .adt-property-location-box i { color: var(--vdev-brand-text); }

/* état "aucun résultat" (filtrage) */
body.vdev-on .vdev-no-result {
	display: none;
	text-align: center;
	color: var(--vdev-muted);
	font-weight: 600;
	padding: 40px 20px;
	background: #fff;
	border: 1px dashed var(--vdev-line);
	border-radius: var(--vdev-r-md);
	margin-top: 8px;
}
body.vdev-on .vdev-no-result.vdev-show { display: block; }

/* carte masquée par le filtre */
body.vdev-on .adt-search-ads-grid .item.vdev-hidden { display: none !important; }

@media (prefers-reduced-motion: reduce) {
	body.vdev-on .adt-property-img-box img,
	body.vdev-on .adt-property-ad-card { transition: none; }
}
/* =========================================================================
 * Vandeto Espace Vendeur — MODULES 4 & 5 : sidebar + formulaire
 * Réordonne les colonnes (grille à gauche, sidebar à droite comme la
 * maquette), transforme la sidebar en cartes premium (QR/partage +
 * à propos) et reskin le formulaire de contact. Zéro modification du thème.
 * ========================================================================= */

/* --------------------------------------------- réordonnancement colonnes */
body.vdev-on .adt-seller-detail-section .row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
body.vdev-on .adt-seller-detail-section .row > .col-lg-8 { order: 1; }  /* grille -> gauche */
body.vdev-on .adt-seller-detail-section .row > .col-lg-4 { order: 2; }  /* sidebar -> droite */

@media (min-width: 992px) {
	body.vdev-on .adt-seller-detail-section .row > .col-lg-4 {
		position: sticky;
		top: 20px;
	}
}

/* ------------------------------------------------------- sidebar = stack */
body.vdev-on .adt-seller-detail-sidebar.adt-seller-detail-sidebar {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
	text-align: left;
}
body.vdev-on .adt-seller-detail-sidebar .bottom-meta.vdev-emptied { display: none !important; }

/* carte générique */
body.vdev-on .vdev-side-card {
	background: var(--vdev-surface);
	border: 1px solid var(--vdev-line);
	border-radius: var(--vdev-r-md);
	box-shadow: var(--vdev-shadow-card);
	padding: 22px;
	transition: box-shadow 0.4s var(--vdev-ease-premium), border-color 0.4s var(--vdev-ease-premium);
}
body.vdev-on .vdev-side-card:hover {
	box-shadow: var(--vdev-shadow-card-hover);
	border-color: var(--vdev-gold);
}
body.vdev-on .vdev-side-title {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--vdev-ink);
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 14px;
}
body.vdev-on .vdev-side-title i { color: var(--vdev-gold); }

/* ------------------------------------------------------------ QR card */
body.vdev-on .vdev-qr-card { text-align: center; }
body.vdev-on .vdev-side-eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--vdev-gold-deep);
	margin-bottom: 8px;
}
body.vdev-on .vdev-qr-card .vdev-side-title { justify-content: center; margin-bottom: 16px; }
body.vdev-on .vdev-qr-frame {
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(135deg, var(--vdev-gold), var(--vdev-brand)) border-box;
	border: 2px solid transparent;
	border-radius: 18px;
	display: inline-block;
	padding: 12px;
	line-height: 0;
}
body.vdev-on .vdev-qr-frame img {
	display: block;
	width: 150px;
	height: 150px;
	border-radius: 8px;
}
body.vdev-on .vdev-qr-url {
	font-size: 11px;
	color: var(--vdev-muted);
	margin: 12px 0 16px;
	word-break: break-all;
}
body.vdev-on .vdev-share-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
body.vdev-on .vdev-sbtn {
	flex: 1 1 calc(50% - 5px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	height: 44px;
	border-radius: 999px;
	font-family: inherit;
	font-weight: 700;
	font-size: 12.5px;
	cursor: pointer;
	border: 1.5px solid var(--vdev-line);
	background: var(--vdev-surface);
	color: var(--vdev-ink);
	transition: transform 0.3s var(--vdev-ease-premium), border-color 0.3s var(--vdev-ease-premium), background 0.3s var(--vdev-ease-premium), color 0.3s var(--vdev-ease-premium), box-shadow 0.3s var(--vdev-ease-premium);
}
body.vdev-on .vdev-sbtn:hover { transform: translateY(-2px); border-color: var(--vdev-brand); color: var(--vdev-brand-text); box-shadow: var(--vdev-shadow-card); }
/* WhatsApp : teinte verte visible au repos, pas seulement au survol —
   exception fonctionnelle assumée, code couleur universellement reconnu. */
body.vdev-on .vdev-sbtn.vdev-wa {
	background: var(--vdev-success-soft);
	border-color: transparent;
	color: var(--vdev-success-deep);
}
body.vdev-on .vdev-sbtn.vdev-wa:hover {
	background: var(--vdev-success);
	border-color: transparent;
	color: #fff;
	box-shadow: var(--vdev-shadow-glow-success);
}
body.vdev-on .vdev-sbtn.vdev-copied { background: var(--vdev-gold-soft); border-color: var(--vdev-gold); color: var(--vdev-gold-deep); }

/* ------------------------------------------------------- à propos card */
body.vdev-on .vdev-about-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
body.vdev-on .vdev-about-body ul li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 11px 0;
	border-bottom: 1px dashed var(--vdev-line);
	font-size: 13.5px;
	line-height: 1.45;
	color: var(--vdev-ink);
}
body.vdev-on .vdev-about-body ul li:last-child { border-bottom: none; }
body.vdev-on .vdev-about-body ul li > i {
	color: var(--vdev-gold);
	width: 18px;
	text-align: center;
	margin-top: 2px;
	flex: none;
}
body.vdev-on .vdev-about-body ul li span { color: var(--vdev-muted); font-weight: 600; }
body.vdev-on .vdev-about-body .click-to-view_ph {
	color: var(--vdev-brand-text);
	font-weight: 700;
	cursor: pointer;
}
body.vdev-on .vdev-about-body .phone-number { font-weight: 700; }

/* intro */
body.vdev-on .vdev-about-body h4 {
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--vdev-muted);
	margin: 16px 0 6px;
}
body.vdev-on .vdev-about-body p { font-size: 13.5px; line-height: 1.55; color: var(--vdev-ink); margin: 0; }

/* réseaux sociaux -> pastilles */
body.vdev-on .vdev-about-body .social-icons-outline-dash,
body.vdev-on .vdev-about-card .vdev-about-body [class*="btn-facebook"],
body.vdev-on .vdev-about-card .vdev-about-body [class*="btn-twitter"],
body.vdev-on .vdev-about-card .vdev-about-body [class*="btn-instagram"],
body.vdev-on .vdev-about-card .vdev-about-body [class*="btn-linkedin"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1.5px solid var(--vdev-line);
	color: var(--vdev-ink);
	margin: 4px 6px 0 0;
	transition: transform 0.2s var(--vdev-ease), border-color 0.2s var(--vdev-ease), color 0.2s var(--vdev-ease);
	font-size: 15px;
}
body.vdev-on .vdev-about-body a[class*="btn-"]:hover {
	transform: translateY(-2px);
	border-color: var(--vdev-brand);
	color: var(--vdev-brand-text);
}
body.vdev-on .vdev-about-verified {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 700;
	background: var(--vdev-success-soft);
	border-radius: 12px;
	padding: 9px 12px;
	margin-top: 14px;
	color: var(--vdev-ink);
}
body.vdev-on .vdev-about-verified i { color: var(--vdev-success-deep); }

body.vdev-on .vdev-about-zone {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 600;
	background: var(--vdev-paper);
	border: 1px solid var(--vdev-line);
	border-radius: 12px;
	padding: 9px 12px;
	margin-top: 10px;
	color: var(--vdev-muted);
}
body.vdev-on .vdev-about-zone strong {
	color: var(--vdev-ink);
	font-weight: 800;
}
body.vdev-on .vdev-about-zone i { color: var(--vdev-gold-deep); }

/* --------------------------------------------------- formulaire contact */
body.vdev-on .vdev-contact-body .main-title,
body.vdev-on .vdev-contact-body h4 {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--vdev-ink);
	margin: 0 0 14px;
}
body.vdev-on .vdev-contact-body .form-group { margin-bottom: 12px; }
body.vdev-on .vdev-contact-body .form-control {
	width: 100%;
	border: 1.5px solid var(--vdev-line);
	background: #fbfcfb;
	border-radius: 14px;
	padding: 12px 16px;
	font-size: 14px;
	font-family: inherit;
	color: var(--vdev-ink);
	transition: border-color 0.25s var(--vdev-ease-premium), box-shadow 0.25s var(--vdev-ease-premium), background 0.25s var(--vdev-ease-premium);
}
body.vdev-on .vdev-contact-body textarea.form-control { min-height: 110px; resize: vertical; }
body.vdev-on .vdev-contact-body .form-control:focus {
	outline: none;
	border-color: var(--vdev-brand);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(255, 23, 0, 0.12);
}
body.vdev-on .vdev-contact-body .sellers-button-group { margin-top: 4px; }
body.vdev-on .vdev-contact-body .adt-button-dark {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	background: var(--vdev-ink);
	color: #fff;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.01em;
	border: none;
	border-radius: 999px;
	padding: 15px 16px;
	cursor: pointer;
	transition: transform 0.3s var(--vdev-ease-premium), box-shadow 0.3s var(--vdev-ease-premium), filter 0.3s var(--vdev-ease-premium);
}
body.vdev-on .vdev-contact-body .adt-button-dark:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 32px -12px rgba(17, 21, 28, 0.5);
	filter: brightness(1.1);
}
body.vdev-on .vdev-contact-body .adt-button-dark:active {
	transform: translateY(0) scale(0.98);
}
body.vdev-on .vdev-contact-body .sb-author-policy {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 12.5px;
	color: var(--vdev-muted);
}

/* =========================================================================
 * Vandeto Espace Vendeur — v2 : rendu serveur, zones Elementor, presets
 *
 * Ajouts de la v2 uniquement. Tout ce qui précède est le CSS v1.9.2,
 * inchangé à trois exceptions près : trois blocs de réinitialisation dont
 * les !important ont été remplacés par une spécificité plus haute, pour
 * que les règles écrites dans Yellow Pencil l'emportent naturellement.
 * ========================================================================= */

/* ------------------------------------------------------ blocs sans donnée
   En v2 un bloc dont la donnée n'existe pas reste dans le HTML et porte
   .vdev-is-empty, au lieu d'être supprimé. La structure du DOM est donc la
   même d'une boutique à l'autre : c'est ce qui empêche les règles Yellow
   Pencil de se décaler d'un vendeur au suivant. */
body.vdev-on .vdev-is-empty {
	display: none;
}

/* ------------------------------------------------------- zones Elementor */
body.vdev-on .vdev-zone {
	position: relative;
}
body.vdev-on .vdev-zone:empty {
	display: none;
}
body.vdev-on .vdev-zone-before-grid,
body.vdev-on .vdev-zone-after-grid {
	margin: 24px 0;
}
body.vdev-on .vdev-zone-sidebar-top {
	margin-bottom: 20px;
}
body.vdev-on .vdev-zone-shop-footer {
	margin-top: 32px;
}

/* --------------------------------------------------------------- presets
   Trois mises en page, choisies vendeur par vendeur depuis l'administration.
   Elles ne font que redéfinir des variables déjà existantes : aucun bloc
   n'est déplacé, aucune règle de la v1 n'est réécrite. */

body.vdev-on.vdev-preset-compact {
	--vdev-r-lg: 18px;
	--vdev-r-md: 14px;
}
body.vdev-on.vdev-preset-compact .vdev-cover {
	padding-top: 42px;
	padding-bottom: 42px;
}
body.vdev-on.vdev-preset-compact .vdev-profile-card {
	padding: 20px;
}
body.vdev-on.vdev-preset-compact .vdev-stats {
	gap: 10px;
}
body.vdev-on.vdev-preset-compact .vdev-side-card {
	padding: 18px;
}

body.vdev-on.vdev-preset-editorial .vdev-cover {
	padding-top: 96px;
	padding-bottom: 96px;
}
body.vdev-on.vdev-preset-editorial .vdev-cover .vdev-display {
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	line-height: 1.05;
}
body.vdev-on.vdev-preset-editorial .vdev-cover-inner p {
	max-width: 46ch;
	font-size: 1.05rem;
}
body.vdev-on.vdev-preset-editorial .vdev-grid-title {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
}

/* ------------------------------------------------- éditeurs visuels (v2)
   En contexte Yellow Pencil ou Elementor, la couche d'interaction est
   inerte. On rend donc les états de survol neutres, pour que ce qui est
   sélectionné à l'écran corresponde exactement à ce qui sera publié. */
body.vdev-yp .vdev-price-panel {
	display: none;
}
body.vdev-yp .vdev-chip,
body.vdev-yp .vdev-sbtn,
body.vdev-yp .vdev-btn {
	cursor: default;
}

/* Aperçu d'un widget hors page vendeur, dans l'éditeur Elementor. */
.vdev-widget-placeholder {
	font-family: 'Manrope', system-ui, sans-serif;
	font-size: 13px;
	line-height: 1.5;
}

/* =========================================================================
 * Vandeto Espace Vendeur — v2.2 : accessibilité et confort mobile
 * ========================================================================= */

/* --------------------------------------------- texte réservé aux lecteurs
   Visuellement absent, jamais retiré du flux d'accessibilité. */
body.vdev-on .vdev-sr {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ------------------------------------------------------- focus au clavier
   :focus-visible ne se déclenche qu'à la navigation clavier : la souris ne
   déclenche aucun anneau, le clavier en obtient toujours un. */
body.vdev-on .vdev-btn:focus-visible,
body.vdev-on .vdev-chip:focus-visible,
body.vdev-on .vdev-sbtn:focus-visible,
body.vdev-on .vdev-follow-btn:focus-visible,
body.vdev-on .vdev-dot:focus-visible,
body.vdev-on .vdev-field:focus-visible,
body.vdev-on .vdev-price-btn:focus-visible,
body.vdev-on .vdev-price-apply:focus-visible,
body.vdev-on .vdev-price-reset:focus-visible,
body.vdev-on .vdev-slide:focus-visible {
	outline: 2px solid var(--vdev-brand-text);
	outline-offset: 3px;
	border-radius: 6px;
}
body.vdev-on .vdev-cover a:focus-visible,
body.vdev-on .vdev-sticky-bar a:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

/* ------------------------------------------------------- cibles tactiles
   44 px minimum sous le doigt, sans changer la taille perçue du bouton :
   c'est la zone cliquable qui s'étend, pas le dessin. */
@media (pointer: coarse) {
	body.vdev-on .vdev-chip,
	body.vdev-on .vdev-sbtn,
	body.vdev-on .vdev-follow-btn,
	body.vdev-on .vdev-btn {
		min-height: 44px;
	}
	body.vdev-on .vdev-dot {
		position: relative;
	}
	body.vdev-on .vdev-dot::after {
		content: '';
		position: absolute;
		inset: -14px;
	}
}

/* --------------------------------------------------- points du carrousel
   Ce sont désormais des <button> : on neutralise le style natif. */
body.vdev-on .vdev-dot {
	appearance: none;
	-webkit-appearance: none;
	padding: 0;
	border: 0;
	background: rgba(255, 255, 255, 0.55);
	cursor: pointer;
}

/* --------------------------------------------- puces : défilement natif
   scroll-snap + inertie, aucune librairie, conformément à la règle
   carrousel. Les dégradés de bord signalent qu'il reste des puces. */
@media (max-width: 767px) {
	body.vdev-on .vdev-chips {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		scroll-snap-type: x proximity;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-inline: 2px;
		mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
	}
	body.vdev-on .vdev-chips::-webkit-scrollbar {
		display: none;
	}
	body.vdev-on .vdev-chip {
		flex: 0 0 auto;
		scroll-snap-align: start;
	}
}

/* ------------------------------------ panneau prix : feuille par le bas
   Sur petit écran, le panneau flottant débordait de la fenêtre. Il devient
   une feuille ancrée en bas, atteignable au pouce. */
@media (max-width: 600px) {
	body.vdev-on .vdev-price-panel {
		position: fixed;
		inset: auto 0 0 0;
		width: auto;
		max-width: none;
		border-radius: 18px 18px 0 0;
		padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
		box-shadow: 0 -18px 44px -18px rgba(17, 21, 28, 0.32);
		z-index: 1002;
	}
}

/* ----------------------------------------------- barre de contact mobile
   Rendue masquée côté serveur, révélée par le JS quand la carte profil
   quitte l'écran. Traitement sobre : filet en haut, aucun effet décoratif. */
body.vdev-on .vdev-sticky-bar {
	position: fixed;
	inset: auto 0 0 0;
	z-index: 1001;
	background: var(--vdev-surface);
	border-top: 1px solid var(--vdev-line);
	padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
	transform: translateY(110%);
	transition: transform 0.28s var(--vdev-ease-premium);
	will-change: transform;
}
body.vdev-on .vdev-sticky-bar.vdev-sticky-on {
	transform: translateY(0);
}
body.vdev-on .vdev-sticky-inner {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 720px;
	margin: 0 auto;
}
body.vdev-on .vdev-sticky-id {
	display: flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
	flex: 1 1 auto;
}
body.vdev-on .vdev-sticky-avatar {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	object-fit: cover;
	flex: 0 0 auto;
}
body.vdev-on .vdev-sticky-name {
	font-family: 'Manrope', system-ui, sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: var(--vdev-ink);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
body.vdev-on .vdev-sticky-actions {
	display: flex;
	gap: 8px;
	flex: 0 0 auto;
}
body.vdev-on .vdev-sticky-bar .vdev-btn {
	padding: 10px 16px;
	font-size: 13px;
}

/* Au-delà du mobile, la barre n'a pas lieu d'être : la carte profil et la
   colonne latérale restent visibles. */
@media (min-width: 768px) {
	body.vdev-on .vdev-sticky-bar {
		display: none;
	}
}

/* Le nom disparaît avant les boutons quand la place manque. */
@media (max-width: 380px) {
	body.vdev-on .vdev-sticky-id {
		display: none;
	}
	body.vdev-on .vdev-sticky-actions {
		flex: 1 1 auto;
	}
	body.vdev-on .vdev-sticky-bar .vdev-btn {
		flex: 1 1 0;
		justify-content: center;
	}
}

/* ------------------------------------------------- mouvement réduit (CSS)
   Le JS neutralisait déjà les apparitions au scroll ; on couvre ici tout ce
   qui reste animé en CSS pur. */
@media (prefers-reduced-motion: reduce) {
	body.vdev-on *,
	body.vdev-on *::before,
	body.vdev-on *::after {
		animation-duration: 0.001ms;
		animation-iteration-count: 1;
		transition-duration: 0.001ms;
		scroll-behavior: auto;
	}
	body.vdev-on .vdev-sticky-bar.vdev-sticky-on {
		transform: translateY(0);
	}
}

/* =========================================================================
 * Vandeto Espace Vendeur — v2.4 : filtrage serveur
 * ========================================================================= */

/* Les puces sont devenues des liens : on neutralise le style d'ancre pour
   qu'elles restent visuellement identiques aux boutons de la v2.3. */
body.vdev-on a.vdev-chip,
body.vdev-on a.vdev-chip:hover,
body.vdev-on a.vdev-chip:focus {
	text-decoration: none;
}

/* Grille en cours de remplacement : on garde la hauteur et on atténue,
   plutôt que de faire disparaître le contenu et sauter la page. */
body.vdev-on .adt-search-ads-grid.vdev-loading {
	opacity: 0.45;
	pointer-events: none;
	transition: opacity 0.18s ease;
}

/* Bouton de repli affiché uniquement sans JavaScript. */
body.vdev-on .vdev-submit {
	cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
	body.vdev-on .adt-search-ads-grid.vdev-loading {
		transition-duration: 0.001ms;
	}
}

/* =========================================================================
 * Vandeto Espace Vendeur — v2.5 : page « mes vendeurs suivis »
 * ========================================================================= */

body .vdev-following {
	font-family: 'Manrope', system-ui, sans-serif;
	color: var(--vdev-ink);
}

body .vdev-following-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

body .vdev-following-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	background: var(--vdev-surface);
	border: 1px solid var(--vdev-line);
	border-radius: var(--vdev-r-md);
	transition: opacity 0.2s var(--vdev-ease-premium), transform 0.2s var(--vdev-ease-premium);
}

body .vdev-following-item.vdev-following-out {
	opacity: 0;
	transform: translateX(-10px);
}

body .vdev-following-avatar {
	flex: 0 0 auto;
	display: block;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	overflow: hidden;
}

body .vdev-following-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

body .vdev-following-id {
	flex: 1 1 auto;
	min-width: 0;
}

body .vdev-following-name {
	display: block;
	font-weight: 700;
	font-size: 15px;
	color: var(--vdev-ink);
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

body .vdev-following-name:hover {
	color: var(--vdev-brand-text);
}

body .vdev-following-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 3px;
	font-size: 13px;
	color: var(--vdev-ink-soft);
}

body .vdev-following-empty {
	padding: 22px;
	background: var(--vdev-surface);
	border: 1px dashed var(--vdev-line);
	border-radius: var(--vdev-r-md);
	color: var(--vdev-ink-soft);
	font-size: 14px;
}

body .vdev-following .vdev-unfollow {
	flex: 0 0 auto;
}

/* Sur mobile, le bouton passe sous l'identité plutôt que de comprimer
   le nom du vendeur jusqu'à l'illisible. */
@media (max-width: 520px) {
	body .vdev-following-item {
		flex-wrap: wrap;
	}
	body .vdev-following .vdev-unfollow {
		width: 100%;
		justify-content: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	body .vdev-following-item {
		transition-duration: 0.001ms;
	}
}

/* =========================================================================
 * Vandeto Espace Vendeur — v2.6 : badge d'abonnement
 *
 * Traitement délibérément DIFFÉRENT du badge « Vérifié » : l'un signale un
 * abonnement, l'autre une identité contrôlée. Deux couleurs, deux icônes,
 * aucune confusion possible pour l'acheteur.
 * ========================================================================= */

body.vdev-on .vdev-badge-pro {
	background: rgba(255, 194, 32, 0.14);
	color: #6b4d00;
	border: 1px solid rgba(255, 194, 32, 0.4);
}

body.vdev-on .vdev-badge-pro i {
	color: #8a6400;
}
