/*
Theme Name: Neofonds
Theme URI: https://neofonds.fr
Author: Neofonds
Author URI: https://neofonds.fr
Description: Thème professionnel pour la transaction et l'achat-vente de fonds de commerce en France. Spécialisé Bar Tabac, Restaurant, Hôtel. Service bilingue français-chinois.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: neofonds
Tags: business, e-commerce, portfolio, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, sticky-post, translation-ready
*/

/* ===================================================
   RESET & BASE
=================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #D42B2B;
  --red-deep:   #A81E1E;
  --red-light:  #E85555;
  --red-pale:   #FDEAEA;
  --white:      #FFFFFF;
  --off-white:  #FAF9F7;
  --grey-1:     #F4F2EF;
  --grey-2:     #E8E4DF;
  --grey-3:     #C4BFBA;
  --grey-4:     #8A8480;
  --dark:       #1A1614;
  --text:       #1A1614;
  --text-muted: #6A6460;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-chinese: 'Noto Serif SC', 'Source Han Serif SC', serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;
  --container:  1280px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-chinese);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--red-deep); }
ul { list-style: none; }

/* ===================================================
   TYPOGRAPHY
=================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.12;
}
h1 { font-size: clamp(40px, 5vw, 72px); font-weight: 900; }
h2 { font-size: clamp(28px, 3.5vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 32px); }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
p { margin-bottom: 1rem; }

.entry-content h2 { margin: 2rem 0 1rem; }
.entry-content h3 { margin: 1.5rem 0 0.75rem; }
.entry-content p  { color: var(--text-muted); line-height: 1.85; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1rem; color: var(--text-muted); }
.entry-content a  { border-bottom: 1px solid var(--red); }

/* ===================================================
   LAYOUT
=================================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 56px;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

.site-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.site-content  { flex: 1; }

/* ===================================================
   BUTTONS
=================================================== */
.btn, button, input[type="submit"] {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-primary, input[type="submit"] {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover, input[type="submit"]:hover {
  background: var(--red-deep);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--grey-2);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-white {
  background: var(--white);
  color: var(--red);
}
.btn-white:hover { background: var(--off-white); color: var(--red); }

/* ===================================================
   SECTION LABELS (shared component)
=================================================== */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.45em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.section-title { margin-bottom: 6px; }
.section-title-zh {
  font-family: var(--font-chinese);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 300;
  color: var(--grey-4);
  margin-top: 6px;
  margin-bottom: 0;
}

/* ===================================================
   HEADER / NAVIGATION
=================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  background: var(--white);
  border-bottom: 1px solid var(--grey-2);
  display: flex;
  align-items: center;
}
.site-header .container {
  width: 100%;
  max-width: var(--container);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-branding { display: flex; align-items: baseline; gap: 12px; }
.site-branding a { text-decoration: none; }

.logo-main {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--red) !important;
  text-transform: uppercase;
}
.logo-divider { width: 1px; height: 18px; background: var(--grey-2); }
.logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--grey-4);
  text-transform: uppercase;
}

/* Nav */
.main-navigation { display: flex; align-items: center; gap: 32px; }
/* Nav téléportée dans body sur mobile — reset du parent */
body > .main-navigation { position: fixed; top: 72px; }
.main-navigation ul { display: flex; align-items: center; gap: 32px; }
.main-navigation ul li a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s;
}
.main-navigation ul li a:hover { color: var(--red); }
.main-navigation ul li.menu-cta a {
  background: var(--red);
  color: var(--white);
  padding: 10px 24px;
}
.main-navigation ul li.menu-cta a:hover { background: var(--red-deep); }

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

/* Admin bar offset */
.admin-bar .site-header { top: 32px; }
.admin-bar body { padding-top: calc(72px + 32px); }
body { padding-top: 72px; }

/* ===================================================
   HERO (front-page)
=================================================== */
.hero-section {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-left {
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 56px;
  position: relative;
  overflow: hidden;
}
.hero-left::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--red-pale);
  pointer-events: none;
  z-index: 0;
}
.hero-eyebrow,
.hero-title,
.hero-title-zh,
.hero-desc,
.hero-actions {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease forwards 0.2s;
  opacity: 0;
}
.eyebrow-line { width: 32px; height: 2px; background: var(--red); }
.eyebrow-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--red);
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1.02;
  color: var(--dark);
  margin-bottom: 6px;
  animation: fadeUp 0.7s ease forwards 0.35s;
  opacity: 0;
}
.hero-title em { color: var(--red); font-style: normal; }
.hero-title-zh {
  font-family: var(--font-chinese);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 300;
  color: var(--grey-4);
  margin-bottom: 36px;
  animation: fadeUp 0.7s ease forwards 0.5s;
  opacity: 0;
}
.hero-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 48px;
  animation: fadeUp 0.7s ease forwards 0.65s;
  opacity: 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp 0.7s ease forwards 0.8s;
  opacity: 0;
}

.hero-right {
  background: var(--red);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero-stats-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
  position: relative;
  z-index: 2;
}
.stat-block {
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
}
.stat-block:first-child { border-top: 1px solid rgba(255,255,255,0.12); }
.stat-block:nth-child(1) { animation-delay: 0.7s; }
.stat-block:nth-child(2) { animation-delay: 0.9s; }
.stat-block:nth-child(3) { animation-delay: 1.1s; }
.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-number sup { font-size: 22px; color: rgba(255,255,255,0.6); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-top: 6px;
}
.stat-sublabel { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 3px; }

/* Ticker */
.hero-ticker {
  background: var(--dark);
  padding: 12px 0;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
}
.ticker-item {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  padding: 0 32px;
  flex-shrink: 0;
}
.ticker-dot { color: var(--red); }

/* ===================================================
   SERVICES SECTION
=================================================== */
.services-section {
  padding: 96px 0;
  background: var(--white);
}
.services-header { max-width: 520px; margin-bottom: 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-2);
}
.service-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  transition: background 0.3s;
  cursor: pointer;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { background: var(--off-white); }
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--grey-3);
  margin-bottom: 18px;
}
.service-icon-wrap {
  width: 52px; height: 52px;
  background: var(--red-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.service-card:hover .service-icon-wrap { background: var(--red); }
.service-name-fr {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.service-name-zh {
  font-family: var(--font-chinese);
  font-size: 14px;
  color: var(--red);
  margin-bottom: 16px;
}
.service-desc { font-size: 13px; line-height: 1.85; color: var(--text-muted); }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--red);
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s;
  border-bottom: none;
}
.service-card:hover .service-link { opacity: 1; transform: translateY(0); }

/* ===================================================
   LISTINGS / PROPERTIES ARCHIVE
=================================================== */
.listings-section {
  padding: 96px 0;
  background: var(--grey-1);
}
.listings-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}
.listings-total-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.listings-total-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--grey-4);
  text-transform: uppercase;
  text-align: right;
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  border: 1px solid var(--grey-2);
  background: var(--white);
  width: fit-content;
  margin-bottom: 28px;
}
.filter-tab {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: transparent;
  color: var(--grey-4);
  border: none;
  border-right: 1px solid var(--grey-2);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:last-child { border-right: none; }
.filter-tab.active, .filter-tab[data-active] { background: var(--red); color: var(--white); }
.filter-tab:not(.active):hover { color: var(--red); }

/* Properties grid */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.listing-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.listing-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.listing-img-wrap {
  height: 200px;
  overflow: hidden;
  background: var(--grey-1);
  position: relative;
}
.listing-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.listing-card:hover .listing-img-wrap img { transform: scale(1.04); }
.listing-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: var(--grey-3);
  background: var(--grey-1);
}
.listing-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.listing-dept {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
}
.listing-body { padding: 22px; }
.listing-type {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--grey-4);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.listing-title {
  font-family: var(--font-chinese);
  font-size: 14px;
  color: var(--dark);
  line-height: 1.55;
  margin-bottom: 16px;
  font-weight: 400;
}
.listing-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.metric { background: var(--grey-1); padding: 9px 11px; }
.metric-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--grey-4);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.metric-value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
}
.metric-value small { font-family: var(--font-mono); font-size: 8px; color: var(--grey-4); }
.listing-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0 0;
  border-top: 1px solid var(--grey-2);
}
.price-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--grey-4);
  text-transform: uppercase;
}
.price-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
}
.price-value small { font-family: var(--font-mono); font-size: 9px; color: var(--grey-4); }
.listing-cta {
  display: block;
  width: 100%;
  margin-top: 14px;
  background: transparent;
  border: 1px solid var(--grey-2);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 11px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.listing-cta:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* Pagination */
.pagination, .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 52px;
}
.page-numbers, .nav-links a, .nav-links span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 10px 16px;
  border: 1px solid var(--grey-2);
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
}
.page-numbers.current, .page-numbers:hover, .nav-links a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ===================================================
   SINGLE PROPERTY / LISTING
=================================================== */
.single-listing { padding: 60px 0 96px; }
.listing-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4px;
  margin-bottom: 48px;
  height: 480px;
}
.listing-gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main { grid-row: 1 / 3; }

.listing-content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.listing-main-info {}
.listing-heading { margin-bottom: 32px; }
.listing-heading h1 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 8px;
}
.listing-location {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--grey-4);
  text-transform: uppercase;
}

.listing-full-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 36px;
}
.listing-full-metrics .metric { padding: 16px; }
.listing-full-metrics .metric-value { font-size: 20px; }

.listing-description { margin-bottom: 36px; }
.listing-description h3 {
  font-size: 18px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.listing-description p { color: var(--text-muted); line-height: 1.85; }

/* Sidebar card */
.listing-sidebar {}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--grey-2);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.sidebar-price-header {
  background: var(--red);
  padding: 28px 28px 24px;
}
.sidebar-price-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sidebar-price-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.sidebar-price-note {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  text-transform: uppercase;
}
.sidebar-body { padding: 28px; }
.sidebar-contact-btn {
  display: block;
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px;
  text-align: center;
  border: none;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background 0.25s;
  text-decoration: none;
}
.sidebar-contact-btn:hover { background: var(--red-deep); color: var(--white); }
.sidebar-phone {
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--grey-2);
  text-decoration: none;
}
.sidebar-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-2);
  font-size: 13px;
}
.sidebar-detail-row:last-child { border-bottom: none; }
.sidebar-detail-key {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--grey-4);
  text-transform: uppercase;
}
.sidebar-detail-val { font-weight: 600; color: var(--dark); }

/* ===================================================
   WHY US SECTION
=================================================== */
.why-section {
  padding: 96px 0;
  background: var(--white);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual {}
.why-big-card {
  background: var(--red);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}
.why-big-card::before {
  content: '专';
  position: absolute;
  right: -20px; bottom: -50px;
  font-family: var(--font-chinese);
  font-size: 200px;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  pointer-events: none;
}
.why-big-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.why-big-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-top: 10px;
}
.why-small-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--grey-2);
  margin-top: 1px;
}
.why-small-card { background: var(--grey-1); padding: 26px 22px; }
.why-small-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  color: var(--red);
}
.why-small-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--grey-4);
  text-transform: uppercase;
  margin-top: 4px;
}
.why-points { margin-top: 44px; }
.why-point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--grey-2);
  align-items: start;
}
.why-point:first-child { border-top: 1px solid var(--grey-2); }
.why-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
  opacity: 0.35;
  padding-top: 2px;
}
.why-text strong { font-size: 15px; color: var(--dark); display: block; margin-bottom: 5px; }
.why-text p { font-size: 13px; color: var(--text-muted); line-height: 1.75; margin: 0; }

/* ===================================================
   EVALUATION BANNER
=================================================== */
.eval-section {
  background: var(--red);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.eval-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
}
.eval-section::after {
  content: '免';
  position: absolute;
  right: -30px; top: -70px;
  font-family: var(--font-chinese);
  font-size: 280px;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  line-height: 1;
}
.eval-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.eval-eyebrow {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eval-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0;
}
.eval-title-zh {
  font-family: var(--font-chinese);
  font-size: clamp(15px, 1.8vw, 22px);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
}
.eval-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.eval-phone {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}
.eval-phone:hover { color: var(--white); }

/* ===================================================
   CONTACT SECTION
=================================================== */
.contact-section {
  padding: 96px 0;
  background: var(--grey-1);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border: 1px solid var(--grey-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--grey-4);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-detail-value {
  font-family: var(--font-chinese);
  font-size: 17px;
  color: var(--red);
  font-weight: 600;
}

/* Contact form */
.wpcf7-form label,
.contact-form label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--grey-4);
  text-transform: uppercase;
  display: block;
  margin-bottom: 7px;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--grey-2);
  color: var(--dark);
  font-family: var(--font-chinese);
  font-size: 14px;
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  margin-bottom: 14px;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--red); }
.wpcf7-form textarea, .contact-form textarea { resize: vertical; min-height: 90px; }
.wpcf7-form input[type="submit"] {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 0;
}
.wpcf7-form input[type="submit"]:hover { background: var(--red-deep); }

/* ===================================================
   SIDEBAR (blog, pages)
=================================================== */
.sidebar-widget {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--grey-2);
}
.sidebar-widget:last-child { border-bottom: none; }
.widget-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-left: 12px;
  border-left: 3px solid var(--red);
}

/* ===================================================
   BLOG / ARCHIVE
=================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 52px;
}
.post-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.post-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.post-card-thumb { height: 220px; overflow: hidden; background: var(--grey-1); }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.post-card:hover .post-card-thumb img { transform: scale(1.04); }
.post-card-body { padding: 28px; }
.post-meta {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--grey-4);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.post-card h2 { font-size: 20px; margin-bottom: 12px; }
.post-card h2 a { color: var(--dark); text-decoration: none; transition: color 0.2s; }
.post-card h2 a:hover { color: var(--red); }
.post-card .excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.read-more {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: none;
}
.read-more:hover { color: var(--red-deep); }

/* ===================================================
   PAGE TEMPLATES
=================================================== */
.page-hero {
  background: var(--off-white);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--grey-2);
  margin-bottom: 60px;
}
.page-hero h1 { margin-bottom: 6px; }

.page-content-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  padding-bottom: 96px;
}
.page-content-wrap.no-sidebar { grid-template-columns: 1fr; max-width: 800px; }

/* ===================================================
   FOOTER
=================================================== */
.site-footer {
  background: var(--dark);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 0;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-menu { display: flex; flex-direction: column; gap: 10px; }
.footer-menu li a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-menu li a:hover { color: var(--red); }
.footer-contact-item {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-item a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-contact-item a:hover { color: var(--red); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.2);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--red); }

/* ===================================================
   SCROLL REVEAL
=================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================================================
   ANIMATIONS
=================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1200px) {
  .listing-grid, .listing-full-metrics { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
/* ─── MEDIA QUERIES RESPONSIVE ─── */

@media (max-width: 1024px) {
  /* Layout */
  .hero-section { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-inner, .contact-inner, .listing-content-grid { grid-template-columns: 1fr; }
  .page-content-wrap { grid-template-columns: 1fr; }
  .eval-inner { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  /* --- MENU HAMBURGER --- */
  .main-navigation ul .hide-mobile { display: none; }
  .menu-toggle { display: flex !important; }

  /* Menu mobile : caché par défaut, slide depuis le haut */
  .main-navigation {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--grey-2);
    border-bottom: 2px solid var(--red);
    padding: 0 24px 16px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1002;
    pointer-events: none;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .main-navigation.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-navigation ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .main-navigation ul li {
    border-bottom: 1px solid var(--grey-2);
    width: 100%;
  }
  .main-navigation ul li:last-child { border-bottom: none; }
  .main-navigation ul li a {
    display: block;
    padding: 14px 0;
    font-size: 12px;
  }

  /* Sous-menus mobile */
  .main-navigation ul li.menu-item-has-children {
    flex-wrap: wrap;
    align-items: center;
  }
  .main-navigation ul li.menu-item-has-children > a { flex: 1; }
  .sub-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--grey-4);
    font-size: 14px;
    transition: transform 0.25s, color 0.2s;
    flex-shrink: 0;
  }
  .sub-menu-toggle:hover { color: var(--red); }
  .sub-menu-toggle.is-open { transform: rotate(180deg); color: var(--red); }
  .main-navigation ul li.menu-item-has-children > ul.sub-menu {
    position: static !important;
    display: none;
    width: 100%;
    box-shadow: none;
    border: none;
    border-top: none;
    background: var(--grey-1);
    padding: 0;
    margin: 0;
  }
  .main-navigation ul li.is-open > ul.sub-menu { display: block !important; }
  .main-navigation ul li ul.sub-menu li {
    border-bottom: 1px solid var(--grey-2);
    width: 100%;
  }
  .main-navigation ul li ul.sub-menu li:last-child { border-bottom: none; }
  .main-navigation ul li ul.sub-menu li a {
    padding: 12px 20px;
    font-size: 11px;
    color: var(--text-muted);
  }
}

/* Admin bar offset */
.admin-bar .main-navigation { top: calc(72px + 32px) !important; }

@media (max-width: 768px) {
  body { padding-top: 72px; }
  .listing-grid, .services-grid { grid-template-columns: 1fr; }
  .listing-gallery { grid-template-columns: 1fr; height: auto; }
  .gallery-main { grid-row: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-left { padding: 48px 24px; }

  /* Single listing mobile */
  .single-listing { padding: 32px 0 100px; }
  .listing-content-grid { display: flex !important; flex-direction: column; gap: 32px; }
  .listing-sidebar { width: 100%; }
  .listing-full-metrics { grid-template-columns: repeat(2, 1fr) !important; }
  .listing-heading h1 { font-size: 28px; }

  /* Partage mobile */
  .share-section { flex-wrap: wrap; gap: 8px; padding: 12px 16px; }
  .share-buttons { flex-wrap: wrap; gap: 6px; }
  .share-btn { font-size: 9px; padding: 0 10px; height: 34px; }

  /* Filtres */
  .filter-tabs { flex-wrap: wrap; gap: 6px; }
  .filter-tab { font-size: 10px; padding: 8px 12px; }

  /* Pagination */
  .pagination .page-numbers,
  .pagination a.page-numbers { padding: 8px 10px; font-size: 10px; min-width: 36px; }
}

/* =====================================================
   NEOFONDS v2.0 – NOUVELLES FONCTIONNALITÉS
===================================================== */

/* ─── BARRE DE RECHERCHE ANNONCES ─── */
.listing-search-bar { width: 100%; }
.listing-search-form { width: 100%; }
.search-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--grey-2);
  border-radius: 2px;
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s;
  max-width: 640px;
}
.search-input-wrap:focus-within { border-color: var(--red); }
.search-icon {
  flex-shrink: 0;
  margin: 0 14px;
  color: var(--grey-4);
}
.listing-search-input {
  flex: 1;
  border: none !important;
  outline: none !important;
  padding: 13px 0;
  font-family: var(--font-chinese);
  font-size: 14px;
  color: var(--dark);
  background: transparent;
  box-shadow: none !important;
}
.listing-search-input::placeholder { color: var(--grey-3); }
.search-submit-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 13px 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.search-submit-btn:hover { background: var(--red-deep); }

/* ─── PAGINATION CORRIGÉE ─── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 52px;
  padding-bottom: 24px;
}
.pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination ul li { display: inline-flex; }
.pagination .page-numbers,
.pagination a.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 10px 16px;
  border: 1px solid var(--grey-2);
  color: var(--text-muted);
  text-decoration: none;
  background: var(--white);
  transition: all 0.2s;
  min-width: 42px;
}
.pagination .page-numbers.current {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  font-weight: 600;
}
.pagination a.page-numbers:hover {
  background: var(--red-pale);
  border-color: var(--red);
  color: var(--red);
}
.pagination .page-numbers.dots {
  border: none;
  background: transparent;
  color: var(--grey-4);
  min-width: auto;
  padding: 10px 4px;
}
@media (max-width: 480px) {
  .pagination .page-numbers,
  .pagination a.page-numbers { padding: 8px 12px; font-size: 10px; min-width: 36px; }
}

/* ─── PARTAGE ANNONCE ─── */
.share-section {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 32px;
  padding: 16px 20px;
  background: var(--grey-1);
  border-radius: 2px;
}
.share-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .25em;
  color: var(--grey-4);
  text-transform: uppercase;
  white-space: nowrap;
}
.share-buttons { display: flex; gap: 8px; align-items: center; }
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 36px;
  padding: 0 14px;
  border-radius: 2px;
  border: 1px solid var(--grey-2);
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  white-space: nowrap;
}
.share-btn:hover { border-color: var(--red); color: var(--red); background: var(--red-pale); }
.share-wa:hover  { border-color: #25D366; color: #25D366; background: #e6faf0; }
.share-wechat-share:hover { border-color: #07C160; color: #07C160; background: #e6f9ee; }

/* ─── BOUTONS STICKY MOBILE ─── */
.mobile-sticky-btns {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 9000;
  height: 64px;
  box-sizing: border-box;
  background: var(--white);
  border-top: 1px solid var(--grey-2);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}
.mobile-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 4px;
  height: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-chinese);
  font-size: 11px;
  color: var(--dark);
  text-decoration: none;
  transition: background 0.2s;
  padding: 0 8px;
}
.mobile-btn:hover { background: var(--grey-1); color: var(--dark); }
.mobile-btn-call  { background: var(--red) !important; color: var(--white) !important; }
.mobile-btn-call:hover { background: var(--red-deep) !important; }
.mobile-btn-wechat { border-left: 1px solid var(--grey-2); }
.mobile-btn svg { display: block; }

/* Modale WeChat QR */
.wechat-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9500;
  align-items: center;
  justify-content: center;
}
.wechat-modal.is-open { display: flex; }
.wechat-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,22,20,0.6);
  backdrop-filter: blur(4px);
}
.wechat-modal-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.wechat-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--grey-4);
  padding: 4px 8px;
}
.wechat-qr-img {
  max-width: 220px;
  width: 100%;
  height: auto;
  border: 1px solid var(--grey-2);
  border-radius: 2px;
}

@media (max-width: 768px) {
  /* Afficher les boutons sticky mobile */
  .mobile-sticky-btns { display: flex; }

  /* Espace en bas de page pour ne pas masquer le contenu */
  .single-listing { padding-bottom: 80px; }

  /* Barre de recherche mobile */
  .search-input-wrap { max-width: 100%; }
  .search-submit-btn { padding: 13px 14px; font-size: 9px; }

  /* Partage sur mobile */
  .share-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    margin-left: 0;
    margin-right: 0;
  }
  .share-buttons {
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
    max-width: 100%;
  }
  .share-btn {
    font-size: 9px;
    padding: 0 9px;
    height: 32px;
    flex-shrink: 1;
    min-width: 0;
  }
  .share-btn span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 80px;
  }
}

/* ─── BADGE MIS EN AVANT ─── */
.listing-card.is-featured {
  border: 2px solid var(--red);
  position: relative;
}
.listing-card.is-featured::before {
  content: '⭐ Coup de cœur';
  position: absolute;
  top: 0; left: 0;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 10;
}

/* ─── CORRECTION AFFICHAGE GRID MOBILE ─── */
@media (max-width: 640px) {
  .listing-grid { grid-template-columns: 1fr !important; }
  .filter-tabs { flex-wrap: wrap; gap: 6px; }
  .filter-tab { font-size: 10px; padding: 8px 12px; }
  .listing-content-grid { display: block !important; }
  .listing-sidebar { margin-top: 32px; }
  .listing-full-metrics { grid-template-columns: repeat(2,1fr) !important; }
}


/* ─── SOUS-MENUS DESKTOP ─── */
.main-navigation ul li { position: relative; }
.main-navigation ul li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--grey-2);
  border-top: 2px solid var(--red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 200;
  padding: 8px 0;
}
.main-navigation ul li.is-open > ul.sub-menu { display: block; }
.main-navigation ul li ul.sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-chinese);
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.main-navigation ul li ul.sub-menu li a:hover { background: var(--red-pale); color: var(--red); }
.main-navigation ul li.menu-item-has-children > a::after {
  content: ' ▾';
  font-size: 9px;
  opacity: 0.5;
}
/* Cacher la flèche CSS si le bouton JS est présent */
.main-navigation ul li.menu-item-has-children .sub-menu-toggle ~ a::after,
.main-navigation li.menu-item-has-children:has(.sub-menu-toggle) > a::after { content: ''; }

/* ─── BADGE MIS EN AVANT ─── */
.listing-card.is-featured {
  border: 2px solid var(--red);
  position: relative;
}
.listing-card.is-featured::before {
  content: '⭐ Coup de cœur';
  position: absolute;
  top: 0; left: 0;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 10;
}

/* ─── CORRECTION GRID MOBILE ─── */
@media (max-width: 640px) {
  .listing-grid { grid-template-columns: 1fr !important; }
}
