
: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-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; }
.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: 7px;
padding: 0 40px 10px;
overflow: visible; scrollbar-width: none;
position: relative; z-index: 20;
}
.filters-bar::-webkit-scrollbar { display: none; }
.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: 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;
}
.pill:hover { border-color: var(--accent); color: var(--accent); }
.pill.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.hero {
padding: 36px 40px 32px;
text-align: center;
position: relative; overflow: visible;
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); }
}
.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.68);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
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.90);
}
.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 {
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; left: 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;
  height: 56px;
  z-index: 5000;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  padding-bottom: env(safe-area-inset-bottom);
  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;
}
.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:8px;font-size:14.5px;font-weight:500;color:var(--ink);cursor:pointer;padding:18px 24px 12px;border-bottom:1px solid var(--border-soft);margin-bottom:4px;
}
.sf-close svg {
width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;
}
.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 {
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-bottom:3px;
}
.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: 8px;
}
.cat-btn {
display: flex; flex-direction: column; align-items: center; gap: 8px;
padding: 18px 12px; border-radius: 14px;
border: 1.5px solid var(--border); background: var(--warm-white);
cursor: pointer; transition: all 0.18s; text-align: center;
}
.cat-btn:hover {
border-color: var(--accent); background: var(--accent-light);
}
.cat-btn.selected {
border-color: var(--accent); background: var(--accent-light);
}
.cat-btn svg {
width: 22px; height: 22px; stroke: var(--ink-muted); fill: none; stroke-width: 1.5; transition: stroke 0.18s;
}
.cat-btn:hover svg, .cat-btn.selected svg {
stroke: var(--accent-dark);
}
.cat-btn span {
font-size: 13px; font-weight: 400; color: var(--ink-soft); transition: color 0.18s;
}
.cat-btn.selected span {
color: var(--accent-dark); font-weight: 500;
}
.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; }
.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 {
display: flex; align-items: flex-start; gap: 10px;
padding: 11px 16px; text-decoration: none;
border-bottom: 1px solid var(--border-soft);
transition: background 0.12s; position: relative;
}
.nav-notif-item:last-of-type { border-bottom: none; }
.nav-notif-item:hover { background: var(--cream); }
.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);
}
.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; }
.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;
}
.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;
}
.msg-textarea {
flex:1;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-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: 62px; 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: 400;
color: var(--ink-soft);
background: var(--cream);
border: 1px solid var(--border);
border-radius: 100px;
padding: 6px 14px;
text-decoration: none;
transition: all 0.15s;
display: inline-block;
}
.drawer-cat:hover { border-color: var(--accent); color: var(--accent); }
.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-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: 260px;
max-width: 340px;
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: 17px;
font-weight: 600;
color: var(--ink);
letter-spacing: -0.2px;
}
.mega-menu-see-all {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 13px;
font-weight: 500;
color: var(--accent-dark);
white-space: nowrap;
transition: gap 0.2s;
}
.mega-menu-see-all:hover { gap: 8px; }
.mega-menu-see-all svg {
width: 13px; height: 13px;
stroke: var(--accent-dark);
transition: transform 0.2s;
}
.mega-menu-see-all:hover svg { transform: translateX(2px); }
.mega-menu-subs {
padding: 8px 0;
display: flex;
flex-direction: column;
}
.mega-menu-sub {
display: flex;
align-items: center;
gap: 12px;
padding: 11px 20px;
font-family: 'DM Sans', sans-serif;
font-size: 15px;
font-weight: 400;
color: var(--ink-soft);
transition: background 0.12s, color 0.12s, padding-left 0.15s;
cursor: pointer;
position: relative;
}
.mega-menu-sub:hover {
background: var(--cream);
color: var(--ink);
padding-left: 24px;
}
.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.4);
}

.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); }
.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 10px; }
  .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 : même comportement que mobile */
  .offres-layout { display: block; position: relative; height: auto; }
  .offres-sidebar { display: block; }
  .offres-thread { display: none; }
  .offres-layout.mobile-show-thread .offres-sidebar { display: none; }
  .offres-layout.mobile-show-thread .offres-thread { display: flex; flex-direction: column; height: 580px; }
  .offres-layout.mobile-show-thread .offres-thread .msg-body { flex: 1 1 auto; min-height: 0; overflow-y: auto; }
  .offres-layout.mobile-show-thread .offres-thread .msg-input-row { flex: 0 0 auto; min-height: 56px; }
  .conv-back-btn { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: none; border: none; cursor: pointer; border-radius: 8px; 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 {
    display: none;
    position: fixed; top: 0; left: 0; bottom: 0;
    width: min(85%, 320px); z-index: 10002;
    background: var(--warm-white);
    box-shadow: 4px 0 40px rgba(38,51,64,0.15);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .sidebar-filters.mobile-open { display: block; transform: translateX(0); }
  .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; }
  .results-main { padding: 20px 16px 48px; }
  .mobile-filter-btn { display: flex; }

  /* 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; }
  .nav-drawer { 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: auto; bottom: 8px; left: 8px; }
  .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; }
  .nav-drawer { top: 54px; }
  .card-offres-label { display: none; }
  .filters-bar { 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; }

  /* ── 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: 8px; }
  .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; }

  /* ── MESSAGERIE MOBILE ── */
  .offres-layout {
    display: block;
    position: relative;
  }
  /* Par défaut sur mobile : liste visible, thread caché */
  .offres-sidebar { display: block; }
  /* Thread : plein écran entre nav et bottom bar */
  .offres-thread {
    display: none;
    position: fixed;
    top: 54px; left: 0; right: 0; bottom: 58px;
    background: var(--warm-white);
    z-index: 100;
    flex-direction: column;
    overflow: hidden;
    height: calc(100dvh - 54px - 58px);
  }
  .offres-layout.mobile-show-thread .offres-sidebar { display: none; }
  .offres-layout.mobile-show-thread .offres-thread { display: flex; }

  /* Header : hauteur auto */
  .offres-layout.mobile-show-thread .offres-thread .conv-header {
    flex: 0 0 auto;
  }
  /* Body : prend l'espace restant, scroll interne */
  .offres-layout.mobile-show-thread .offres-thread .msg-body {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* Input : collé en bas, jamais compressé */
  .offres-layout.mobile-show-thread .offres-thread .msg-input-row {
    flex: 0 0 auto;
    min-height: 56px;
  }
  /* Quand on clique sur une offre : thread visible */
  .offres-layout.mobile-show-thread .offres-sidebar { display: none; }
  .offres-layout.mobile-show-thread .offres-thread { display: flex; }

  /* Bouton retour dans conv-header */
  .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; }

  /* ── 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; }
  .nav-drawer { 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; }
.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; }
.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; }
}

