
:root {
--cream:        #F6F4F1;
--warm-white:   #FDFCFA;
--ink:          #263340;
--ink-soft:     #4A5D6B;
--ink-muted:    #5C7080;
--accent:       #E07A5F;
--accent-light: #FAE8E2;
--accent-dark:  #C4614A;
--border:       rgba(38,51,64,0.10);
--border-soft:  rgba(38,51,64,0.06);
--green:        #4A7C6F;
--green-light:  #D4EAE4;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'DM Sans', sans-serif;
background: var(--cream);
color: var(--ink);
overflow-x: hidden;
}
.flash {
padding: 12px 24px;
font-family: 'DM Sans', sans-serif;
font-size: 14.5px;
font-weight: 400;
line-height: 1.5;
animation: slideDown 0.3s ease;
}
.flash-success {
background: var(--green-light);
color: var(--green);
border-bottom: 1px solid rgba(45,106,79,0.15);
}
.flash-error {
background: rgba(196,97,74,0.10);
color: var(--accent-dark);
border-bottom: 1px solid rgba(196,97,74,0.2);
}
@keyframes slideDown {
from { opacity:0; transform: translateY(-6px); }
to   { opacity:1; transform: translateY(0); }
}
a, a:visited, a:hover, a:focus, a:active { text-decoration: none !important; }
nav {
position: sticky;
top: 0;
z-index: 10000;
display: flex;
flex-direction: column;
background: var(--warm-white);
border-bottom: 1px solid var(--border);
overflow: visible;
}
nav::before {
content: '';
position: absolute; inset: 0; pointer-events: none;
background: radial-gradient(ellipse at 90% 30%, rgba(224,122,95,0.08) 0%, transparent 60%);
}
.nav-top {
display: flex;
align-items: center;
padding: 0 40px;
height: 62px;
gap: 20px;
position: relative;
z-index: 10;
overflow: visible;
}
.logo {
display: inline-flex;
align-items: center;
flex-shrink: 0;
}
.logo--img img {
width: 150px;
height: auto;
display: block;
}
.nav-search {
flex: 1; max-width: 320px;
display: flex; align-items: center;
background: var(--cream);
border: 1px solid var(--border); border-radius: 100px;
padding: 0 6px 0 18px; height: 38px;
transition: border-color 0.2s, box-shadow 0.2s;
position: relative; z-index: 1;
}
.nav-search:focus-within {
border-color: rgba(224,122,95,0.4);
box-shadow: 0 0 0 3px rgba(224,122,95,0.07);
}
.nav-search input {
flex: 1; font-family: 'DM Sans', sans-serif;
font-size: 14.5px; font-weight: 300; padding-left: 4px;
border: none; outline: none; background: transparent; color: var(--ink);
min-width: 0;
}
.nav-search input::placeholder { color: var(--ink-muted); }
.nav-search button {
display: flex; align-items: center; justify-content: center;
color: #fff; background: var(--accent); border: none;
border-radius: 100px; width: 28px; height: 28px; padding: 0;
cursor: pointer; transition: background 0.2s; flex-shrink: 0;
}
.nav-search button:hover { background: var(--accent-dark); }
.nav-search-sep { width: 1px; height: 18px; background: var(--border); flex-shrink: 0; margin: 0 10px; }
.nav-search-loc-icon { width: 13px !important; height: 13px !important; opacity: 0.3; margin-right: 6px; flex-shrink: 0; }
.nav-search-loc-wrap { position: static; display: flex; align-items: center; }
.nav-search { position: relative; }
.nav-search .city-suggestions { left: auto; right: 0; min-width: 280px; z-index: 99999; }

.nav-search-loc-input { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 300; border: none; outline: none; background: transparent; color: var(--ink); width: 120px; }
.nav-search-loc-input::placeholder { color: var(--ink-muted); }
.nav-right { display: flex; align-items: center; gap: 14px; margin-left: auto; position: relative; z-index: 1; overflow: visible; }
.nav-link {
font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 400;
color: var(--ink-soft); text-decoration: none;
transition: color 0.2s; white-space: nowrap;
}
.nav-link:hover { color: var(--ink); }
.btn-ghost {
font-family: 'DM Sans', sans-serif;
font-size: 13px; font-weight: 500;
color: var(--ink);
background: var(--warm-white);
border: 1.5px solid var(--border);
border-radius: 100px;
padding: 7px 18px;
cursor: pointer;
transition: all 0.2s;
white-space: nowrap;
}
.btn-ghost:hover {
border-color: var(--ink-soft);
background: var(--cream);
}
.btn-ghost:hover { border-color: var(--ink-soft); color: var(--ink); }
.nav-user-wrap {
position: relative;
display: inline-block;
}
.nav-user-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 6px 14px 6px 7px;
background: var(--warm-white);
border: 1.5px solid var(--border);
border-radius: 100px;
cursor: pointer;
font-family: 'DM Sans', sans-serif;
font-size: 13px; font-weight: 500;
color: var(--ink);
transition: all 0.2s;
white-space: nowrap;
}
.nav-user-wrap.open .nav-user-btn {
border-color: var(--ink-soft); background: var(--cream);
}
.nav-user-avatar {
width: 26px; height: 26px; border-radius: 50%;
background: linear-gradient(135deg, var(--accent-light) 0%, #f5cfc4 100%);
display: flex; align-items: center; justify-content: center;
font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700;
color: var(--accent-dark); flex-shrink: 0;
}
.nav-user-chevron { transition: transform 0.2s; opacity: 0.5; }
.nav-user-wrap.open .nav-user-chevron { transform: rotate(180deg); opacity: 1; }
.nav-user-name { font-size: 13px; font-weight: 500; }
.nav-user-dropdown {
display: none;
position: absolute;
z-index: 999999;
width: 260px;
opacity: 0;
visibility: hidden;
transition: opacity 0.15s ease, visibility 0.15s ease;
pointer-events: none;
}
.nav-user-wrap.open .nav-user-chevron { transform: rotate(180deg); opacity: 1; }
.nav-user-dropdown.open {
display: block;
opacity: 1;
visibility: visible;
pointer-events: auto;
}
.nav-user-dropdown-inner {
background: var(--warm-white);
border: 1px solid var(--border-soft);
border-radius: 16px;
box-shadow: 0 12px 40px rgba(38,51,64,0.13);
overflow: hidden;
animation: ddIn 0.15s ease-out;
}
@keyframes ddIn {
from { opacity: 0; transform: translateY(-4px); }
to   { opacity: 1; transform: translateY(0); }
}
.nav-dd-header {
display: flex; align-items: center; gap: 12px; padding: 16px;
text-decoration: none; color: inherit;
transition: background 0.12s; border-radius: 16px 16px 0 0;
}
.nav-dd-header:hover { background: var(--cream); }
.nav-dd-avatar {
width: 38px; height: 38px; border-radius: 50%;
background: linear-gradient(135deg, var(--accent-light) 0%, #f5cfc4 100%);
display: flex; align-items: center; justify-content: center;
font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--accent-dark); flex-shrink: 0;
}
.nav-dd-name { font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-dd-email { font-size: 12px; font-weight: 300; color: var(--ink-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-dd-sep { height: 1px; background: var(--border-soft); margin: 0; }
.nav-dd-group-label { font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-muted); padding: 8px 14px 3px; }
.nav-dd-item {
display: flex; align-items: center; gap: 10px; padding: 10px 16px;
font-size: 13.5px; font-weight: 400; color: var(--ink); transition: background 0.15s; cursor: pointer;
}
.nav-dd-item:hover { background: var(--cream); color: var(--ink); }
.nav-dd-item svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; flex-shrink: 0; opacity: 0.55; }
.nav-dd-item:hover svg { opacity: 1; }
.nav-dd-item--danger { color: #E24B4A; }
.nav-dd-item--danger svg { opacity: 0.7; }
.nav-dd-item--danger:hover { background: #fff0f0; }
.nav-dd-item--admin { color: #7c3aed; font-weight: 500; }
.nav-dd-item--admin svg { opacity: 0.8; }
.nav-dd-item--admin:hover { background: #f5f3ff; }
.nav-dd-badge {
margin-left: auto;
font-size: 11px; font-weight: 600;
background: var(--cream);
color: var(--ink-muted);
border-radius: 100px;
padding: 1px 7px;
min-width: 20px;
text-align: center;
}
.nav-dd-badge--accent {
background: var(--accent-light);
color: var(--accent-dark);
}
.fav-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.fav-page-wrap { display: contents; }
.fav-page-wrap[style*="display: none"] { display: none !important; }
.btn-vendre {
display: flex; align-items: center; gap: 10px;
background: var(--ink); border: none; border-radius: 12px;
padding: 8px 14px 8px 16px; cursor: pointer; transition: all 0.2s, scale 0.15s;
overflow: hidden; position: relative; flex-shrink: 0;
}
.btn-vendre::before {
content: '';
position: absolute; inset: 0; pointer-events: none;
background: radial-gradient(circle at 80% 50%, rgba(224,122,95,0.3) 0%, transparent 65%);
}
.btn-vendre:hover { transform: translateY(-1px); background: #2a2420; scale: 1.04; }
.btn-vendre-label {
display: flex; flex-direction: column; align-items: flex-start;
position: relative; z-index: 1;
}
.btn-vendre-sup {
font-size: 10px; font-weight: 400; letter-spacing: 1.5px;
text-transform: uppercase; color: rgba(255,255,255,0.70);
line-height: 1; margin-bottom: 2px;
}
.btn-vendre-main {
font-family: 'DM Sans', sans-serif;
font-size: 15px; font-weight: 400; color: #fff; line-height: 1;
}
.btn-vendre-main em { font-style: italic; color: #FAE8E2; }
.btn-vendre-icon {
width: 28px; height: 28px; border-radius: 8px;
background: var(--accent);
display: flex; align-items: center; justify-content: center;
flex-shrink: 0; position: relative; z-index: 1; transition: background 0.2s;
}
.btn-vendre:hover .btn-vendre-icon { background: var(--accent-dark); }
.btn-vendre-icon { animation: heroPulse 1.8s ease-in-out infinite; }
.btn-vendre-icon svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 2.5; fill: none; stroke-linecap: round; }
.btn-vendre--light {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}
.btn-vendre--light::before { display: none; }
.btn-vendre--light:hover { background: rgba(255,255,255,0.18); }
.btn-vendre--light .btn-vendre-sup { color: rgba(255,255,255,0.55); }
.btn-vendre--light .btn-vendre-main { color: #fff; font-weight: 500; }
.nav-search-mobile-bar {
display: none;
padding: 0 16px 10px;
}
.nav-search-mobile-bar form {
display: flex; align-items: center;
background: var(--cream); border: 1px solid var(--border); border-radius: 100px;
padding: 0 6px 0 18px; height: 38px;
transition: border-color 0.2s, box-shadow 0.2s;
}
.nav-search-mobile-bar form:focus-within {
border-color: rgba(224,122,95,0.4);
box-shadow: 0 0 0 3px rgba(224,122,95,0.07);
}
.nav-search-mobile-bar input {
flex: 1; font-family: 'DM Sans', sans-serif; font-size: 14.5px; font-weight: 300;
border: none; outline: none; background: transparent; color: var(--ink); min-width: 0;
}
.nav-search-mobile-bar input::placeholder { color: var(--ink-muted); }
.nav-search-mobile-bar button {
display: flex; align-items: center; justify-content: center;
color: #fff; background: var(--accent); border: none;
border-radius: 100px; width: 28px; height: 28px; padding: 0;
cursor: pointer; transition: background 0.2s; flex-shrink: 0;
}
.nav-search-mobile-bar button:hover { background: var(--accent-dark); }

.filters-bar {
display: flex; align-items: center; gap: 8px;
padding: 0 40px 14px;
overflow: visible; scrollbar-width: none;
position: relative; z-index: 20;
}
.filters-bar::-webkit-scrollbar { display: none; }

/* ── Wrapper gradient scroll indicators ───────────────────── */
.filters-bar-wrap { position: relative; }

/* ── Overflow menu desktop ─────────────────────────────────── */
.cat-more-wrap {
position: relative; display: inline-flex; align-items: center; flex-shrink: 0;
}
.cat-more-pill {
display: inline-flex; align-items: center; gap: 5px;
font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 400;
padding: 4px 14px; border-radius: 100px;
border: 1px solid var(--border); background: transparent;
color: var(--ink-soft); cursor: pointer; transition: all 0.18s; white-space: nowrap;
}
.cat-more-pill:hover { border-color: var(--accent); color: var(--accent); }
.cat-more-pill.active { border-color: var(--accent); color: var(--accent); background: var(--accent-light, #fdeee9); }
.cat-more-menu {
display: none; position: absolute; top: calc(100% + 10px); right: 0;
background: var(--warm-white); border: 1px solid var(--border);
border-radius: 14px; box-shadow: 0 8px 32px rgba(38,51,64,0.12);
padding: 6px; min-width: 190px; z-index: 99999;
}
.cat-more-menu.open { display: block; }
.cat-more-menu::before {
content: '';
position: absolute;
top: -10px;
left: 0;
right: 0;
height: 10px;
}
.cat-more-item {
display: flex; align-items: center; gap: 6px;
padding: 8px 12px; border-radius: 8px;
color: var(--ink-soft); text-decoration: none;
font-family: 'DM Sans', sans-serif; font-size: 13px;
transition: background 0.15s, color 0.15s;
}
.cat-more-item:hover { background: var(--cream); color: var(--accent); }
.cat-more-item.active { color: var(--accent); font-weight: 500; }

.filter-label {
font-size: 10.5px; font-weight: 500; letter-spacing: 1.8px;
text-transform: uppercase; color: var(--ink-muted);
margin-right: 4px; white-space: nowrap; flex-shrink: 0;
}
.pill {
font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
padding: 6px 16px; border-radius: 100px;
border: 1px solid var(--border); background: transparent;
color: var(--ink-soft); cursor: pointer; transition: all 0.18s; white-space: nowrap;
text-decoration: none; display: inline-flex; align-items: center;
}
.pill:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.pill.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.hero {
padding: 36px 40px 32px;
text-align: center;
position: relative; overflow: clip;
background-color: var(--warm-white);
background-image:
  repeating-linear-gradient(135deg, rgba(224,122,95,0.07) 0px, rgba(224,122,95,0.07) 1px, transparent 1px, transparent 8px),
  repeating-linear-gradient(45deg,  rgba(224,122,95,0.07) 0px, rgba(224,122,95,0.07) 1px, transparent 1px, transparent 8px),
  repeating-linear-gradient(135deg, rgba(224,122,95,0.07) 4px, rgba(224,122,95,0.07) 5px, transparent 5px, transparent 12px),
  repeating-linear-gradient(45deg,  rgba(224,122,95,0.07) 4px, rgba(224,122,95,0.07) 5px, transparent 5px, transparent 12px);
background-size: 16px 16px;
}
.hero-blob {
position: absolute; border-radius: 50%; pointer-events: none;
width: 500px; height: 300px;
background: radial-gradient(ellipse, #FAE8E2 0%, transparent 68%);
left: 50%; top: -80px; transform: translateX(-50%);
opacity: 0.55;
overflow: hidden;
}
.hero-inner {
position: relative; z-index: 1;
max-width: 680px; margin: 0 auto;
}
.hero-eyebrow {
display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
margin-bottom: 16px;
animation: fadeUp 0.55s ease both;
}
.hero-title {
font-family: 'Playfair Display', serif;
font-size: clamp(28px, 4vw, 46px);
line-height: 1.1; letter-spacing: -1px;
margin-bottom: 24px;
animation: fadeUp 0.55s 0.07s ease both;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-subtitle {
font-size: 17px; font-weight: 300; color: var(--ink-soft);
margin-bottom: 36px; line-height: 1.5;
animation: fadeUp 0.55s 0.11s ease both;
}
.hero-cta {
display: inline-flex; align-items: center; gap: 10px;
background: var(--accent); color: #fff;
font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 500;
padding: 16px 36px; border-radius: 100px;
text-decoration: none; transition: background 0.2s, transform 0.15s, box-shadow 0.2s, scale 0.15s;
box-shadow: 0 4px 24px rgba(224,122,95,0.30);
animation: fadeUp 0.55s 0.2s ease both;
}
.hero-cta:hover { background: var(--accent-dark); transform: translateY(-2px); scale: 1.04; box-shadow: 0 8px 32px rgba(224,122,95,0.38); }
.hero-cta-hero {
padding: 14px 20px; border-radius: 16px; width: fit-content; margin: 0 auto;
animation: fadeUp 0.55s 0.2s ease both;
}
.hero-cta-hero .btn-vendre-sup { font-size: 11px; }
.hero-cta-hero .btn-vendre-main { font-size: 18px; font-weight: 500; }
@keyframes heroPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.hero-divider {
padding: 0 40px;
}
.hero-divider-line {
display: block; height: 1px;
background: linear-gradient(to right, transparent, rgba(224,122,95,0.35) 50%, transparent);
}
.hero-eyebrow-label {
font-size: 11px; font-weight: 500; letter-spacing: 2px;
text-transform: uppercase; color: var(--ink-muted);
margin-bottom: 12px;
}
.hero-rotating-wrap { display: inline; }
.hero-rotating-word { display: none; }
.hero-rotating-word.active { display: inline; }
.hero-typewriter-cursor {
display: inline-block; width: 3px; height: 0.85em;
background: var(--ink); vertical-align: middle;
margin-left: 2px; border-radius: 1px;
animation: cursorBlink 0.75s step-end infinite;
}
@keyframes cursorBlink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
.hero-or {
display: flex; align-items: center; gap: 12px;
margin: 20px auto; max-width: 280px;
}
.hero-or-line { flex: 1; height: 1px; background: rgba(224,122,95,0.25); }
.hero-or-text { font-size: 12px; font-weight: 400; color: rgba(224,122,95,0.25); letter-spacing: 1px; text-transform: uppercase; }
.hero-buyer-link {
display: inline-flex; align-items: center; gap: 10px;
padding: 10px 18px;
border: 1.5px solid var(--border); border-radius: 100px;
background: #fff; transition: border-color 0.2s, background 0.2s, scale 0.2s;
animation: fadeUp 0.55s 0.32s ease both;
}
.hero-buyer-link:hover { border-color: var(--accent); background: var(--accent); scale: 1.04; }
.hero-buyer-link:hover .hero-buyer-link-label { color: rgba(255,255,255,0.75); }
.hero-buyer-link:hover .hero-buyer-link-cta { color: #fff; }
.hero-buyer-link-label { font-size: 13px; font-weight: 300; color: var(--ink-muted); transition: color 0.2s; }
.hero-buyer-link-cta { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 500; color: var(--accent); transition: color 0.2s; }
.hero-buyer-link-cta svg { transition: transform 0.2s; }
.hero-buyer-link:hover .hero-buyer-link-cta svg { transform: translateX(3px); }
.hero-pill {
display: inline-flex; align-items: center;
font-size: 11.5px; font-weight: 500; letter-spacing: 0.03em;
background: rgba(224,122,95,0.1); color: var(--accent);
border: 1px solid rgba(224,122,95,0.2);
border-radius: 100px; padding: 3px 10px;
margin-right: 6px; margin-bottom: 4px;
}
.hero-search {
display: flex; align-items: center;
background: var(--warm-white);
border: 1.5px solid var(--border); border-radius: 100px;
padding: 6px 6px 6px 22px; height: 56px;
box-shadow: 0 4px 32px rgba(38,51,64,0.06);
transition: border-color 0.2s, box-shadow 0.2s;
animation: fadeUp 0.55s 0.14s ease both;
overflow: visible;
position: relative;
z-index: 10;
}
.hero-search:focus-within {
border-color: rgba(224,122,95,0.45);
box-shadow: 0 4px 32px rgba(224,122,95,0.12);
}
.hero-search svg { width: 17px; height: 17px; opacity: 0.25; margin-right: 12px; flex-shrink: 0; }
.hero-search input {
flex: 1; font-family: 'DM Sans', sans-serif;
font-size: 16px; font-weight: 300;
border: none; outline: none; background: transparent; color: var(--ink);
min-width: 0;
}
.hero-search input::placeholder { color: var(--ink-muted); }
.hero-search button {
font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
color: #fff; background: var(--accent); border: none;
border-radius: 100px; padding: 0 30px; height: 44px;
cursor: pointer; transition: background 0.2s; white-space: nowrap; flex-shrink: 0;
}
.hero-search button:hover { background: var(--accent-dark); }
@keyframes fadeUp {
from { opacity: 0; transform: translateY(14px); }
to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeOverlay {
from { opacity: 0; }
to   { opacity: 1; }
}
.home-content {
max-width: 1280px;
margin: 0 auto;
padding: 24px 40px 64px;
}
.home-section {
margin-bottom: 0;
}
/* Toutes les sections sauf la première ont un séparateur */
.home-section + .home-section,
.home-section--cat,
.home-section--tendance {
padding-top: 40px;
border-top: 1px solid var(--border-soft);
margin-top: 40px;
}
/* La première section (tendance ou dernières annonces) n'a pas de séparateur */
.home-content > .home-section:first-child,
.home-content > .home-section--tendance:first-child {
padding-top: 0;
border-top: none;
margin-top: 0;
}
.home-section-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
margin-bottom: 24px;
}
.home-section-title {
font-family: 'DM Sans', sans-serif;
font-size: 22px; font-weight: 400; letter-spacing: -0.3px;
color: var(--ink); margin: 0; line-height: 1.2;
}
.btn-voir-tout {
display: inline-flex; align-items: center; gap: 7px;
font-family: 'DM Sans', sans-serif;
font-size: 13px; font-weight: 500; color: var(--ink);
background: var(--warm-white); border: 1.5px solid var(--border);
border-radius: 20px; padding: 8px 16px;
text-decoration: none; white-space: nowrap; flex-shrink: 0;
transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.btn-voir-tout svg { width: 13px; height: 13px; stroke: currentColor; flex-shrink: 0; }
.btn-voir-tout:hover {
border-color: var(--accent); color: var(--accent);
background: var(--accent-light);
}
.cards-grid--4 {
grid-template-columns: repeat(4, 1fr);
}
.annonces-wrap { padding: 0; }
.annonces-wrap--cat { padding: 0; border-top: none; margin-top: 0; }
.annonces-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.annonces-title { font-family: 'DM Sans', sans-serif; font-size: 22px; font-weight: 400; color: var(--ink); margin: 0; }
.annonces-count { font-size: 13px; color: var(--ink-muted); font-weight: 300; }
.cards-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
gap: 16px;
}
.card {
display: flex;
flex-direction: column;
text-decoration: none;
color: inherit;
background: var(--warm-white);
border-radius: 16px;
border: 1px solid var(--border-soft);
overflow: hidden;
cursor: pointer;
transition: transform 0.22s ease, box-shadow 0.22s ease;
animation: fadeUp 0.5s ease both;
height: 100%;
}
.card:nth-child(1){animation-delay:.04s}
.card:nth-child(2){animation-delay:.08s}
.card:nth-child(3){animation-delay:.12s}
.card:nth-child(4){animation-delay:.16s}
.card:nth-child(5){animation-delay:.20s}
.card:nth-child(6){animation-delay:.24s}
.card:hover {
transform: translateY(-3px);
box-shadow: 0 12px 32px rgba(38,51,64,0.10);
}
.card-img {
position: relative;
width: 100%;
aspect-ratio: 4 / 3;
overflow: hidden;
flex-shrink: 0;
}
.card-img img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.card-cat-badge {
position: absolute;
top: 10px;
left: 10px;
background: rgba(38, 51, 64, 0.78);
color: #fff;
font-size: 9.5px;
font-weight: 500;
letter-spacing: 0.7px;
text-transform: uppercase;
padding: 3px 9px;
border-radius: 100px;
text-decoration: none;
z-index: 2;
white-space: nowrap;
transition: background 0.15s;
}
.card-cat-badge:hover {
background: rgba(38, 51, 64, 0.92);
}
.badge {
position: absolute;
top: 10px;
left: 10px;
font-size: 9px;
font-weight: 600;
letter-spacing: 0.8px;
text-transform: uppercase;
padding: 3px 8px;
border-radius: 100px;
z-index: 3;
}
.badge + .card-cat-badge,
.badge + .card-offres-count--img + .card-cat-badge {
top: 32px;
}
.card-fav {
position: absolute;
top: 8px;
right: 8px;
width: 30px;
height: 30px;
border-radius: 50%;
background: rgba(255,255,255,0.85);
backdrop-filter: blur(4px);
border: none;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 2;
transition: background 0.15s;
padding: 0;
}
.card-fav:hover { background: #fff; }
.card-fav svg { width: 14px; height: 14px; stroke: var(--ink-soft); transition: fill 0.2s, stroke 0.2s; }
.card-fav.faved { background: #fff; }
.card-fav.faved svg { stroke: var(--accent); fill: var(--accent); }
/* Masquer le cœur sur les propres annonces du vendeur */
.own-card .card-fav { display: none; }
.card-fav:hover svg { transform: scale(1.1); }
.card-body {
padding: 12px 14px 14px;
display: flex;
flex-direction: column;
flex: 1;
}
.card-meta {
display: flex;
justify-content: flex-end;
margin-bottom: 4px;
}
.card-time {
font-size: 11px;
font-weight: 300;
color: var(--ink-muted);
opacity: 0.7;
}
.card-offres-count { display: inline-flex; align-items: center; gap: 3px; font-size: 11px; font-weight: 600; color: #166534; background: #dcfce7; padding: 2px 7px; border-radius: 100px; }
.card-offres-count svg { flex-shrink: 0; fill: #16a34a; }
.card-offres-label { display: inline; }
.card-offres-count--img { display: none; position: absolute; top: 8px; right: 8px; z-index: 3; }
/* Section tendance */
.home-section--tendance .home-section-title { display: flex; align-items: center; gap: 8px; }
.tendance-icon { font-size: 20px; line-height: 1; }
.card-title {
font-family: 'DM Sans', sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 1.35;
color: var(--ink);
margin-bottom: 7px;
flex: 1;
}
.card-location {
font-size: 11.5px;
color: var(--ink-muted);
font-weight: 300;
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 4px;
}
.card-location svg { width: 11px; height: 11px; flex-shrink: 0; }
.card-cta {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 10px;
border-top: 1px solid var(--border-soft);
}
.badge-new { background: var(--accent); color: #fff; }
.badge-hot { background: var(--ink); color: #fff; }
.card-location svg { width: 9px; height: 9px; opacity: 0.45; flex-shrink: 0; }
.card-no-price-val { font-size: 12px; font-weight: 500; color: var(--ink-muted); }
.btn-offre {
font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
color: var(--accent); background: var(--accent-light);
border: none; border-radius: 100px; padding: 6px 13px;
cursor: pointer; transition: all 0.2s;
display: flex; align-items: center; gap: 5px; flex-shrink: 0;
}
.btn-offre:hover { background: var(--accent); color: #fff; }
.btn-offre svg { width: 10px; height: 10px; transition: transform 0.2s; }
.btn-offre:hover svg { transform: translateX(2px); }
.site-footer { margin-top: 48px; display: block; width: 100%; clear: both; }

/* ── BOTTOM BAR COMPTE (mobile only) ── */
.account-bottom-bar {
  display: none;
  flex-direction: row;
  align-items: stretch;
  position: fixed;
  bottom: 0; left: 0; right: 0; top: auto;
  min-height: 56px;
  height: auto;
  z-index: 5000;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -4px 20px rgba(38,51,64,0.07);
  width: 100%;
}
.abb-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 7px 1px 5px;
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 8.5px;
  font-weight: 400;
  position: relative;
  transition: color 0.15s;
  -webkit-tap-highlight-color: transparent;
  min-width: 0;
}
.abb-item svg {
  width: 17px; height: 17px;
  stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round;
  flex-shrink: 0;
}
.abb-item span { line-height: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.abb-item.active { color: var(--accent); }
.abb-item.active svg { stroke: var(--accent); stroke-width: 2.2; }
.abb-item.active::after {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 2px;
  background: var(--accent);
  border-radius: 0 0 2px 2px;
}
.abb-badge {
  position: absolute;
  top: 6px; right: calc(50% - 18px);
  font-size: 9px; font-style: normal; font-weight: 700;
  background: var(--accent); color: #fff;
  border-radius: 100px;
  padding: 1px 5px;
  min-width: 16px; text-align: center;
  border: 1.5px solid var(--warm-white);
}
/* Bouton retour conv (mobile only) */
.conv-back-btn { display: none; }
.footer-cats {
padding: 40px 40px;
background: var(--warm-white);
border-top: 1px solid var(--border);
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 28px 32px;
}
.footer-cat-title {
font-size: 12px; font-weight: 500; letter-spacing: 1.2px;
text-transform: uppercase; color: var(--ink-soft);
margin-bottom: 10px;
}
.footer-cat-links { display: flex; flex-direction: column; }
.footer-cat-links a {
font-size: 13.5px; font-weight: 300;
color: var(--ink-muted);
text-decoration: none; transition: color 0.15s;
line-height: 1.9;
}
.footer-cat-links a:hover { color: var(--accent); }
.footer-bottom {
background: var(--ink);
padding: 36px 40px 24px;
}
.footer-logo { margin-bottom: 10px; }
.footer-logo img { width: 120px; height: auto; }
.footer-logo em { color: #FAE8E2; font-style: normal; }
.footer-tagline {
font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.70);
line-height: 1.6; margin-bottom: 20px;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.footer-links a {
font-size: 13px; color: rgba(255,255,255,0.65);
text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy-line {
border-top: 1px solid rgba(255,255,255,0.07);
padding-top: 16px;
text-align: center;
font-size: 11px;
font-weight: 300;
color: rgba(255,255,255,0.25);
letter-spacing: 0.3px;
}
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.22); font-weight: 300; }
*,*::before,*::after {
margin:0;padding:0;box-sizing:border-box;
}
html {
scroll-behavior:smooth;
overflow-x: hidden;
}
.mobile-filter-btn {
display:none;align-items:center;gap:8px;font-family:'DM Sans',sans-serif;font-size:14px;font-weight:500;color:var(--ink);background:var(--warm-white);border:1.5px solid var(--border);border-radius:100px;padding:8px 18px;cursor:pointer;transition:all 0.2s;
}
.mobile-filter-btn:hover {
border-color:var(--accent);color:var(--accent);
}
.mobile-filter-btn svg {
width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;
}
.mobile-filter-count {
background:var(--accent);color:#fff;border-radius:100px;font-size:11px;padding:1px 6px;display:none;margin-left:2px;
}
.mobile-filter-count.active {
display:inline;
}
.sidebar-overlay {
display:none;position:fixed;inset:0;background:rgba(38,51,64,0.4);z-index:199;backdrop-filter:blur(2px);
}
.sidebar-overlay.active {
display:block;
}
.sf-close {
display:none;align-items:center;gap:10px;padding:12px 16px;border-bottom:1px solid var(--border-soft);flex-shrink:0;background:var(--warm-white);
}
.page-wrap {
display:flex;gap:0;max-width:1280px;margin:0 auto;
}
.sidebar-filters {
width:260px;flex-shrink:0;
padding:28px 24px;
border-right:1px solid var(--border-soft);
position:sticky;top:96px;
height:calc(100vh - 96px);
overflow-y:auto;
}
.sf-title {
font-size:12px;font-weight:500;letter-spacing:1.5px;text-transform:uppercase;color:var(--ink-muted);margin-bottom:16px;
}
.sf-section {
margin-bottom:24px;
}
.sf-section-title {
font-size:13.5px;font-weight:500;color:var(--ink);margin-bottom:10px;display:flex;align-items:center;justify-content:space-between;
}
.sf-reset {
font-size:12px;color:var(--accent);cursor:pointer;font-weight:400;
}
.sf-reset:hover {
text-decoration:underline;
}
.sf-options {
display:flex;flex-direction:column;gap:6px;
}
.sf-option {
display:flex;align-items:center;gap:8px;cursor:pointer;padding:5px 0;
}
.sf-option input[type="checkbox"] {
width:14px;height:14px;accent-color:var(--accent);cursor:pointer;flex-shrink:0;
}
.sf-option span {
font-size:14px;font-weight:300;color:var(--ink-soft);
}
.sf-option:hover span {
color:var(--ink);
}
.sf-cat-list {
display:flex;flex-direction:column;
}
.sf-cat-item {
display:flex;align-items:center;gap:8px;padding:8px 10px;border-radius:8px;cursor:pointer;transition:background 0.15s,color 0.15s;font-size:14px;font-weight:400;color:var(--ink-soft);user-select:none;
}
.sf-cat-item:hover {
background:var(--cream);color:var(--ink);
}
.sf-cat-item.active {
background:var(--accent-light);color:var(--accent-dark);font-weight:600;
}
.sf-cat-name { flex:1; }
.sf-cat-arrow {
font-size:15px;color:var(--ink-muted);transition:transform 0.2s;flex-shrink:0;
}
.sf-cat-item.active .sf-cat-arrow { color:var(--accent-dark); }
.sf-cat-item.open .sf-cat-arrow {
transform:rotate(90deg);
}
.sf-subcat {
display:none;padding-left:14px;margin-bottom:4px;border-left:2px solid var(--border);margin-left:10px;
}
.sf-subcat.open {
display:flex;flex-direction:column;gap:1px;
}
.sf-sub-item {
display:flex;align-items:center;gap:8px;font-size:13px;font-weight:400;color:var(--ink-muted);padding:5px 8px;border-radius:6px;cursor:pointer;transition:all 0.15s;user-select:none;
}
.sf-sub-item:hover { background:var(--cream);color:var(--ink); }
.sf-sub-item.active { color:var(--accent-dark);font-weight:500;background:var(--accent-light); }
.sf-sub-check {
width:14px;height:14px;border-radius:3px;border:1.5px solid #c5cdd4;flex-shrink:0;
transition:background 0.15s,border-color 0.15s;display:inline-flex;align-items:center;justify-content:center;
}
.sf-sub-item:hover .sf-sub-check { border-color:var(--accent); }
.sf-sub-check.checked {
background:var(--accent);border-color:var(--accent);
}
.sf-sub-check.checked::after {
content:'';width:8px;height:5px;
border-left:1.5px solid #fff;border-bottom:1.5px solid #fff;
transform:rotate(-45deg) translateY(-1px);display:block;
}
.price-inputs {
display:flex;align-items:center;gap:8px;margin-top:4px;
}
.price-input-wrap {
flex:1;display:flex;align-items:center;background:var(--cream);border:1.5px solid var(--border);border-radius:8px;padding:6px 10px;transition:border-color 0.2s;
}
.price-input-wrap:focus-within {
border-color:rgba(224,122,95,0.4);
}
.price-input-wrap input {
flex:1;font-family:'DM Sans',sans-serif;font-size:14px;font-weight:300;color:var(--ink);border:none;outline:none;background:transparent;width:100%;
}
.price-sym {
font-size:13px;color:var(--ink-muted);
}
.price-sep {
font-size:13px;color:var(--ink-muted);
}
.sf-loc-input {
width:100%;font-family:'DM Sans',sans-serif;font-size:14px;font-weight:300;color:var(--ink);background:var(--cream);border:1.5px solid var(--border);border-radius:8px;padding:8px 12px;outline:none;transition:border-color 0.2s;
}
.sf-loc-input:focus {
border-color:rgba(224,122,95,0.4);
}
.sf-loc-input::placeholder {
color:var(--ink-muted);opacity:0.6;
}
.sf-select {
width:100%;font-family:'DM Sans',sans-serif;font-size:14px;font-weight:300;color:var(--ink);background:var(--cream);border:1.5px solid var(--border);border-radius:8px;padding:8px 12px;outline:none;cursor:pointer;appearance:none;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%238C857D' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 10px center;background-size:14px;
}
.sf-select:focus {
border-color:rgba(224,122,95,0.4);
}
.btn-apply {
display:none;width:100%;font-family:'DM Sans',sans-serif;font-size:14.5px;font-weight:500;color:#fff;background:var(--accent);border:none;border-radius:10px;padding:11px;cursor:pointer;transition:all 0.2s;margin-top:8px;
}
.btn-apply:hover {
background:var(--accent-dark);
}
.results-main {
flex:1;padding:28px 32px 60px;min-width:0;
}
.results-main.results-loading #results-content {
opacity:0.45;pointer-events:none;transition:opacity 0.15s;
}
.results-main.results-loading .results-count {
opacity:0.45;
}
.results-topbar {
display:flex;align-items:center;justify-content:space-between;margin-bottom:24px;flex-wrap:wrap;gap:12px;
}
.results-query {
font-family:'DM Sans',sans-serif;font-size:23px;font-weight:400;letter-spacing:-0.3px;margin:0 0 3px;line-height:1.25;
}
.results-query em {
font-style:italic;color:var(--accent);
}
.results-count {
font-size:13.5px;font-weight:300;color:var(--ink-muted);
}
.results-sort {
display:flex;align-items:center;gap:8px;
}
.sort-label {
font-size:13px;color:var(--ink-muted);font-weight:300;
}
.sort-select {
font-family:'DM Sans',sans-serif;font-size:14px;font-weight:400;color:var(--ink);background:var(--warm-white);border:1px solid var(--border);border-radius:8px;padding:6px 28px 6px 12px;outline:none;cursor:pointer;appearance:none;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%238C857D' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 8px center;background-size:13px;
}
.active-filters {
display:flex;align-items:center;gap:7px;flex-wrap:wrap;margin-bottom:20px;
}
.af-label {
font-size:12px;color:var(--ink-muted);font-weight:400;
}
.af-tag {
display:inline-flex;align-items:center;gap:5px;font-size:13px;font-weight:400;color:var(--accent-dark);background:var(--accent-light);border-radius:100px;padding:3px 10px;cursor:pointer;
}
.af-tag svg {
width:10px;height:10px;stroke:var(--accent-dark);fill:none;stroke-width:2.5;flex-shrink:0;
}
.af-tag:hover {
background:rgba(224,122,95,0.2);
}
.af-clear {
font-size:13px;color:var(--ink-muted);cursor:pointer;margin-left:4px;
}
.af-clear:hover {
color:var(--accent);
}
.card:nth-child(9) {
animation-delay:.27s
}
.card:nth-child(10) {
animation-delay:.30s
}
.card-badge {
position:absolute;top:9px;left:9px;font-size:10px;font-weight:500;letter-spacing:1px;text-transform:uppercase;padding:3px 8px;border-radius:100px;
}
.empty-state {
text-align:center;padding:80px 20px;grid-column:1/-1;
}
.empty-icon {
width:64px;height:64px;border-radius:50%;background:var(--cream);display:flex;align-items:center;justify-content:center;margin:0 auto 18px;
}
.empty-icon svg {
width:28px;height:28px;stroke:var(--ink-muted);fill:none;stroke-width:1.5;stroke-linecap:round;
}
.empty-title {
font-family:'DM Sans',sans-serif;font-size:23px;font-weight:400;margin-bottom:8px;
}
.empty-sub {
font-size:15px;font-weight:300;color:var(--ink-muted);margin-bottom:24px;line-height:1.7;
}
.btn-empty {
font-family:'DM Sans',sans-serif;font-size:14.5px;font-weight:500;color:#fff;background:var(--accent);border:none;border-radius:100px;padding:11px 28px;cursor:pointer;text-decoration:none;transition:background 0.2s;display:inline-block;
}
.btn-empty:hover {
background:var(--accent-dark);
}
.pagination {
display:flex;align-items:center;justify-content:center;gap:6px;margin-top:40px;
}
.page-btn {
width:36px;height:36px;border-radius:8px;border:1px solid var(--border);background:var(--warm-white);font-family:'DM Sans',sans-serif;font-size:14px;font-weight:400;color:var(--ink-soft);cursor:pointer;transition:all 0.15s;display:flex;align-items:center;justify-content:center;
}
.page-btn:hover {
border-color:var(--accent);color:var(--accent);
}
.page-btn.active {
background:var(--accent);border-color:var(--accent);color:#fff;font-weight:500;
}
.page-btn.arrow svg {
width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;
}
.page-btn.arrow:hover {
border-color:var(--ink-soft);color:var(--ink);
}
.page-sep {
font-size:14px;color:var(--ink-muted);
}
.breadcrumb {
display: flex; align-items: center; gap: 6px; padding: 12px 40px; font-size: 13px; color: var(--ink-muted); border-bottom: 1px solid var(--border-soft); background: var(--warm-white);
}
.breadcrumb a {
color: var(--ink-muted); text-decoration: none;
}
.breadcrumb a:hover {
color: var(--accent);
}
.breadcrumb-sep {
opacity: 0.4;
}
.page {
display: flex;
gap: 32px;
padding: 32px 40px 60px;
max-width: 1280px;
margin: 0 auto;
}
.col-left {
flex: 1;
min-width: 0;
}
.col-right {
width: 380px;
flex-shrink: 0;
}
.col-right-sticky {
position: sticky;
top: 78px;
}
.gallery {
margin-bottom: 24px;
}
.gallery-main {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
aspect-ratio: 4/3;
background: #1a2330;
border-radius: 16px;
overflow: hidden;
position: relative;
margin-bottom: 10px;
}
.gallery-main-icon {
width: 72px; height: 72px; opacity: 0.11;
}
.gallery-badges {
position: absolute; top: 14px; left: 14px; display: flex; gap: 7px;
}
.badge-etat {
background: rgba(253,250,247,0.92); color: var(--ink-soft); border: 1px solid var(--border); backdrop-filter: blur(8px);
}
.gallery-thumbs {
display: flex; gap: 8px; flex-wrap: wrap;
}
.gallery-thumb {
width: 72px; height: 72px; flex-shrink: 0;
border-radius: 10px; border: 2px solid var(--border-soft);
overflow: hidden; cursor: pointer;
transition: border-color 0.2s, opacity 0.2s;
}
.gallery-thumb.active { border-color: var(--accent); opacity: 1; }
.gallery-thumb:not(.active) { opacity: 0.55; }
.gallery-thumb:not(.active):hover { opacity: 1; border-color: var(--border); }
.gallery-thumb svg { width: 24px; height: 24px; opacity: 0.15; }
.gallery-arrow {
position: absolute; top: 50%; transform: translateY(-50%);
width: 36px; height: 36px; border-radius: 50%;
background: rgba(255,255,255,0.85); border: none;
cursor: pointer; display: flex; align-items: center; justify-content: center;
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
transition: background 0.15s, transform 0.15s;
z-index: 2; backdrop-filter: blur(4px);
}
.gallery-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.gallery-arrow svg { width: 16px; height: 16px; stroke: var(--ink); }
.gallery-arrow--prev { left: 10px; }
.gallery-arrow--next { right: 10px; }
.product-cat {
font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.product-title {
font-family: 'DM Sans', sans-serif; font-size: 26px; font-weight: 400; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 12px;
}
.product-meta {
display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px;
}
.product-meta-item {
display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--ink-muted); font-weight: 300;
}
.product-meta-item svg {
width: 12px; height: 12px; opacity: 0.45; flex-shrink: 0;
}
.meta-dot {
width: 3px; height: 3px; border-radius: 50%; background: var(--border); flex-shrink: 0;
}
.section-title {
font-size: 13px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 10px;
}
.product-desc {
font-size: 15px; font-weight: 300; color: var(--ink-soft); line-height: 1.75; margin-bottom: 20px;
}
.product-tags {
display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 28px;
}
.product-tag {
font-size: 13px; font-weight: 300; color: var(--ink-soft); border: 1px solid var(--border); border-radius: 100px; padding: 3px 12px;
}
.seller-card {
background: var(--warm-white); border: 1px solid var(--border-soft); border-radius: 16px; padding: 20px;
}
.seller-head {
display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.seller-avatar {
width: 46px; height: 46px; border-radius: 50%; background: var(--accent-light); display: flex; align-items: center; justify-content: center; font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 600; color: var(--accent-dark); flex-shrink: 0;
}
.seller-name {
font-size: 16px; font-weight: 500; color: var(--ink); margin-bottom: 2px;
text-decoration: none; transition: color 0.15s; display: block;
}
a.seller-name:hover { color: var(--accent); }
.seller-since {
font-size: 12px; color: var(--ink-muted); font-weight: 300;
}
.seller-map {
width: 100%; height: 180px;
border-radius: 12px;
overflow: hidden;
margin-bottom: 16px;
border: 1px solid var(--border-soft);
}
.seller-map-label {
display: flex; align-items: center; gap: 6px;
font-size: 13.5px; color: var(--ink-soft); font-weight: 400;
margin-bottom: 14px; padding: 0 2px;
}
.seller-map-label svg {
width: 13px; height: 13px; color: var(--accent); flex-shrink: 0;
}
.review-item {
padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid var(--border-soft);
}
.review-item:last-child {
padding-bottom: 0; margin-bottom: 0; border-bottom: none;
}
.review-head {
display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px;
}
.review-head-left {
display: flex; align-items: center; gap: 8px;
}
.review-author {
font-size: 14px; font-weight: 500;
}
.stars {
display: flex; gap: 2px;
}
.star {
width: 11px; height: 11px; fill: var(--accent);
}
.star.empty {
fill: var(--border);
}
.review-text {
font-size: 13.5px; font-weight: 300; color: var(--ink-soft); line-height: 1.6;
}
.review-date {
font-size: 11.5px; color: var(--ink-muted);
}
.review-pagination {
display: flex; gap: 6px; flex-wrap: wrap; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-soft);
}
.review-page-btn {
display: inline-flex; align-items: center; justify-content: center;
min-width: 32px; height: 32px; padding: 0 8px;
border: 1.5px solid var(--border); border-radius: 8px;
font-size: 13px; font-weight: 500; color: var(--ink-muted);
text-decoration: none; transition: all 0.15s;
}
.review-page-btn:hover { border-color: var(--accent); color: var(--accent); }
.review-page-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.product-title-row {
display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 10px;
}
.product-title-row .product-title { margin-bottom: 0; flex: 1; }
.btn-share {
width: 38px; height: 38px; flex-shrink: 0;
background: var(--cream); border: 1.5px solid var(--border);
border-radius: 50%; cursor: pointer;
display: flex; align-items: center; justify-content: center;
transition: all 0.2s; margin-top: 4px;
}
.btn-share:hover { background: var(--accent-light); border-color: var(--accent); }
.btn-share svg { width: 15px; height: 15px; stroke: var(--ink-soft); }
.btn-share:hover svg { stroke: var(--accent-dark); }
.produit-fav-btn {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; margin-top: 4px;
}
.produit-fav-btn svg { width: 15px; height: 15px; transition: fill 0.2s, stroke 0.2s; }
.produit-fav-btn:hover { background: var(--accent-light); border-color: var(--accent); }
.produit-fav-btn:hover svg { stroke: var(--accent); }
.produit-fav-btn.faved { background: var(--accent-light); border-color: var(--accent); }
.produit-fav-btn.faved svg { stroke: var(--accent); fill: var(--accent); }
.offer-card {
border-radius: 20px;
overflow: hidden;
box-shadow: 0 8px 40px rgba(38,51,64,0.13);
}
.offer-header {
background: var(--ink);
background: linear-gradient(135deg, var(--ink) 0%, #2d3f52 60%, rgba(224,122,95,0.25) 100%);
padding: 22px 22px 20px;
display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
position: relative; overflow: hidden;
}
.offer-header::before {
content: '';
position: absolute; inset: 0;
background: radial-gradient(ellipse at 90% 0%, rgba(224,122,95,0.22) 0%, transparent 60%);
pointer-events: none;
}
.offer-header-title {
font-family: 'DM Sans', sans-serif;
font-size: 22px; font-weight: 400;
color: #fff; margin-bottom: 3px; line-height: 1.2;
}
.offer-header-sub {
font-size: 12px; font-weight: 300;
color: rgba(255,255,255,0.55); letter-spacing: 0.2px;
}
.offer-header-shield {
width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
background: rgba(255,255,255,0.15);
border: 1px solid rgba(255,255,255,0.2);
display: flex; align-items: center; justify-content: center;
margin-top: 2px;
}
.offer-header-shield svg { width: 17px; height: 17px; stroke: #fff; }
.offer-body {
background: #fff;
padding: 20px 22px 18px;
border: 1.5px solid var(--border-soft);
border-top: none;
border-radius: 0 0 20px 20px;
}
.offer-amount-label {
font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
text-transform: uppercase; color: var(--ink-muted); margin-bottom: 8px;
}
.offer-amount-group { margin-bottom: 16px; }
.offer-amount-wrap {
display: flex; align-items: center;
background: var(--cream);
border: 2px solid var(--border); border-radius: 14px;
padding: 0 16px 0 0;
transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
overflow: hidden;
}
.offer-amount-wrap:focus-within {
border-color: var(--accent);
box-shadow: 0 0 0 3px rgba(224,122,95,0.12);
background: #fff;
}
.offer-amount-wrap:has(.input--error) {
border-color: #E24B4A;
background: #fff8f8;
}
.offer-amount-wrap:has(.input--error):focus-within {
border-color: #E24B4A;
box-shadow: 0 0 0 3px rgba(226,75,74,0.12);
}
.offer-amount-input {
flex: 1; border: none; outline: none; background: transparent;
font-family: 'DM Sans', sans-serif; font-size: 38px; font-weight: 300; color: var(--ink);
padding: 12px 14px; min-width: 0; height: 66px;
}
.offer-amount-input::placeholder { color: var(--ink-muted); opacity: 0.2; }
.offer-amount-currency {
font-family: 'DM Sans', sans-serif; font-size: 22px; font-weight: 400;
color: var(--ink-muted); flex-shrink: 0;
}
.offer-divider {
height: 1px; background: var(--border-soft); margin: 14px 0;
}
.offer-msg-toggle {
display: flex; align-items: center; gap: 8px;
font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 400;
color: var(--ink-muted); background: none; border: none;
cursor: pointer; padding: 0;
transition: color 0.15s; user-select: none; width: 100%;
}
.offer-msg-toggle:hover { color: var(--ink); }
.offer-msg-toggle svg:first-child { width: 14px; height: 14px; flex-shrink: 0; }
.offer-msg-toggle-label { flex: 1; text-align: left; }
.offer-msg-chevron { width: 13px; height: 13px; flex-shrink: 0; transition: transform 0.2s; }
.offer-msg-toggle.active { color: var(--ink); }
.offer-msg-field { margin-top: 10px; margin-bottom: 2px; }
.offer-msg-field .offer-textarea {
width: 100%; font-family: 'DM Sans', sans-serif; font-size: 13.5px; font-weight: 300;
color: var(--ink); background: var(--cream); border: 1.5px solid var(--border);
border-radius: 11px; padding: 11px 13px; height: 76px; resize: none; outline: none;
transition: border-color 0.2s, box-shadow 0.2s; display: block;
}
.offer-msg-field .offer-textarea:focus {
border-color: var(--accent); box-shadow: 0 0 0 3px rgba(224,122,95,0.08); background: #fff;
}
.offer-pay-row { display: flex; gap: 8px; margin: 16px 0 12px; }
.offer-iban-nudge {
  display: flex; align-items: flex-start; gap: 7px;
  background: rgba(224,122,95,0.07); border: 1px solid rgba(224,122,95,0.2);
  border-radius: 10px; padding: 10px 12px; margin: -4px 0 14px;
  font-size: 12px; font-weight: 300; color: var(--ink-muted); line-height: 1.5;
}
.offer-iban-nudge svg { margin-top: 1px; opacity: 0.6; }
/* ── Récap frais de gestion ── */
.offer-breakdown {
  margin: 0 0 16px;
  padding: 10px 14px;
  background: var(--cream);
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  font-size: 12.5px;
}
.offer-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 0;
  color: var(--ink-muted);
  font-weight: 300;
}
.offer-breakdown-frais {
  color: var(--accent-dark);
  font-weight: 400;
}
.offer-breakdown-frais span:last-child { color: var(--accent-dark); }
.offer-breakdown-total {
  border-top: 1px solid var(--border-soft);
  margin-top: 5px;
  padding-top: 6px;
  color: var(--ink);
  font-weight: 600;
  font-size: 13.5px;
}
.offer-pay-opt {
flex: 1; display: flex; align-items: center; gap: 8px;
padding: 10px 12px; border-radius: 11px;
border: 1.5px solid var(--border-soft);
cursor: pointer; transition: all 0.15s; user-select: none; background: #fff;
}
.offer-pay-opt input { display: none; }
.offer-pay-opt--active {
border-color: var(--accent); background: var(--accent-light);
}
.offer-pay-dot {
width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
border: 2px solid var(--border); transition: all 0.15s;
}
.offer-pay-opt--active .offer-pay-dot { border-color: var(--accent); background: var(--accent); }
.offer-pay-text { flex: 1; min-width: 0; }
.offer-pay-name { font-size: 12.5px; font-weight: 500; color: var(--ink); display: block; }
.offer-pay-badge {
font-size: 9px; font-weight: 700; color: var(--accent);
text-transform: uppercase; letter-spacing: .6px; font-style: normal;
}
.btn-offer {
width: 100%; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
color: #fff; background: var(--accent); border: none; border-radius: 14px;
padding: 15px; cursor: pointer; display: flex; align-items: center; justify-content: center;
gap: 9px; transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
margin-bottom: 12px;
box-shadow: 0 4px 20px rgba(224,122,95,0.35);
letter-spacing: 0.1px;
}
.btn-offer:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(224,122,95,0.45); }
.btn-offer:active { transform: scale(0.98); box-shadow: none; }
.btn-offer svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 2; fill: none; stroke-linecap: round; }
.btn-offer--ghost { width: auto; background: transparent; border: 1.5px solid var(--border); color: var(--ink); font-size: 13px; padding: 8px 14px; }
.btn-offer--ghost:hover { background: var(--cream); border-color: var(--ink); transform: none; box-shadow: none; color: var(--ink); }
.btn-offer--conv { width: auto; background: rgba(34,197,94,0.15); border: 1.5px solid rgba(34,197,94,0.35); color: #15803d; font-size: 13px; padding: 8px 14px; display: inline-flex; box-shadow: 0 4px 14px rgba(34,197,94,0.2); margin-bottom: 0; }
.btn-offer--conv:hover { background: rgba(34,197,94,0.25); border-color: #22c55e; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(34,197,94,0.3) !important; color: #15803d; }
.offer-remaining {
display: flex; align-items: center; justify-content: center; gap: 5px;
margin-top: 10px;
font-size: 11.5px; font-weight: 400; color: var(--ink-muted);
}
.offer-remaining svg { opacity: 0.45; flex-shrink: 0; }
.offer-reassurance {
display: flex; align-items: center; gap: 5px;
font-size: 11.5px; font-weight: 300; color: var(--ink-muted);
justify-content: center;
}
.offer-reassurance svg { width: 12px; height: 12px; flex-shrink: 0; }
.offer-owner {
display: flex; align-items: center; gap: 8px;
font-size: 13.5px; font-weight: 300; color: var(--ink-muted); padding: 4px 0;
}
.offer-owner svg { width: 15px; height: 15px; flex-shrink: 0; opacity: .5; }
.offer-owner-edit { margin-left: auto; font-size: 13px; color: var(--accent); font-weight: 500; }
.offer-sent {
display: flex; align-items: center; gap: 14px;
background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(34,197,94,0.04));
border: 1px solid rgba(34,197,94,0.2);
border-radius: 16px; padding: 16px;
}
.offer-sent-check {
width: 36px; height: 36px; border-radius: 50%;
background: #22c55e; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.offer-sent-check svg { width: 16px; height: 16px; }
.offer-sent-amount { font-size: 17px; font-weight: 600; color: #15803d; }
.offer-sent-sub { font-size: 12px; font-weight: 300; color: #16a34a; margin-top: 2px; }
.offer-cta-login { text-align: center; padding: 4px 0; }
.offer-cta-eyebrow {
font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
color: var(--accent); margin-bottom: 6px;
}
.offer-cta-title { font-family:'DM Sans',sans-serif; font-size: 21px; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
.offer-cta-sub {
font-size: 13.5px; font-weight: 300; color: var(--ink-muted);
margin-bottom: 18px; line-height: 1.55; text-align: center;
}
.offer-error { background: rgba(226,75,74,0.07); border: 1px solid rgba(226,75,74,0.25); border-radius: 10px; padding: 10px 14px; font-size: 13px; color: #E24B4A; margin-bottom: 14px; }
.toast {
position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(16px); background: var(--ink); color: #fff; border-radius: 12px; padding: 13px 22px; display: flex; align-items: center; gap: 9px; font-size: 15px; opacity: 0; transition: all 0.3s ease; pointer-events: none; z-index: 999; white-space: nowrap;
}
.toast.show {
opacity: 1; transform: translateX(-50%) translateY(0);
}
.toast svg {
width: 15px; height: 15px; stroke: #FAE8E2; stroke-width: 2.5; fill: none; flex-shrink: 0;
}
.offer-mobile {
display: none; margin-bottom: 24px;
}

/* ── COMPTEUR D'OFFRES (page produit) ─────────────────────── */
.offres-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.offres-counter-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: #bbf7d0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #16a34a;
}
.offres-counter-icon svg { width: 13px; height: 13px; }
.offres-counter-text {
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.offres-counter-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: #166534;
  line-height: 1;
}
.offres-counter-label {
  font-size: 12px;
  font-weight: 400;
  color: #166534;
  opacity: 0.8;
}
.offres-counter-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #16a34a;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  flex-shrink: 0;
}

.nav-back {
display:flex;align-items:center;gap:7px;font-size:14px;color:var(--ink-muted);text-decoration:none;transition:color 0.2s;
}
.nav-back:hover {
color:var(--ink);
}
.nav-back svg {
width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;
}
.depot-page {
max-width: 700px; margin: 0 auto; padding: 48px 24px 100px;
}
.stepper-wrap {
margin-bottom: 48px;
}
.steps-nav {
display: flex; align-items: stretch;
border-bottom: 2px solid var(--border);
}
.step-nav-item {
flex: 1; display: flex; align-items: center; gap: 14px;
padding: 18px 24px; cursor: pointer; transition: background 0.2s;
position: relative; border-bottom: 2px solid transparent; margin-bottom: -2px;
}
.step-nav-item.done {
cursor: pointer;
}
.step-nav-item.done:hover {
background: var(--warm-white);
}
.step-nav-item.pending {
cursor: default;
}
.step-nav-item.active {
border-bottom-color: var(--accent);
}
.step-nav-num {
width: 32px; height: 32px; border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-size: 14px; font-weight: 500; flex-shrink: 0; transition: all 0.25s;
}
.step-nav-item.pending .step-nav-num {
background: var(--cream); color: var(--ink-muted); border: 1px solid var(--border);
}
.step-nav-item.done .step-nav-num {
background: var(--green-light); color: var(--green);
}
.step-nav-item.active .step-nav-num {
background: var(--accent); color: #fff;
}
.step-nav-text {
display: flex; flex-direction: column;
}
.step-nav-label {
font-size: 11px; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase;
}
.step-nav-item.pending .step-nav-label {
color: var(--ink-muted);
}
.step-nav-item.done .step-nav-label {
color: var(--ink-muted);
}
.step-nav-item.active .step-nav-label {
color: var(--accent);
}
.step-nav-title {
font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 400; line-height: 1.1;
}
.step-nav-item.pending .step-nav-title {
color: var(--ink-muted);
}
.step-nav-item.done .step-nav-title {
color: var(--ink-soft);
}
.step-nav-item.active .step-nav-title {
color: var(--ink);
}
.progress-bar {
height: 3px; background: var(--border-soft); overflow: hidden;
}
.progress-fill {
height: 100%; background: var(--accent); transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.panels-wrap {
position: relative; overflow: visible; min-height: 300px;
}
.step-panel {
width: 100%;
display: none;
opacity: 0;
}
.step-panel.active {
display: block;
opacity: 1;
}
.field {
margin-bottom: 28px;
}
.field-label {
font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-muted); display: block; margin-bottom: 8px;
}
.field-hint {
font-size: 13px; font-weight: 300; color: var(--ink-muted); margin-top: 6px; line-height: 1.5;
}
.field-error {
font-size: 13px; color: #E24B4A; margin-top: 6px; display: none;
}
.input-text {
width: 100%; font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 300;
color: var(--ink); background: var(--warm-white);
border: 1.5px solid var(--border); border-radius: 12px;
padding: 14px 16px; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.input-text:focus {
border-color: rgba(224,122,95,0.5); box-shadow: 0 0 0 3px rgba(224,122,95,0.08);
}
.input-text::placeholder {
color: var(--ink-muted); opacity: 0.5;
}
.input-text.error {
border-color: #E24B4A; box-shadow: 0 0 0 3px rgba(226,75,74,0.08);
}
textarea.input-text {
resize: none; height: 148px; line-height: 1.75;
}
.char-count {
font-size: 12px; color: var(--ink-muted); text-align: right; margin-top: 5px; font-weight: 300;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cat-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  padding: 16px 10px 17px;
  border-radius: 18px;
  border: 1.5px solid var(--border);
  background: var(--warm-white);
  cursor: pointer;
  text-align: center;
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.25s ease,
    transform 0.22s cubic-bezier(0.34, 1.35, 0.64, 1);
  box-shadow: 0 1px 2px rgba(38, 51, 64, 0.045);
  -webkit-tap-highlight-color: transparent;
}
.cat-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: var(--cat-icon-bg);
  transition: opacity 0.28s ease;
  pointer-events: none;
}
.cat-btn:hover {
  border-color: rgba(224, 122, 95, 0.42);
  box-shadow:
    0 10px 28px rgba(38, 51, 64, 0.08),
    0 4px 10px rgba(224, 122, 95, 0.07);
  transform: translateY(-3px);
}
.cat-btn:hover::after {
  opacity: 0.07;
}
.cat-btn.selected {
  border-color: var(--accent);
  background: linear-gradient(175deg, var(--warm-white) 0%, var(--accent-light) 100%);
  box-shadow:
    0 0 0 3px rgba(224, 122, 95, 0.14),
    0 14px 32px rgba(224, 122, 95, 0.14);
  transform: translateY(-3px);
}
.cat-btn.selected::after {
  opacity: 0.12;
}
.cat-btn:active {
  transform: translateY(-1px);
  transition-duration: 0.12s;
}
.cat-btn-visual {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cat-icon-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.33),
    0 6px 14px rgba(38, 51, 64, 0.18);
  transition:
    transform 0.24s cubic-bezier(0.34, 1.35, 0.64, 1),
    box-shadow 0.24s ease;
}
.cat-btn:hover .cat-btn-visual {
  transform: scale(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 8px 20px rgba(38, 51, 64, 0.2);
}
.cat-btn.selected .cat-btn-visual {
  transform: scale(1.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 10px 22px rgba(0, 0, 0, 0.15);
}
.cat-btn-visual svg {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.97);
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.14));
}
.cat-btn-visual svg * {
  fill: none;
  stroke: currentColor;
}
.cat-btn-visual svg [fill="currentColor"],
.cat-btn-visual svg circle[fill="currentColor"] {
  fill: currentColor;
  stroke: none;
}
.cat-btn-text {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.28;
  letter-spacing: -0.012em;
  max-width: 100%;
  transition: color 0.2s ease;
}
.cat-btn:hover .cat-btn-text {
  color: var(--ink);
}
.cat-btn.selected .cat-btn-text {
  color: var(--accent-dark);
  font-weight: 600;
}
.cat-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px var(--warm-white),
    0 0 0 4px var(--accent);
}
.cat-btn.selected:focus-visible {
  box-shadow:
    0 0 0 2px var(--warm-white),
    0 0 0 4px var(--accent),
    0 10px 28px rgba(224, 122, 95, 0.16);
}
@media (prefers-reduced-motion: reduce) {
  .cat-btn,
  .cat-btn::after,
  .cat-btn-visual {
    transition: none !important;
  }
  .cat-btn:hover,
  .cat-btn.selected,
  .cat-btn:active {
    transform: none;
  }
  .cat-btn:hover .cat-btn-visual,
  .cat-btn.selected .cat-btn-visual {
    transform: none;
  }
}
.etat-grid {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.etat-btn {
padding: 16px 12px; border-radius: 12px; text-align: center;
border: 1.5px solid var(--border); background: var(--warm-white);
cursor: pointer; transition: all 0.18s;
}
.etat-btn:hover {
border-color: var(--accent);
}
.etat-btn.selected {
border-color: var(--accent); background: var(--accent-light);
}
.etat-title {
font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 4px; transition: color 0.18s;
}
.etat-btn.selected .etat-title {
color: var(--accent-dark);
}
.etat-sub {
font-size: 12px; font-weight: 300; color: var(--ink-muted); line-height: 1.4;
}
.loc-wrap {
position: relative;
}
.loc-wrap svg {
position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 15px; height: 15px; opacity: 0.35; pointer-events: none; stroke: currentColor; fill: none; stroke-width: 2;
}
.loc-wrap .input-text {
padding-left: 40px;
}
.upload-zone {
border: 1.5px dashed var(--border); border-radius: 18px;
background: var(--warm-white); padding: 40px 24px; text-align: center;
cursor: pointer; transition: all 0.2s; margin-bottom: 14px;
}
.upload-zone:hover, .upload-zone.over {
border-color: var(--accent); background: var(--accent-light);
}
.upload-icon {
width: 44px; height: 44px; margin: 0 auto 14px; opacity: 0.22; stroke: var(--ink); fill: none; stroke-width: 1.2;
}
.upload-text {
font-size: 16px; font-weight: 400; color: var(--ink-soft); margin-bottom: 5px;
}
.upload-sub {
font-size: 13px; font-weight: 300; color: var(--ink-muted);
}
.upload-sub strong {
color: var(--accent); font-weight: 500;
}
input[type="file"] {
display: none;
}
.photos-grid {
display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 4px;
}
.photo-thumb {
aspect-ratio: 1; border-radius: 10px; overflow: hidden; position: relative; background: var(--border-soft); border: 1px solid var(--border-soft);
}
.photo-thumb img {
width: 100%; height: 100%; object-fit: cover;
}
.photo-add {
aspect-ratio: 1; border-radius: 10px; border: 1.5px dashed var(--border); background: transparent; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s;
}
.photo-add:hover {
border-color: var(--accent); background: var(--accent-light);
}
.photo-add svg {
width: 20px; height: 20px; opacity: 0.3; stroke: var(--ink); fill: none; stroke-width: 2; stroke-linecap: round;
}
.photo-add:hover svg {
opacity: 0.7; stroke: var(--accent-dark);
}
.photo-remove {
position: absolute; top: 4px; right: 4px; width: 22px; height: 22px; border-radius: 50%; background: rgba(38,51,64,0.6); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.photo-remove:hover {
background: rgba(38,51,64,0.85);
}
.photo-remove svg {
width: 10px; height: 10px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round;
}
.photo-first-badge {
position: absolute; bottom: 5px; left: 5px; font-size: 10px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase; background: rgba(38,51,64,0.6); color: #fff; border-radius: 4px; padding: 2px 6px;
}
.recap-card {
background: var(--warm-white); border: 1px solid var(--border-soft); border-radius: 18px; overflow: hidden; margin-bottom: 28px;
}
.recap-top {
background: var(--ink); padding: 22px 24px; position: relative; overflow: hidden;
}
.recap-top::before {
content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 40%, rgba(224,122,95,0.3) 0%, transparent 58%); pointer-events: none;
}
.recap-top-title {
font-family: 'DM Sans', sans-serif; font-size: 19px; font-weight: 400; color: #fff; position: relative; z-index: 1; margin-bottom: 3px;
}
.recap-top-sub {
font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.70); position: relative; z-index: 1;
}
.recap-body {
padding: 0 24px;
}
.recap-row {
display: flex; justify-content: space-between; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border-soft); gap: 20px;
}
.recap-row:last-child {
border-bottom: none;
}
.recap-key {
font-size: 11.5px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink-muted); flex-shrink: 0; padding-top: 2px;
}
.recap-val {
font-size: 15px; font-weight: 300; color: var(--ink); text-align: right; line-height: 1.6;
}
.recap-val.price {
font-family: 'DM Sans', sans-serif; font-size: 18px; font-style: italic; color: var(--accent-dark); font-weight: 400;
}
.recap-photos-row {
display: flex; gap: 6px; flex-wrap: wrap;
}
.recap-ph {
width: 48px; height: 48px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-soft); background: var(--cream); display: flex; align-items: center; justify-content: center;
}
.recap-ph img {
width: 100%; height: 100%; object-fit: cover;
}
.recap-ph svg {
width: 16px; height: 16px; opacity: 0.2; stroke: var(--ink); fill: none; stroke-width: 1.5;
}
.depot-iban-nudge {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px 18px; margin-top: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.depot-iban-nudge-top {
  display: flex; align-items: center; gap: 14px;
}
.depot-iban-nudge-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(224,122,95,0.1); display: flex; align-items: center; justify-content: center;
}
.depot-iban-nudge-icon svg { opacity: 0.75; }
.depot-iban-nudge-body { flex: 1; min-width: 0; }
.depot-iban-nudge-title { font-size: 13.5px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.depot-iban-nudge-sub { font-size: 12.5px; font-weight: 300; color: var(--ink-muted); line-height: 1.5; }
.depot-iban-nudge-cta {
  flex-shrink: 0; white-space: nowrap; font-size: 12.5px; font-weight: 500;
  color: #fff; background: var(--accent); border: none; cursor: pointer;
  border-radius: 8px; padding: 8px 16px; text-decoration: none; transition: background 0.2s;
}
.depot-iban-nudge-cta:hover { background: var(--accent-dark); }
.depot-iban-form { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.depot-iban-fields { display: flex; gap: 12px; flex-wrap: wrap; }
.depot-iban-field { flex: 1; min-width: 180px; display: flex; flex-direction: column; gap: 5px; }
.depot-iban-field label { font-size: 12px; font-weight: 500; color: var(--ink-soft); }
.depot-iban-field input {
  font-family: 'DM Sans', sans-serif; font-size: 13.5px; color: var(--ink);
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  padding: 9px 12px; outline: none; transition: border-color 0.2s;
}
.depot-iban-field input:focus { border-color: var(--accent); }
.depot-iban-error { font-size: 12.5px; color: #e53; margin-top: 10px; }
.depot-iban-actions { display: flex; gap: 8px; justify-content: flex-end; margin-top: 14px; }
.depot-iban-cancel {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 400;
  color: var(--ink-soft); background: none; border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 16px; cursor: pointer; transition: border-color 0.2s;
}
.depot-iban-cancel:hover { border-color: var(--ink-soft); }
.depot-iban-save {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  color: #fff; background: var(--accent); border: none;
  border-radius: 8px; padding: 8px 18px; cursor: pointer; transition: background 0.2s;
}
.depot-iban-save:hover:not(:disabled) { background: var(--accent-dark); }
.depot-iban-save:disabled { opacity: 0.6; cursor: default; }
.depot-iban-nudge-success {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 400; color: #2a9d5c;
}
.depot-iban-nudge-success svg { stroke: #2a9d5c; flex-shrink: 0; }

/* ── IA Entry Screen (panel-0) ───────────────────────────── */
.ia-entry-screen {
  min-height: auto;
  display: flex; align-items: center; justify-content: center;
  padding: 8px 0 20px; position: relative;
}
.ia-entry-screen.ia-analysis-complete {
  min-height: auto;
  padding: 12px 0 12px;
}
.ia-entry-screen.ia-drag-over .ia-drop-zone {
  border-color: var(--accent);
  background: rgba(224,122,95,.05);
  transform: scale(1.01);
}
.ia-drop-zone {
  width: 100%; max-width: 420px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 12px 36px 20px;
  border: 2px dashed transparent;
  border-radius: 24px;
  transition: border-color .22s, background .22s, transform .22s;
  animation: ia-fadein .5s cubic-bezier(.22,1,.36,1) both;
}
.ia-drop-zone--analyzing .ia-entry-sub {
  display: none;
}
.ia-drop-zone--compact {
  max-width: 320px;
  padding: 12px 20px 8px;
}
.ia-drop-zone--compact .ia-entry-icon,
.ia-drop-zone--compact .ia-entry-title,
.ia-drop-zone--compact .ia-entry-sub {
  display: none;
}
.ia-drop-zone--compact #ia-loading {
  gap: 12px;
}
.ia-drop-zone--compact .ia-loading-thumb {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(38,51,64,.10), 0 2px 4px rgba(38,51,64,.05);
}
.ia-drop-zone--compact .ia-done-row span {
  font-size: 13.5px;
}
@keyframes ia-fadein {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Icon */
.ia-entry-icon {
  position: relative;
  width: 88px; height: 88px; border-radius: 26px;
  background: linear-gradient(145deg, #fce9e2, #f9d8ce);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; flex-shrink: 0;
  animation: ia-icon-float 4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(224,122,95,.22), 0 8px 28px rgba(224,122,95,.18);
}
.ia-entry-icon--preview {
  width: 132px;
  height: 132px;
  border-radius: 18px;
  background: var(--border-soft);
  box-shadow: 0 8px 32px rgba(38,51,64,.13), 0 2px 6px rgba(38,51,64,.07);
  animation: none;
}
.ia-entry-icon--preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.ia-entry-icon--preview::after { display: none; }
.ia-entry-icon--analyzing { animation: none; }
.ia-entry-icon--analyzing::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  top: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.95) 50%, transparent 100%);
  box-shadow: 0 0 10px rgba(255,255,255,.75), 0 0 18px rgba(224,122,95,.35);
  animation: ia-preview-scan 1.6s cubic-bezier(.4,0,.6,1) infinite;
  pointer-events: none;
}
@keyframes ia-preview-scan { 0% { top: 0; } 100% { top: calc(100% - 3px); } }
.ia-entry-icon::after {
  content: ''; position: absolute; inset: -8px;
  border-radius: 34px;
  border: 1.5px solid rgba(224,122,95,.18);
  animation: ia-ring-pulse 3s ease-in-out infinite;
}
@keyframes ia-icon-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
@keyframes ia-ring-pulse {
  0%,100% { opacity: .6; transform: scale(1); }
  50%      { opacity: 0; transform: scale(1.18); }
}

/* Typography */
.ia-entry-title {
  font-family: 'DM Sans', sans-serif; font-size: 30px; line-height: 1.18;
  color: var(--ink); margin: 0 0 12px; font-weight: 400; letter-spacing: -.3px;
}
.ia-entry-sub {
  font-size: 15.5px; color: var(--ink-muted); line-height: 1.65;
  margin: 0 0 24px; max-width: 290px;
}

/* Buttons */
.ia-actions { width: 100%; display: flex; flex-direction: column; gap: 10px; }
.ia-btn-photo {
  display: flex; align-items: center; justify-content: center; gap: 11px;
  width: 100%; padding: 17px 28px; border-radius: 14px;
  font-family: 'DM Sans', sans-serif; font-size: 15.5px; font-weight: 500;
  cursor: pointer; transition: all .22s cubic-bezier(.4,0,.2,1);
  border: none; box-sizing: border-box;
}
.ia-btn-photo:active { transform: scale(.97); }
.ia-btn-photo svg { width: 21px; height: 21px; flex-shrink: 0; }

.ia-btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 18px rgba(224,122,95,.38), 0 1px 3px rgba(224,122,95,.2);
}
.ia-btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 26px rgba(224,122,95,.48), 0 2px 6px rgba(224,122,95,.24);
  transform: translateY(-1px);
}
.ia-btn-import {
  background: #fff; color: var(--ink);
  border: 1.5px solid rgba(38,51,64,.13) !important;
  box-shadow: 0 2px 10px rgba(38,51,64,.07), 0 1px 2px rgba(38,51,64,.04);
}
.ia-btn-import:hover {
  border-color: rgba(38,51,64,.26) !important;
  box-shadow: 0 5px 20px rgba(38,51,64,.11), 0 2px 5px rgba(38,51,64,.06);
  transform: translateY(-1px);
}
.ia-btn-camera { display: none; }
@media (hover: none) and (pointer: coarse) { .ia-btn-camera { display: flex; } }

/* Divider */
.ia-divider {
  display: flex; align-items: center; gap: 14px;
  width: 100%; margin: 6px 0 2px; color: var(--ink-muted);
  font-size: 13px; letter-spacing: .04em;
}
.ia-divider::before, .ia-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* Manual link */
.ia-btn-manual {
  background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 14.5px;
  color: var(--ink-muted); padding: 10px 20px; margin-top: 2px;
  display: flex; align-items: center; gap: 7px; border-radius: 10px;
  transition: color .18s, background .18s;
}
.ia-btn-manual:hover { color: var(--ink); background: rgba(38,51,64,.05); }
.ia-btn-manual svg { width: 14px; height: 14px; transition: transform .2s; }
.ia-btn-manual:hover svg { transform: translateX(4px); }

/* Loading state */
.ia-loading {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  width: 100%;
}
.ia-loading--inline-preview .ia-loading-thumb {
  display: none;
}
.ia-loading--inline-preview {
  gap: 12px;
}
.ia-loading--inline-preview .ia-loading-text {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}
.ia-loading-thumb {
  position: relative; overflow: hidden;
  width: 96px; height: 96px; border-radius: 18px; flex-shrink: 0;
  background: var(--border-soft);
  box-shadow: 0 8px 32px rgba(38,51,64,.13), 0 2px 6px rgba(38,51,64,.07);
}
.ia-loading-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ia-loading-thumb::after {
  content: ''; position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(224,122,95,.9) 50%, transparent 100%);
  top: 0; animation: ia-scan 1.6s cubic-bezier(.4,0,.6,1) infinite;
  box-shadow: 0 0 8px rgba(224,122,95,.6);
}
@keyframes ia-scan { 0% { top: 0; } 100% { top: 100%; } }
.ia-loading-text {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--ink-soft);
}
.ia-loading-dots {
  display: flex; gap: 5px; align-items: center;
}
.ia-loading-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); display: block;
  animation: ia-dot .9s ease-in-out infinite;
}
.ia-loading-dots span:nth-child(2) { animation-delay: .18s; }
.ia-loading-dots span:nth-child(3) { animation-delay: .36s; }
@keyframes ia-dot {
  0%,80%,100% { transform: scale(.6); opacity: .4; }
  40%          { transform: scale(1);  opacity: 1; }
}
@keyframes ia-spin { to { transform: rotate(360deg); } }

/* ia-filled fields */
.ia-filled {
  border-color: rgba(224,122,95,.5) !important;
  background: rgba(224,122,95,.035) !important;
  transition: border-color .35s, background .35s !important;
}

/* IA loading done state */
.ia-thumb-done::after { animation: none !important; opacity: 0 !important; }

.ia-done-row {
  display: flex; align-items: center; gap: 10px;
  animation: ia-fadein .3s cubic-bezier(.22,1,.36,1) both;
}
.ia-done-check {
  width: 30px; height: 30px; border-radius: 50%;
  background: #22c55e;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  animation: ia-check-pop .35s cubic-bezier(.34,1.56,.64,1) both;
}
.ia-done-check--error { background: #f97316; }
.ia-done-check--warn { background: #f59e0b; }
@keyframes ia-check-pop {
  from { opacity: 0; transform: scale(.4); }
  to   { opacity: 1; transform: scale(1); }
}
.ia-done-row span {
  font-size: 15px; font-weight: 500; color: var(--ink);
}

/* IA result banner in form */
.ia-result-banner {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 12px;
  margin-bottom: 24px;
  font-size: 13.5px; line-height: 1.45;
  animation: ia-fadein .4s cubic-bezier(.22,1,.36,1) both;
}
.ia-result-banner--ok {
  background: rgba(34,197,94,.09);
  border: 1px solid rgba(34,197,94,.28);
  color: #15803d;
}
.ia-result-banner--warn {
  background: rgba(245,158,11,.09);
  border: 1px solid rgba(245,158,11,.28);
  color: #92400e;
}
.ia-result-banner--error {
  background: rgba(239,68,68,.09);
  border: 1px solid rgba(239,68,68,.28);
  color: #991b1b;
}
.ia-result-banner-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.ia-result-banner-icon--ok  { background: rgba(34,197,94,.18); }
.ia-result-banner-icon--warn { background: rgba(245,158,11,.18); }
.ia-result-banner-icon--error { background: rgba(239,68,68,.18); }
.ia-result-banner span { flex: 1; }
.ia-result-banner-close {
  background: none; border: none; cursor: pointer;
  opacity: .5; padding: 4px; flex-shrink: 0;
  display: flex; align-items: center; transition: opacity .15s;
}
.ia-result-banner-close:hover { opacity: 1; }
.step-actions {
display: flex; justify-content: space-between; align-items: center; margin-top: 36px; gap: 12px;
}
.btn-prev {
font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 400; color: var(--ink-soft); background: none; border: 1px solid var(--border); border-radius: 100px; padding: 12px 24px; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.2s;
}
.btn-prev:hover {
border-color: var(--ink-soft); color: var(--ink);
}
.btn-prev svg {
width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.btn-next {
font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; color: #fff; background: var(--accent); border: none; border-radius: 100px; padding: 13px 32px; cursor: pointer; display: flex; align-items: center; gap: 9px; margin-left: auto; transition: all 0.2s;
}
.btn-next:hover {
background: var(--accent-dark); transform: translateY(-1px);
}
.btn-next svg {
width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.btn-submit {
font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 500; color: #fff; background: var(--accent); border: none; border-radius: 100px; padding: 14px 40px; cursor: pointer; display: flex; align-items: center; gap: 9px; margin-left: auto; transition: all 0.2s;
}
.btn-submit:hover {
background: var(--accent-dark); transform: translateY(-1px);
}
.btn-submit svg {
width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round;
}
.confirm-wrap {
text-align: center; padding: 48px 0;
}
.confirm-icon {
width: 72px; height: 72px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.confirm-icon svg {
width: 30px; height: 30px; stroke: var(--green); fill: none; stroke-width: 2.5;
}
.confirm-title {
font-family: 'DM Sans', sans-serif; font-size: 30px; font-weight: 400; margin-bottom: 12px; letter-spacing: -0.5px;
}
.confirm-sub {
font-size: 15px; font-weight: 300; color: var(--ink-muted); line-height: 1.75; max-width: 380px; margin: 0 auto 36px;
}
.confirm-btns {
display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.btn-outline {
font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 400; color: var(--ink-soft); background: none; border: 1px solid var(--border); border-radius: 100px; padding: 10px 24px; cursor: pointer; text-decoration: none; transition: all 0.2s; display: inline-block;
}
.btn-outline:hover {
border-color: var(--ink-soft); color: var(--ink);
}
.btn-filled {
font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; color: #fff; background: var(--accent); border: none; border-radius: 100px; padding: 10px 24px; cursor: pointer; text-decoration: none; transition: all 0.2s; display: inline-block;
}
.btn-filled:hover {
background: var(--accent-dark);
}
.hero-sub {
font-size: 17px; font-weight: 300; color: var(--ink-soft); line-height: 1.7; animation: up 0.65s 0.16s ease both;
}
@keyframes up {
from { opacity:0; transform:translateY(18px); }
to   { opacity:1; transform:translateY(0); }
}
.two-cols {
display: grid;
grid-template-columns: 1fr 1fr;
max-width: 1100px;
margin: 48px auto 0;
padding: 0 40px 80px;
gap: 24px;
}
.col {
border-radius: 24px;
overflow: hidden;
background: var(--warm-white);
border: 1px solid var(--border-soft);
opacity: 0; transform: translateY(28px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.col.visible {
opacity: 1; transform: translateY(0);
}
.col-buyer {
transition-delay: 0s;
}
.col-seller {
transition-delay: 0.12s;
}
.col-header {
padding: 28px 32px 24px;
border-bottom: 1px solid var(--border-soft);
}
.col-header.buyer {
background: var(--accent-light);
}
.col-header.seller {
background: var(--ink); position: relative; overflow: hidden;
}
.col-header.seller::before {
content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 30%, rgba(224,122,95,0.3) 0%, transparent 60%); pointer-events: none;
}
.col-badge {
display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 12px;
}
.col-badge.buyer {
background: var(--accent); color: #fff;
}
.col-badge.seller {
background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); position: relative; z-index: 1;
}
.col-header-title {
font-family: 'DM Sans', sans-serif; font-size: 23px; font-weight: 400; line-height: 1.2;
}
.col-header-title em {
font-style: italic;
}
.col-header.buyer .col-header-title {
color: var(--accent-dark);
}
.col-header.seller .col-header-title {
color: #fff; position: relative; z-index: 1;
}
.col-header.seller .col-header-title em {
color: #FAE8E2;
}
.col-steps {
padding: 8px 0;
}
.col-step {
display: flex; gap: 20px; padding: 22px 32px; border-bottom: 1px solid var(--border-soft);
}
.col-step:last-child {
border-bottom: none;
}
.col-step-num {
font-family: 'DM Sans', sans-serif; font-size: 28px; font-weight: 600; color: var(--accent-light); line-height: 1; flex-shrink: 0; width: 36px;
}
.col-header.seller ~ .col-steps .col-step-num {
color: var(--border-soft);
}
.col-step-title {
font-size: 16px; font-weight: 500; color: var(--ink); margin-bottom: 5px; line-height: 1.3;
}
.col-step-desc {
font-size: 14px; font-weight: 300; color: var(--ink-muted); line-height: 1.65;
}
.col-cta {
padding: 24px 32px; border-top: 1px solid var(--border-soft);
}
.btn-col-buyer {
width: 100%; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; color: #fff; background: var(--accent); border: none; border-radius: 12px; padding: 14px; cursor: pointer; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s;
}
.btn-col-buyer:hover {
background: var(--accent-dark); transform: translateY(-1px);
}
.btn-col-buyer svg {
width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round;
}
.btn-col-seller {
width: 100%; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; color: var(--ink); background: var(--warm-white); border: 1px solid var(--border); border-radius: 12px; padding: 14px; cursor: pointer; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s;
}
.btn-col-seller:hover {
border-color: var(--ink); transform: translateY(-1px);
}
.btn-col-seller svg {
width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round;
}
.shared {
max-width: 1100px; margin: 0 auto;
padding: 0 40px 80px;
}
.shared-box {
background: var(--ink); border-radius: 20px; padding: 36px 40px;
display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
position: relative; overflow: hidden;
opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease;
}
.shared-box.visible {
opacity: 1; transform: translateY(0);
}
.shared-box::before {
content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(224,122,95,0.18) 0%, transparent 60%); pointer-events: none;
}
.shared-icon {
width: 52px; height: 52px; border-radius: 14px; background: rgba(224,122,95,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1;
}
.shared-icon svg {
width: 24px; height: 24px; stroke: #FAE8E2; fill: none; stroke-width: 1.5; stroke-linecap: round;
}
.shared-text {
flex: 1; position: relative; z-index: 1;
}
.shared-title {
font-family: 'DM Sans', sans-serif; font-size: 21px; font-weight: 400; color: #fff; margin-bottom: 6px;
}
.shared-title em {
font-style: italic; color: #FAE8E2;
}
.shared-desc {
font-size: 14.5px; font-weight: 300; color: rgba(255,255,255,0.70); line-height: 1.6;
}
.shared-nums {
display: flex; gap: 32px; flex-shrink: 0; position: relative; z-index: 1;
}
.shared-num {
text-align: center;
}
.shared-num-val {
font-family: 'DM Sans', sans-serif; font-size: 32px; font-weight: 600; color: #fff; line-height: 1;
}
.shared-num-val span {
color: #FAE8E2; font-size: 19px;
}
.shared-num-label {
font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.65); margin-top: 4px;
}
.reveal {
opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
opacity: 1; transform: translateY(0);
}
*,*::before,*::after {
margin:0;padding:0;box-sizing:border-box;
}
.btn-new {
font-family:'DM Sans',sans-serif;font-size:13.5px;font-weight:500;color:#fff;background:var(--accent);border:none;border-radius:100px;padding:7px 16px;cursor:pointer;text-decoration:none;display:flex;align-items:center;gap:6px;white-space:nowrap;transition:background 0.2s;
}
.btn-new:hover {
background:var(--accent-dark);
}
.btn-new svg {
width:12px;height:12px;stroke:#fff;fill:none;stroke-width:2.5;stroke-linecap:round;
}
.nav-notif {
position:relative;width:36px;height:36px;border-radius:50%;border:1px solid var(--border);background:none;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background 0.2s;
}
.nav-notif:hover { background:var(--cream); }
.nav-notif svg { width:15px;height:15px;stroke:var(--ink-soft);fill:none;stroke-width:2; }
.nav-dot { position:absolute;top:7px;right:7px;width:7px;height:7px;border-radius:50%;background:var(--accent);border:1.5px solid var(--warm-white); }
.nav-notif-dropdown {
display: none; position: absolute; z-index: 999999;
width: 320px;
}
.nav-notif-dropdown.open { display: block; animation: ddIn 0.15s ease-out; }
.nav-notif-inner {
background: var(--warm-white); border: 1px solid var(--border-soft);
border-radius: 16px; box-shadow: 0 12px 40px rgba(38,51,64,0.13); overflow: hidden;
}
.nav-notif-header {
display: flex; align-items: center; justify-content: space-between;
padding: 14px 16px; border-bottom: 1px solid var(--border-soft);
font-size: 13px; font-weight: 600; color: var(--ink);
}
.nav-notif-badge {
font-size: 11px; font-weight: 600; color: var(--accent);
background: var(--accent-light); border-radius: 20px; padding: 2px 8px;
}
.nav-notif-empty {
padding: 20px 16px; text-align: center;
font-size: 13px; color: var(--ink-muted); font-weight: 300;
}
.nav-notif-item-wrap {
position: relative; display: flex; align-items: stretch;
border-bottom: 1px solid var(--border-soft);
}
.nav-notif-item-wrap:last-of-type { border-bottom: none; }
.nav-notif-item-wrap:hover { background: var(--cream); }
.nav-notif-item-wrap:hover .nav-notif-del { opacity: 1; }
.nav-notif-item {
display: flex; align-items: flex-start; gap: 10px;
padding: 11px 16px; text-decoration: none;
flex: 1; min-width: 0;
transition: background 0.12s; position: relative;
}
.nav-notif-item:last-of-type { border-bottom: none; }
.nav-notif-item:hover { background: transparent; }
.nav-notif-del {
flex-shrink: 0; align-self: center;
width: 22px; height: 22px; border-radius: 50%; border: none;
background: transparent; cursor: pointer;
display: flex; align-items: center; justify-content: center;
color: var(--ink-muted); opacity: 0;
transition: opacity .15s, background .15s, color .15s;
margin-right: 10px;
}
.nav-notif-del svg { width: 11px; height: 11px; pointer-events: none; }
.nav-notif-del:hover { background: rgba(239,68,68,0.1); color: #ef4444; }
.nav-notif-item-wrap:has(.nav-notif-item.unread) { background: rgba(224,122,95,0.04); }
.nav-notif-item.unread::before {
content: ''; position: absolute; left: 6px; top: 50%; transform: translateY(-50%);
width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}
.nav-notif-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-notif-icon svg { width: 13px; height: 13px; stroke-width: 2; }
.nav-notif-content { flex: 1; min-width: 0; }
.nav-notif-text { font-size: 12.5px; font-weight: 300; color: var(--ink); line-height: 1.4; }
.nav-notif-time { font-size: 11px; color: var(--ink-muted); margin-top: 2px; }
.nav-notif-more {
display: block; text-align: center; padding: 11px 16px;
font-size: 12.5px; font-weight: 500; color: var(--accent);
text-decoration: none; border-top: 1px solid var(--border-soft);
transition: background 0.12s;
}
.nav-notif-more:hover { background: var(--accent-light); }
.nav-notif-pending {
display: flex; align-items: center; gap: 10px;
padding: 11px 14px; margin: 0 8px 6px;
border-radius: 8px;
background: rgba(224,122,95,0.08); border: 1px solid rgba(224,122,95,0.2);
text-decoration: none; cursor: pointer; transition: background 0.15s;
}
.nav-notif-pending:hover { background: rgba(224,122,95,0.14); }
.nav-notif-pending-icon {
width: 28px; height: 28px; flex-shrink: 0;
display: flex; align-items: center; justify-content: center;
background: rgba(224,122,95,0.15); border-radius: 50%;
color: var(--accent);
}
.nav-notif-pending-text { flex: 1; min-width: 0; }
.nav-notif-pending-text strong { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink); }
.nav-notif-pending-text span { font-size: 11.5px; color: var(--ink-muted); }
.nav-notif-pending-arrow { flex-shrink: 0; color: var(--accent); }
.profil-public-page { max-width: 960px; margin: 0 auto; padding: 0 20px 60px; }
.pp-hero {
background: var(--ink); border-radius: 0 0 24px 24px;
padding: 32px 40px; margin-bottom: 32px; position: relative; overflow: hidden;
}
.pp-hero::before {
content: ''; position: absolute; inset: 0;
background: radial-gradient(ellipse at 80% 30%, rgba(224,122,95,0.28) 0%, transparent 60%);
pointer-events: none;
}
.pp-hero-inner { display: flex; align-items: center; gap: 24px; position: relative; z-index: 1; }
.pp-avatar {
width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0;
background: linear-gradient(135deg, var(--accent-light), #f5cfc4);
display: flex; align-items: center; justify-content: center;
font-family: 'DM Sans', sans-serif; font-size: 28px; font-weight: 700;
color: var(--accent-dark); overflow: hidden; border: 3px solid rgba(255,255,255,0.15);
}
.pp-avatar img { width: 100%; height: 100%; object-fit: cover; }
.pp-avatar span { font-size: 28px; }
.pp-name { font-family: 'DM Sans', sans-serif; font-size: 26px; font-weight: 400; color: #fff; margin-bottom: 6px; }
.pp-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.pp-meta span { display: flex; align-items: center; gap: 4px; font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.65); }
.pp-meta svg { opacity: 0.6; }
.pp-stats { display: flex; align-items: center; gap: 0; }
.pp-stat { text-align: center; padding: 0 16px; }
.pp-stat:first-child { padding-left: 0; }
.pp-stat-num { font-size: 20px; font-weight: 600; color: #fff; line-height: 1; margin-bottom: 3px; }
.pp-stat-label { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }
.pp-stat-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.15); flex-shrink: 0; }
.pp-section { margin-bottom: 40px; }
.pp-section-title {
font-size: 16px; font-weight: 600; color: var(--ink);
margin-bottom: 18px; display: flex; align-items: center; gap: 8px;
}
.pp-section-count { font-size: 12px; font-weight: 400; color: var(--ink-muted); background: var(--cream); border-radius: 20px; padding: 2px 8px; }
.pp-empty { color: var(--ink-muted); font-size: 14px; font-weight: 300; padding: 20px 0; }
.seller-avatar-link { display: block; text-decoration: none; transition: opacity 0.15s; }
.seller-avatar-link:hover { opacity: 0.85; }
.profile-hero {
background: var(--ink);
padding: 24px 40px 18px;
position: relative;
overflow: hidden;
}
.tabs-wrap {
display: none;
background: var(--ink);
border-bottom: 1px solid rgba(255,255,255,0.1);
position: relative;
z-index: 1;
}

.tabs-bar {
display: flex;
gap: 0;
max-width: 960px;
margin: 0 auto;
padding: 0 40px;
overflow-x: auto;
scrollbar-width: none;
}
.tabs-bar::-webkit-scrollbar { display: none; }
.profile-hero::before {
content: '';
position: absolute;
inset: 0;
background:
radial-gradient(ellipse at 85% 0%, rgba(224,122,95,0.28) 0%, transparent 55%),
radial-gradient(ellipse at 10% 100%, rgba(224,122,95,0.10) 0%, transparent 45%);
pointer-events: none;
}
.profile-hero-inner {
position: relative;
z-index: 1;
max-width: 1100px;
margin: 0 auto;
}
.profile-top {
display: flex;
align-items: center;
gap: 24px;
margin-bottom: 18px;
flex-wrap: wrap;
}
.profile-avatar {
width: 72px; height: 72px;
border-radius: 50%;
flex-shrink: 0;
background: linear-gradient(135deg, var(--accent-light) 0%, #f5cfc4 100%);
display: flex; align-items: center; justify-content: center;
font-family: 'DM Sans', sans-serif;
font-size: 24px; font-weight: 600;
color: var(--accent-dark);
box-shadow: 0 0 0 3px rgba(255,255,255,0.12), 0 4px 20px rgba(0,0,0,0.25);
}
.profile-info {
flex: 1;
min-width: 0;
}
.profile-name {
font-family: 'DM Sans', sans-serif;
font-size: 24px; font-weight: 400;
color: #fff;
letter-spacing: -0.3px;
margin-bottom: 8px;
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.profile-meta {
display: flex;
align-items: center;
gap: 6px;
flex-wrap: wrap;
}
.profile-meta-chip {
display: inline-flex;
align-items: center;
gap: 4px;
background: rgba(255,255,255,0.10);
border: 1px solid rgba(255,255,255,0.12);
border-radius: 100px;
padding: 3px 10px;
font-size: 12px;
font-weight: 300;
color: rgba(255,255,255,0.80);
white-space: nowrap;
}
.profile-meta-chip svg { opacity: 0.7; flex-shrink: 0; }
.profile-meta-chip--star {
background: rgba(224,122,95,0.20);
border-color: rgba(224,122,95,0.30);
color: #f5a98d;
}
.profile-stats {
display: flex;
align-items: center;
margin-left: auto;
background: rgba(255,255,255,0.07);
border: 1px solid rgba(255,255,255,0.10);
border-radius: 16px;
padding: 14px 4px;
flex-shrink: 0;
}
.pstat { text-align: center; padding: 0 20px; }
.pstat-sep {
width: 1px; height: 28px;
background: rgba(255,255,255,0.12);
flex-shrink: 0;
}
.pstat-num {
font-family: 'DM Sans', sans-serif;
font-size: 22px; font-weight: 600;
color: #fff; line-height: 1;
}
.pstat-label {
font-size: 11px; font-weight: 300;
color: rgba(255,255,255,0.50);
margin-top: 4px;
text-transform: uppercase;
letter-spacing: 0.6px;
}
.profile-stats-mobile { display: none; }
.tab {
display: flex;
align-items: center;
gap: 8px;
padding: 15px 20px;
font-size: 13.5px; font-weight: 500;
color: rgba(255,255,255,0.65);
text-decoration: none;
cursor: pointer;
border-bottom: 2px solid transparent;
transition: color 0.2s, border-color 0.2s;
white-space: nowrap;
flex-shrink: 0;
}
.tab:hover { color: #fff; }
.tab.active { color: #fff; border-bottom-color: var(--accent); font-weight: 600; }
.tab svg {
width: 14px; height: 14px;
stroke: currentColor; fill: none;
stroke-width: 1.8; stroke-linecap: round; flex-shrink: 0;
}
.tab-badge {
font-size: 10.5px; font-weight: 600;
background: var(--accent); color: #fff;
border-radius: 100px; padding: 1px 6px; line-height: 1.5;
}
.tab-badge.green { background: var(--green); }
.page-content {
max-width:960px;margin:0 auto;padding:32px 40px 60px;
}
.tab-section { display: none; }
.section {
display:none;
}
.section.active {
display:block;
}
.annonces-list {
display:flex;flex-direction:column;gap:10px;
}
.annonce-card {
background:var(--warm-white);border:1px solid var(--border-soft);border-radius:16px;
padding:16px 20px;display:flex;align-items:center;gap:16px;
transition:border-color 0.2s,box-shadow 0.2s,opacity 0.25s;
}
.annonce-card:hover {
border-color:var(--border);box-shadow:0 2px 16px rgba(38,51,64,0.05);
}
.ann-img {
width:60px;height:60px;border-radius:10px;flex-shrink:0;display:flex;align-items:center;justify-content:center;
}
.ann-img svg {
width:22px;height:22px;opacity:0.14;stroke:var(--ink);fill:none;stroke-width:1.2;
}
.ann-info {
flex:1;min-width:0;
}
.ann-title {
font-size:15px;font-weight:500;color:var(--ink);margin-bottom:4px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.ann-meta {
font-size:13px;font-weight:300;color:var(--ink-muted);display:flex;align-items:center;gap:6px;flex-wrap:wrap;
}
.alerte-criteres {
font-size:11.5px;font-weight:400;color:var(--ink-muted);margin-top:4px;opacity:0.75;
}
.ann-meta strong {
font-weight:500;color:var(--accent);
}
.ann-offres-link {
font-weight:500;color:var(--accent);cursor:pointer;
}
.ann-offres-link:hover {
text-decoration:underline;
}
.dot {
width:3px;height:3px;border-radius:50%;background:var(--border);flex-shrink:0;
}
.badge-on {
background:var(--green-light);color:var(--green);
}
.badge-wait {
background:var(--accent-light);color:var(--accent-dark);
}
.badge-off {
background:var(--border-soft);color:var(--ink-muted);
}
.ann-actions {
display:flex;gap:6px;flex-shrink:0;margin-left:auto;
}
.btn-xs {
font-family:'DM Sans',sans-serif;font-size:13px;font-weight:400;color:var(--ink-soft);background:none;border:1px solid var(--border);border-radius:8px;padding:6px 12px;cursor:pointer;transition:all 0.15s;white-space:nowrap;
}
.btn-xs:hover {
border-color:var(--ink-soft);color:var(--ink);
}
.btn-xs.red:hover {
border-color:#E24B4A;color:#E24B4A;
}
.offres-layout {
display:grid;grid-template-columns:300px 1fr;
background:var(--warm-white);border:1px solid var(--border-soft);border-radius:16px;
overflow:hidden;height:580px;
}
.offres-sidebar {
border-right:1px solid var(--border-soft);overflow-y:auto;
}
.offres-filters {
display:flex;flex-wrap:wrap;gap:6px;padding:10px 12px;
border-bottom:1px solid var(--border-soft);background:var(--warm-white);
position:sticky;top:0;z-index:10;
}
.offres-filter-pill {
background:transparent;border:1px solid var(--border-soft);border-radius:100px;
padding:3px 10px;font-size:12px;font-weight:500;color:var(--ink-muted);
cursor:pointer;transition:background .15s,color .15s,border-color .15s;white-space:nowrap;
}
.offres-filter-pill:hover { border-color:var(--accent);color:var(--accent); }
.offres-filter-pill.active { background:var(--accent);border-color:var(--accent);color:#fff; }
.offre-item {
padding:14px 16px;border-bottom:1px solid var(--border-soft);
cursor:pointer;transition:background 0.15s;
}
/* Dans offre-item, les badges doivent être inline (pas absolute) */
.offre-item .badge {
  position: static;
  display: inline-flex;
  align-items: center;
}
.offre-item:last-child {
border-bottom:none;
}
.offre-item:hover {
background:var(--cream);
}
.offre-item.active {
background:var(--accent-light);
}
.offre-item-top {
display:flex;align-items:center;gap:10px;margin-bottom:6px;
}
.offre-item-info {
flex:1;min-width:0;
}
.offre-item-name {
font-size:14px;font-weight:500;color:var(--ink);display:flex;justify-content:space-between;align-items:center;margin-bottom:2px;
}
.offre-item-time {
font-size:11.5px;color:var(--ink-muted);font-weight:300;
}
.offre-item-obj {
font-size:12px;color:var(--accent);font-weight:400;
}
.offre-item-amount {
font-family:'DM Sans',sans-serif;font-size:18px;font-weight:600;color:var(--ink);flex-shrink:0;
}
.offre-item-preview {
font-size:13px;font-weight:300;color:var(--ink-muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.offre-av {
width:36px;height:36px;border-radius:50%;background:var(--cream);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;font-family:'DM Sans',sans-serif;font-size:14px;font-weight:600;color:var(--ink-soft);flex-shrink:0;
}
.offres-thread {
display:flex;flex-direction:column;overflow:hidden;
flex:1;height:100%;min-height:0;
}
.conv {
display:none;flex-direction:column;height:100%;
}
.conv.active {
display:flex;
}
.msg-thread-av {
width:38px;height:38px;border-radius:50%;background:var(--accent-light);display:flex;align-items:center;justify-content:center;font-family:'DM Sans',sans-serif;font-size:15px;font-weight:600;color:var(--accent-dark);flex-shrink:0;
}
.msg-thread-name {
font-size:15px;font-weight:500;color:var(--ink);margin-bottom:2px;
}
.msg-thread-sub {
font-size:13px;font-weight:300;color:var(--ink-muted);
overflow-wrap:anywhere;
}
.conv-header {
padding: 14px 20px; border-bottom: 1px solid var(--border-soft);
display: flex; flex-direction: column; gap: 10px; flex-shrink: 0;
}
.conv-header-top {
display: flex; align-items: center; gap: 12px;
}
.conv-header-info { flex: 1; min-width: 0; overflow-wrap: anywhere; }
.conv-offer-banner {
display: flex; align-items: center; gap: 14px;
background: linear-gradient(135deg, #1a2d26 0%, #243b31 100%);
border-radius: 12px; padding: 12px 16px;
}
.conv-offer-banner--done {
background: var(--cream);
}
.conv-offer-banner--sent {
background: linear-gradient(135deg, var(--ink) 0%, #2d3f52 100%);
}
.conv-offer-amt {
font-family: 'DM Sans', sans-serif;
font-size: 24px; font-weight: 700; color: #fff;
line-height: 1; flex-shrink: 0;
}
.conv-offer-banner--done .conv-offer-amt { color: var(--ink); }
.conv-offer-label {
font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.6);
flex: 1;
}
.conv-offer-banner--done .conv-offer-label { color: var(--ink-muted); }
.conv-offer-actions {
display: flex; gap: 8px; flex-shrink: 0;
}
.btn-offer-accept {
display: flex; align-items: center; gap: 6px;
font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
color: #fff; background: #2a7d55;
border: none; border-radius: 8px; padding: 8px 16px;
cursor: pointer; transition: background 0.15s, transform 0.1s;
white-space: nowrap;
}
.btn-offer-accept svg { width: 14px; height: 14px; stroke: #fff; }
.btn-offer-accept:hover { background: #1e5e3f; transform: translateY(-1px); }
.btn-offer-refuse {
font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 400;
color: rgba(255,255,255,0.55);
background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
border-radius: 8px; padding: 8px 14px;
cursor: pointer; transition: all 0.15s; white-space: nowrap;
}
.btn-offer-refuse:hover { color: #ff6b6b; border-color: rgba(255,100,100,0.4); background: rgba(255,100,100,0.08); }
.msg-body {
flex:1;min-height:0;padding:20px;overflow-y:auto;display:flex;flex-direction:column;gap:12px;
}
.bubble-wrap {
display:flex;flex-direction:column;
}
.bubble-wrap.me {
align-items:flex-end;
}
.bubble {
max-width:75%;padding:10px 14px;border-radius:14px;font-size:14.5px;font-weight:300;line-height:1.65;
overflow-wrap:anywhere;word-break:break-word;
}
.bubble-wrap.other .bubble {
background:var(--cream);border:1px solid var(--border-soft);color:var(--ink-soft);border-radius:4px 14px 14px 14px;
}
.bubble-wrap.me .bubble {
background:var(--accent);color:#fff;border-radius:14px 14px 4px 14px;
}
.bubble-time {
font-size:11px;color:var(--ink-muted);margin-top:4px;font-weight:300;
}
.offer-bubble {
background:var(--warm-white);border:1.5px solid var(--border);border-radius:14px;padding:16px;max-width:260px;
}
.offer-bubble-label {
font-size:10px;letter-spacing:1.5px;text-transform:uppercase;color:var(--accent);margin-bottom:6px;
}
.offer-bubble-amount {
font-family:'DM Sans',sans-serif;font-size:26px;font-weight:600;color:var(--ink);margin-bottom:4px;
}
.offer-bubble-msg {
font-size:13px;font-weight:300;color:var(--ink-muted);font-style:italic;
}
.msg-input-row {
padding:12px 16px;border-top:1px solid var(--border-soft);display:flex;gap:8px;align-items:flex-end;flex-shrink:0;
min-width:0;
}
.msg-textarea {
flex:1;min-width:0;font-family:'DM Sans',sans-serif;font-size:14.5px;font-weight:300;color:var(--ink);background:var(--cream);border:1.5px solid var(--border);border-radius:10px;padding:9px 13px;outline:none;resize:none;max-height:80px;transition:border-color 0.2s;
}
.msg-textarea:focus {
border-color:rgba(224,122,95,0.4);
}
.msg-textarea::placeholder {
color:var(--ink-muted);opacity:0.5;
}
.btn-send {
width:38px;height:38px;border-radius:10px;background:var(--accent);border:none;display:flex;align-items:center;justify-content:center;cursor:pointer;flex-shrink:0;transition:background 0.2s;
}
.btn-send:hover {
background:var(--accent-dark);
}
.btn-send svg {
width:14px;height:14px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;
}
.avatar-upload-wrap {
display: flex; align-items: center; gap: 20px;
background: var(--warm-white); border: 1.5px solid var(--border-soft);
border-radius: 16px; padding: 18px 20px; margin-bottom: 20px;
}
.avatar-upload-preview {
position: relative; flex-shrink: 0;
width: 80px; height: 80px;
}
.avatar-upload-preview img,
#avatar-img {
width: 80px; height: 80px; border-radius: 50%;
object-fit: cover;
border: 2px solid var(--border-soft);
}
.avatar-upload-initials {
width: 80px; height: 80px; border-radius: 50%;
background: linear-gradient(135deg, var(--accent-light), #f5cfc4);
display: flex; align-items: center; justify-content: center;
font-family: 'DM Sans', sans-serif; font-size: 24px; font-weight: 700;
color: var(--accent-dark);
}
.avatar-upload-btn {
position: absolute; bottom: 0; right: 0;
width: 26px; height: 26px; border-radius: 50%;
background: var(--ink); border: 2px solid var(--warm-white);
display: flex; align-items: center; justify-content: center;
cursor: pointer; transition: background 0.15s;
}
.avatar-upload-btn:hover { background: var(--accent); }
.avatar-upload-btn svg { width: 12px; height: 12px; stroke: #fff; }
.avatar-upload-info { flex: 1; }
.avatar-upload-name { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.avatar-upload-hint { font-size: 12px; font-weight: 300; color: var(--ink-muted); margin-bottom: 10px; }
.avatar-upload-link {
display: inline-block; font-size: 13px; font-weight: 500;
color: var(--accent); cursor: pointer;
border: 1.5px solid var(--accent); border-radius: 8px;
padding: 5px 14px; transition: all 0.15s;
}
.avatar-upload-link:hover { background: var(--accent-light); }
.avatar-delete-btn {
display: inline-block; font-size: 13px; font-weight: 500;
color: #dc2626; cursor: pointer; background: none;
border: 1.5px solid #fca5a5; border-radius: 8px;
padding: 5px 14px; transition: all 0.15s; margin-top: 4px;
}
.avatar-delete-btn:hover { background: #fef2f2; }
.profil-grid {
display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:20px;
}
.profil-card {
background:var(--warm-white);border:1px solid var(--border-soft);border-radius:16px;padding:24px;
}
.profil-card.full {
grid-column:1 / -1;
}
.profil-card-title {
font-size:12px;font-weight:500;letter-spacing:1.5px;text-transform:uppercase;color:var(--ink-muted);margin-bottom:18px;display:flex;align-items:center;justify-content:flex-start;
}
.profil-card-edit {
font-size:13px;font-weight:400;color:var(--accent);cursor:pointer;letter-spacing:0;text-transform:none;
}
.profil-field {
margin-bottom:14px;
}
.profil-field:last-of-type {
margin-bottom:0;
}
.profil-label {
font-size:11.5px;font-weight:500;letter-spacing:1.2px;text-transform:uppercase;color:var(--ink-muted);margin-bottom:6px;
}
.profil-input {
width:100%;font-family:'DM Sans',sans-serif;font-size:15px;font-weight:300;color:var(--ink);background:var(--cream);border:1.5px solid var(--border);border-radius:10px;padding:11px 14px;outline:none;transition:border-color 0.2s,box-shadow 0.2s;
}
.profil-input:focus {
border-color:rgba(224,122,95,0.4);box-shadow:0 0 0 3px rgba(224,122,95,0.07);
}
.profil-save {
font-family:'DM Sans',sans-serif;font-size:14.5px;font-weight:500;color:#fff;background:var(--accent);border:none;border-radius:10px;padding:12px 28px;cursor:pointer;transition:background 0.2s;display:block;margin-left:auto;
}
.profil-save:hover {
background:var(--accent-dark);
}
.profil-toast { display: none; }
.global-toast {
position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(16px);
display: flex; align-items: center; gap: 8px;
padding: 12px 22px; border-radius: 100px;
font-size: 14px; font-weight: 500; font-family: 'DM Sans', sans-serif;
box-shadow: 0 4px 24px rgba(0,0,0,0.18);
opacity: 0; pointer-events: none;
transition: opacity 0.25s ease, transform 0.25s ease;
z-index: 99999; white-space: nowrap;
}
.global-toast--success { background: #166534; color: #fff; }
.global-toast--error   { background: #dc2626; color: #fff; }
.global-toast--info    { background: var(--ink); color: #fff; }
.global-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.notif-prefs { margin-bottom:20px; }
.notif-prefs-list { display:flex; flex-direction:column; gap:0; }
.notif-pref-row { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0; border-bottom:1px solid var(--border-soft); cursor:pointer; }
.notif-pref-row:last-child { border-bottom:none; }
.notif-pref-info { flex:1; }
.notif-pref-label { font-size:14px; font-weight:500; color:var(--ink); margin-bottom:2px; }
.notif-pref-desc { font-size:12.5px; color:var(--ink-soft); font-weight:300; }
.notif-toggle { appearance:none; -webkit-appearance:none; width:40px; height:22px; border-radius:100px; background:var(--border); position:relative; cursor:pointer; flex-shrink:0; transition:background .2s; }
.notif-toggle::after { content:''; position:absolute; width:16px; height:16px; border-radius:50%; background:#fff; top:3px; left:3px; transition:transform .2s; box-shadow:0 1px 3px rgba(0,0,0,.2); }
.notif-toggle:checked { background:var(--accent); }
.notif-toggle:checked::after { transform:translateX(18px); }
.danger-zone {
background:rgba(226,75,74,0.04);border:1px solid rgba(226,75,74,0.15);border-radius:16px;padding:20px 24px;display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.danger-text {
font-size:14.5px;font-weight:300;color:var(--ink-soft);
}
.danger-text strong {
font-weight:500;color:var(--ink);
}
.btn-danger {
font-family:'DM Sans',sans-serif;font-size:14px;font-weight:400;color:#E24B4A;background:none;border:1px solid rgba(226,75,74,0.3);border-radius:8px;padding:8px 16px;cursor:pointer;transition:all 0.2s;white-space:nowrap;
}
.btn-danger:hover {
background:rgba(226,75,74,0.06);border-color:#E24B4A;
}
.sec-header {
display:flex;align-items:center;justify-content:space-between;margin-bottom:20px;
}
.iban-nudge-banner {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: rgba(224,122,95,0.08); border: 1px solid rgba(224,122,95,0.25);
  border-radius: 12px; padding: 14px 16px; margin-bottom: 20px;
  font-size: 13px; color: var(--ink-muted); line-height: 1.5;
}
.iban-nudge-banner strong { color: var(--ink); font-weight: 500; }
.iban-nudge-cta {
  margin-left: auto; white-space: nowrap; font-size: 12.5px; font-weight: 500;
  color: var(--accent); background: rgba(224,122,95,0.12); border: 1px solid rgba(224,122,95,0.3);
  border-radius: 8px; padding: 6px 14px; text-decoration: none; transition: background 0.2s;
}
.iban-nudge-cta:hover { background: rgba(224,122,95,0.22); }
.sec-title {
font-family:'DM Sans',sans-serif;font-size:21px;font-weight:400;letter-spacing:-0.2px;
}
.sec-sub {
font-size:13.5px;font-weight:300;color:var(--ink-muted);margin-top:2px;
}
.sec-action {
font-family:'DM Sans',sans-serif;font-size:13px;font-weight:500;color:#fff;background:var(--ink);border:none;cursor:pointer;text-decoration:none;padding:8px 16px;border-radius:100px;transition:background 0.2s;display:inline-flex;align-items:center;gap:5px;
}
.sec-action:hover {
background:var(--accent);color:#fff;
}
.btn-empty-state {
display:inline-flex;align-items:center;gap:8px;
background:var(--accent);color:#fff;
font-family:'DM Sans',sans-serif;font-size:14px;font-weight:500;
padding:10px 24px;border-radius:100px;
transition:background 0.2s;
}
.btn-empty-state:hover { background:var(--accent-dark);color:#fff; }
.btn-empty-state svg { flex-shrink:0; }
.login-page {
display:flex; min-height:100vh;
}
.left {
width: 45%; background:var(--ink); display:flex; flex-direction:column;
justify-content:space-between; padding:48px; position:relative; overflow:hidden;
}
.left::before {
content:''; position:absolute; inset:0;
background:radial-gradient(ellipse at 20% 80%, rgba(224,122,95,0.25) 0%, transparent 55%);
}
.left-logo {
font-family:'DM Sans',sans-serif; font-size:23px; font-weight:600; color:#fff; text-decoration:none; position:relative; z-index:1;
}
.left-logo em {
color:#FAE8E2; font-style:normal;
}
.left-content {
position:relative; z-index:1;
}
.left-title {
font-family:'DM Sans',sans-serif; font-size:clamp(28px,3.5vw,44px); font-weight:400; color:#fff; line-height:1.15; letter-spacing:-1px; margin-bottom:16px;
}
.left-title em {
font-style:italic; color:#FAE8E2;
}
.left-sub {
font-size:15px; font-weight:300; color:rgba(255,255,255,0.70); line-height:1.7; max-width:320px;
}
.left-bottom {
position:relative; z-index:1;
}
.left-stat {
font-size:13px; font-weight:300; color:rgba(255,255,255,0.3);
}
.left-stat strong {
font-weight:500; color:rgba(255,255,255,0.6);
}
.right {
flex:1; display:flex; align-items:center; justify-content:center; padding:48px 32px;
}
.form-wrap {
width:100%; max-width:400px;
}
.tabs {
display:flex; border-bottom:2px solid var(--border); margin-bottom:36px;
}
.mlogin-tabs .tab {
flex:1; padding:12px 0; text-align:center; font-size:15px; font-weight:400; color:var(--ink-muted); cursor:pointer; border-bottom:2px solid transparent; margin-bottom:-2px; transition:all 0.2s;
}
.mlogin-tabs .tab.active {
color:var(--ink); font-weight:500; border-bottom-color:var(--accent);
}
.mlogin-tabs .tab:hover:not(.active) {
color:var(--ink-soft);
}
.panel {
display:none;
}
.panel.active {
display:block;
}
.panel-title {
font-family:'DM Sans',sans-serif; font-size:24px; font-weight:400; letter-spacing:-0.4px; margin-bottom:6px;
}
.panel-sub {
font-size:14px; font-weight:300; color:var(--ink-muted); margin-bottom:28px;
}
.social-btns {
display:flex; flex-direction:column; gap:10px; margin-bottom:24px;
}
.btn-social {
display:flex; align-items:center; justify-content:center; gap:12px;
width:100%; padding:13px; border-radius:12px; font-family:'DM Sans',sans-serif;
font-size:15px; font-weight:400; cursor:pointer; transition:all 0.2s;
}
.btn-google {
background:var(--warm-white); border:1.5px solid var(--border); color:var(--ink);
}
.btn-google:hover {
border-color:var(--ink-muted); background:#fff;
}
.btn-apple {
background:var(--ink); border:1.5px solid var(--ink); color:#fff;
}
.btn-apple:hover {
background:#2a2420;
}
.btn-social svg {
width:18px; height:18px; flex-shrink:0;
}
.sep {
display:flex; align-items:center; gap:12px; margin-bottom:24px;
}
.sep-line {
flex:1; height:1px; background:var(--border);
}
.sep-text {
font-size:12px; color:var(--ink-muted); letter-spacing:0.5px; white-space:nowrap;
}
.field {
margin-bottom:16px;
}
.field-label {
font-size:12px; font-weight:500; letter-spacing:1.5px; text-transform:uppercase; color:var(--ink-muted); display:block; margin-bottom:7px;
}
.input {
width:100%; font-family:'DM Sans',sans-serif; font-size:15px; font-weight:300;
color:var(--ink); background:var(--warm-white); border:1.5px solid var(--border);
border-radius:10px; padding:13px 14px; outline:none; transition:border-color 0.2s, box-shadow 0.2s;
}
.input:focus {
border-color:rgba(224,122,95,0.5); box-shadow:0 0 0 3px rgba(224,122,95,0.08);
}
.input::placeholder {
color:var(--ink-muted); opacity:0.5;
}
.input-row {
display:grid; grid-template-columns:1fr 1fr; gap:10px;
}
.forgot {
text-align:right; margin-top:-8px; margin-bottom:20px;
}
.forgot a {
font-size:13px; color:var(--ink-muted); text-decoration:none; transition:color 0.2s;
}
.forgot a:hover {
color:var(--accent);
}
.btn-submit {
width:100%; font-family:'DM Sans',sans-serif; font-size:15px; font-weight:500;
color:#fff; background:var(--accent); border:none; border-radius:10px;
padding:14px; cursor:pointer; transition:all 0.2s; margin-top:4px;
}
.btn-submit:hover {
background:var(--accent-dark); transform:translateY(-1px);
}
.cgu {
font-size:12.5px; font-weight:300; color:var(--ink-muted); text-align:center; margin-top:18px; line-height:1.6;
}
.cgu a {
color:var(--accent); text-decoration:none;
}
.modal-overlay {
display: none;
position: fixed; inset: 0; z-index: 9999999;
background: rgba(38,51,64,0.55);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
overflow-y: auto;
padding: 24px 16px;
align-items: flex-start;
justify-content: center;
}
.modal-overlay.open {
display: flex;
}
.modal-box {
position: relative;
background: #fff;
border-radius: 20px;
box-shadow: 0 32px 80px rgba(38,51,64,0.22);
width: 100%;
margin: auto;
animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-box--wide  { max-width: 960px; }
.modal-box--login { max-width: 860px; overflow: hidden; border-radius: 20px; }
.modal-scroll { overflow-y: auto; max-height: calc(100vh - 80px); padding: 48px 48px 40px; }
.modal-close {
position: absolute; top: 16px; right: 16px; z-index: 10;
width: 36px; height: 36px; border-radius: 50%;
border: 1px solid var(--border); background: var(--warm-white);
display: flex; align-items: center; justify-content: center;
cursor: pointer; transition: all 0.2s;
}
.modal-close:hover { background: var(--cream); border-color: var(--ink-soft); }
.modal-close svg { width: 16px; height: 16px; }
@keyframes modalIn {
from { opacity: 0; transform: translateY(20px) scale(0.97); }
to   { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes modalInMobile {
from { transform: translateY(100%); }
to   { transform: translateY(0); }
}
.hm-hero { text-align: center; padding: 8px 0 32px; }
.hm-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 10px; }
.hm-title { font-family: 'DM Sans', sans-serif; font-size: 32px; font-weight: 600; color: var(--ink); letter-spacing: -0.4px; margin-bottom: 10px; line-height: 1.2; }
.hm-sub { font-size: 16px; font-weight: 400; color: var(--ink-soft); line-height: 1.6; max-width: 480px; margin: 0 auto; }
.hm-steps {
border-radius: 16px;
overflow: hidden;
margin-bottom: 28px;
}
.hm-step {
display: flex; gap: 24px; align-items: flex-start;
padding: 26px 28px;
position: relative;
background: #fff;
}
.hm-step:nth-child(even) {
background: #fff;
}
.hm-step--last { border-bottom: none; }
.hm-step:not(.hm-step--last) .hm-step-num::after {
content: '';
position: absolute;
left: 47px;
top: 66px;
bottom: -26px;
width: 2px;
background: var(--border);
}
.hm-step-num {
width: 40px; height: 40px;
border-radius: 50%;
background: var(--ink);
color: #fff;
font-family: 'DM Sans', sans-serif;
font-size: 19px; font-weight: 700;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
position: relative;
z-index: 1;
border: 2px solid transparent;
}
.hm-step-body { flex: 1; padding-top: 6px; }
.hm-step-title {
font-family: 'DM Sans', sans-serif;
font-size: 20px; font-weight: 600;
color: var(--ink);
margin-bottom: 12px;
line-height: 1.3;
}
.hm-step-desc { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hm-role-card {
padding: 12px 14px; border-radius: 8px;
display: flex; flex-direction: column; gap: 7px;
}
.hm-role-card--buyer { background: var(--accent-light); }
.hm-role-card--seller { background: var(--cream); border: 1px solid var(--border); }
.hm-role-card p { margin: 0; font-size: 14px; font-weight: 300; color: var(--ink-soft); line-height: 1.55; }
.hm-role {
font-size: 11px; font-weight: 700;
letter-spacing: 0.8px; text-transform: uppercase;
padding: 3px 8px; border-radius: 5px;
display: inline-block; align-self: flex-start;
}
.hm-role--buyer { background: rgba(0,0,0,0.08); color: var(--accent-dark); }
.hm-role--seller { background: var(--border); color: var(--ink-soft); }
@media (max-width: 540px) {
  .hm-step-desc { grid-template-columns: 1fr; }
}
.hm-footer {
background: #fff;
border-radius: 16px;
padding: 22px 24px;
border: 1px solid var(--border-soft);
}
.hm-footer-stats {
display: flex; align-items: center; justify-content: center;
gap: 0; margin-bottom: 18px;
}
.hm-stat { text-align: center; padding: 0 24px; }
.hm-stat-val {
font-family: 'DM Sans', sans-serif;
font-size: 26px; font-weight: 700;
color: var(--ink); line-height: 1;
display: block; margin-bottom: 3px;
}
.hm-stat-label { font-size: 12px; font-weight: 400; color: var(--ink-muted); }
.hm-stat-sep { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }
.hm-footer-ctas { display: flex; gap: 10px; }
.hm-cta {
flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
border-radius: 12px; padding: 14px 20px;
transition: all 0.2s; text-align: center;
}
.hm-cta--buyer { background: var(--ink); color: #fff; }
.hm-cta--buyer:hover { background: var(--accent); }
.hm-cta--seller { background: #fff; color: var(--ink); border: 1.5px solid var(--border); }
.hm-cta--seller:hover { background: var(--cream); border-color: var(--ink-soft); }

.mlogin-wrap { display: flex; min-height: 520px; }
.mlogin-left {
width: 280px; flex-shrink: 0;
background: var(--ink); border-radius: 20px 0 0 20px;
padding: 40px 32px;
display: flex; flex-direction: column;
position: relative; overflow: hidden;
}
.mlogin-left::before {
content: ''; position: absolute; inset: 0; pointer-events: none;
background: radial-gradient(ellipse at 80% 20%, rgba(224,122,95,0.3) 0%, transparent 60%);
}
.mlogin-logo { font-family: 'DM Sans', sans-serif; font-size: 21px; font-weight: 600; color: #fff; letter-spacing: -0.4px; margin-bottom: 40px; position: relative; z-index: 1; }
.mlogin-logo em { color: #FAE8E2; font-style: normal; }
.mlogin-content { flex: 1; position: relative; z-index: 1; }
.mlogin-title { font-family: 'DM Sans', sans-serif; font-size: 23px; font-weight: 400; color: #fff; line-height: 1.3; margin-bottom: 12px; }
.mlogin-title em { font-style: italic; color: #FAE8E2; }
.mlogin-sub { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.70); line-height: 1.6; }
.mlogin-stat { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.3); line-height: 1.5; position: relative; z-index: 1; }
.mlogin-stat strong { color: rgba(255,255,255,0.6); font-weight: 500; }
.mlogin-right { flex: 1; padding: 36px 40px; overflow-y: auto; max-height: calc(100vh - 80px); }
.mlogin-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.mlogin-tab { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 400; color: var(--ink-muted); padding: 0 0 12px; margin-right: 24px; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.2s; }
.mlogin-tab:hover { color: var(--ink); }
.mlogin-tab.active { color: var(--ink); font-weight: 500; border-bottom-color: var(--accent); }
.mlogin-panel { display: none; }
.mlogin-panel.active { display: block; }
.mlogin-panel-title { font-family: 'DM Sans', sans-serif; font-size: 23px; font-weight: 400; color: var(--ink); margin-bottom: 4px; }
.mlogin-panel-sub { font-size: 14px; font-weight: 300; color: var(--ink-muted); margin-bottom: 20px; }
.mlogin-social { margin-bottom: 16px; }
.mlogin-btn-social { display: flex; align-items: center; gap: 10px; width: 100%; padding: 10px 16px; border: 1.5px solid var(--border); border-radius: 10px; background: var(--warm-white); font-family: 'DM Sans', sans-serif; font-size: 14.5px; font-weight: 400; color: var(--ink); text-decoration: none; transition: all 0.2s; cursor: pointer; }
.mlogin-btn-social:hover { border-color: var(--ink-soft); background: var(--cream); }
.mlogin-sep { display: flex; align-items: center; gap: 10px; margin: 16px 0; }
.mlogin-sep-line { flex: 1; height: 1px; background: var(--border); }
.mlogin-sep-text { font-size: 12.5px; color: var(--ink-muted); white-space: nowrap; }
.mlogin-field { margin-bottom: 12px; }
.mlogin-field label { display: block; font-size: 13px; font-weight: 500; color: var(--ink-soft); margin-bottom: 5px; letter-spacing: 0.3px; }
.mlogin-field input { width: 100%; font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 300; color: var(--ink); background: var(--cream); border: 1.5px solid var(--border); border-radius: 10px; padding: 10px 14px; outline: none; transition: border-color 0.2s; font-size: 17px; }
.mlogin-field input:focus { border-color: rgba(224,122,95,0.5); background: var(--warm-white); }
.mlogin-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mlogin-forgot { text-align: right; margin: -4px 0 12px; }
.mlogin-forgot a { font-size: 13px; color: var(--ink-muted); text-decoration: none; }
.mlogin-forgot a:hover { color: var(--accent); }
.mlogin-google-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; color: var(--ink); background: #fff; border: 1.5px solid var(--border); border-radius: 12px; padding: 11px 16px; cursor: pointer; text-decoration: none; transition: border-color 0.2s, box-shadow 0.2s; margin-bottom: 4px; }
.mlogin-google-btn:hover { border-color: #aaa; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.mlogin-sep { display: flex; align-items: center; gap: 12px; margin: 14px 0; }
.mlogin-sep::before, .mlogin-sep::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.mlogin-sep span { font-size: 12px; color: var(--ink-muted); white-space: nowrap; }
.mlogin-submit { width: 100%; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; color: #fff; background: var(--accent); border: none; border-radius: 12px; padding: 12px; cursor: pointer; transition: background 0.2s; margin-top: 4px; }
.mlogin-submit:hover { background: var(--accent-dark); }
.mlogin-cgu { font-size: 12.5px; font-weight: 300; color: var(--ink-muted); text-align: center; margin-top: 12px; line-height: 1.6; }
.mlogin-cgu a { color: var(--accent); text-decoration: none; }
.nav-burger {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 6px;
border-radius: 8px;
transition: background 0.2s;
flex-shrink: 0;
-webkit-tap-highlight-color: transparent;
}
.nav-burger:hover { background: var(--cream); }
.nav-burger span {
display: block;
width: 22px;
height: 2px;
background: var(--ink);
border-radius: 2px;
transition: all 0.25s ease;
transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-search-mobile {
display: none;
}
.nav-drawer-overlay {
display: none;
position: fixed; inset: 0;
background: rgba(38,51,64,0.45);
backdrop-filter: blur(3px);
z-index: 10000;
}
.nav-drawer-overlay.open { display: block; }
.nav-drawer {
position: fixed;
top: 0; right: 0; bottom: 0;
width: min(320px, 88vw);
background: var(--warm-white);
z-index: 10001;
transform: translateX(100%);
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
display: flex;
flex-direction: column;
box-shadow: -8px 0 40px rgba(38,51,64,0.15);
overflow: hidden;
}
.nav-drawer.open { transform: translateX(0); }
.drawer-header {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 16px;
border-bottom: 1px solid var(--border-soft);
flex-shrink: 0;
background: var(--warm-white);
}
.drawer-search {
flex: 1;
display: flex;
align-items: center;
gap: 8px;
background: var(--cream);
border: 1.5px solid var(--border);
border-radius: 100px;
padding: 0 14px;
height: 38px;
transition: border-color 0.2s;
}
.drawer-search:focus-within {
border-color: rgba(224,122,95,0.4);
background: var(--warm-white);
}
.drawer-search svg {
width: 14px; height: 14px;
opacity: 0.3; flex-shrink: 0;
stroke: var(--ink);
}
.drawer-search input {
flex: 1;
font-family: 'DM Sans', sans-serif;
font-size: 15px; font-weight: 300;
color: var(--ink);
background: transparent;
border: none; outline: none;
min-width: 0;
}
.drawer-search input::placeholder { color: var(--ink-muted); }
.drawer-logo { display: flex; align-items: center; }
.drawer-logo img { width: 130px; height: auto; }
.drawer-logo em { color: var(--accent); font-style: normal; }
.drawer-close {
width: 32px; height: 32px;
border-radius: 50%;
border: 1px solid var(--border);
background: none;
display: flex; align-items: center; justify-content: center;
cursor: pointer;
transition: all 0.2s;
}
.drawer-close:hover { background: var(--cream); }
.drawer-close svg { width: 14px; height: 14px; }
.drawer-body {
flex: 1;
overflow-y: auto;
padding: 20px 16px 32px;
}
.drawer-cta {
display: flex;
align-items: center;
gap: 10px;
width: 100%;
background: var(--ink);
color: #fff;
border-radius: 12px;
padding: 14px 18px;
font-family: 'DM Sans', sans-serif;
font-size: 15px;
font-weight: 500;
text-decoration: none;
margin-bottom: 20px;
transition: background 0.2s;
position: relative;
overflow: hidden;
}
.drawer-cta::before {
content: '';
position: absolute; inset: 0;
background: radial-gradient(circle at 80% 50%, rgba(224,122,95,0.35) 0%, transparent 60%);
pointer-events: none;
}
.drawer-cta:hover { background: #2a2420; }
.drawer-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.drawer-links {
display: flex;
flex-direction: column;
gap: 2px;
margin-bottom: 24px;
}
.drawer-link {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 12px;
border-radius: 10px;
font-family: 'DM Sans', sans-serif;
font-size: 15px;
font-weight: 400;
color: var(--ink);
text-decoration: none;
transition: background 0.15s;
cursor: pointer;
}
.drawer-link:hover { background: var(--cream); }
.drawer-link svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.5; }
.drawer-link--muted { color: var(--ink-muted); font-size: 14px; }
.drawer-badge {
margin-left: auto;
background: var(--accent);
color: #fff;
font-size: 11px;
font-weight: 500;
border-radius: 100px;
padding: 2px 7px;
min-width: 20px;
text-align: center;
}
.drawer-badge--accent { background: var(--accent); }
.drawer-sep { height: 1px; background: var(--border-soft); margin: 6px 0; }
.drawer-group-label {
font-size: 10.5px; font-weight: 700; text-transform: uppercase;
letter-spacing: 0.07em; color: var(--ink-muted); padding: 8px 20px 3px;
}
.drawer-user-header {
display: flex; align-items: center; gap: 12px;
padding: 12px 20px; text-decoration: none; color: var(--ink);
transition: background 0.15s; border-radius: 12px; margin: 0 8px 4px;
}
.drawer-user-header:hover { background: var(--cream); }
.drawer-user-avatar {
width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
background: linear-gradient(135deg, var(--accent-light), #f5cfc4);
display: flex; align-items: center; justify-content: center;
font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
color: var(--accent-dark); overflow: hidden;
}
.drawer-user-info { min-width: 0; }
.drawer-user-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.drawer-user-email { font-size: 12px; color: var(--ink-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.drawer-section-title {
font-size: 10.5px;
font-weight: 500;
letter-spacing: 1.8px;
text-transform: uppercase;
color: var(--ink-muted);
margin-bottom: 10px;
padding: 0 4px;
}
.drawer-cats {
display: flex;
flex-wrap: wrap;
gap: 7px;
}
.drawer-cat {
font-family: 'DM Sans', sans-serif;
font-size: 13.5px;
font-weight: 500;
color: var(--ink-soft);
background: var(--cream);
border: 1px solid var(--border);
border-radius: 100px;
padding: 8px 16px;
text-decoration: none;
transition: all 0.15s;
display: inline-flex;
align-items: center;
gap: 6px;
}
.drawer-cat:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.drawer-cat.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.drawer-gratuit {
display: flex;
align-items: center;
gap: 8px;
background: rgba(224,122,95,0.09);
color: var(--accent-dark);
border: 1px solid rgba(224,122,95,0.2);
border-radius: 10px;
padding: 10px 14px;
font-family: 'DM Sans', sans-serif;
font-size: 14px;
font-weight: 500;
margin-bottom: 16px;
}
.drawer-gratuit svg {
width: 13px; height: 13px;
stroke: var(--accent);
flex-shrink: 0;
}
.static-page { max-width: 1200px; margin: 0 auto; padding: 0 40px 80px; }
.static-hero { text-align: center; padding: 56px 0 48px; border-bottom: 1px solid var(--border-soft); margin-bottom: 56px; }
.static-hero--compact { padding: 40px 0 32px; margin-bottom: 40px; }
.static-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 14px; }
.static-title { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 400; color: var(--ink); letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 12px; }
.static-title em { font-style: italic; color: var(--accent-dark); }
.static-sub { font-size: 16px; font-weight: 300; color: var(--ink-muted); }
.contact-wrap { display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: start; }
.contact-form-col { order: 2; }
.contact-info-col { order: 1; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform-field { display: flex; flex-direction: column; gap: 6px; }
.cform-label { font-size: 13.5px; font-weight: 500; color: var(--ink-soft); letter-spacing: 0.2px; }
.cform-input {
font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 300;
color: var(--ink); background: var(--warm-white);
border: 1.5px solid var(--border); border-radius: 12px;
padding: 12px 16px; outline: none; transition: border-color 0.2s, background 0.2s;
width: 100%; font-size: 16px;
}
.cform-input:focus { border-color: var(--accent); background: #fff; }
.cform-input.input--error { border-color: #E24B4A; background: #fff8f8; }
.cform-input.input--error:focus { border-color: #E24B4A; }
.cform-input[readonly] { background: var(--cream); color: var(--ink-muted); cursor: not-allowed; opacity: 0.75; }
.cform-input[readonly]:focus { border-color: var(--border); background: var(--cream); }
.cform-select { cursor: pointer; appearance: none;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%238A9BAA' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
padding-right: 40px;
}
.cform-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.cform-submit {
display: inline-flex; align-items: center; justify-content: center; gap: 10px;
font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
color: #fff; background: var(--ink); border: none; border-radius: 12px;
padding: 14px 28px; cursor: pointer; transition: all 0.2s; margin-top: 4px;
align-self: flex-start;
}
.cform-submit:hover { background: var(--accent); transform: translateY(-1px); }
.cform-submit svg { width: 16px; height: 16px; }
.contact-login-required { display:flex; align-items:flex-start; gap:14px; background:var(--accent-light); border-radius:12px; padding:16px 20px; margin-bottom:24px; }
.contact-login-required svg { flex-shrink:0; stroke:var(--accent-dark); margin-top:2px; }
.contact-login-title { font-size:14px; font-weight:600; color:var(--ink); margin-bottom:4px; }
.contact-login-sub { font-size:13.5px; font-weight:300; color:var(--ink-soft); line-height:1.5; }
.contact-login-sub a { color:var(--accent-dark); font-weight:500; text-decoration:none; }
.contact-login-sub a:hover { text-decoration:underline; }
.contact-error { background: #fff0f0; border: 1px solid #fca5a5; color: #b91c1c; border-radius: 10px; padding: 12px 16px; font-size: 14px; margin-bottom: 16px; }
.contact-success { text-align: center; padding: 56px 32px; background: var(--warm-white); border-radius: 20px; border: 1px solid var(--border); }
.contact-success-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--accent-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.contact-success-icon svg { width: 24px; height: 24px; stroke: var(--accent); }
.contact-success-title { font-family: 'DM Sans', sans-serif; font-size: 24px; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
.contact-success-sub { font-size: 15px; font-weight: 300; color: var(--ink-muted); line-height: 1.6; margin-bottom: 28px; }
.contact-back { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 500; color: var(--accent); padding: 10px 22px; border: 1.5px solid var(--accent); border-radius: 100px; transition: all 0.2s; }
.contact-back:hover { background: var(--accent); color: #fff; }
.contact-info-col { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.contact-info-title { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 16px; }
.contact-info-items { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 16px; height: 16px; stroke: var(--accent); }
.contact-info-label { font-size: 12px; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 2px; }
.contact-info-val { font-size: 14.5px; font-weight: 400; color: var(--ink); }
.contact-faq { display: flex; flex-direction: column; gap: 0; }
.contact-faq-item { border-bottom: 1px solid var(--border-soft); }
.contact-faq-item:last-child { border-bottom: none; }
.contact-faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 0; font-size: 14px; font-weight: 500; color: var(--ink);
  cursor: pointer; user-select: none; transition: color 0.2s;
}
.contact-faq-q:hover { color: var(--accent); }
.contact-faq-q svg { flex-shrink: 0; transition: transform 0.25s ease; opacity: 0.4; }
.contact-faq-item.open .contact-faq-q svg { transform: rotate(180deg); opacity: 1; }
.contact-faq-item.open .contact-faq-q { color: var(--accent); }
.contact-faq-a {
  font-size: 13.5px; font-weight: 300; color: var(--ink-muted); line-height: 1.65;
  overflow: hidden; max-height: 0; transition: max-height 0.3s ease, padding-bottom 0.3s ease;
  padding-bottom: 0;
}
.contact-faq-item.open .contact-faq-a { max-height: 200px; padding-bottom: 14px; }
.legal-wrap { display: grid; grid-template-columns: 200px 1fr; gap: 56px; align-items: start; }
.legal-nav { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 0; }
.legal-nav-title { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 12px; }
.legal-nav a { font-size: 13.5px; font-weight: 400; color: var(--ink-muted); padding: 7px 0; border-left: 2px solid var(--border); padding-left: 12px; transition: all 0.15s; }
.legal-nav a:hover { color: var(--accent); border-left-color: var(--accent); }
.legal-content section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border-soft); }
.legal-content section:last-of-type { border-bottom: none; }
.legal-content h2 { font-family: 'DM Sans', sans-serif; font-size: 23px; font-weight: 400; color: var(--ink); margin-bottom: 16px; letter-spacing: -0.2px; }
.legal-content p { font-size: 15px; font-weight: 300; color: var(--ink-soft); line-height: 1.8; margin-bottom: 14px; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul { margin: 12px 0 14px 0; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.legal-content ul li { font-size: 15px; font-weight: 300; color: var(--ink-soft); line-height: 1.7; padding-left: 20px; position: relative; }
.legal-content ul li::before { content: '-'; position: absolute; left: 0; color: var(--accent); font-weight: 400; }
.legal-content strong { font-weight: 600; color: var(--ink); }
.legal-content a { color: var(--accent); border-bottom: 1px solid var(--accent-light); transition: border-color 0.2s; }
.legal-content a:hover { border-bottom-color: var(--accent); }
.legal-contact-box { display: flex; align-items: flex-start; gap: 16px; background: var(--accent-light); border-radius: 14px; padding: 20px 24px; margin-top: 48px; }
.legal-contact-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--warm-white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.legal-contact-icon svg { width: 18px; height: 18px; stroke: var(--accent); }
.legal-contact-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.legal-contact-sub { font-size: 14px; font-weight: 300; color: var(--ink-soft); line-height: 1.6; }
.cookie-banner {
display: none;
position: fixed;
bottom: 24px;
left: 50%;
transform: translateX(-50%);
z-index: 500;
width: calc(100% - 48px);
max-width: 740px;
background: var(--ink);
border-radius: 16px;
box-shadow: 0 8px 40px rgba(0,0,0,0.25);
animation: cookieIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.cookie-banner.visible { display: block; }
@keyframes cookieIn {
from { opacity:0; transform: translateX(-50%) translateY(20px); }
to   { opacity:1; transform: translateX(-50%) translateY(0); }
}
.cookie-inner {
display: flex;
align-items: center;
gap: 16px;
padding: 16px 20px;
flex-wrap: wrap;
}
.cookie-icon {
width: 36px; height: 36px;
background: #fff;
border-radius: 10px;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}
.cookie-icon svg { width: 18px; height: 18px; stroke: var(--ink); }
.cookie-text { flex: 1; min-width: 200px; }
.cookie-title { font-size: 14.5px; font-weight: 500; color: #fff; margin-bottom: 2px; }
.cookie-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.5; }
.cookie-desc a { color: rgba(255,255,255,0.65); border-bottom: 1px solid rgba(255,255,255,0.2); }
.cookie-desc a:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.6); }
.cookie-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.cookie-btn { font-family: 'DM Sans', sans-serif; cursor: pointer; border: none; transition: all 0.2s; }
.cookie-btn--accept {
font-size: 14px; font-weight: 500;
color: var(--ink);
background: #fff;
border-radius: 100px;
padding: 8px 20px;
white-space: nowrap;
}
.cookie-btn--accept:hover { background: var(--accent-light); }
.cookie-btn--close {
width: 32px; height: 32px;
border-radius: 50%;
background: #fff;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}
.cookie-btn--close:hover { background: rgba(255,255,255,0.25); }
.cookie-btn--close svg { width: 14px; height: 14px; stroke: var(--ink); }














.pill-arrow {
width: 11px; height: 11px;
margin-left: 2px; margin-right: -2px;
transition: transform 0.2s ease;
flex-shrink: 0;
vertical-align: middle;
}
.cat-dropdown:hover .pill-arrow,
.cat-dropdown.open .pill-arrow {
transform: rotate(180deg);
}
.cat-dropdown {
position: relative;
display: inline-flex;
align-items: center;
}
.cat-dropdown > a.pill {
display: inline-flex;
align-items: center;
gap: 4px;
}
.mega-menu {
display: none;
position: absolute;
top: calc(100% + 10px);
left: 50%;
transform: translateX(-50%);
z-index: 99999;
min-width: 340px;
max-width: 460px;
pointer-events: none;
}
.cat-dropdown:hover .mega-menu,
.cat-dropdown.open .mega-menu {
display: block;
pointer-events: auto;
animation: megaIn 0.2s ease;
}
@keyframes megaIn {
from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.mega-menu::before {
content: '';
position: absolute;
top: -10px;
left: 0; right: 0;
height: 12px;
}
.mega-menu-inner {
background: #fff;
border: 1px solid var(--border);
border-radius: 16px;
box-shadow: 0 16px 48px rgba(38,51,64,0.14), 0 2px 8px rgba(38,51,64,0.06);
overflow: hidden;
}
.mega-menu-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 20px 12px;
border-bottom: 1px solid var(--border-soft);
background: var(--cream);
}
.mega-menu-cat-title {
font-family: 'DM Sans', sans-serif;
font-size: 16px;
font-weight: 600;
color: var(--ink);
letter-spacing: -0.2px;
display: flex;
align-items: center;
}
.mega-menu-see-all {
display: inline-flex;
align-items: center;
gap: 4px;
font-size: 12px;
font-weight: 500;
color: var(--accent-dark);
background: var(--accent-light);
border-radius: 100px;
padding: 4px 10px 4px 12px;
white-space: nowrap;
text-decoration: none;
transition: background 0.15s, gap 0.2s;
}
.mega-menu-see-all:hover { background: #f5cfc4; gap: 7px; }
.mega-menu-see-all svg {
width: 12px; height: 12px;
stroke: var(--accent-dark);
transition: transform 0.2s;
}
.mega-menu-see-all:hover svg { transform: translateX(2px); }
.mega-menu-subs {
padding: 6px 0;
display: grid;
grid-template-columns: 1fr 1fr;
}
.mega-menu-sub {
display: flex;
align-items: center;
gap: 10px;
padding: 9px 16px;
font-family: 'DM Sans', sans-serif;
font-size: 13.5px;
font-weight: 400;
color: var(--ink-soft);
transition: background 0.12s, color 0.12s;
cursor: pointer;
text-decoration: none;
}
.mega-menu-sub:hover {
background: var(--cream);
color: var(--ink);
}
.mega-menu-sub-dot {
width: 5px; height: 5px;
border-radius: 50%;
background: var(--border);
flex-shrink: 0;
transition: background 0.15s, transform 0.15s;
}
.mega-menu-sub:hover .mega-menu-sub-dot {
background: var(--accent);
transform: scale(1.3);
}

.report-link {
margin-top: 24px;
padding-top: 16px;
border-top: 1px solid var(--border-soft);
}
.report-link a {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 12px;
font-weight: 400;
color: var(--ink-muted);
opacity: 0.6;
transition: opacity 0.2s, color 0.2s;
}
.report-link a:hover {
opacity: 1;
color: var(--accent-dark);
}
.report-link svg {
width: 13px; height: 13px;
flex-shrink: 0;
}
.hm-logo-modal {
margin-bottom: 20px;
display: flex;
justify-content: center;
}
.hm-logo-modal img {
width: 120px;
height: auto;
}
.payment-choice { margin-bottom: 16px; }
.payment-choice-title { font-size: 12px; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.payment-option { display: block; cursor: pointer; margin-bottom: 8px; }
.payment-option input[type="radio"] { display: none; }
.payment-option-inner { display: flex; align-items: center; gap: 12px; padding: 13px 14px; border: 1.5px solid var(--border); border-radius: 12px; transition: all 0.2s; background: var(--warm-white); }
.payment-option:hover .payment-option-inner { border-color: var(--ink-soft); }
.payment-option input:checked ~ .payment-option-inner { border-color: var(--accent); background: var(--accent-light); }
.payment-option-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.payment-option-icon svg { width: 16px; height: 16px; stroke: var(--ink-soft); }
.payment-option input:checked ~ .payment-option-inner .payment-option-icon { background: var(--warm-white); }
.payment-option input:checked ~ .payment-option-inner .payment-option-icon svg { stroke: var(--accent-dark); }
.payment-option-body { flex: 1; }
.payment-option-name { font-size: 13.5px; font-weight: 500; color: var(--ink); display: flex; align-items: center; gap: 7px; margin-bottom: 2px; }
.payment-badge { font-size: 9.5px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; background: var(--accent); color: #fff; padding: 2px 7px; border-radius: 100px; }
.payment-option-desc { font-size: 12px; font-weight: 300; color: var(--ink-muted); line-height: 1.5; }
.payment-option-check { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s; }
.payment-option-check svg { width: 11px; height: 11px; display: none; }
.payment-option input:checked ~ .payment-option-inner .payment-option-check { background: var(--accent); border-color: var(--accent); }
.payment-option input:checked ~ .payment-option-inner .payment-option-check svg { display: block; stroke: #fff; }
.mcode-inputs {
display: flex; gap: 10px; justify-content: center; margin-bottom: 20px;
}
.mcode-digit {
width: 46px; height: 54px;
border: 1.5px solid var(--border); border-radius: 12px;
text-align: center; font-size: 22px; font-weight: 600;
color: var(--ink); outline: none; transition: border-color .2s;
font-family: 'DM Sans', sans-serif;
}
.mcode-digit:focus { border-color: var(--accent); }
.mlogin-alert {
padding: 11px 14px; border-radius: 10px;
font-size: 13.5px; margin-bottom: 16px;
}
.mlogin-alert.error   { background: var(--accent-light); color: var(--accent-dark); }
.mlogin-alert.success { background: #E0F0E8; color: #2D6A4F; }
.mlogin-alert.info    { background: #E8EEF5; color: #3D5A80; }
.attrs-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 14px;
margin-bottom: 8px;
}
.attr-field { display: flex; flex-direction: column; gap: 6px; }
.attr-label {
font-size: 11px; font-weight: 500;
letter-spacing: 1.2px; text-transform: uppercase;
color: var(--ink-muted);
}
.attr-input-wrap {
display: flex; align-items: center; gap: 8px;
}
.attr-suffix {
font-size: 13px; color: var(--ink-muted);
font-weight: 300; white-space: nowrap;
}
.attr-number-wrap {
display: flex; align-items: center; gap: 8px;
}
.attr-number-wrap .input-text { flex: 1; }
.subcat-grid {
display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px;
}
.subcat-btn {
font-family: 'DM Sans', sans-serif;
font-size: 13px; font-weight: 400;
color: var(--ink-soft);
background: var(--warm-white);
border: 1.5px solid var(--border);
border-radius: 100px;
padding: 6px 16px; cursor: pointer;
transition: all 0.18s;
}
.subcat-btn:hover { border-color: var(--accent); color: var(--accent-dark); }
.subcat-btn.selected {
background: var(--accent-light);
border-color: var(--accent);
color: var(--accent-dark); font-weight: 500;
}
.city-suggestions {
position: absolute; top: calc(100% + 3px); left: 0; right: 0;
background: var(--warm-white);
border: 1.5px solid var(--border);
border-radius: 14px;
box-shadow: 0 8px 32px rgba(38,51,64,0.14);
z-index: 9999; display: none;
max-height: 320px;
overflow-y: auto;
overflow-x: hidden;
scrollbar-width: thin;
scrollbar-color: var(--border) transparent;
}
.city-suggestions::-webkit-scrollbar {
width: 6px;
}
.city-suggestions::-webkit-scrollbar-track {
background: transparent;
border-radius: 0 14px 14px 0;
}
.city-suggestions::-webkit-scrollbar-thumb {
background: var(--border);
border-radius: 10px;
}
.city-suggestions::-webkit-scrollbar-thumb:hover {
background: var(--ink-muted);
}
.city-suggestions.has-scroll::after {
content: '';
display: block;
position: sticky;
bottom: 0;
left: 0; right: 0;
height: 28px;
background: linear-gradient(to bottom, transparent, rgba(250,248,245,0.95));
pointer-events: none;
}
.city-suggestion {
display: flex; align-items: center; justify-content: space-between;
padding: 11px 16px; cursor: pointer;
transition: background 0.12s;
border-bottom: 1px solid var(--border-soft);
gap: 12px;
min-height: 44px;
}
.city-suggestion:last-child { border-bottom: none; }
.city-suggestion:hover,
.city-suggestion:focus { background: var(--accent-light); outline: none; }
.city-name {
font-size: 14px; font-weight: 400; color: var(--ink);
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.city-cp {
font-size: 12px; color: var(--ink-muted); font-weight: 400;
flex-shrink: 0;
background: var(--cream);
border-radius: 6px;
padding: 2px 7px;
letter-spacing: 0.3px;
}
.loc-wrap { position: relative; z-index: 0; }
.product-attrs { margin-bottom: 28px; }
.attrs-table {
background: var(--warm-white);
border: 1px solid var(--border-soft);
border-radius: 14px;
overflow: hidden;
}
.attr-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 11px 18px;
border-bottom: 1px solid var(--border-soft);
gap: 16px;
}
.attr-row:last-child { border-bottom: none; }
.attr-row:nth-child(even) { background: var(--cream); }
.attr-row-key {
font-size: 12px; font-weight: 500;
color: var(--ink-muted);
text-transform: uppercase;
letter-spacing: 0.6px;
flex-shrink: 0;
}
.attr-row-val {
font-size: 14px; font-weight: 400;
color: var(--ink);
text-align: right;
}
.hero-search-sep {
width: 1px;
height: 22px;
background: var(--border);
flex-shrink: 0;
}
.hero-loc-icon {
width: 14px; height: 14px;
opacity: 0.4;
flex-shrink: 0;
}
.hero-loc-wrap {
position: relative;
flex: 0 0 160px;
z-index: 20;
overflow: visible;
}
.hero-loc-input {
width: 100%;
font-family: 'DM Sans', sans-serif;
font-size: 13px; font-weight: 300;
border: none; outline: none;
background: transparent;
color: var(--ink);
}
.hero-loc-input::placeholder { color: var(--ink-muted); }
#hero-city-suggestions {
left: -16px;
min-width: 220px;
}

.city-suggestion--whole {
background: var(--accent-light);
border-bottom: 1px solid var(--border);
}
.city-suggestion--whole:hover { background: #F5DDD5; }
.city-suggestion--whole .city-name { font-weight: 500; color: var(--accent-dark); }
.city-whole-label {
font-size: 10.5px; font-weight: 600;
letter-spacing: 0.4px; text-transform: uppercase;
color: var(--accent); opacity: 0.85;
}
.city-suggestion--arr { padding-left: 24px; }
.city-suggestion--arr .city-name { font-size: 13px; }
.city-no-result {
padding: 14px 16px;
font-size: 13px;
color: var(--ink-muted);
font-style: italic;
text-align: center;
}
.city-count {
padding: 7px 16px;
font-size: 11px;
font-weight: 500;
color: var(--ink-muted);
text-transform: uppercase;
letter-spacing: 0.8px;
background: var(--cream);
border-bottom: 1px solid var(--border-soft);
position: sticky;
top: 0;
z-index: 1;
}
.input-text.city-validated {
border-color: rgba(34, 139, 34, 0.4);
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2322863a' stroke-width='2.5' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 14px center;
background-size: 14px;
padding-right: 40px;
}
.sf-loc-hint {
font-size: 10px; font-weight: 300;
color: var(--ink-muted); letter-spacing: 0;
text-transform: none;
}
#sf-villes-tags {
display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px;
}
.sf-ville-tag {
display: inline-flex; align-items: center; gap: 5px;
background: var(--accent-light); border: 1px solid var(--accent);
color: var(--accent-dark); border-radius: 100px;
font-size: 12px; font-weight: 500; padding: 3px 10px 3px 12px;
}
.sf-ville-tag-del {
background: none; border: none; cursor: pointer;
color: var(--accent); font-size: 14px; line-height: 1;
padding: 0; margin-left: 2px;
display: flex; align-items: center;
}
.sf-ville-tag-del:hover { color: var(--accent-dark); }
#sf-rayon-wrap { margin-top: 14px; }
.sf-rayon-label {
font-size: 11px; font-weight: 500;
letter-spacing: 1px; text-transform: uppercase;
color: var(--ink-muted); display: block; margin-bottom: 10px;
}
.sf-rayon-label strong { color: var(--ink); font-weight: 600; }
.sf-rayon-slider {
-webkit-appearance: none; appearance: none;
width: 100%; height: 4px;
background: linear-gradient(to right, var(--accent) 0%, var(--accent) var(--pct, 0%), var(--border) var(--pct, 0%), var(--border) 100%);
border-radius: 4px; outline: none; cursor: pointer;
}
.sf-rayon-slider::-webkit-slider-thumb {
-webkit-appearance: none;
width: 18px; height: 18px; border-radius: 50%;
background: var(--accent); border: 2px solid #fff;
box-shadow: 0 1px 6px rgba(224,122,95,0.4);
cursor: pointer;
}
.sf-rayon-slider::-moz-range-thumb {
width: 18px; height: 18px; border-radius: 50%;
background: var(--accent); border: 2px solid #fff;
cursor: pointer;
}
.sf-rayon-scale {
display: flex; justify-content: space-between;
font-size: 10px; color: var(--ink-muted);
margin-top: 5px; font-weight: 300;
}
.sf-rayon-slider:disabled { opacity: 0.35; cursor: not-allowed; }
.sf-rayon-hint {
font-size: 11px; color: var(--ink-muted);
font-style: italic; margin-top: 6px;
font-weight: 300;
}
.offres-empty { text-align: center; padding: 60px 24px; }
@keyframes spin { to { transform: rotate(360deg); } }
.existing-photos-grid {
display: flex; flex-wrap: wrap; gap: 10px;
min-height: 100px;
}
.existing-photo-item {
position: relative; width: 90px; height: 90px;
border-radius: 10px; overflow: hidden;
border: 2px solid var(--border-soft);
cursor: grab; user-select: none;
transition: opacity 0.2s, transform 0.15s, border-color 0.15s;
}
.existing-photo-item:active { cursor: grabbing; }
.existing-photo-item img {
width: 100%; height: 100%; object-fit: cover;
pointer-events: none;
}
.existing-photo-del-btn {
position: absolute; top: 4px; right: 4px;
width: 22px; height: 22px; border-radius: 50%;
background: rgba(38,51,64,0.6); border: none;
cursor: pointer; display: flex; align-items: center; justify-content: center;
transition: background 0.15s; padding: 0; z-index: 2;
}
.existing-photo-del-btn svg { width: 10px; height: 10px; pointer-events: none; }
.existing-photo-del-btn:hover { background: #E24B4A; }
.existing-photo-item.marked-delete { opacity: 0.3; border-color: #E24B4A; }
.existing-photo-item.marked-delete .existing-photo-del-btn { background: #E24B4A; }
.existing-photo-item.dragging { opacity: 0.4; transform: scale(0.95); }
.existing-photo-item.drag-over { border-color: var(--accent); transform: scale(1.05); }
.existing-photo-main {
position: absolute; bottom: 4px; left: 4px;
font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
background: var(--accent); color: #fff; border-radius: 4px; padding: 1px 5px;
pointer-events: none;
}
.ann-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.ann-mobile-btn { display: none; }
.ann-btn {
width: 34px; height: 34px; border-radius: 9px;
display: flex; align-items: center; justify-content: center;
border: 1.5px solid var(--border); background: #fff;
cursor: pointer; transition: all 0.15s; color: var(--ink-soft);
text-decoration: none; flex-shrink: 0;
}
.ann-btn svg { width: 14px; height: 14px; stroke: currentColor; }
.ann-btn:hover { border-color: var(--ink-muted); background: var(--cream); color: var(--ink); }
.ann-btn--pause:hover { border-color: #f59e0b; color: #f59e0b; background: #fffbeb; }
.ann-btn--play:hover  { border-color: #22c55e; color: #22c55e; background: #f0fdf4; }
.ann-btn--delete:hover{ border-color: #ef4444; color: #ef4444; background: #fef2f2; }
.badge-pause {
background: #fef3c7; color: #d97706;
font-size: 10.5px; font-weight: 600; border-radius: 100px; padding: 3px 9px;
}
.annonce-card--paused { opacity: 0.65; }
.annonce-card--paused:hover { opacity: 1; transition: opacity 0.2s; }
.ann-pagination {
display:flex;align-items:center;justify-content:center;gap:6px;margin-top:20px;flex-wrap:wrap;
}
.ann-page-btn {
min-width:36px;height:36px;padding:0 10px;border-radius:8px;
border:1px solid var(--border-soft);background:var(--warm-white);
font-size:14px;font-weight:400;color:var(--ink-muted);cursor:pointer;
transition:background .15s,color .15s,border-color .15s;
}
.ann-page-btn:hover:not(:disabled) { border-color:var(--accent);color:var(--accent); }
.ann-page-btn.active { background:var(--accent);border-color:var(--accent);color:#fff;font-weight:500; }
.ann-page-btn:disabled { opacity:0.35;cursor:default; }
.share-wrap {
position: relative; flex-shrink: 0;
}
.share-dropdown {
display: none; position: absolute; top: calc(100% + 8px); right: 0;
background: #fff; border: 1.5px solid var(--border-soft);
border-radius: 16px; box-shadow: 0 8px 32px rgba(38,51,64,0.13);
padding: 10px 6px; min-width: 210px; z-index: 9999;
}
.share-dropdown.open { display: block; }
.share-dd-title {
font-size: 10px; font-weight: 600; letter-spacing: 1.4px;
text-transform: uppercase; color: var(--ink-muted);
padding: 4px 12px 10px; border-bottom: 1px solid var(--border-soft);
margin-bottom: 6px;
}
.share-dd-item {
display: flex; align-items: center; gap: 11px;
padding: 9px 12px; border-radius: 10px;
font-size: 13.5px; font-weight: 400; color: var(--ink);
text-decoration: none; cursor: pointer; transition: background 0.12s;
}
.share-dd-item:hover { background: var(--cream); }
.share-dd-icon {
width: 30px; height: 30px; border-radius: 8px;
display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.share-dd-icon svg { width: 14px; height: 14px; }
.share-dd-icon--copy     { background: #f1f5f9; color: var(--ink-soft); }
.share-dd-icon--facebook { background: #1877f2; color: #fff; }
.share-dd-icon--twitter  { background: #000; color: #fff; }
.share-dd-icon--whatsapp { background: #25d366; color: #fff; }
.share-dd-icon--messenger{ background: linear-gradient(135deg,#0099ff,#a033ff); color: #fff; }
.share-dd-icon--mail     { background: #f97316; color: #fff; }
.unified-photos-grid {
display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px;
}
.unified-photo-item {
position: relative; width: 90px; height: 90px;
border-radius: 10px; overflow: hidden;
border: 2px solid var(--border-soft);
cursor: grab; user-select: none;
transition: opacity 0.2s, transform 0.15s, border-color 0.15s;
flex-shrink: 0;
}
.unified-photo-item img {
width: 100%; height: 100%; object-fit: cover; pointer-events: none;
}
.unified-photo-del-btn {
position: absolute; top: 4px; right: 4px;
width: 22px; height: 22px; border-radius: 50%;
background: rgba(38,51,64,0.65); border: none;
cursor: pointer; display: flex; align-items: center; justify-content: center;
transition: background 0.15s; padding: 0; z-index: 2;
}
.unified-photo-del-btn svg { width: 10px; height: 10px; pointer-events: none; }
.unified-photo-del-btn:hover { background: #E24B4A; }
.unified-photo-item.marked-delete { opacity: 0.25; border-color: #E24B4A; }
.unified-photo-item.marked-delete .unified-photo-del-btn { background: #E24B4A; }
.unified-photo-item.dragging { opacity: 0.35; transform: scale(0.93); }
.unified-photo-item.drag-over { border-color: var(--accent); transform: scale(1.06); }
.unified-photo-main {
position: absolute; bottom: 4px; left: 4px;
font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px;
background: var(--accent); color: #fff; border-radius: 4px; padding: 2px 5px;
pointer-events: none;
}
.unified-photo-add {
width: 90px; height: 90px; border-radius: 10px;
border: 2px dashed var(--border); background: var(--cream);
display: flex; align-items: center; justify-content: center;
cursor: pointer; transition: border-color 0.15s, background 0.15s; flex-shrink: 0;
}
.unified-photo-add:hover { border-color: var(--accent); background: var(--accent-light); }
.unified-photo-add svg { width: 22px; height: 22px; stroke: var(--ink-muted); }
.unified-photo-add:hover svg { stroke: var(--accent); }
.photo-compressing { background: var(--cream); cursor: default !important; display: flex; align-items: center; justify-content: center; }
.photo-compress-spinner { width: 22px; height: 22px; border: 2px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: photo-spin 0.7s linear infinite; }
@keyframes photo-spin { to { transform: rotate(360deg); } }
.upload-zone--compact { margin-top: 10px; padding: 20px; }
.ann-card-link {
display: flex; align-items: center; gap: 14px;
flex: 0; flex-shrink: 0; text-decoration: none; color: inherit;
}
a.ann-title {
display:block; text-decoration:none; color:var(--ink);
}
a.ann-title:hover { color:var(--accent); }
.annonce-card { cursor: default; }
.offre-del-btn {
width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0;
background: none; border: none; cursor: pointer;
display: flex; align-items: center; justify-content: center;
color: var(--border); transition: color 0.15s;
padding: 0; margin-left: auto;
}
.offre-del-btn svg { width: 12px; height: 12px; }
.offre-item:hover .offre-del-btn { color: var(--ink-muted); }
.offre-del-btn:hover { color: #ef4444 !important; }
.offre-bubble-wrap {
display: flex; flex-direction: column; align-items: center;
gap: 4px; padding: 4px 0 8px;
}
.offre-bubble {
background: linear-gradient(135deg, var(--ink) 0%, #2d3f52 100%);
border-radius: 16px; padding: 16px 24px;
text-align: center; min-width: 180px; max-width: 260px;
}
.offre-bubble-label {
font-size: 11px; font-weight: 500; letter-spacing: 1px;
text-transform: uppercase; color: rgba(255,255,255,0.5);
margin-bottom: 6px;
}
.offre-bubble-amt {
font-family: 'DM Sans', sans-serif;
font-size: 28px; font-weight: 700; color: #fff; line-height: 1;
margin-bottom: 10px;
}
.offre-bubble-statut {
font-size: 12px; font-weight: 500; padding: 3px 10px;
border-radius: 20px; display: inline-block;
}
.offre-bubble-statut.acceptee { background: rgba(42,125,85,0.3); color: #7dd4a8; }
.offre-bubble-statut.refusee  { background: rgba(226,75,74,0.2); color: #f87171; }
/* Récap commission dans la bulle d'offre acceptée */
.offre-bubble-breakdown {
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  text-align: left;
}
.obb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  padding: 2px 0;
}
.obb-frais { color: rgba(255,255,255,0.5); }
.obb-frais span:last-child { color: #fcd34d; font-weight: 500; }
.obb-net {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 4px; padding-top: 5px;
  color: #7dd4a8;
  font-weight: 600;
  font-size: 12.5px;
}
.obb-net span:last-child { color: #7dd4a8; }
.offre-bubble-actions {
display: flex; gap: 8px; margin-top: 12px; justify-content: center;
}
.offre-bubble-actions .btn-offer-accept {
font-size: 12px; padding: 7px 14px;
}
.offre-bubble-actions .btn-offer-refuse {
font-size: 12px; padding: 7px 12px;
}
/* Bouton paiement dans bulle offre acceptée */
.offre-bubble-pay {
  margin-top: 14px;
  text-align: center;
}
.btn-pay-now {
  display: inline-flex; align-items: center; gap: 8px;
  background: #16a34a; color: #fff;
  border: none; border-radius: 10px;
  padding: 10px 20px; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: inherit;
  transition: background 0.2s;
  width: 100%;
  justify-content: center;
}
.btn-pay-now:hover { background: #15803d; }
.btn-pay-now:disabled { opacity: 0.6; cursor: not-allowed; }
/* Bulles système (événements de conversation) */
.conv-event {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 16px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}
.conv-event svg { flex-shrink: 0; }
.conv-event--success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.conv-event--success svg { stroke: #16a34a; }
.conv-event--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.conv-event--error svg { stroke: #dc2626; }
.conv-event--warn {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}
.conv-event--warn svg { stroke: #d97706; }
.conv-offer-tag {
display: flex; align-items: center; gap: 12px;
background: var(--ink); border-radius: 12px;
padding: 10px 16px; margin: 0;
}
.conv-offer-tag-amt {
font-family: 'DM Sans', sans-serif;
font-size: 24px; font-weight: 700; color: #fff; letter-spacing: -0.5px;
}
.conv-offer-tag-lbl {
font-size: 12px; font-weight: 500; padding: 3px 10px;
border-radius: 100px; background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85);
}
.conv-offer-tag-lbl.tag-lbl--ok   { background: #dcfce7; color: #166534; }
.conv-offer-tag-lbl.tag-lbl--ko   { background: #fee2e2; color: #991b1b; }
.conv-offer-tag-lbl.tag-lbl--wait { background: #f97316; color: #fff; }
.offre-bubble-countdown {
font-size: 11px; font-weight: 500; letter-spacing: 0.3px;
color: rgba(255,255,255,0.6);
background: rgba(255,255,255,0.08);
border-radius: 20px; padding: 3px 10px;
display: inline-block; margin: 6px auto 0;
font-variant-numeric: tabular-nums;
}
.offre-bubble-countdown.urgent {
color: #fbbf24;
background: rgba(251,191,36,0.12);
animation: pulse-countdown 1s ease-in-out infinite;
}
.offre-bubble-countdown.expired {
color: #f87171;
background: rgba(248,113,113,0.12);
}
@keyframes pulse-countdown {
0%, 100% { opacity: 1; }
50% { opacity: 0.65; }
}
.badge-expired {
background: rgba(245,158,11,0.12);
color: #d97706;
border: 1px solid rgba(245,158,11,0.25);
}
.offre-bubble-statut.expiree {
background: rgba(245,158,11,0.15);
color: #fbbf24;
padding: 5px 12px;
font-size: 11px;
border-radius: 8px;
}
.offre-av--link, .msg-thread-av--link {
text-decoration: none; color: inherit;
cursor: pointer;
transition: opacity 0.15s, transform 0.15s;
display: flex; align-items: center; justify-content: center;
}
.offre-av--link:hover, .msg-thread-av--link:hover {
opacity: 0.8; transform: scale(1.08);
}
.pp-empty {
display: flex; flex-direction: column; align-items: center;
gap: 12px; padding: 48px 24px; text-align: center;
color: var(--ink-muted); font-size: 14px; font-weight: 300;
}
.pp-empty p { margin: 0; }
.offre-name-link {
color: inherit; text-decoration: none;
font-weight: 500;
transition: color 0.15s;
}
.offre-name-link:hover { color: var(--accent); }
.msg-thread-name--link {
color: inherit; text-decoration: none;
font-size: 15px; font-weight: 500;
transition: color 0.15s;
display: block; margin-bottom: 2px;
}
.msg-thread-name--link:hover { color: var(--accent); }

/* ── ALERTES RECHERCHE ─────────────────────────────────────── */
.btn-alerte {
  display:inline-flex;align-items:center;gap:6px;
  padding:8px 16px;border-radius:100px;border:1.5px solid var(--accent);
  background:transparent;color:var(--accent);font-size:13px;font-weight:500;
  cursor:pointer;transition:all 0.2s;white-space:nowrap;font-family:'DM Sans',sans-serif;
}
.btn-alerte:hover { background:var(--accent);color:#fff; }
.btn-alerte.alerte-active { background:var(--accent);color:#fff;border-color:var(--accent); }
.btn-alerte:disabled { opacity:0.6;cursor:not-allowed; }

/* ── ALERTES COMPTE ────────────────────────────────────────── */
.alertes-list { display:flex;flex-direction:column;gap:10px; }
.alerte-item {
  display:flex;align-items:center;gap:14px;
  background:var(--warm-white);border:1px solid var(--border);
  border-radius:12px;padding:14px 16px;
  transition:opacity 0.25s,transform 0.25s;
}
.alerte-icon { width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.alerte-icon.active { background:var(--accent-light);color:var(--accent-dark); }
.alerte-icon.inactive { background:var(--cream);color:var(--ink-muted); }
.alerte-body { flex:1;min-width:0; }
.alerte-label { font-size:14px;font-weight:500;color:var(--ink);margin-bottom:4px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis; }
.alerte-meta { display:flex;align-items:center;gap:6px;flex-wrap:wrap; }
.alerte-tag { font-size:12px;background:var(--cream);border:1px solid var(--border);color:var(--ink-soft);padding:2px 8px;border-radius:100px; }
.alerte-date { font-size:11px;color:var(--ink-muted); }
.alerte-actions { display:flex;align-items:center;gap:6px;flex-shrink:0; }
.alerte-btn {
  display:inline-flex;align-items:center;gap:5px;
  padding:6px 12px;border-radius:100px;font-size:12px;font-weight:500;
  cursor:pointer;border:1.5px solid var(--border);background:var(--warm-white);
  color:var(--ink-soft);transition:all 0.15s;font-family:'DM Sans',sans-serif;text-decoration:none;
}
.alerte-btn:hover { border-color:var(--ink-muted);color:var(--ink); }
.alerte-btn--toggle.active { background:var(--accent-light);color:var(--accent-dark);border-color:var(--accent-light); }
.alerte-btn--del:hover { border-color:#ef4444;color:#ef4444;background:#fef2f2; }

/* ── HOW IT WORKS ──────────────────────────────────────────── */
.how-it-works {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 24px;
}
.hiw-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hiw-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 10px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.25s cubic-bezier(.22,.68,0,1.3);
  cursor: default;
  flex: 1;
}
.hiw-step:hover {
  border-color: rgba(224,122,95,0.45);
  box-shadow: 0 4px 20px rgba(224,122,95,0.10);
  transform: translateY(-2px);
}
.hiw-bg-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
  width: 36px;
  text-align: center;
  transition: color 0.2s;
  user-select: none;
}
.hiw-step:hover .hiw-bg-num { color: var(--accent-dark); }
.hiw-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent-light);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.25s cubic-bezier(.22,.68,0,1.4);
}
.hiw-step:hover .hiw-icon {
  background: rgba(224,122,95,0.22);
  transform: rotate(-6deg) scale(1.08);
}
.hiw-text { display: flex; flex-direction: column; gap: 2px; }
.hiw-num {
  font-size: 10px; font-weight: 600;
  color: var(--accent); letter-spacing: 2px;
  text-transform: uppercase; line-height: 1;
}
.hiw-title {
  font-size: 14px; font-weight: 600;
  color: var(--ink); line-height: 1.3; white-space: nowrap;
}
.hiw-arrow {
  font-size: 16px; color: var(--accent);
  opacity: 0.35; flex-shrink: 0; padding: 0 2px;
}

/* =============================================================
   RESPONSIVE — système unifié
   1024 / 900 / 800 / 768 / 640 / 481-768 / 480 / 360
   ============================================================= */

/* =============================================================
   RESPONSIVE — système unifié
   Breakpoints :
     1024px  tablette large
      900px  tablette
      800px  tablette petite / drawer
      768px  mobile large
      640px  mobile
      480px  petit mobile
      360px  très petit mobile
   ============================================================= */

/* ── 1024px : tablette large ──────────────────────────────── */
@media (max-width: 1024px) {
  /* Nav → même comportement que mobile */
  .nav-top { padding: 0 20px; gap: 12px; }
  .filters-bar { padding: 0 20px 12px; }
  /* Gradient scroll indicators */
  .filters-bar-wrap::before,
  .filters-bar-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0;
    width: 40px; pointer-events: none; z-index: 10;
    opacity: 0; transition: opacity 0.2s;
  }
  .filters-bar-wrap::before { left: 0; background: linear-gradient(to right, #FDFCFA 50%, transparent); }
  .filters-bar-wrap::after  { right: 0; background: linear-gradient(to left,  #FDFCFA 50%, transparent); }
  .filters-bar-wrap.has-left::before  { opacity: 1; }
  .filters-bar-wrap.has-right::after  { opacity: 1; }
  /* Hide overflow menu and mega-menus on tablet/mobile — tap = navigate directly */
  .cat-more-wrap { display: none !important; }
  .cat-dropdown .mega-menu { display: none !important; }
  .cat-dropdown .pill-arrow { display: none; }
  .nav-link { display: none; }
  .nav-search { display: none; }
  .nav-search-mobile-bar { display: block; }
  .btn-ghost:not(.nav-user-btn) { display: none; }
  .btn-vendre:not(.hero-cta-hero) { display: none; }
  .nav-burger { display: flex; }
  .nav-user-wrap { display: none; }
  .nav-notif { width: 36px; height: 36px; }
  .drawer-body .btn-vendre { display: flex; width: 100%; padding: 10px 14px 10px 18px; border-radius: 14px; margin-bottom: 20px; }
  .drawer-body .btn-vendre-label { display: flex; }

  /* Sidebar filtres plus étroite */
  .sidebar-filters { width: 220px; }

  /* Contenu */
  .home-content { padding: 32px 24px 56px; }
  .footer-cats { padding: 32px 24px; }
  .footer-bottom { padding: 32px 24px 20px; }
  .breadcrumb { padding: 10px 24px; }
  .static-page { padding: 0 24px 80px; }
}

/* ── 900px : tablette ─────────────────────────────────────── */
@media (max-width: 900px) {

  /* Fiche annonce : colonne unique */
  .page { flex-direction: column; padding: 20px 20px 48px; gap: 24px; }
  .col-right { display: none; }
  .offer-mobile { display: block; }
  .col-right-sticky { position: static; }

  /* Offres / messages : liste puis fil en overlay (barre compte fixe en bas) */
  .offres-layout { display: block; position: relative; height: auto; }
  .offres-sidebar { display: block; }
  .offres-thread {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    bottom: calc(60px + env(safe-area-inset-bottom, 0px));
    height: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
    background: var(--warm-white);
    z-index: 4800;
    flex-direction: column;
    overflow: hidden;
    overscroll-behavior-y: contain;
  }
  .offres-layout.mobile-show-thread .offres-sidebar { display: none; }
  .offres-layout.mobile-show-thread .offres-thread {
    display: flex;
    flex-direction: column;
  }
  .offres-layout.mobile-show-thread .offres-thread .msg-body {
    flex: 1 1 0%;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .offres-layout.mobile-show-thread .offres-thread .msg-input-row {
    flex: 0 0 auto;
    min-height: 56px;
  }
  .offres-layout.mobile-show-thread .offres-thread .conv-header {
    flex: 0 1 auto;
    max-height: min(48vh, 360px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .offres-layout.mobile-show-thread .conv-banner-row {
    align-items: flex-start;
    row-gap: 8px;
  }
  .offres-layout.mobile-show-thread .conv-offer-tag-amt {
    font-size: clamp(17px, 4.8vw, 24px);
  }
  .conv-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: 4px;
    color: var(--ink);
  }
  .conv-back-btn svg { width: 16px; height: 16px; }

  /* Profil */
  .profile-stats { display: none; }

  /* Contact */
  .contact-wrap { grid-template-columns: 1fr; gap: 32px; }

  /* Pages statiques */
  .legal-wrap { grid-template-columns: 1fr; }
  .legal-nav { display: none; }
  .static-title { font-size: 30px; }

  /* Cards : 3 colonnes sur tablette */
  .cards-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .cards-grid--4 { grid-template-columns: repeat(3, 1fr); }
}

/* ── 800px : tablette petite + drawer ────────────────────── */
@media (max-width: 800px) {
  /* Sidebar filtres → drawer latéral */
  .sf-close { display: flex; }
  .sidebar-filters {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(88vw, 320px); z-index: 10002;
    background: var(--warm-white);
    box-shadow: -8px 0 40px rgba(38,51,64,0.15);
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.3s;
  }
  .sidebar-filters.mobile-open {
    display: flex;
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0s;
  }
  .sidebar-filters #filter-form {
    flex: 1;
    overflow-y: auto;
    padding: 20px 16px 32px;
  }
  .btn-apply { display: block; }
  .sidebar-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(38,51,64,0.35); z-index: 10001;
    backdrop-filter: blur(2px);
  }
  .sidebar-overlay.active { display: block; animation: fadeOverlay 0.25s ease forwards; }
  .results-main { padding: 20px 16px 80px; }
  .mobile-filter-btn { display: flex; }
  /* Recherche : topbar allégée (tri dans le drawer) */
  .results-sort { display: none; }
  .results-query { font-size: 19px; }

  /* Mise en page colonnes */
  .two-cols { grid-template-columns: 1fr; padding: 0 16px 60px; }
  .shared { padding: 0 16px 60px; }
  .shared-box { flex-direction: column; align-items: flex-start; gap: 20px; padding: 24px 20px; }
  .shared-nums { gap: 20px; }
  .mcm-cols { grid-template-columns: 1fr; }
  .mcm-nums { gap: 14px; }
  .left { display: none; }
  .right { padding: 32px 24px; }
}

/* ── 768px : mobile large ─────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  .nav-top { padding: 0 16px; height: 56px; gap: 12px; }
  .offres-layout.mobile-show-thread .offres-thread { top: 56px; }
  .filters-bar { padding: 0 16px 10px; overflow-x: auto; }
  .filters-bar.dropdown-open { overflow: visible; }

  /* Hero */
  .hero { padding: 28px 16px 24px; }
  .hero-title { font-size: clamp(22px, 5vw, 32px); margin-bottom: 18px; }
  .hero-search { height: 50px; padding: 5px 5px 5px 16px; }
  .hero-search input { font-size: 15px; }
  .hero-search button { padding: 0 18px; height: 40px; font-size: 14px; }
  .hero-loc-icon, .hero-loc-wrap, .hero-search-sep { display: none; }

  /* Home content */
  .home-content { padding: 24px 16px 48px; }
  .home-section + .home-section, .home-section--cat, .home-section--tendance { padding-top: 28px; margin-top: 28px; }
  .home-content > .home-section:first-child, .home-content > .home-section--tendance:first-child { padding-top: 0; border-top: none; margin-top: 0; }
  .home-section-title { font-size: 18px; }
  .btn-voir-tout { font-size: 12px; padding: 6px 12px; }

  /* Cards : 2 colonnes */
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .card-offres-count--img { display: inline-flex; }
  .card-cat-badge { top: 8px !important; left: 8px !important; bottom: auto !important; background: rgba(38,51,64,0.88); }
  .badge + .card-cat-badge,
  .badge + .card-offres-count--img + .card-cat-badge { top: 32px !important; bottom: auto !important; }
  .card-cta .card-offres-count { display: none; }

  /* Mise en page */
  .page { padding: 20px 16px 40px; }
  .two-cols { padding: 0 16px 60px; }
  .shared { padding: 0 16px 60px; }
  .page-content { padding: 20px 16px 48px; }
  .tabs-bar { padding: 0 16px; }

  /* Footer */
  .footer-cats { padding: 24px 16px; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-bottom { padding: 28px 16px 20px; }
  .breadcrumb { padding: 10px 16px; }

  /* Modales non-login */
  .modal-scroll { padding: 28px 20px 24px; }

  /* HIW */
  .hiw-inner { flex-direction: column; align-items: stretch; gap: 8px; }
  .hiw-arrow { transform: rotate(90deg); align-self: center; }
  .hiw-title { white-space: normal; }
}

/* ── 640px : mobile ───────────────────────────────────────── */
@media (max-width: 640px) {
  /* ── NAV ── */
  .nav-top { padding: 0 14px; height: 54px; gap: 8px; }
  .card-offres-label { display: none; }
  .filters-bar { display: flex; overflow-x: auto; padding: 0 14px 8px; }
  .cat-dropdown .mega-menu { display: none !important; }
  .cat-dropdown .pill-arrow { display: none; }

  /* ── HERO ── */
  .hero { padding: 22px 16px 20px; }
  .hero-eyebrow { display: flex; }
  .hero-subtitle { font-size: 15px; margin-bottom: 22px; }
  .hero-title { font-size: clamp(20px, 6vw, 28px); margin-bottom: 14px; letter-spacing: -0.5px; }
  .hero-search { height: 48px; padding: 4px 4px 4px 14px; box-shadow: 0 2px 16px rgba(38,51,64,0.08); }
  .hero-search input { font-size: 15px; }
  .hero-search button { padding: 0 16px; height: 38px; font-size: 13px; border-radius: 100px; }

  /* ── GRILLE CARDS ── */
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .home-content { padding: 20px 12px 48px; }
  .home-section-title { font-size: 16px; }
  .home-section--cat, .home-section--tendance { padding-top: 24px; margin-top: 24px; }
  .fav-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* Cards : plus compactes */
  .card-body { padding: 10px 12px 12px; }
  .card-title { font-size: 13.5px; }
  .card-location { font-size: 11px; }
  .btn-offre { padding: 7px 12px; font-size: 12px; min-height: 34px; }

  /* ── HOME SECTION HEADER ── */
  .home-section-header { margin-bottom: 16px; }
  .btn-voir-tout { font-size: 11.5px; padding: 5px 10px; }

  /* ── RECHERCHE ── */
  .results-query { font-size: 16px; }
  .results-main { padding: 14px 12px 80px; }
  .results-topbar { gap: 8px; margin-bottom: 14px; }
  .btn-alerte-label { display: none; }
  .btn-alerte { padding: 7px 10px; }
  .active-filters { gap: 5px; margin-bottom: 12px; }
  .page-btn { width: 32px; height: 32px; font-size: 13px; }
  .pagination { gap: 4px; margin-top: 24px; }

  /* ── BOUTONS GLOBAUX ── */
  .btn-xs, .btn-sm { min-height: 36px; padding: 8px 14px; }

  /* ── FOOTER ── */
  .footer-cats { padding: 20px 16px; grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
  .footer-bottom { padding: 24px 16px 20px; }
  .footer-links { gap: 12px; flex-wrap: wrap; }
  .footer-tagline { font-size: 13px; }

  /* ── PAGES STATIQUES ── */
  .static-page { padding: 0 16px 60px; }
  .static-hero { padding: 28px 0 24px; margin-bottom: 24px; }
  .static-title { font-size: 24px; }
  .cform-row { grid-template-columns: 1fr; }
  .cform-submit { width: 100%; }
  .contact-wrap { grid-template-columns: 1fr; }

  /* ── DÉPÔT ANNONCE ── */
  .depot-page { padding: 20px 14px 80px; }
  .step-nav-item { padding: 10px 12px; gap: 8px; }
  .step-nav-num { width: 26px; height: 26px; font-size: 11px; }
  .step-nav-title { font-size: 13px; }
  .step-nav-label { display: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-btn { padding: 14px 8px 15px; gap: 10px; border-radius: 16px; }
  .cat-btn-visual { width: 50px; height: 50px; border-radius: 14px; }
  .cat-btn-visual svg { width: 25px; height: 25px; }
  .cat-btn-text { font-size: 12px; }
  .etat-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .photos-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }

  /* ── FICHE ANNONCE ── */
  .col-header { padding: 20px 16px 16px; }
  .col-step { padding: 16px; gap: 12px; }
  .col-cta { padding: 16px; }

  /* ── PROFIL ── */
  .profile-hero { padding: 24px 16px 0; }
  .profile-top { gap: 12px; margin-bottom: 16px; }
  .profile-avatar { width: 50px; height: 50px; font-size: 17px; }
  .profile-name { font-size: 19px; }
  .profile-stats { display: none; }
  .profile-stats-mobile {
    display: flex !important;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px; padding: 10px 0; margin-bottom: 16px;
  }
  .profile-stats-mobile .pstat { flex: 1; padding: 0 10px; }
  .profile-stats-mobile .pstat-num { font-size: 17px; }
  .profile-stats-mobile .pstat-sep { height: 20px; }
  .page-content { padding: 20px 14px 48px; }



  .profil-grid { grid-template-columns: 1fr; }
  .profil-card.full { grid-column: 1; }
  .ann-actions { display: none; }
  /* Bouton ⋯ mobile pour actions annonces */
  .ann-mobile-btn {
    display: flex;
    align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--warm-white);
    color: var(--ink-soft);
    cursor: pointer;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
  }

  /* ── OFFRE-ITEM : badges sans superposition ── */
  .offre-item { padding: 12px 14px; }
  .offre-item-top { flex-wrap: wrap; gap: 8px; }
  .offre-item-amount { font-size: 15px; }
  .offre-item-name { font-size: 13px; flex-wrap: wrap; gap: 4px; }
  .offre-item-time { font-size: 11px; }

  /* Espace sous le contenu pour ne pas être caché par la bottom bar */
  .page-content { padding-bottom: 80px; }

  /* Nav plus basse → position du fil de discussion (règles fil : ≤900px) */
  .offres-layout.mobile-show-thread .offres-thread { top: 54px; }

  /* ── MODAL COMMENT (centré, scroll) ── */
  #modal-comment { padding: 12px; align-items: flex-start; }
  #modal-comment .modal-box {
    border-radius: 20px;
    margin: auto;
    max-width: 100% !important;
    animation: modalIn 0.25s ease;
  }
  #modal-comment .modal-scroll { padding: 16px 16px 24px; max-height: 88vh; overflow-y: auto; }
  #modal-comment .modal-close { top: 12px; right: 12px; }

  /* ── MODAL LOGIN — BOTTOM SHEET ── */
  #modal-login { padding: 0; align-items: flex-end; }
  #modal-login .modal-box {
    border-radius: 24px 24px 0 0;
    margin: 0; width: 100%;
    max-width: 100% !important;
    animation: modalInMobile 0.3s cubic-bezier(0.34, 1.1, 0.64, 1);
  }
  .modal-box--login { border-radius: 24px 24px 0 0; overflow: hidden; }
  .modal-box--login::before {
    content: ''; display: block;
    width: 40px; height: 4px;
    background: rgba(38,51,64,0.15); border-radius: 2px;
    margin: 14px auto 0;
  }
  .modal-close { top: 14px; right: 14px; }
  .modal-scroll { padding: 8px 20px 36px; max-height: 92vh; overflow-y: auto; }
  .mlogin-wrap { min-height: auto; display: block; }
  .mlogin-left { display: none; }
  .mlogin-right { padding: 0 20px 36px; max-height: none; overflow: visible; }
  .mlogin-row { grid-template-columns: 1fr; }
  .mlogin-tabs { padding: 0; margin-bottom: 20px; }

  /* ── HOW IT WORKS ── */
  .hiw-inner { flex-direction: column; align-items: stretch; gap: 8px; }
  .hiw-arrow { transform: rotate(90deg); align-self: center; }
  .hiw-title { white-space: normal; }

  /* ── COMMENT ÇA MARCHE (modal) ── */
  .hm-title { font-size: 22px; }
  .hm-step { gap: 14px; padding: 18px 16px; }
  .hm-step-title { font-size: 16px; }
  .hm-footer-ctas { flex-direction: column; }
  .hm-stat { padding: 0 12px; }
  .hm-stat-val { font-size: 22px; }

  /* ── COOKIE — au-dessus de la bottom bar, fermable ── */
  .cookie-banner {
    bottom: 70px;
    width: calc(100% - 20px);
    border-radius: 14px;
    z-index: 600;
  }
  .cookie-inner { padding: 12px 14px; gap: 10px; }
  .cookie-icon { display: none; }
  .cookie-btn--accept { font-size: 13px; padding: 7px 14px; }
  .cookie-btn--close { display: flex; }

  /* ── GALLERY ── */
  .gallery-thumbs { gap: 6px; }

  /* ── TYPO ── */
  .section-title, .hero-eyebrow, .page-eyebrow { font-size: 12px; }

  /* ── ANTI-ZOOM iOS ── */
  input[type="text"], input[type="email"], input[type="password"],
  input[type="tel"], input[type="number"], textarea, select { font-size: 17px !important; }
}

/* ── 481–768px : tablette portrait (onglets) ──────────────── */
@media (min-width: 481px) and (max-width: 768px) {
  .tab span { display: inline !important; }
  .tab { padding: 13px 14px; }
}

/* ── 480px : petit mobile ─────────────────────────────────── */
@media (max-width: 480px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .right { padding: 24px 16px 36px; }
  .input-row { grid-template-columns: 1fr; }
  .home-content { padding: 16px 12px 40px; }
  input[type="text"], input[type="email"], input[type="password"],
  input[type="tel"], input[type="number"], textarea, select { font-size: 17px !important; }
}

/* ── 360px : très petit mobile ────────────────────────────── */
@media (max-width: 360px) {
  .nav-top { padding: 0 10px; height: 52px; gap: 6px; }
  .offres-layout.mobile-show-thread .offres-thread { top: 52px; }
  .offres-layout.mobile-show-thread .offres-thread { top: 52px; }
  .logo--img img { width: 110px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .footer-cats { grid-template-columns: 1fr; }
  .pill { padding: 5px 10px; font-size: 12px; }
  .hero-title { font-size: 19px; }
}

/* ── Déblocage offre vendeur ─────────────────────────── */
.offre-bubble-debloquer { margin-top:10px; text-align:center; }
.btn-debloquer-offre {
  display:inline-flex; align-items:center; gap:6px;
  background:none; border:1.5px solid var(--accent); color:var(--accent);
  border-radius:10px; padding:7px 16px; font-size:12px; font-weight:600;
  cursor:pointer; font-family:inherit; transition:all 0.2s;
}
.btn-debloquer-offre:hover { background:var(--accent); color:#fff; }
.btn-debloquer-offre:disabled { opacity:0.5; cursor:not-allowed; }

/* ── Bandeau offre dans conv-header ─────────────────────────── */
.conv-offer-tag {
display: flex; flex-direction: column; gap: 0;
background: var(--ink); border-radius: 12px; padding: 14px 16px;
}
.conv-banner-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; min-width: 0; }
.conv-banner-row .conv-offer-tag-amt { min-width: 0; flex: 1 1 auto; }
.conv-banner-row .conv-offer-tag-lbl { flex-shrink: 0; }
.conv-banner-body { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1); }
.banner-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.banner-btn {
display: inline-flex; align-items: center; gap: 5px;
border: none; border-radius: 8px; padding: 6px 14px;
font-size: 12px; font-weight: 600; cursor: pointer; font-family: inherit;
transition: opacity 0.15s;
}
.banner-btn:hover { opacity: 0.85; }
.banner-btn--ok   { background: #16a34a; color: #fff; }
.banner-btn--ko   { background: #dc2626; color: #fff; }
.banner-btn--pay  { background: var(--accent); color: #fff; }
.banner-btn--ghost { background: rgba(255,255,255,0.12); color: #fff; }
.banner-limit-msg { font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.4; }
.banner-countdown,
.banner-pay-cd { display: inline-block; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.12); border-radius: 100px; padding: 3px 10px; text-align: center; align-self: center; }
.banner-pay-cd.urgent { background: rgba(252,165,165,0.2); color: #fca5a5; }
.banner-pay-cd.expired { background: rgba(252,165,165,0.2); color: #fca5a5; }
.banner-info { display: inline-block; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.12); border-radius: 100px; padding: 3px 10px; }
.banner-step { width: 80%; margin: 0 auto; font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.5; text-align: center; }

/* ── Attributs dynamiques sidebar ─────────────────────────── */
#sf-attrs-section { transition: opacity 0.2s; }
.sf-section--attr { border-top: 1px solid var(--border); padding-top: 14px; margin-top: 2px; }
.sf-attrs-loading { height: 36px; background: var(--cream); border-radius: 8px; animation: sf-shimmer 1s ease infinite alternate; }
@keyframes sf-shimmer { from { opacity: 0.5; } to { opacity: 1; } }

/* ── Barre sociale accueil ────────────────────────────────── */
.home-social-bar { display: flex; align-items: center; justify-content: center; gap: 0; background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 24px; flex-wrap: wrap; gap: 0; }
.home-social-item { display: flex; flex-direction: column; align-items: center; padding: 0 32px; }
.home-social-num { font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -0.5px; }
.home-social-label { font-size: 12px; color: var(--ink-muted); margin-top: 2px; }
.home-social-sep { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }
@media (max-width: 600px) {
  .home-social-bar { gap: 16px; }
  .home-social-sep { display: none; }
  .home-social-item { padding: 0 12px; }
}

/* ── Badge prix libre (fiche produit) ────────────────────── */
.product-cat-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.product-cat-row .product-cat { margin-bottom: 0; }
.prix-libre-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(224,122,95,0.1); color: var(--accent); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; border: 1px solid rgba(224,122,95,0.25); letter-spacing: 0.3px; text-transform: uppercase; }

/* ── CTA alerte (page recherche vide) ────────────────────── */
.btn-alerte-create { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; padding: 10px 20px; border-radius: 100px; border: 1.5px solid var(--accent); color: var(--accent); font-size: 13px; font-weight: 500; text-decoration: none; transition: background 0.15s, color 0.15s; background: none; cursor: pointer; font-family: inherit; }
.btn-alerte-create:hover { background: var(--accent); color: #fff; }
.btn-alerte-create svg { flex-shrink: 0; }

/* ── CTA alerte sidebar recherche ────────────────────────── */
.btn-alerte-sidebar { display: flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: 8px; border: 1.5px dashed var(--border); color: var(--ink-muted); font-size: 12px; font-weight: 500; text-decoration: none; transition: border-color 0.15s, color 0.15s; margin-bottom: 10px; }
.btn-alerte-sidebar:hover { border-color: var(--accent); color: var(--accent); }
.btn-alerte-sidebar svg { flex-shrink: 0; }

/* ── Dashboard hero wrapper (calé sur .profil-public-page) ── */
.dash-hero-outer { max-width: 90%; margin: 0 auto; padding: 0; }
.dash-hero-outer .pp-hero { border-radius: 0 0 20px 20px; }

/* ── Bandeau offres en attente ───────────────────────────── */
.pending-banner { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding: 11px 16px; border-radius: 10px; background: rgba(224,122,95,0.08); border: 1px solid rgba(224,122,95,0.25); cursor: pointer; transition: background 0.15s; }
.pending-banner:hover { background: rgba(224,122,95,0.14); }
.pending-banner-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; animation: pending-pulse 2s ease infinite; }
.pending-banner-text { flex: 1; }
.pending-banner-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--ink); }
.pending-banner-text span { font-size: 12px; color: var(--ink-muted); }
.pending-banner-cta { font-size: 12px; font-weight: 600; color: var(--accent); flex-shrink: 0; }
@media (max-width: 600px) { .pending-banner-text span { display: none; } }

/* ── Stat cliquable / accentuée (offres en attente) ─────────── */
.pp-stat--clickable { cursor: pointer; border-radius: 8px; transition: background 0.15s; padding: 4px 16px; margin: -4px -16px; }
.pp-stat--clickable:hover { background: rgba(255,255,255,0.08); }
.pp-stat-num--accent { color: var(--accent) !important; display: flex; align-items: center; gap: 6px; justify-content: center; }
.pp-stat-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; animation: pending-pulse 2s ease infinite; }
@keyframes pending-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(224,122,95,0.5); } 50% { box-shadow: 0 0 0 5px rgba(224,122,95,0); } }

/* ── Tab urgent (offres en attente) ──────────────────────── */
.tab--urgent { color: var(--accent) !important; }
.tab--urgent svg { stroke: var(--accent); }
.tab-badge--urgent { background: var(--accent) !important; animation: pending-pulse 2s ease infinite; }

/* ── Product sticky CTA (mobile) ────────────────────────── */
.product-sticky-bar {
display: none;
position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
background: rgba(253,252,250,0.96);
backdrop-filter: blur(8px);
border-top: 1px solid var(--border);
transition: transform 0.25s ease, opacity 0.25s ease;
}
.product-sticky-bar--hidden {
transform: translateY(100%);
opacity: 0;
pointer-events: none;
}
.product-sticky-btn {
display: flex; align-items: center; justify-content: center; gap: 8px;
width: 100%; padding: 14px;
background: var(--accent); color: #fff;
font-size: 15px; font-weight: 600;
border-radius: 14px; text-decoration: none;
transition: background 0.15s;
}
.product-sticky-btn:hover { background: var(--accent-dark); }
@media (max-width: 768px) {
  .product-sticky-bar { display: block; }
}

/* ── Responsive static-title ────────────────────────────── */
@media (max-width: 600px) { .static-title { font-size: 28px; } }

/* ── Dashboard layout (white card) ──────────────────────── */
.dash-layout {
max-width: 90%;
margin: 20px auto 0;
padding: 0;
display: flex;
gap: 0;
align-items: flex-start;
background: var(--warm-white);
border-radius: 16px;
border: 1px solid var(--border);
box-shadow: 0 1px 6px rgba(38,51,64,0.05);
}
.dash-sidebar {
width: 210px;
flex-shrink: 0;
padding: 28px 16px;
border-right: 1px solid var(--border);
position: sticky;
top: 80px;
align-self: flex-start;
}
.dash-nav {
display: flex;
flex-direction: column;
gap: 2px;
}
.dash-nav-group-label {
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.07em;
color: var(--ink-muted);
padding: 6px 10px 4px;
}
.dash-nav-sep {
height: 1px;
background: var(--border);
margin: 10px 0;
}
.dash-nav-item {
display: flex;
align-items: center;
gap: 10px;
padding: 9px 10px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
color: var(--ink-muted);
text-decoration: none;
transition: background 0.15s, color 0.15s;
cursor: pointer;
}
.dash-nav-item:hover { background: rgba(0,0,0,0.04); color: var(--ink); }
.dash-nav-item.active { background: rgba(0,0,0,0.06); color: var(--ink); font-weight: 600; }
.dash-nav-item svg {
width: 15px; height: 15px;
stroke: currentColor; fill: none;
stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
flex-shrink: 0;
}
.dash-nav-item--urgent { color: var(--accent) !important; }
.dash-nav-item--urgent svg { stroke: var(--accent); }
.dash-nav-badge {
margin-left: auto;
font-size: 10.5px; font-weight: 600;
background: rgba(38,51,64,0.35); color: #fff;
border-radius: 100px; padding: 1px 6px; line-height: 1.5;
}
.dash-nav-badge--urgent { background: var(--accent) !important; animation: pending-pulse 2s ease infinite; }
.dash-main {
flex: 1;
min-width: 0;
padding: 28px 32px 56px;
}
.dash-hero-outer .pending-banner { margin-top: 12px; }

/* ── Dashboard sidebar responsive ───────────────────────── */
@media (max-width: 900px) {
  .dash-hero-outer { max-width: 100%; }
  .dash-hero-outer .pp-hero { padding: 14px 20px; margin-bottom: 16px; }
  .dash-hero-outer .pp-avatar { width: 44px; height: 44px; font-size: 16px; }
  .dash-hero-outer .pp-avatar span { font-size: 16px; }
  .dash-hero-outer .pp-name { font-size: 18px; margin-bottom: 3px; }
  .dash-layout { flex-direction: column; margin: 16px 14px 0; border-radius: 12px; max-width: 100%; }
  .dash-sidebar { display: none; }
  .dash-main { width: 100%; padding: 20px 20px 80px; }
  .account-bottom-bar { display: flex; }
}


/* ═══════════════════════════════════════════════════════════════
   REDESIGN 2026 — Hero V2, Cards V2, How It Works, Catégories
═══════════════════════════════════════════════════════════════ */

/* ── Override ancien hero (accueil uniquement — hero-v2 le remplace) ── */
/* .hero et .hero-divider restent actifs pour les autres pages (comment.php etc.) */

/* ── HERO V2 ─────────────────────────────────────────────────── */
.hero-v2 {
  position: relative;
  background:
    linear-gradient(120deg, #f6f1ea 0%, #efe6d9 38%, #e7ddcf 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(132deg, transparent 0 34%, rgba(27, 42, 58, 0.028) 34% 35.2%, transparent 35.2% 58%, rgba(224,122,95,0.05) 58% 59.2%, transparent 59.2% 100%);
  pointer-events: none; z-index: 0;
  animation: heroBandsShift 18s ease-in-out infinite alternate;
}

.hero-v2::after {
  content: '';
  position: absolute;
  width: 46%;
  top: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 72% 34%, rgba(255,255,255,0.68) 0, rgba(255,255,255,0.24) 22%, transparent 54%),
    linear-gradient(180deg, rgba(27,42,58,0.04), rgba(27,42,58,0.12));
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none; z-index: 0;
  opacity: 0.95;
  animation: heroLightSweep 14s ease-in-out infinite alternate;
}

.hero-v2-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 72px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: center;
  position: relative; z-index: 1;
}

@keyframes heroBandsShift {
  0% { transform: translateX(0); opacity: 0.72; }
  50% { transform: translateX(8px); opacity: 0.84; }
  100% { transform: translateX(-6px); opacity: 0.76; }
}

@keyframes heroLightSweep {
  0% { transform: translateX(0) scale(1); opacity: 0.92; }
  50% { transform: translateX(-14px) scale(1.02); opacity: 1; }
  100% { transform: translateX(8px) scale(0.99); opacity: 0.9; }
}

/* Texte gauche — top (titre) et bottom (para + boutons) */
.hero-v2-text-top,
.hero-v2-text-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid rgba(224,122,95,0.22);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 24px;
  animation: fadeUp 0.45s ease both;
}

.hero-v2-eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  animation: eyebrowPulse 2s ease-in-out infinite;
}

@keyframes eyebrowPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.55; }
}

.hero-v2-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -2.5px;
  color: var(--ink);
  margin-bottom: 36px;
  animation: fadeUp 0.45s 0.07s ease both;
}

.hero-v2-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-v2-sub {
  font-size: 17px; font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeUp 0.45s 0.13s ease both;
}

.hero-v2-actions {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  animation: fadeUp 0.45s 0.18s ease both;
}

/* CTA principal */
.hero-v2-cta-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink);
  padding: 12px 16px 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
  position: relative; overflow: hidden;
}

.hero-v2-cta-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(224,122,95,0.32) 0%, transparent 62%);
  pointer-events: none;
}

.hero-v2-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(38,51,64,0.28);
  background: #1e2d3d;
}

.hero-v2-cta-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
  transition: background 0.2s;
}

.hero-v2-cta-primary:hover .hero-v2-cta-icon {
  background: var(--accent-dark);
}

.hero-v2-cta-icon svg {
  width: 15px; height: 15px; stroke: #fff;
  stroke-width: 2.5; fill: none; stroke-linecap: round;
}

.hero-v2-cta-label {
  display: flex; flex-direction: column; align-items: flex-start;
  position: relative; z-index: 1;
}

.hero-v2-cta-sup {
  font-size: 9.5px; font-weight: 500; letter-spacing: 1.6px;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  line-height: 1; margin-bottom: 2px;
}

.hero-v2-cta-main {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  color: #fff; line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-v2::before,
  .hero-v2::after,
  .hero-v2-inner::before {
    animation: none !important;
  }
}

/* CTA secondaire */
.hero-v2-cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px; font-weight: 400;
  color: var(--ink-soft);
  padding: 12px 20px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  background: transparent; text-decoration: none;
  transition: all 0.2s;
}

.hero-v2-cta-secondary:hover {
  color: var(--ink); border-color: var(--ink-soft); background: var(--cream);
}

.hero-v2-cta-secondary svg { transition: transform 0.2s; flex-shrink: 0; }
.hero-v2-cta-secondary:hover svg { transform: translateX(4px); }

/* ── Visual droite (floating cards) ────────────────────── */
.hero-v2-visual {
  position: relative;
  height: 480px;
  animation: fadeUp 0.5s 0.06s ease both;
}

.hero-float-wrap { position: absolute; inset: 0; }

.hero-float-card {
  position: absolute;
  background: var(--warm-white);
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(38,51,64,0.11), 0 2px 8px rgba(38,51,64,0.06);
  will-change: transform;
}

.hero-float-card--1 {
  width: 200px; top: 10px; left: 20px;
  animation: fc1float 5.5s ease-in-out infinite;
}

.hero-float-card--2 {
  width: 190px; top: 80px; right: 10px;
  animation: fc2float 6.5s ease-in-out infinite;
}

.hero-float-card--3 {
  width: 195px; bottom: 30px; left: 80px;
  animation: fc3float 7s ease-in-out infinite;
}

@keyframes fc1float {
  0%, 100% { transform: translateY(0) rotate(-2.5deg); }
  50%       { transform: translateY(-16px) rotate(-1.5deg); }
}

@keyframes fc2float {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%       { transform: translateY(-20px) rotate(1deg); }
}

@keyframes fc3float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-12px) rotate(-2deg); }
}

/* Notifs flottantes */
.hero-float-notif {
  position: absolute;
  border-radius: 12px;
  padding: 8px 13px;
  font-size: 12px; font-weight: 400;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 24px rgba(38,51,64,0.18);
  white-space: nowrap; z-index: 10;
  will-change: transform;
}

.hero-float-notif--offer {
  background: var(--ink); color: #fff;
  top: 40px; right: 25px;
  animation: notif1float 4s ease-in-out infinite;
}

.hero-float-notif--accept {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  bottom: 140px; right: 5px;
  animation: notif2float 5s ease-in-out infinite;
}

@keyframes notif1float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes notif2float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero-notif-dot {
  width: 7px; height: 7px; border-radius: 50%;
  animation: eyebrowPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-float-notif--offer .hero-notif-dot { background: #22c55e; }
.hero-float-notif--accept .hero-notif-dot { background: #16a34a; }

/* Contenu mini-card */
.hero-fc-img {
  width: 100%; aspect-ratio: 4/3;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px; line-height: 1;
  background: #e9e2d7;
}

.hero-fc-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-fc-badge-offers {
  position: absolute; top: 7px; right: 7px;
  background: rgba(255,255,255,0.92);
  border-radius: 100px; padding: 2px 8px;
  font-size: 10px; font-weight: 600; color: #166534;
  backdrop-filter: blur(4px);
  display: flex; align-items: center; gap: 3px;
}

.hero-fc-badge-new {
  position: absolute; top: 7px; left: 7px;
  background: var(--accent); color: #fff;
  border-radius: 100px; padding: 2px 8px;
  font-size: 9px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
}

.hero-fc-body { padding: 10px 12px 12px; }

.hero-fc-cat {
  font-size: 9px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 3px;
}

.hero-fc-title {
  font-size: 12.5px; font-weight: 500;
  color: var(--ink); line-height: 1.3; margin-bottom: 8px;
}

.hero-fc-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  padding-top: 7px; border-top: 1px solid var(--border-soft);
}

.hero-fc-footer-start {
  display: flex; flex-wrap: wrap; align-items: center; gap: 4px 6px;
  min-width: 0; flex: 1;
}

.hero-fc-mini-offers {
  font-size: 9px; font-weight: 600; color: #166534;
  background: #dcfce7; border-radius: 100px; padding: 2px 7px;
  display: inline-flex; align-items: center; gap: 3px; flex-shrink: 0;
}

.hero-fc-mini-offers svg {
  width: 7px; height: 7px; fill: #16a34a; flex-shrink: 0;
}

.hero-fc-loc {
  font-size: 10px; color: var(--ink-soft); font-weight: 500;
  display: flex; align-items: center; gap: 3px;
  min-width: 0;
}

.hero-fc-loc span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.hero-fc-cta {
  font-size: 9.5px; font-weight: 600; color: var(--accent);
  background: var(--accent-light); border-radius: 100px; padding: 3px 8px;
  flex-shrink: 0;
}

/* ── Stats bar sous le hero ──────────────────────────── */
.hero-v2-statsbar {
  background: var(--cream);
  border-top: 1px solid var(--border-soft);
  padding: 16px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  position: relative; z-index: 1;
}

.hero-v2-stat {
  display: flex; align-items: center; gap: 12px;
  padding: 0 40px;
}

.hero-v2-stat + .hero-v2-stat { border-left: 1px solid var(--border); }

.hero-v2-stat-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--warm-white); border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.hero-v2-stat-icon svg {
  width: 16px; height: 16px;
  stroke: var(--accent-dark); fill: none;
  stroke-width: 1.8; stroke-linecap: round;
}

.hero-v2-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600; font-style: italic;
  color: var(--ink); line-height: 1; display: block;
}

.hero-v2-stat-label {
  font-size: 11.5px; color: var(--ink-muted);
  font-weight: 300; display: block; margin-top: 1px;
}

/* ── COMMENT ÇA MARCHE ──────────────────────────────── */
.hiw-section {
  background: var(--warm-white);
  padding: 72px 40px;
  border-bottom: 1px solid var(--border-soft);
}

.hiw-section-inner {
  max-width: 1000px; margin: 0 auto;
}

.hiw-section-header {
  text-align: center; margin-bottom: 56px;
}

.hiw-section-eyebrow {
  display: inline-block;
  font-size: 10.5px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}

.hiw-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600; letter-spacing: -1px;
  color: var(--ink); line-height: 1.15;
}

.hiw-section-title em { font-style: italic; color: var(--accent); }

.hiw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.hiw-step {
  text-align: center; padding: 0 24px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hiw-step.visible { opacity: 1; transform: translateY(0); }
.hiw-step:nth-child(1) { transition-delay: 0.05s; }
.hiw-step:nth-child(3) { transition-delay: 0.15s; }
.hiw-step:nth-child(5) { transition-delay: 0.25s; }

.hiw-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px; font-weight: 600; font-style: italic;
  color: rgba(224,122,95,0.15);
  line-height: 1; margin-bottom: 4px;
  display: block;
}

.hiw-step-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.2s;
  font-size: 26px;
}

.hiw-step:hover .hiw-step-icon {
  background: var(--accent-light); border-color: rgba(224,122,95,0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(224,122,95,0.14);
}

.hiw-step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px; font-weight: 500;
  color: var(--ink); margin-bottom: 8px; line-height: 1.2;
}

.hiw-step-desc {
  font-size: 14px; font-weight: 300;
  color: var(--ink-muted); line-height: 1.65;
}

.hiw-arrow {
  display: flex; align-items: center; justify-content: center;
  padding-top: 60px; color: var(--border); flex-shrink: 0;
}

.hiw-arrow svg {
  width: 24px; height: 24px;
  stroke: rgba(224,122,95,0.35); stroke-width: 2;
  fill: none; stroke-linecap: round;
}

/* ── STRIP CATÉGORIES VISUELLES ─────────────────────── */
.cat-strip-section {
  background: var(--cream);
  padding: 36px 40px;
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}

.cat-strip-inner {
  max-width: 1280px; margin: 0 auto;
}

.cat-strip-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}

.cat-strip-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-muted);
}

.cat-strip-scroll {
  display: flex; gap: 10px; overflow-x: auto;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.cat-strip-scroll::-webkit-scrollbar { display: none; }

.cat-strip-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex-shrink: 0;
  padding: 14px 18px; border-radius: 14px;
  background: var(--warm-white);
  border: 1.5px solid var(--border-soft);
  text-decoration: none; cursor: pointer;
  transition: all 0.2s; min-width: 80px;
}

.cat-strip-item:hover {
  border-color: rgba(224,122,95,0.4);
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(224,122,95,0.12);
}

.cat-strip-item.active {
  border-color: var(--accent);
  background: var(--accent-light);
}

.cat-strip-emoji { font-size: 22px; line-height: 1; }

.cat-strip-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500;
  color: var(--ink-soft); text-align: center;
  white-space: nowrap;
  transition: color 0.2s;
}

.cat-strip-item:hover .cat-strip-name,
.cat-strip-item.active .cat-strip-name { color: var(--accent-dark); }

/* ── CARDS V2 (nouveau design) ──────────────────────── */
.card-v2 {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  background: var(--warm-white);
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: fadeUp 0.5s ease both;
  height: 100%;
  position: relative;
}

.card-v2:nth-child(1){animation-delay:.04s}
.card-v2:nth-child(2){animation-delay:.09s}
.card-v2:nth-child(3){animation-delay:.14s}
.card-v2:nth-child(4){animation-delay:.19s}
.card-v2:nth-child(5){animation-delay:.24s}
.card-v2:nth-child(6){animation-delay:.29s}
.card-v2:nth-child(7){animation-delay:.34s}
.card-v2:nth-child(8){animation-delay:.39s}

.card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(38,51,64,0.12);
  border-color: rgba(38,51,64,0.12);
}

/* Zone image */
.card-v2-img {
  position: relative;
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden; flex-shrink: 0;
  background: var(--cream);
}

.card-v2-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-v2:hover .card-v2-img img { transform: scale(1.04); }

/* Overlay hover subtle */
.card-v2-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(38,51,64,0.04) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; z-index: 1;
}

.card-v2:hover .card-v2-img::after { opacity: 1; }

/* Badge catégorie */
.card-v2-cat {
  position: absolute; bottom: 8px; left: 8px; z-index: 3;
  background: rgba(38,51,64,0.78);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 9px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px;
  transition: background 0.15s;
  cursor: pointer;
}

.card-v2-cat:hover { background: rgba(38,51,64,0.95); }

/* Badge "Nouveau" */
.card-v2-badge-new {
  position: absolute; top: 8px; left: 8px; z-index: 4;
  background: var(--accent); color: #fff;
  font-size: 9px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 8px; border-radius: 100px;
}

/* Badge offres sur image */
.card-v2-offres-img {
  position: absolute; top: 8px; right: 8px; z-index: 4;
  display: inline-flex; align-items: center; gap: 3px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-radius: 100px; padding: 3px 8px;
  font-size: 10px; font-weight: 700; color: #166534;
  white-space: nowrap;
  max-width: calc(100% - 16px);
  box-sizing: border-box;
}

/* Bouton favori */
.card-v2-fav {
  position: absolute; top: 8px; right: 8px; z-index: 5;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  border: none; display: flex; align-items: center;
  justify-content: center; cursor: pointer;
  transition: all 0.2s; padding: 0;
}

.card-v2-fav:hover { background: #fff; transform: scale(1.1); }
.card-v2-fav svg { width: 14px; height: 14px; stroke: var(--ink-soft); transition: fill 0.2s, stroke 0.2s; }
.card-v2-fav.faved { background: #fff; }
.card-v2-fav.faved svg { stroke: var(--accent); fill: var(--accent); }
.card-v2.own-card .card-v2-fav { display: none; }

/* Quand il y a offres, déplacer le fav pour éviter collision */
.card-v2-fav.fav-shifted { top: 38px; }

/* Corps */
.card-v2-body {
  padding: 13px 15px 15px;
  display: flex; flex-direction: column; flex: 1;
}

.card-v2-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px; font-weight: 500;
  color: var(--ink); line-height: 1.35;
  margin-bottom: 7px; flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-v2-meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: var(--ink-muted); font-weight: 300;
  margin-bottom: 10px;
}

.card-v2-meta svg { width: 10px; height: 10px; opacity: 0.45; flex-shrink: 0; }

.card-v2-dot { width: 2px; height: 2px; border-radius: 50%; background: var(--border); flex-shrink: 0; }

/* Footer card */
.card-v2-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border-soft);
}

.card-v2-footer-start {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 8px;
  min-width: 0; flex: 1;
}

.card-v2-lieu {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 500;
  color: var(--ink-soft);
  min-width: 0; max-width: 100%;
}

.card-v2-lieu svg {
  width: 11px; height: 11px;
  flex-shrink: 0;
  opacity: 0.5;
  stroke-width: 2;
}

.card-v2-lieu-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.card-v2-offres-pill {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600;
  color: #166534;
  background: #dcfce7;
  border-radius: 100px; padding: 4px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.card-v2-offres-pill svg { width: 9px; height: 9px; fill: #16a34a; flex-shrink: 0; }

.card-v2-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px; font-weight: 600;
  color: var(--accent); background: var(--accent-light);
  border: none; border-radius: 100px;
  padding: 5px 12px; cursor: pointer;
  transition: all 0.2s; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 4px;
}

.card-v2-cta:hover { background: var(--accent); color: #fff; }
.card-v2-cta svg { width: 9px; height: 9px; transition: transform 0.2s; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }
.card-v2-cta:hover svg { transform: translateX(2px); }

/* ── SECTION HEADERS améliorés ───────────────────────── */
.home-section-title-v2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px; font-weight: 400; letter-spacing: -0.5px;
  color: var(--ink); margin: 0; line-height: 1.2;
  display: flex; align-items: center; gap: 10px;
}

.home-section-title-v2 em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--accent); font-size: 26px; font-weight: 400;
}

/* ── HOME CONTENT amélioré ──────────────────────────── */
.home-content-v2 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 40px 72px;
}

.home-section-v2 {
  margin-bottom: 0;
}

.home-section-v2 + .home-section-v2 {
  padding-top: 48px;
  border-top: 1px solid var(--border-soft);
  margin-top: 48px;
}

.home-content-v2 > .home-section-v2:first-child {
  padding-top: 0; border-top: none; margin-top: 0;
}

.home-section-header-v2 {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 24px;
}

/* Scroll reveal pour les sections */
.reveal-section {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-section.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE HERO V2 ────────────────────────────── */
@media (max-width: 1024px) {
  .hero-v2-inner {
    grid-template-columns: 1fr;
    gap: 40px; padding: 60px 40px 52px;
  }
  .hero-v2-visual { height: 360px; }
  .hero-float-card--1 { width: 180px; left: 0; }
  .hero-float-card--2 { width: 170px; right: 0; }
  .hero-float-card--3 { width: 175px; left: 60px; }
}

@media (max-width: 768px) {
  .hero-v2-inner { padding: 44px 24px 36px; gap: 32px; }
  .hero-v2-visual { display: none; }
  .hero-v2-statsbar { padding: 14px 16px; flex-wrap: wrap; gap: 8px; justify-content: center; }
  .hero-v2-stat { padding: 0 16px; }
  .hero-v2-stat-num { font-size: 18px; }
  .hiw-section { padding: 48px 24px; }
  .hiw-steps { grid-template-columns: 1fr; gap: 24px; }
  .hiw-arrow { padding: 0; transform: rotate(90deg); }
  .cat-strip-section { padding: 24px 16px; }
  .home-content-v2 { padding: 24px 16px 56px; }
  .home-section-v2 + .home-section-v2 { padding-top: 32px; margin-top: 32px; }
  .home-section-title-v2 { font-size: 18px; }
  .home-section-title-v2 em { font-size: 20px; }
}

@media (max-width: 640px) {
  .hero-v2-title { font-size: clamp(32px, 8vw, 44px); letter-spacing: -1.5px; }
  .hero-v2-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-v2-actions { gap: 10px; }
  .hero-v2-cta-secondary { padding: 10px 16px; font-size: 13.5px; }
  .hero-v2-statsbar { flex-direction: column; gap: 6px; padding: 14px 16px; }
  .hero-v2-stat + .hero-v2-stat { border-left: none; border-top: 1px solid var(--border); padding-top: 12px; }
  .hero-v2-stat { padding: 0; width: 100%; }
  .hiw-steps { gap: 16px; }
  .hiw-step-icon { width: 54px; height: 54px; font-size: 22px; }
  .hiw-step-title { font-size: 15px; }
  .hiw-step-num { font-size: 42px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .card-v2-body { padding: 10px 12px 12px; }
  .card-v2-title { font-size: 13px; }
}

/* ── Micro-améliorations globales ────────────────────────── */

/* Pills nav plus expressifs */
.pill {
  transition: all 0.18s cubic-bezier(0.34, 1.4, 0.64, 1) !important;
}
.pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(224,122,95,0.15);
}
.pill.active {
  box-shadow: 0 3px 12px rgba(224,122,95,0.28);
}

/* Card hover encore plus fluide */
.card-v2:hover .card-v2-cta {
  background: var(--accent);
  color: #fff;
}

/* Btn-voir-tout amélioré */
.btn-voir-tout {
  transition: all 0.2s cubic-bezier(0.34, 1.4, 0.64, 1) !important;
}
.btn-voir-tout:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(224,122,95,0.15);
}

/* Nav-search focus glow amélioré */
.nav-search:focus-within {
  box-shadow: 0 0 0 3px rgba(224,122,95,0.10), 0 2px 8px rgba(38,51,64,0.08) !important;
}

/* Btn-vendre animation subtile */
.btn-vendre {
  transition: all 0.2s cubic-bezier(0.34, 1.4, 0.64, 1) !important;
}

/* Section home améliorée */
.home-section-v2 .cards-grid {
  gap: 18px;
}

/* Cat strip hover plus dramatique */
.cat-strip-item {
  transition: all 0.22s cubic-bezier(0.34, 1.4, 0.64, 1) !important;
}

/* Amélioration des steps HIW */
.hiw-step-icon {
  transition: all 0.3s cubic-bezier(0.34, 1.4, 0.64, 1) !important;
}

/* toast amélioration */
.toast {
  border-radius: 14px !important;
  box-shadow: 0 8px 32px rgba(38,51,64,0.22) !important;
  font-size: 14.5px !important;
}

/* ── Emoji dans les pills de navigation ─────────────────── */
.pill-emoji {
  font-size: 15px;
  line-height: 1;
  display: inline-block;
  margin-right: 2px;
  vertical-align: middle;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE MOBILE — rapprochement version desktop
═══════════════════════════════════════════════════════════ */

/* ── Tablette (≤ 1024px) : layout 1 col, visuels visibles ── */
@media (max-width: 1024px) {
  .hero-v2-inner {
    grid-template-columns: 1fr;
    padding: 56px 32px 44px;
    gap: 36px;
  }

  /* Visual devient un strip horizontal scrollable */
  .hero-v2-visual {
    display: block !important;
    height: auto;
  }

  .hero-float-wrap {
    position: relative !important;
    inset: auto !important;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 8px 2px 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .hero-float-wrap::-webkit-scrollbar { display: none; }

  .hero-float-card {
    position: relative !important;
    top: auto !important; left: auto !important;
    right: auto !important; bottom: auto !important;
    animation: none;
    transform: none;
    flex-shrink: 0;
    width: 200px !important;
  }

  .hero-float-notif { display: none; }

  /* Stats bar horizontale */
  .hero-v2-statsbar {
    flex-direction: row !important;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 16px 24px;
    gap: 0;
  }

  .hero-v2-stat {
    padding: 0 24px !important;
    width: auto !important;
    flex: 1;
    justify-content: center;
  }

  .hero-v2-stat + .hero-v2-stat {
    border-left: 1px solid var(--border) !important;
    border-top: none !important;
    padding-top: 0 !important;
  }
}

/* ── Mobile (≤ 768px) ────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-v2-inner { padding: 40px 20px 32px; gap: 28px; }
  .hero-v2-title { font-size: clamp(36px, 9vw, 52px) !important; letter-spacing: -2px; }
  .hero-v2-sub { font-size: 15.5px; margin-bottom: 28px; }
  .hero-v2-eyebrow { margin-bottom: 18px; }

  .hero-v2-visual { display: block !important; }

  .hero-float-card { width: 175px !important; }

  /* Stats sur 3 colonnes compactes */
  .hero-v2-statsbar {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    padding: 14px 16px;
    gap: 0;
  }

  .hero-v2-stat {
    padding: 0 10px !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .hero-v2-stat-icon { display: none; }

  .hero-v2-stat-num { font-size: 20px !important; }

  .hero-v2-stat + .hero-v2-stat {
    border-left: 1px solid var(--border) !important;
    border-top: none !important;
    padding-top: 0 !important;
  }

  .home-content-v2 { padding: 28px 16px 56px; }
  .home-section-v2 + .home-section-v2 { padding-top: 36px; margin-top: 36px; }
  .home-section-title-v2 { font-size: 20px; }

  /* Carte V2 : localisation sur une seule ligne (ellipse) — cartes 2 cols trop étroites */
  .card-v2-lieu {
    flex: 1 1 auto;
    min-width: 0;
    align-items: center;
  }
}

/* ── Petit mobile (≤ 640px) ──────────────────────────────── */
@media (max-width: 640px) {
  .hero-v2-inner { padding: 32px 16px 28px; }
  .hero-v2-title { font-size: clamp(34px, 9vw, 48px) !important; letter-spacing: -1.8px; }

  .hero-float-card { width: 160px !important; }

  /* 2 actions en colonne sur petit mobile */
  .hero-v2-actions { flex-direction: column; align-items: center; gap: 10px; }
  .hero-v2-cta-secondary { font-size: 14px; padding: 11px 18px; }

  /* Cards : 2 colonnes, gap confortable */
  .cards-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr) !important; }

  .card-v2-body { padding: 10px 12px 12px; }
  .card-v2-title { font-size: 13.5px; }
  .card-v2-meta { font-size: 11px; }
  .card-v2-lieu, .card-v2-offres-pill, .card-v2-cta { font-size: 10.5px; }
  .card-v2-offres-pill, .card-v2-cta { padding: 3px 9px; }

  /* Section headers */
  .home-section-header-v2 { margin-bottom: 16px; }
  .home-section-title-v2 { font-size: 18px; }
  .btn-voir-tout { font-size: 12px; padding: 6px 12px; }
}

/* ── Très petit mobile (≤ 380px) ────────────────────────── */
@media (max-width: 380px) {
  .hero-v2-title { font-size: 30px !important; letter-spacing: -1.2px; }
  .hero-float-card { width: 148px !important; }
  .cards-grid { gap: 8px !important; }
}

/* ═══════════════════════════════════════════════════════════
   HERO VISUEL MOBILE — cards flottantes comme desktop
═══════════════════════════════════════════════════════════ */

/* ── Mobile : cards en haut, titre superposé ──────────────── */
@media (max-width: 1024px) {

  .hero-v2-visual {
    display: block !important;
    height: auto !important;
    position: relative !important;
    margin: 0 -20px;
  }

  /* Fade bas pour fondre avec le titre superposé */
  .hero-v2-visual::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 64px;
    background: linear-gradient(to bottom, transparent, #f3ece3);
    pointer-events: none;
    z-index: 1;
  }

  .hero-float-wrap {
    position: relative !important;
    inset: auto !important;
    display: flex !important;
    align-items: flex-start;
    gap: 16px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 24px 20px 56px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-float-wrap::-webkit-scrollbar { display: none; }

  .hero-float-card {
    position: relative !important;
    top: auto !important; left: auto !important;
    right: auto !important; bottom: auto !important;
    flex-shrink: 0 !important;
    width: 155px !important;
    scroll-snap-align: start;
  }

  /* Décalages verticaux + rotations différentes par card */
  .hero-float-card--1 {
    margin-top: 18px;
    animation: mobileFloat1 4.5s ease-in-out infinite !important;
  }
  .hero-float-card--2 {
    margin-top: 0;
    animation: mobileFloat2 5.5s ease-in-out infinite !important;
  }
  .hero-float-card--3 {
    margin-top: 36px;
    animation: mobileFloat3 5s ease-in-out infinite !important;
  }

  .hero-float-notif { display: none !important; }
}

@keyframes mobileFloat1 {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-7px) rotate(-3deg); }
}
@keyframes mobileFloat2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%       { transform: translateY(-5px) rotate(1.5deg); }
}
@keyframes mobileFloat3 {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%       { transform: translateY(-8px) rotate(-1.5deg); }
}

/* ═══════════════════════════════════════════════════════════
   HERO V2 — Placement grid desktop + order mobile
═══════════════════════════════════════════════════════════ */

/* Desktop : grid explicite, visual sur colonne droite */
.hero-v2-inner {
  grid-template-columns: 1fr 480px;
  grid-template-rows: auto auto;
  align-items: center;
}

.hero-v2-text-top    { grid-column: 1; grid-row: 1; }
.hero-v2-text-bottom { grid-column: 1; grid-row: 2; }
.hero-v2-visual      { grid-column: 2; grid-row: 1 / span 2; align-self: center; }

/* Mobile : cards en haut, titre chevauche, texte + boutons en bas */
@media (max-width: 1024px) {
  .hero-v2-inner {
    display: flex !important;
    flex-direction: column;
    padding: 0 20px 40px;
    gap: 0;
  }

  .hero-v2-visual      { order: 1; margin-bottom: 0; }
  .hero-v2-text-top    { order: 2; margin-top: -44px; position: relative; z-index: 3; }
  .hero-v2-text-bottom { order: 3; margin-top: 4px; }
  .hero-v2-sub         { margin-bottom: 28px; }
  .hero-v2-actions     { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-v2-cta-primary,
  .hero-v2-cta-secondary { width: 100%; justify-content: center; box-sizing: border-box; }
}

.hero-v2-eyebrow { width: fit-content; }

@media (min-width: 1025px) {
  .hero-v2-title { margin-bottom: 36px !important; }
  .hero-v2-sub   { margin-top: 0 !important; margin-bottom: 36px !important; }
}

/* ── HERO fond clair graphique ─────────────────────────────── */
.hero-v2 {
  background:
    linear-gradient(120deg, #f6f1ea 0%, #efe6d9 38%, #e7ddcf 100%) !important;
}
.hero-v2::before {
  inset: 0;
  background:
    linear-gradient(132deg, transparent 0 32%, rgba(27, 42, 58, 0.06) 32% 34%, transparent 34% 54%, rgba(224,122,95,0.10) 54% 56%, transparent 56% 100%),
    linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0) 34%) !important;
}
.hero-v2::after {
  width: 46%;
  top: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 72% 34%, rgba(255,255,255,0.68) 0, rgba(255,255,255,0.24) 22%, transparent 54%),
    linear-gradient(180deg, rgba(27,42,58,0.04), rgba(27,42,58,0.12)) !important;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.95;
}

/* Textes */
.hero-v2-title { color: var(--ink) !important; }
.hero-v2-title em { color: var(--accent) !important; }
.hero-v2-sub { color: rgba(38,51,64,0.72) !important; }

/* Eyebrow */
.hero-v2-eyebrow {
  background: rgba(255,255,255,0.52) !important;
  border-color: rgba(224,122,95,0.22) !important;
  color: var(--accent) !important;
}

/* Bouton secondaire "Voir les annonces" */
.hero-v2-cta-secondary {
  color: var(--ink-soft) !important;
  border-color: rgba(38,51,64,0.12) !important;
  background: rgba(255,255,255,0.44) !important;
}
.hero-v2-cta-secondary:hover {
  color: var(--ink) !important;
  border-color: rgba(38,51,64,0.2) !important;
  background: rgba(255,255,255,0.72) !important;
}

/* Statsbar */
.hero-v2-statsbar {
  background: rgba(255,255,255,0.34) !important;
  border-top: 1px solid rgba(38,51,64,0.08) !important;
}
.hero-v2-stat + .hero-v2-stat { border-color: rgba(38,51,64,0.08) !important; }
.hero-v2-stat-icon {
  background: rgba(255,255,255,0.48) !important;
  border-color: rgba(38,51,64,0.08) !important;
}
.hero-v2-stat-num { color: var(--ink) !important; }
.hero-v2-stat-label { color: rgba(38,51,64,0.56) !important; }

/* ── Page /conversation (fil dédié) ─────────────────────── */
.conversation-page .conv-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 16px 40px;
  box-sizing: border-box;
}
.conversation-page .offres-thread--standalone {
  display: flex;
  flex-direction: column;
  max-height: none;
  background: var(--warm-white);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 901px) {
  .conversation-page .offres-thread--standalone {
    min-height: calc(100dvh - 62px - 32px);
  }
}
.conversation-page .offres-thread--standalone .msg-body {
  flex: 1 1 auto;
  min-height: 200px;
}
.conversation-page .conv-back-btn--link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  flex-shrink: 0;
  margin-right: 4px;
  color: var(--ink);
  text-decoration: none !important;
  background: var(--warm-white);
}
.conversation-page .conv-back-btn--link:hover {
  opacity: 0.88;
  border-color: var(--ink-muted);
}
.conversation-page .site-footer .footer-cats,
.conversation-page .site-footer > div:nth-child(2) {
  display: none;
}
.conversation-page .site-footer {
  margin-top: 0;
  border-top: none;
}
.conversation-page .site-footer .footer-bottom {
  border-top: 1px solid var(--border);
}
@media (max-width: 640px) {
  .conversation-page .conv-shell { padding: 12px 12px 32px; }
  .conversation-page .offres-thread--standalone {
    border-radius: 12px;
  }
}
/* Fil /conversation en ≤900px : top du bloc fixe = nav-top + barre recherche mobile + filtres catégories (voir .nav-search-mobile-bar + .filters-bar) ; pas de bottom bar compte */
@media (max-width: 900px) {
  .conversation-page .offres-thread.offres-thread--standalone {
    top: calc(62px + 48px + 44px);
    bottom: env(safe-area-inset-bottom, 0px);
    min-height: 0;
  }
  .conversation-page .offres-thread--standalone .msg-body {
    flex: 1 1 0%;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .conversation-page .offres-thread--standalone .msg-input-row {
    flex: 0 0 auto;
    min-height: 56px;
  }
  .conversation-page .offres-thread--standalone .conv-header {
    flex: 0 1 auto;
    max-height: min(48vh, 360px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 768px) {
  .conversation-page .offres-thread.offres-thread--standalone {
    top: calc(56px + 48px + 42px);
  }
}
@media (max-width: 640px) {
  .conversation-page .offres-thread.offres-thread--standalone {
    top: calc(54px + 48px + 40px);
  }
}
@media (max-width: 360px) {
  .conversation-page .offres-thread.offres-thread--standalone {
    top: calc(52px + 48px + 40px);
  }
}
