/* ==========================================================================
   WARM-SUNSET THEME
   Background: #fdf6f0, Surfaces: #fff8f2
   Text: #3d2b1f, Muted: #967a64
   Accent: #e07830, Secondary: #c4553a
   Fonts: DM Serif Display (headings), Nunito (body)
   ========================================================================== */

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    background: #fdf6f0;
    color: #3d2b1f;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.25;
    color: #3d2b1f;
}

a { color: #e07830; text-decoration: none; transition: color .2s; }
a:hover { color: #c4553a; }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

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

/* ==========================================================================
   HEADER
   ========================================================================== */
.header-topbar {
    background: linear-gradient(135deg, #e07830, #c4553a);
    padding: 6px 0;
    text-align: center;
    font-size: .8rem;
    color: rgba(255,255,255,.9);
    letter-spacing: .3px;
}

.header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(61,43,31,.07);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 20px;
}

.header__logo {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: #3d2b1f;
    white-space: nowrap;
}
.header__logo:hover { color: #e07830; }

.header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.header__nav a {
    color: #3d2b1f;
    font-size: .9rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
}
.header__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e07830;
    transition: width .25s ease;
}
.header__nav a:hover { color: #e07830; }
.header__nav a:hover::after { width: 100%; }

/* Search */
.header__search {
    position: relative;
    display: flex;
    align-items: center;
}
.header__search-input {
    border: 2px solid #f0e0d0;
    border-radius: 25px;
    padding: 8px 40px 8px 18px;
    font-size: .9rem;
    background: #fff8f2;
    color: #3d2b1f;
    width: 220px;
    transition: border-color .2s, width .3s;
    font-family: 'Nunito', sans-serif;
}
.header__search-input:focus {
    outline: none;
    border-color: #e07830;
    width: 260px;
}
.header__search-input::placeholder { color: #b89a80; }

.header__search-btn {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: #967a64;
    transition: color .2s;
}
.header__search-btn:hover { color: #e07830; }

/* Search dropdown */
.search-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #f0e0d0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(61,43,31,.12);
    z-index: 200;
    max-height: 320px;
    overflow-y: auto;
}
.search-dropdown a {
    display: block;
    padding: 10px 16px;
    color: #3d2b1f;
    font-size: .88rem;
    border-bottom: 1px solid #fdf6f0;
    transition: background .15s;
}
.search-dropdown a:last-child { border-bottom: none; }
.search-dropdown a:hover { background: #fff8f2; color: #e07830; }

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

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, #e07830 0%, #c4553a 50%, #a33d2e 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px 70px;
    margin: -1px -20px 40px;
    border-radius: 0 0 40px 40px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
}
.hero h1 {
    font-size: 2.6rem;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.hero p {
    font-size: 1.15rem;
    opacity: .92;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { margin-top: 50px; }
.section h2 {
    font-size: 1.7rem;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}
.section h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e07830, #c4553a);
    border-radius: 3px;
}

.section--intro { margin-top: 20px; }
.section--intro p {
    font-size: 1.05rem;
    color: #5c4433;
    line-height: 1.8;
    max-width: 900px;
}

.section--text {
    background: #fff8f2;
    border-radius: 16px;
    padding: 36px;
    border: 1px solid #f0e0d0;
}
.section--alt {
    background: #fff8f2;
    padding: 40px 0;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

/* ==========================================================================
   ANNONCES GRID (staggered 2-3 col)
   ========================================================================== */
.annonces-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.annonces-grid .annonce-card:nth-child(7n+1),
.annonces-grid .annonce-card:nth-child(7n+2) {
    grid-column: span 1;
}

@media (max-width: 900px) {
    .annonces-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 580px) {
    .annonces-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* --- Annonce Card --- */
.annonce-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(150,100,60,.08);
    transition: transform .25s ease, box-shadow .25s ease;
}
.annonce-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(150,100,60,.15);
}
.annonce-card__img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}
.annonce-card__body { padding: 18px 20px 20px; }
.annonce-card__name {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.15rem;
    color: #3d2b1f;
    margin-bottom: 4px;
}
.annonce-card__name a { color: inherit; }
.annonce-card__name a:hover { color: #e07830; }
.annonce-card__location {
    font-size: .85rem;
    color: #967a64;
    margin-bottom: 8px;
}
.annonce-card__excerpt {
    font-size: .88rem;
    color: #5c4433;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   TAGS
   ========================================================================== */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #f0e0d0;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: .88rem;
    color: #3d2b1f;
    transition: all .2s;
    font-weight: 600;
}
.tag:hover {
    background: #e07830;
    color: #fff;
    border-color: #e07830;
}
.tag:hover .tag__count { color: rgba(255,255,255,.8); }
.tag__count {
    font-size: .78rem;
    color: #967a64;
    font-weight: 700;
    transition: color .2s;
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.breadcrumb {
    font-size: .85rem;
    color: #967a64;
    margin-bottom: 24px;
    padding: 14px 0;
    border-bottom: 1px solid #f0e0d0;
}
.breadcrumb a { color: #e07830; font-weight: 600; }
.breadcrumb a:hover { color: #c4553a; }

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: .9rem;
    font-weight: 700;
    transition: all .2s;
}
.pagination a {
    background: #fff;
    color: #3d2b1f;
    border: 1px solid #f0e0d0;
}
.pagination a:hover {
    background: #e07830;
    color: #fff;
    border-color: #e07830;
}
.pagination .current {
    background: #e07830;
    color: #fff;
    border: 1px solid #e07830;
}

/* ==========================================================================
   ANNONCE DETAIL
   ========================================================================== */
.annonce { margin-top: 10px; }

.annonce__header {
    text-align: center;
    margin-bottom: 30px;
}
.annonce__header h1 { font-size: 2.2rem; }
.annonce__location {
    font-size: 1.05rem;
    color: #967a64;
    margin-top: 6px;
}

.annonce__gallery {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.annonce__photo {
    max-width: 380px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(150,100,60,.12);
}

.annonce__cta {
    text-align: center;
    margin: 30px 0;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #e07830, #c4553a);
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 6px 25px rgba(224,120,48,.35);
    transition: all .25s;
    letter-spacing: .3px;
}
.btn-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(224,120,48,.45);
}

.annonce__content {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
    margin-top: 30px;
}
@media (max-width: 800px) {
    .annonce__content { grid-template-columns: 1fr; }
}

.annonce__section {
    background: #fff8f2;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid #f0e0d0;
}
.annonce__section:nth-child(even) {
    background: #fff;
}
.annonce__section h2 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}
.annonce__section h2::after { display: none; }
.annonce__section p { color: #5c4433; line-height: 1.8; }

.annonce__list {
    list-style: none;
    padding: 0;
}
.annonce__list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0e0d0;
    color: #5c4433;
}
.annonce__list li:last-child { border-bottom: none; }

/* Sidebar */
.annonce__sidebar {}
.annonce__info-box {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #f0e0d0;
    box-shadow: 0 4px 15px rgba(150,100,60,.06);
    margin-bottom: 20px;
}
.annonce__info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #fdf6f0;
    font-size: .92rem;
}
.annonce__info-row:last-child { border-bottom: none; }
.annonce__info-label {
    font-weight: 700;
    color: #967a64;
}

.annonce__practices-box {
    background: linear-gradient(135deg, #fff8f2, #fdf6f0);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #f0e0d0;
}
.annonce__practices-box h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
    color: #c4553a;
}
.practices-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.practices-list li {
    background: #fff;
    border: 1px solid #f0e0d0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .82rem;
    color: #5c4433;
    font-weight: 600;
}

/* ==========================================================================
   LAYOUT WITH SIDEBAR (region/dept/ville)
   ========================================================================== */
.layout-sidebar {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 30px;
}
@media (max-width: 800px) {
    .layout-sidebar { grid-template-columns: 1fr; }
}

.sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}
.sidebar__box {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #f0e0d0;
    box-shadow: 0 4px 15px rgba(150,100,60,.06);
    margin-bottom: 20px;
}
.sidebar__box h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
    color: #c4553a;
    font-family: 'DM Serif Display', Georgia, serif;
}
.sidebar__box ul li {
    margin-bottom: 6px;
}
.sidebar__box ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: .88rem;
    color: #3d2b1f;
    transition: all .15s;
}
.sidebar__box ul li a:hover {
    background: #fff8f2;
    color: #e07830;
}
.sidebar__box ul li a .count {
    font-size: .78rem;
    color: #967a64;
    font-weight: 700;
}

/* ==========================================================================
   SEARCH PAGE
   ========================================================================== */
.search-form {
    display: flex;
    max-width: 600px;
    margin: 24px 0 30px;
    gap: 10px;
}
.search-form__input {
    flex: 1;
    padding: 14px 22px;
    border: 2px solid #f0e0d0;
    border-radius: 14px;
    font-size: 1rem;
    background: #fff;
    color: #3d2b1f;
    font-family: 'Nunito', sans-serif;
    transition: border-color .2s;
}
.search-form__input:focus {
    outline: none;
    border-color: #e07830;
}
.search-form__btn {
    background: linear-gradient(135deg, #e07830, #c4553a);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    transition: opacity .2s;
}
.search-form__btn:hover { opacity: .9; }

.subtitle {
    font-size: 1rem;
    color: #967a64;
    margin-bottom: 24px;
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.blog-categories__link {
    padding: 8px 18px;
    border-radius: 25px;
    font-size: .88rem;
    font-weight: 600;
    background: #fff;
    color: #3d2b1f;
    border: 1px solid #f0e0d0;
    transition: all .2s;
}
.blog-categories__link:hover,
.blog-categories__link--active {
    background: #e07830;
    color: #fff;
    border-color: #e07830;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 800px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(150,100,60,.08);
    transition: transform .25s, box-shadow .25s;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(150,100,60,.14);
}
.blog-card__img-wrap {
    position: relative;
    overflow: hidden;
}
.blog-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .4s;
}
.blog-card:hover .blog-card__img { transform: scale(1.05); }
.blog-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(61,43,31,.5));
    pointer-events: none;
}
.blog-card__body { padding: 18px 20px 20px; }
.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: 'DM Serif Display', Georgia, serif;
}
.blog-card h3 a { color: #3d2b1f; }
.blog-card h3 a:hover { color: #e07830; }
.blog-card p {
    font-size: .88rem;
    color: #5c4433;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
}
.blog-card time {
    font-size: .8rem;
    color: #967a64;
}

/* Blog List */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.blog-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 28px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(150,100,60,.08);
    transition: transform .25s, box-shadow .25s;
}
.blog-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(150,100,60,.14);
}
@media (max-width: 640px) {
    .blog-item { grid-template-columns: 1fr; }
}
.blog-item__img-link { display: block; overflow: hidden; }
.blog-item__img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    transition: transform .4s;
}
.blog-item:hover .blog-item__img { transform: scale(1.05); }
.blog-item__body {
    padding: 24px 24px 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 640px) {
    .blog-item__body { padding: 20px; }
}
.blog-item__category {
    display: inline-block;
    background: linear-gradient(135deg, #e07830, #c4553a);
    color: #fff;
    padding: 3px 12px;
    border-radius: 15px;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 10px;
    width: fit-content;
}
.blog-item__body h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.blog-item__body h2 a { color: #3d2b1f; }
.blog-item__body h2 a:hover { color: #e07830; }
.blog-item__date {
    font-size: .82rem;
    color: #967a64;
    margin-bottom: 8px;
    display: block;
}
.blog-item__body p {
    font-size: .92rem;
    color: #5c4433;
    margin-bottom: 12px;
}
.blog-item__link {
    font-weight: 700;
    font-size: .9rem;
    color: #e07830;
}
.blog-item__link:hover { color: #c4553a; }

/* ==========================================================================
   ARTICLE DETAIL
   ========================================================================== */
.article { margin-top: 10px; }

.article__header {
    text-align: center;
    margin-bottom: 30px;
}
.article__header h1 { font-size: 2.2rem; max-width: 800px; margin: 0 auto 14px; }
.article__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: .88rem;
    color: #967a64;
}
.article__date { font-weight: 600; }
.article__category {
    background: linear-gradient(135deg, #e07830, #c4553a);
    color: #fff;
    padding: 3px 14px;
    border-radius: 15px;
    font-size: .78rem;
    font-weight: 700;
}

.article__hero {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 36px;
    box-shadow: 0 8px 30px rgba(150,100,60,.12);
}

.article__content {
    max-width: 780px;
    margin: 0 auto;
}

/* Content Text (shared) */
.content-text h2 {
    font-size: 1.4rem;
    margin: 28px 0 14px;
}
.content-text h3 {
    font-size: 1.15rem;
    margin: 22px 0 10px;
}
.content-text p {
    margin-bottom: 16px;
    line-height: 1.85;
    color: #5c4433;
}
.content-text ul, .content-text ol {
    margin: 14px 0;
    padding-left: 24px;
}
.content-text li {
    margin-bottom: 8px;
    list-style: disc;
    color: #5c4433;
}
.content-text ol li { list-style: decimal; }
.content-text blockquote {
    border-left: 4px solid #e07830;
    padding: 16px 24px;
    margin: 20px 0;
    background: #fff8f2;
    border-radius: 0 12px 12px 0;
    color: #5c4433;
    font-style: italic;
}
.content-text img {
    border-radius: 12px;
    margin: 20px 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #3d2b1f;
    color: #e8d5c4;
    margin-top: 60px;
    padding-top: 50px;
}
.footer a { color: #e8d5c4; }
.footer a:hover { color: #e07830; }

.footer__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    padding-bottom: 40px;
}
@media (max-width: 800px) {
    .footer__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .footer__inner { grid-template-columns: 1fr; }
}

.footer__col h4 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 400;
}
.footer__col p {
    font-size: .88rem;
    line-height: 1.7;
    opacity: .8;
}
.footer__col ul li {
    margin-bottom: 8px;
}
.footer__col ul li a {
    font-size: .88rem;
    opacity: .8;
    transition: opacity .2s, color .2s;
}
.footer__col ul li a:hover { opacity: 1; color: #e07830; }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
    text-align: center;
    font-size: .82rem;
    opacity: .6;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.empty {
    text-align: center;
    color: #967a64;
    padding: 40px 0;
    font-size: 1.05rem;
}

/* Responsive header */
@media (max-width: 768px) {
    .header__inner { flex-wrap: wrap; }
    .header__nav { order: 3; width: 100%; justify-content: center; gap: 14px; padding-top: 10px; border-top: 1px solid #f0e0d0; }
    .header__search-input { width: 160px; }
    .header__search-input:focus { width: 180px; }
    .hero { padding: 50px 20px 40px; }
    .hero h1 { font-size: 1.8rem; }
}

/* ── 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);
    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);
    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; }
