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

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #212121;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ─── Navbar — specs exactes Vuetify ────────────────────────────── */
/* v-toolbar height=56px, v-btn large=44px, menuBtn margin-right=10px  */
/* sideSpacer = calc((100% - 1030px) / 2) comme dans le Vue.js original */
.navbar {
    background: #202020;
    display: flex;
    align-items: center;
    padding: 0;
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,.5);
}
.navbar-spacer {
    width: calc((100% - 1030px) / 2 + 27px);
    flex-shrink: 0;
    min-width: 0;
}
.navbar-logo { display: flex; align-items: center; height: 72px; padding: 0; }
.navbar-logo img { height: 72px; padding: 10px 0; }

/* Groupe gauche: Instruments, Effects, MIDI, Hosts */
.navbar-btns-left { display: flex; align-items: center; }
/* Spacer flex entre logo+gauche et droite */
.navbar-flex { flex: 1; }
/* Groupe droite: What's new + Search */
.navbar-btns-right { display: flex; align-items: center; }

.nav-btn {
    display: inline-flex; align-items: center;
    padding: 0 15px; height: 44px;
    background: #2196f3; color: #fff;
    border-radius: 4px; font-size: 14px; font-weight: 500;
    letter-spacing: .09em; text-transform: uppercase;
    transition: background .2s;
    border: none; cursor: pointer;
    margin-right: 10px;
}
.nav-btn:hover { background: #1976d2; }
/* Search button: carré 44x44 comme Vuetify icon btn */
.nav-btn.icon-btn {
    padding: 0 15px;
    width: auto;
    height: 44px;
    margin-right: 0;
    justify-content: center;
}

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 8px; }
.mobile-menu { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; box-shadow: 0 4px 8px rgba(0,0,0,.2); z-index: 99; }
.mobile-menu a { display: block; padding: 14px 20px; font-size: 15px; border-bottom: 1px solid #eee; }
.mobile-menu a:hover { background: #f5f5f5; }
.mobile-menu.open { display: block; }

@media (max-width: 960px) {
    .navbar-btns { display: none; }
    .menu-toggle { display: block; }
    .navbar-spacer { display: none; }
}

/* ─── Main container — max-width 1000px comme Vuetify ───────────── */
.main-container {
    max-width: 1030px;
    margin: 0 auto;
    width: 100%;
    padding: 0 12px;
}

/* ─── Top ad — v-card bleu dans le conteneur ────────────────────── */
.ad-banner-top {
    width: 100%;
    background: #f5f5f5;
}
.ad-top-card {
    background: #2196f3;
    border-radius: 4px;
    margin: 8px 0;
    padding: 8px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
/* ─── Layout — Vuetify md2|md8|md2 dans 1000px ─────────────────── */
.page-wrapper {
    display: flex;
    width: 100%;
    flex: 1;
    gap: 0;
    padding: 4px 0;
}
/* md2 = 16.666% de 1000px = 166px */
/* md8 = 66.666% de 1000px = 666px */
.col-left  { width: 166px; flex-shrink: 0; padding: 4px; }
.col-main  { flex: 1; min-width: 0; padding: 4px; }
.col-right { width: 166px; flex-shrink: 0; padding: 4px; text-align: center; }

@media (max-width: 960px) {
    .page-wrapper { flex-wrap: wrap; }
    .col-left  { width: 100%; order: 2; }
    .col-main  { width: 100%; order: 1; }
    .col-right { display: none; }
}

/* ─── Cards ─────────────────────────────────────────────────────── */
.card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
    overflow: hidden;
}

/* ─── Title bar ─────────────────────────────────────────────────── */
.title-bar {
    background: #2196f3;
    color: #fff;
    padding: 12px 16px;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 4px 0;
    border-radius: 4px;
}
.title-bar .count { font-size: 17px; color: #bbdefb; font-weight: 400; margin-left: 8px; }

/* ─── Sort & Filter bar ─────────────────────────────────────────── */
.sort-filter-bar {
    background: #2196f3;
    border-radius: 4px;
    padding: 7px 16px;
    margin: 8px 4px 4px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.sort-label { color: #fff; font-size: 18px; font-weight: 500; }

/* Groupe sort — border-radius 9px sur le conteneur comme Vuetify btn-toggle */
.sort-btns {
    display: flex;
    margin-left: auto;
    border-radius: 9px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,.3);
}
.sort-btn {
    padding: 0 12px; height: 28px;
    background: rgba(255,255,255,.2); color: #fff;
    border: none; border-right: 2px solid rgba(255,255,255,.3);
    font-size: 12px; font-weight: 500;
    letter-spacing: .05em; text-transform: uppercase;
    cursor: pointer; transition: background .15s;
    display: inline-flex; align-items: center; justify-content: center;
}
.sort-btn:last-child { border-right: none; }
.sort-btn:hover { background: #1976d2; color: #fff; }
.sort-btn.active { background: #fff; color: #2196f3; }

/* Flèches pagination dans la sort-bar */
.nav-arrow {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0 4px; height: 28px;
    background: rgba(255,255,255,.2); color: #fff;
    border: 1px solid rgba(255,255,255,.4); border-radius: 4px;
    font-size: 20px; cursor: pointer;
    transition: background .15s;
    text-decoration: none; line-height: 1;
}
.nav-arrow:hover { background: #1976d2; color: #fff; }
.nav-arrow.disabled { opacity: .4; pointer-events: none; }
.nav-page { color: #fff; font-size: 19px; font-weight: 700; }
.nav-sep  { color: rgba(255,255,255,.7); font-size: 17px; }

.os-filter-bar {
    background: #f5f5f5;
    border-radius: 4px;
    padding: 6px 12px;
    margin: 0 4px 4px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}
.os-chip {
    padding: 4px 12px; border-radius: 50px;
    border: 1px solid #2196f3; color: #2196f3;
    font-size: 12px; cursor: pointer;
    transition: all .15s;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 4px;
}
.os-chip:hover, .os-chip.active { background: #2196f3; color: #fff; }
.os-chip .chip-check { display: none; }
.os-chip.active .chip-check { display: inline-block; }

/* ─── OS Toggle switch ──────────────────────────────────────────── */
.os-toggle {
    display: inline-block; position: relative;
    width: 48px; height: 26px;
    background: rgba(255,255,255,.3);
    border-radius: 13px; cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
}
.os-toggle.active { background: #bbdefb; }
.os-toggle-knob {
    position: absolute; top: 3px; left: 3px;
    width: 20px; height: 20px;
    background: #fff; border-radius: 50%;
    transition: transform .2s;
    box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.os-toggle.active .os-toggle-knob { transform: translateX(22px); }

.refresh-btn {
    padding: 4px 16px; height: 36px;
    background: #42a5f5; color: #fff;
    border: none; border-radius: 4px;
    font-size: 13px; font-weight: 500;
    text-transform: uppercase; cursor: pointer;
    display: inline-flex; align-items: center; gap: 4px;
}
.refresh-btn:hover { background: #1976d2; }

/* ─── Plugin card ───────────────────────────────────────────────── */
.plugin-card {
    background: #f5f5f5;
    border-radius: 4px;
    box-shadow: 0 2px 2px rgba(0,0,0,.14), 0 1px 5px rgba(0,0,0,.2);
    padding: 8px;
    margin: 6px 4px;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s;
    color: inherit;
}
.plugin-card:hover { box-shadow: 0 4px 8px rgba(0,0,0,.2); }
.plugin-card-inner { display: flex; gap: 8px; }
.plugin-card-img { width: 40%; flex-shrink: 0; }
.plugin-card-img img { width: 100%; height: auto; display: block; border-radius: 2px; }
.plugin-card-body { flex: 1; min-width: 0; padding-left: 8px; }
.plugin-name { font-size: 21px; font-weight: 500; margin-bottom: 2px; }
.plugin-fx   { font-size: 16px; color: #555; margin-bottom: 8px; }
.plugin-card-bottom {
    display: flex;
    align-items: flex-end;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e0e0e0;
}
.dev-label { font-size: 11px; color: #9e9e9e; }
.dev-name  { font-size: 13px; }

/* ─── OS & Format labels ────────────────────────────────────────── */
.label-group { display: flex; flex-wrap: wrap; gap: 4px; margin: 6px 0; align-items: center; }
.label-prefix { font-size: 12px; color: #9e9e9e; margin-right: 2px; }
.os-label, .fmt-label {
    padding: 4px 14px; border-radius: 50px;
    border: 1px solid #2196f3; color: #2196f3;
    background: #fff;
    font-size: 13px; display: inline-flex; align-items: center;
}

/* ─── Stars ─────────────────────────────────────────────────────── */
.stars { display: inline-flex; align-items: center; gap: 1px; }
.star { width: 32px; height: 32px; }
.star path { fill: #bbdefb; }
.star.filled path { fill: #2196f3; }
.star-rating-text { font-size: 12px; color: #9e9e9e; margin-left: 4px; }
.rate-it { font-size: 13px; color: #9e9e9e; margin-right: 8px; }
.ml-auto { margin-left: auto; }

/* ─── Pagination ────────────────────────────────────────────────── */
.pagination {
    display: flex; justify-content: center;
    gap: 4px; padding: 16px 0; flex-wrap: wrap;
}
.pagination a, .pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 10px;
    border-radius: 4px; font-size: 15px;
    border: 1px solid #e0e0e0;
    background: #fff; color: #212121;
    transition: all .15s;
}
.pagination a:hover { background: #e3f2fd; border-color: #2196f3; color: #2196f3; }
.pagination .active { background: #2196f3; color: #fff; border-color: #2196f3; }
.pagination .disabled { color: #bbb; pointer-events: none; }

/* ─── Side menu ─────────────────────────────────────────────────── */
.side-menu { background: #fff; border-radius: 4px; box-shadow: 0 1px 3px rgba(0,0,0,.12); overflow: hidden; }
.side-group-title {
    font-size: 16px; font-weight: 500;
    padding: 10px 16px 4px; color: #212121;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer;
}
.side-group-title::after { content: '▾'; font-size: 12px; color: #888; }
.side-group-items { padding-bottom: 8px; }
.side-item {
    display: block; padding: 7px 24px;
    font-size: 14px; color: #424242;
    transition: background .15s;
    border-radius: 0 20px 20px 0;
    margin-right: 8px;
}
.side-item:hover { background: #e3f2fd; color: #2196f3; }
.side-item.active { background: #e3f2fd; color: #2196f3; font-weight: 500; }

/* ─── Plugin detail page ────────────────────────────────────────── */
.plugin-detail { padding: 16px; }
.plugin-header { margin-bottom: 16px; }
.plugin-title { font-size: 28px; font-weight: 400; line-height: 1.2; }
.plugin-dev-link { font-size: 18px; color: #555; margin-top: 6px; }
.plugin-dev-link a { color: #2196f3; font-weight: 500; }
.plugin-header-row { display: flex; align-items: flex-start; flex-wrap: wrap; gap: 16px; margin-top: 12px; }
.plugin-header-left { flex: 1; min-width: 200px; }
.plugin-header-right { text-align: center; min-width: 160px; }
.plugin-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.action-card { background: #ebebeb; border: 1px solid #ddd; border-radius: 4px; padding: 4px 16px; margin-top: 12px; width: 100%; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 0 16px; height: 36px;
    background: #2196f3; color: #fff;
    border-radius: 4px; font-size: 14px; font-weight: 500;
    border: none; cursor: pointer; text-transform: uppercase;
    letter-spacing: .09em; transition: background .2s;
}
.btn-primary:hover { background: #1976d2; }
.btn-primary.disabled { background: #9e9e9e; pointer-events: none; }
.plugin-main-img {
    float: right;
    margin: 0 0 20px 20px; cursor: pointer;
    border-radius: 2px; box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
.plugin-main-img:hover { opacity: .9; }
#VSTDescription { font-size: 18px; line-height: 1.6; clear: none; }
#VSTDescription ul { margin: 1em 0 1em 1.5em; }
#VSTDescription .Style1 { color: #222; font-size: 15px; }
#VSTDescription strong { color: #000; }
.donation-box {
    display: flex; align-items: center; justify-content: center; gap: 24px;
    background: #f5f5f5; color: #212121;
    border-radius: 4px; padding: 16px 20px;
    margin: 48px 0; clear: both;
    font-size: 17px;
}
.donate-btn {
    display: inline-flex; align-items: center;
    padding: 0 16px; height: 36px;
    background: #ff6d00; color: #fff;
    border-radius: 4px; font-size: 14px; font-weight: 500;
    border: none; cursor: pointer; white-space: nowrap;
    text-transform: uppercase; letter-spacing: .09em;
}
.donate-btn:hover { background: #e65100; }

/* ─── Video / SoundCloud ────────────────────────────────────────── */
.video-container { text-align: center; margin: 24px 0; clear: both; }
.video-container iframe { max-width: 100%; }
.soundcloud-container { text-align: center; margin: 16px 0; clear: both; }
.soundcloud-container iframe { width: 80%; }

/* ─── Download list ─────────────────────────────────────────────── */
.download-list {
    margin: 24px auto; clear: both;
    max-width: 400px;
    border: 1px solid #e0e0e0; border-radius: 4px; overflow: hidden;
    background: #f5f5f5;
}
.download-list-title { padding: 8px 16px; font-size: 14px; font-weight: 700; color: #fff; background: #2196f3; text-transform: uppercase; letter-spacing: .08em; }
.download-item {
    display: flex; align-items: center;
    padding: 10px 16px; gap: 12px;
    border-top: 1px solid #f0f0f0;
    cursor: pointer; color: #2196f3;
    transition: background .15s; text-decoration: none;
}
.download-item:hover { background: #e3f2fd; }
.download-icon { font-size: 20px; color: #2196f3; flex-shrink: 0; }
.download-name { flex: 1; font-size: 16px; }
.download-size { font-size: 15px; color: #9e9e9e; white-space: nowrap; }
.download-version { font-size: 14px; color: #bbb; white-space: nowrap; }

/* ─── Lightbox ──────────────────────────────────────────────────── */
.lightbox-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.7); z-index: 1000;
    align-items: center; justify-content: center;
}
.lightbox-overlay.open { display: flex; }
.lightbox-box {
    background: #fff; border-radius: 4px; padding: 16px;
    max-width: 90vw; max-height: 90vh; overflow: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.lightbox-box img { display: block; max-width: 100%; }
.lightbox-close {
    margin-top: 12px; padding: 6px 16px;
    background: #2196f3; color: #fff;
    border: none; border-radius: 4px; cursor: pointer; font-size: 14px;
}

/* ─── Comments ──────────────────────────────────────────────────── */
.comment-section {
    margin-top: 12px; padding: 16px;
    background: #f5f5f5; border-radius: 4px;
    box-shadow: 0 2px 2px rgba(0,0,0,.14), 0 1px 5px rgba(0,0,0,.2);
}
.new-comment-btn {
    padding: 0 16px; height: 40px;
    background: #2196f3; color: #fff;
    border: none; border-radius: 4px; cursor: pointer;
    font-size: 14px; font-weight: 500; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 8px;
    margin-bottom: 12px;
}
.new-comment-btn:hover { background: #1976d2; }
.comment-card {
    background: #fff; border-radius: 3px;
    margin: 8px 0; padding: 14px;
    box-shadow: 0 1px 1px rgba(0,0,0,.14), 0 1px 3px rgba(0,0,0,.2);
}
.reply-card { background: #f9f9f9; margin-left: 24px; }
.comment-header { display: flex; align-items: flex-start; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.comment-author { font-weight: 500; font-size: 16px; flex: 1; }
.comment-date   { font-size: 13px; color: #2196f3; }
.comment-stars  { display: flex; align-items: center; gap: 2px; }
.comment-star   { width: 20px; height: 20px; }
.comment-star path { fill: #bbdefb; }
.comment-star.filled path { fill: #2196f3; }
.comment-note-text { font-size: 11px; color: #9e9e9e; }
.comment-text   { font-size: 14px; line-height: 1.5; color: #212121; }
.reply-btn {
    margin-top: 10px; padding: 0 14px; height: 34px;
    background: none; color: #2196f3;
    border: none; border-radius: 4px; cursor: pointer;
    font-size: 13px; font-weight: 500; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px;
}
.reply-btn:hover { background: #e3f2fd; }

/* ─── Comment form (modal) ──────────────────────────────────────── */
.modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.5); z-index: 200;
    align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
    background: #fff; border-radius: 4px; padding: 24px;
    width: 100%; max-width: 560px; margin: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.modal-title { font-size: 18px; font-weight: 500; margin-bottom: 16px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 12px; color: #9e9e9e; margin-bottom: 4px; }
.form-field input, .form-field textarea {
    width: 100%; padding: 10px 12px;
    border: 1px solid #bbb; border-radius: 4px;
    font-size: 14px; font-family: inherit; transition: border-color .2s;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: #2196f3; }
.form-field textarea { resize: vertical; min-height: 80px; }
.rating-row { display: flex; align-items: center; gap: 8px; margin: 12px 0; flex-wrap: wrap; }
.rating-star-btn { background: none; border: none; cursor: pointer; padding: 2px; }
.rating-star-btn svg { width: 32px; height: 32px; }
.rating-star-btn svg path { fill: #bbdefb; }
.rating-star-btn.filled svg path { fill: #2196f3; }
.q-btn {
    width: 38px; height: 38px;
    border: 1px solid #2196f3; color: #2196f3;
    border-radius: 4px; background: none; cursor: pointer;
    font-size: 16px; font-weight: 700;
}
.q-btn.active { background: #e3f2fd; }
.modal-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 16px; }
.btn-text {
    padding: 0 12px; height: 36px;
    background: none; color: #2196f3;
    border: none; border-radius: 4px; cursor: pointer;
    font-size: 14px; font-weight: 500;
}
.btn-submit {
    padding: 0 16px; height: 36px;
    background: #2196f3; color: #fff;
    border: none; border-radius: 4px; cursor: pointer;
    font-size: 14px; font-weight: 500;
}
.btn-submit:disabled { background: #9e9e9e; cursor: default; }
.moderation-note { font-size: 12px; color: #9e9e9e; margin-bottom: 12px; }

/* ─── Search page ───────────────────────────────────────────────── */
.search-bar { background: #2196f3; border-radius: 4px; padding: 16px 16px 20px; margin: 0 4px 8px; }
.search-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.search-input {
    flex: 0 1 400px; min-width: 200px;
    padding: 10px 14px; border-radius: 4px;
    border: none; font-size: 18px; font-family: inherit;
    background: rgba(255,255,255,.2); color: #fff;
    -webkit-text-fill-color: #fff;
}
.search-input::placeholder { color: #fff; opacity: 1; }
.search-input::-moz-placeholder { color: #fff; opacity: 1; }
.search-input:focus { outline: none; background: rgba(255,255,255,.3); }
.search-or { color: #fff; font-weight: 500; }
.dev-select {
    flex: 0 1 400px; min-width: 200px;
    padding: 10px 14px; border-radius: 4px;
    border: none; font-size: 18px; font-family: inherit;
    background: rgba(255,255,255,.2); color: #fff; cursor: pointer;
}
.dev-select option { background: #fff; color: #212121; }

/* ─── Dev page ──────────────────────────────────────────────────── */
.dev-header {
    background: #2196f3; color: #fff;
    padding: 12px 16px; border-radius: 4px; margin-bottom: 0;
}
.dev-header h1 { font-size: 20px; font-weight: 500; }
.dev-header a { color: rgba(255,255,255,.85); font-size: 14px; }
.dev-header a:hover { color: #fff; }

/* ─── Static pages ──────────────────────────────────────────────── */
.static-page { padding: 20px 24px; }
.static-page h1 { font-size: 22px; font-weight: 500; margin-bottom: 8px; }
.static-page h3 { font-size: 18px; font-weight: 500; margin: 10px 0 16px; }
.static-page p, .static-page div { font-size: 15px; line-height: 1.7; color: #333; margin-bottom: 32px; }
.static-page a { color: #2196f3; }
.static-page ol, .static-page ul { font-size: 15px; line-height: 1.7; color: #333; margin: 8px 0 8px 24px; }
.static-page li { margin-bottom: 4px; }
.static-page code { background: #f0f0f0; padding: 1px 6px; border-radius: 3px; font-size: 13px; }
.static-page pre { background: #f5f5f5; border-radius: 4px; padding: 12px 16px; margin: 8px 0; overflow-x: auto; }
.static-page pre code { background: none; padding: 0; font-size: 13px; }
.faq-intro { color: #666; font-size: 16px; margin-bottom: 24px; }
.faq-os-menu { display: flex; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.faq-os-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 12px 28px; border-radius: 8px;
    background: #f0f0f0; color: #555;
    font-size: 17px; font-weight: 600;
    border: 2px solid transparent; cursor: pointer;
    text-decoration: none; transition: all .15s;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.faq-os-btn:hover { background: #e3f2fd; color: #2196f3; border-color: #90caf9; }
.faq-os-btn.active { background: #2196f3; color: #fff; border-color: #2196f3; box-shadow: 0 2px 6px rgba(33,150,243,.3); }
.faq-os-title { font-size: 20px; font-weight: 600; color: #2196f3; margin-bottom: 20px; padding-bottom: 8px; border-bottom: 2px solid #e3f2fd; }
.faq-chapter { background: #fafafa; border-left: 4px solid #2196f3; border-radius: 0 4px 4px 0; padding: 16px 20px; margin-bottom: 32px; scroll-margin-top: 80px; }
.faq-toc { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; padding: 12px 16px; background: #e3f2fd; border-radius: 4px; }
.faq-toc a { color: #1565c0; font-size: 14px; font-weight: 500; text-decoration: none; padding: 4px 10px; border-radius: 3px; background: #fff; border: 1px solid #90caf9; transition: all .15s; }
.faq-toc a:hover { background: #2196f3; color: #fff; border-color: #2196f3; }

/* ─── Footer ────────────────────────────────────────────────────── */
.footer {
    background: #42a5f5;
    padding: 8px 16px;
    display: flex; flex-wrap: wrap;
    justify-content: center; align-items: center;
    gap: 4px;
}
.footer-btn {
    padding: 6px 14px; border-radius: 4px;
    background: #55b0f5; color: #fff;
    font-size: 14px; font-weight: 500;
    border: none; cursor: pointer;
    transition: background .15s; display: inline-block;
}
.footer-btn:hover { background: #1976d2; }
.footer-copy {
    width: 100%; text-align: center;
    color: #fff; font-size: 13px;
    background: #64b5f6; padding: 6px; margin-top: 4px;
}

/* ─── Utilities ─────────────────────────────────────────────────── */
.clearfix::after { content: ''; display: table; clear: both; }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-8  { margin-bottom: 8px; }
.p-16  { padding: 16px; }
.no-plugins { padding: 24px; text-align: center; color: #9e9e9e; }

/* ─── Snackbar ──────────────────────────────────────────────────── */
.snackbar {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
    background: #323232; color: #fff;
    padding: 12px 24px; border-radius: 4px;
    font-size: 14px; z-index: 999;
    display: none; align-items: center; gap: 16px;
    box-shadow: 0 3px 10px rgba(0,0,0,.3);
}
.snackbar.open { display: flex; }
.snackbar-close { background: none; border: none; color: #2196f3; cursor: pointer; font-weight: 500; }

/* ─── Contact form ──────────────────────────────────────────────── */
.contact-form { margin-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.contact-form div { margin-bottom: 0; }
.contact-row { display: flex; gap: 24px; flex-wrap: wrap; }
.contact-row .contact-field { flex: 1; min-width: 200px; }
.contact-field { display: flex; flex-direction: column; gap: 10px; }
.contact-field label { font-size: 17px; font-weight: 600; color: #333; display:flex; align-items:center; }
.contact-field input, .contact-field textarea {
    padding: 14px 18px; border-radius: 4px;
    border: 2px solid #e0e0e0; font-size: 17px; font-family: inherit;
    background: #fff; color: #212121;
    transition: border .15s;
}
.contact-field input:focus, .contact-field textarea:focus {
    outline: none; border-color: #2196f3; background: #fff;
    box-shadow: 0 0 0 3px rgba(33,150,243,.1);
}
.contact-field textarea { resize: vertical; min-height: 220px; }
.contact-error { font-size: 14px; color: #e53935; }
.contact-success {
    display: flex; align-items: center; gap: 10px;
    background: #e8f5e9; color: #2e7d32;
    border-left: 4px solid #43a047;
    border-radius: 4px; padding: 14px 18px;
    margin-top: 16px; font-size: 17px;
}
.contact-faq-banner {
    display: flex; align-items: center; gap: 12px;
    background: #e3f2fd; color: #1565c0;
    border-left: 4px solid #2196f3;
    border-radius: 4px; padding: 14px 18px;
    margin-bottom: 28px; font-size: 16px;
}
.contact-faq-banner a { color: #2196f3; font-weight: 600; text-decoration: underline; }

/* ─── Pubs (AdSense + VLI) ─────────────────────────────────────── */
.stickyAd {
    position: -webkit-sticky;
    position: sticky;
    top: 66px;                 /* aligné sous la navbar */
}
.stickyAd.text-center { text-align: center; }
.sidebar-widget-item { margin-bottom: 20px; }   /* espace AdSense ↔ VLI (sidebar gauche) */

@media (max-width: 960px) {
    .stickyAd { display: none; }   /* pubs latérales masquées sur mobile, comme la prod */
}
