/* =========================================================
   TEAL-MINIMAL THEME — Ultra-clean minimal with teal accents
   Font: Manrope
   ========================================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #ffffff;
    --surface: #f5f7f7;
    --text: #1a1a2e;
    --text-muted: #64748b;
    --accent: #0d9488;
    --accent-hover: #0f766e;
    --accent-soft: rgba(13,148,136,0.08);
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.08);
    --radius: 8px;
    --radius-lg: 12px;
    --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1140px;
    --transition: 0.2s ease;
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
ul, ol { list-style: none; }

/* --- Container --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.header__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 60px;
}
.header__logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    white-space: nowrap;
    letter-spacing: -0.03em;
}
.header__logo:hover { color: var(--accent); }

.header__search {
    flex: 1;
    max-width: 380px;
    position: relative;
    margin: 0 auto;
}
.header__search-input {
    width: 100%;
    padding: 8px 38px 8px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.85rem;
    background: var(--surface);
    color: var(--text);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.header__search-input::placeholder { color: var(--text-muted); }
.header__search-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
    background: var(--bg);
}
.header__search-btn {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    padding: 5px 8px;
    color: var(--text-muted);
    transition: color var(--transition);
}
.header__search-btn:hover { color: var(--accent); }

.header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.header__nav a {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
}
.header__nav a:hover {
    color: var(--accent);
    background: var(--accent-soft);
}

/* Search Dropdown */
.search-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 200;
    overflow: hidden;
}
.search-dropdown a {
    display: block;
    padding: 10px 14px;
    color: var(--text);
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.search-dropdown a:last-child { border-bottom: none; }
.search-dropdown a:hover { background: var(--accent-soft); color: var(--accent); }

/* =========================================================
   MAIN
   ========================================================= */
.main { min-height: 60vh; padding: 32px 0 56px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
    text-align: center;
    padding: 44px 0 36px;
}
.hero h1 {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--text);
}
.hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section { margin-bottom: 36px; }
.section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    color: var(--text);
}
.section--intro { margin-bottom: 28px; }
.section--intro p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}
.section--intro p a { font-weight: 600; }
.section--text .content-text p {
    color: var(--text-muted);
    line-height: 1.75;
}

/* =========================================================
   BREADCRUMB
   ========================================================= */
.breadcrumb {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--accent); font-weight: 500; }
.breadcrumb a:hover { color: var(--accent-hover); }

/* =========================================================
   ANNONCES GRID — horizontal cards (image left, text right)
   ========================================================= */
.annonces-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.annonce-card {
    display: flex;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.annonce-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.annonce-card__img {
    width: 190px;
    min-height: 170px;
    object-fit: cover;
    flex-shrink: 0;
}
.annonce-card__body {
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
}
.annonce-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
    letter-spacing: -0.01em;
}
.annonce-card__name:hover { color: var(--accent); }
.annonce-card__location {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}
.annonce-card__excerpt {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================================================
   TAGS (villes, regions, departements)
   ========================================================= */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 600;
    transition: background var(--transition), color var(--transition);
}
.tag:hover {
    background: var(--accent);
    color: #fff;
}
.tag__count {
    background: rgba(255,255,255,0.3);
    padding: 1px 7px;
    border-radius: var(--radius);
    font-size: 0.73rem;
    font-weight: 500;
}
.tag:hover .tag__count { background: rgba(255,255,255,0.2); }

/* =========================================================
   FILTER BAR (region/dept/ville)
   ========================================================= */
.filter-bar {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--border);
}
.filter-bar__input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    background: var(--bg);
    color: var(--text);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.filter-bar__input::placeholder { color: var(--text-muted); }
.filter-bar__input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

/* =========================================================
   PAGINATION
   ========================================================= */
.pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 32px;
}
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 8px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border);
    color: var(--text-muted);
    background: var(--bg);
    transition: all var(--transition);
}
.pagination a:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent);
}
.pagination .current {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* =========================================================
   ANNONCE DETAIL PAGE
   ========================================================= */
.annonce__header {
    margin-bottom: 24px;
}
.annonce__header h1 {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.annonce__location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* Gallery */
.annonce__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}
.annonce__photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

/* CTA */
.annonce__cta { margin-bottom: 28px; }
.btn-cta {
    display: inline-block;
    padding: 12px 32px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 2px 8px rgba(13,148,136,0.25);
}
.btn-cta:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(13,148,136,0.35);
}

/* Tabs */
.annonce-tabs {
    display: flex;
    gap: 2px;
    margin-bottom: 0;
    border-bottom: 2px solid var(--border);
}
.annonce-tabs__btn {
    padding: 10px 22px;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color var(--transition), border-color var(--transition);
}
.annonce-tabs__btn:hover { color: var(--accent); }
.annonce-tabs__btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}
.annonce-tab-panel {
    display: none;
    padding: 22px 0;
}
.annonce-tab-panel.active { display: block; }
.annonce-tab-panel p {
    color: var(--text-muted);
    line-height: 1.75;
}

/* Content layout */
.annonce__content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: start;
}

/* Sidebar */
.annonce__info-box {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 14px;
    border: 1px solid var(--border);
}
.annonce__info-row {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}
.annonce__info-row:last-child { border-bottom: none; }
.annonce__info-label {
    font-weight: 600;
    color: var(--text);
}
.annonce__practices-box {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 18px;
    border: 1px solid var(--border);
}
.annonce__practices-box h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.practices-list { display: flex; flex-wrap: wrap; gap: 6px; }
.practices-list li {
    padding: 4px 12px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: var(--radius);
    font-size: 0.78rem;
    font-weight: 600;
}
.annonce__section { margin-bottom: 22px; }
.annonce__section h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.annonce__section--list ul { list-style: disc; padding-left: 20px; }
.annonce__section--list li {
    color: var(--text-muted);
    margin-bottom: 5px;
    line-height: 1.6;
}

/* =========================================================
   SEARCH PAGE
   ========================================================= */
.search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    max-width: 560px;
}
.search-form__input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.search-form__input::placeholder { color: var(--text-muted); }
.search-form__input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.search-form__btn {
    padding: 12px 24px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
    white-space: nowrap;
}
.search-form__btn:hover { background: var(--accent-hover); }

.subtitle {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* =========================================================
   BLOG
   ========================================================= */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}
.blog-categories__link {
    padding: 6px 14px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.blog-categories__link:hover,
.blog-categories__link--active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Blog hero (first article large) */
.blog-hero {
    display: block;
    margin-bottom: 28px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: box-shadow var(--transition), border-color var(--transition);
}
.blog-hero:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.blog-hero__img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.blog-hero__body {
    padding: 24px 28px;
}
.blog-hero__cat {
    display: inline-block;
    padding: 3px 10px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: var(--radius);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}
.blog-hero__body h2 {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 8px;
    color: var(--text);
    letter-spacing: -0.02em;
}
.blog-hero__body p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 8px;
}
.blog-hero__body time {
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* Blog 2-col grid */
.blog-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 28px;
}

/* Blog list items */
.blog-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.blog-item {
    display: flex;
    gap: 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.blog-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.blog-item__img-link { flex-shrink: 0; }
.blog-item__img {
    width: 200px;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
}
.blog-item__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-item__category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.blog-item__body h2 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 4px;
}
.blog-item__body h2 a { color: var(--text); }
.blog-item__body h2 a:hover { color: var(--accent); }
.blog-item__date {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.blog-item__body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}
.blog-item__link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
}
.blog-item__link:hover { text-decoration: underline; }

/* Blog cards (compact, for grids) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}
.blog-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.blog-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.blog-card__img {
    width: 100%;
    height: 175px;
    object-fit: cover;
}
.blog-card__body { padding: 16px 18px; }
.blog-card__cat {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.blog-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 5px;
}
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 5px;
}
.blog-card time {
    font-size: 0.73rem;
    color: var(--text-muted);
}

/* Article detail */
.article__header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.article__header h1 {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 12px;
}
.article__meta {
    display: flex;
    align-items: center;
    gap: 14px;
}
.article__date {
    font-size: 0.82rem;
    color: var(--text-muted);
}
.article__category {
    padding: 3px 10px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: var(--radius);
    font-size: 0.72rem;
    font-weight: 700;
}
.article__hero {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 28px;
}
.article__content {
    max-width: 740px;
    margin-bottom: 44px;
}
.article__content h2, .article__content h3 {
    margin-top: 24px;
    margin-bottom: 10px;
}
.content-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
}
.content-text a { font-weight: 600; text-decoration: underline; }
.content-text a:hover { color: var(--accent-hover); }
.content-text ul, .content-text ol {
    padding-left: 22px;
    margin-bottom: 14px;
    list-style: disc;
}
.content-text li {
    color: var(--text-muted);
    margin-bottom: 5px;
    line-height: 1.7;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    margin-top: 36px;
    padding: 44px 0 0;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 36px;
}
.footer__col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}
.footer__col p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.footer__col ul { display: flex; flex-direction: column; gap: 7px; }
.footer__col ul li a {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--accent); }
.footer__bottom {
    margin-top: 28px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

/* =========================================================
   EMPTY STATE
   ========================================================= */
.empty {
    text-align: center;
    color: var(--text-muted);
    padding: 44px 0;
    font-size: 0.95rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .annonce__content {
        grid-template-columns: 1fr;
    }
    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header__inner {
        flex-wrap: wrap;
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 8px;
    }
    .header__nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        gap: 2px;
        padding-bottom: 2px;
    }
    .header__search {
        order: 2;
        max-width: none;
        flex: 1;
    }

    .hero h1 { font-size: 1.55rem; }
    .hero p { font-size: 0.92rem; }

    .annonce-card {
        flex-direction: column;
    }
    .annonce-card__img {
        width: 100%;
        height: 190px;
        min-height: auto;
    }

    .blog-grid-2 {
        grid-template-columns: 1fr;
    }
    .blog-hero__img { height: 210px; }
    .blog-hero__body { padding: 18px; }
    .blog-hero__body h2 { font-size: 1.2rem; }

    .blog-item {
        flex-direction: column;
    }
    .blog-item__img {
        width: 100%;
        height: 170px;
        min-height: auto;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .search-form {
        flex-direction: column;
    }

    .annonce__gallery {
        grid-template-columns: 1fr;
    }

    .annonce-tabs__btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .filter-bar {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .hero { padding: 28px 0 24px; }
    .hero h1 { font-size: 1.3rem; }
    .section h2 { font-size: 1.1rem; }
    .annonce__header h1 { font-size: 1.4rem; }
    .article__header h1 { font-size: 1.4rem; }
    .btn-cta { width: 100%; text-align: center; }
}

/* ── Filter bar ─────────────────────────────────────────────────────────── */
.filter-bar {
    margin: 1.5rem 0 2rem;
    padding: 1rem 1.25rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius, 8px);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.filter-bar__group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.filter-bar__group + .filter-bar__group {
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
}
.filter-bar__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted, var(--text-muted, #888));
    white-space: nowrap;
    min-width: 8.5rem;
    flex-shrink: 0;
}
.filter-bar__options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.tag--active {
    background: var(--color-accent) !important;
    color: var(--color-white, #fff) !important;
    border-color: var(--color-accent) !important;
    font-weight: 600;
}
.tag--active .tag__count {
    color: rgba(255,255,255,0.75) !important;
}
@media (max-width: 600px) {
  .filter-bar { padding: .75rem; }
  .filter-bar__group { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .filter-bar__label { min-width: unset; }
}
/* ── Comments ─────────────────────────────────────────────────────────── */
.card__comments {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    font-size: .8rem;
    color: var(--color-text-muted, #888);
}
.card__stars { color: var(--color-accent, #e91e8c); letter-spacing: 1px; }
.card__comments-count { color: inherit; }

.annonce__rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-surface, rgba(255,255,255,.08));
    border-radius: 20px;
    padding: 4px 12px;
    margin-top: 8px;
    font-size: .9rem;
}
.annonce__rating-stars { color: var(--color-accent, #e91e8c); letter-spacing: 1px; }
.annonce__rating-score { font-weight: 700; }
.annonce__rating-count { color: var(--color-text-muted, #aaa); text-decoration: none; font-size: .85rem; }
.annonce__rating-count:hover { text-decoration: underline; }

.annonce__comments { margin-top: 32px; }
.annonce__comments-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.annonce__comments-badge {
    background: var(--color-accent, #e91e8c);
    color: #fff;
    border-radius: 20px;
    padding: 2px 9px;
    font-size: .8rem;
    font-weight: 700;
}
.comments-list { display: flex; flex-direction: column; gap: 16px; }
.comment-item {
    background: var(--color-surface, rgba(255,255,255,.05));
    border-radius: 8px;
    padding: 14px 16px;
}
.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.comment-author { font-weight: 700; font-size: .95rem; }
.comment-rating { color: var(--color-accent, #e91e8c); letter-spacing: 1px; }
.comment-date { color: var(--color-text-muted, #888); font-size: .8rem; margin-left: auto; }
.comment-text { margin: 0; font-size: .9rem; line-height: 1.6; }
