/* ─── Bibliothèque Collections — Frontend CSS ───────────────────── */

/* ─── Wrapper collection ─── */
.bc-collection-wrapper {
    font-family: inherit;
    max-width: 1200px;
    margin: 0 auto;
}

.bc-collection-header { margin-bottom: 20px; }
.bc-collection-titre { margin: 0 0 8px; }
.bc-collection-desc { color: #666; margin: 0; }

/* ─── Barre de stats ─── */
.bc-stats-bar {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 24px;
}

.bc-stats-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 10px;
    font-size: 14px;
}

.bc-stat strong { font-size: 18px; }

.bc-stat-possede   strong { color: #2d8a4e; }
.bc-stat-recherche strong { color: #d68910; }
.bc-stat-manque    strong { color: #c0392b; }
.bc-stat-total     strong { color: #555; }

.bc-progress-container {
    position: relative;
    background: #dee2e6;
    border-radius: 20px;
    height: 20px;
    overflow: hidden;
}

.bc-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2d8a4e, #52c27a);
    border-radius: 20px;
    transition: width 0.6s ease;
    min-width: 0;
}

.bc-progress-label {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

/* ─── Notice connexion ─── */
.bc-login-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 10px 16px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* ─── Grille des livres ─── */
.bc-livres-grille {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 16px;
}

@media (max-width: 600px) {
    .bc-livres-grille { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; }
}

/* ─── Carte livre ─── */
.bc-livre-card {
    position: relative;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: default;
    border: 3px solid transparent;
}

.bc-livre-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

/* ─── Contours selon statut ─── */
.bc-statut-possede {
    border-color: #2d8a4e;
    box-shadow: 0 2px 8px rgba(45,138,78,0.3);
}

.bc-statut-recherche {
    border-color: #d68910;
    box-shadow: 0 2px 8px rgba(214,137,16,0.3);
}

.bc-statut-aucun {
    border-color: transparent;
}

/* ─── Numéro ─── */
.bc-livre-numero {
    position: absolute;
    top: 6px;
    left: 6px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    z-index: 2;
    line-height: 1.4;
}

/* ─── Couverture ─── */
.bc-livre-couverture {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #e9ecef;
}

.bc-livre-couverture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.bc-livre-card:hover .bc-livre-couverture img {
    transform: scale(1.03);
}

.bc-no-cover {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
    font-size: 12px;
    color: #666;
    background: linear-gradient(135deg, #e8eaed 0%, #d8dce3 100%);
}

/* ─── Overlay au survol (boutons statut) ─── */
.bc-livre-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
    z-index: 3;
}

.bc-livre-card:hover .bc-livre-overlay {
    opacity: 1;
}

.bc-statut-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    width: 100%;
}

.bc-btn-statut {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    border-radius: 4px;
    padding: 5px 8px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-align: center;
    width: 100%;
}

.bc-btn-statut:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.03);
}

.bc-btn-statut.active[data-statut="possede"] {
    background: #2d8a4e;
    border-color: #2d8a4e;
}

.bc-btn-statut.active[data-statut="recherche"] {
    background: #d68910;
    border-color: #d68910;
}

.bc-btn-retirer {
    background: rgba(192,57,43,0.3) !important;
    border-color: rgba(192,57,43,0.6) !important;
    font-size: 10px !important;
}

/* ─── Info livre ─── */
.bc-livre-info {
    padding: 7px 8px 8px;
    font-size: 11px;
    line-height: 1.4;
}

.bc-livre-titre {
    font-weight: 700;
    color: #222;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 2px;
}

.bc-livre-auteur {
    color: #777;
    font-size: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* ─── Badge statut ─── */
.bc-statut-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 2;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.bc-badge-possede   { background: #2d8a4e; }
.bc-badge-recherche { background: #d68910; }

/* ─── Dashboard "Mes collections" ─── */
.bc-ma-collection-wrapper h2 { margin-bottom: 20px; }

.bc-collections-liste {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.bc-collection-resume {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.bc-collection-resume-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.bc-collection-resume-header h3 { margin: 0; font-size: 16px; }

.bc-pourcent-badge {
    background: #2d8a4e;
    color: #fff;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 13px;
    font-weight: 700;
}

.bc-collection-resume-stats {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    font-size: 13px;
    color: #555;
    flex-wrap: wrap;
}

/* ─── Erreurs / infos ─── */
.bc-error { color: #c0392b; background: #fdecea; padding: 10px 14px; border-radius: 4px; }
.bc-info  { color: #555;    background: #f0f0f0;  padding: 10px 14px; border-radius: 4px; }

/* ─── Animation ajout ─── */
@keyframes bc-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(45,138,78,0.5); }
    70%  { box-shadow: 0 0 0 10px rgba(45,138,78,0); }
    100% { box-shadow: 0 0 0 0  rgba(45,138,78,0); }
}
.bc-livre-card.bc-just-updated { animation: bc-pulse 0.6s ease; }

/* ═══════════════════════════════════════════════════════════════════
   PAGE TOUTES LES COLLECTIONS  [bc_toutes_collections]
   ═══════════════════════════════════════════════════════════════════ */

.bc-toutes-wrapper { max-width: 1400px; margin: 0 auto; }

.bc-toutes-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

/* ─── Barre de recherche ─── */
.bc-search-bar {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 420px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 40px;
    padding: 8px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.bc-search-bar:focus-within {
    border-color: #1a4a8a;
    box-shadow: 0 0 0 3px rgba(26,74,138,0.12);
}
.bc-search-icon { font-size: 16px; margin-right: 10px; opacity: 0.5; flex-shrink: 0; }
.bc-search-bar input {
    border: none;
    outline: none;
    font-size: 14px;
    flex: 1;
    background: transparent;
    min-width: 0;
}
.bc-search-clear {
    display: none;
    align-items: center;
    justify-content: center;
    background: #e0e0e0;
    border: none;
    border-radius: 50%;
    width: 20px; height: 20px;
    font-size: 11px;
    cursor: pointer;
    flex-shrink: 0;
    color: #555;
    line-height: 1;
    padding: 0;
}
.bc-search-clear:hover { background: #ccc; }

.bc-toutes-meta { font-size: 14px; color: #888; white-space: nowrap; }
.bc-toutes-meta span { font-weight: 700; color: #333; font-size: 18px; }

/* ─── Grille collections ─── */
.bc-toutes-grille {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

@media (max-width: 600px) {
    .bc-toutes-grille { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
}

/* ─── Carte collection ─── */
.bc-col-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
}
.bc-col-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    text-decoration: none;
    color: inherit;
}

.bc-col-card-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #e8eaed;
}
.bc-col-card-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.bc-col-card:hover .bc-col-card-cover img { transform: scale(1.05); }

.bc-col-no-cover {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 40px;
    background: linear-gradient(135deg, #e8eaed, #d0d4db);
}

.bc-col-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px 8px 8px;
    opacity: 0;
    transition: opacity 0.25s;
}
.bc-col-card:hover .bc-col-card-overlay { opacity: 1; }
.bc-col-nb-livres {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.bc-col-card-info {
    padding: 10px 10px 12px;
}
.bc-col-card-nom {
    font-weight: 700;
    font-size: 13px;
    color: #222;
    line-height: 1.3;
    margin-bottom: 3px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.bc-col-card-editeur {
    font-size: 11px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ─── Aucun résultat ─── */
.bc-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #888;
    font-size: 15px;
    grid-column: 1 / -1;
}

/* ═══════════════════════════════════════════════════════════════════
   LISTE DES MANQUANTS  [bc_mes_manquants]
   ═══════════════════════════════════════════════════════════════════ */

.bc-manquants-wrapper h2 { margin-bottom: 20px; }

.bc-manquants-collection {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.bc-manquants-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.bc-manquants-header h3 { margin: 0; font-size: 16px; }

.bc-manquants-badge {
    background: #c0392b;
    color: #fff;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
}

.bc-manquants-progress { margin-bottom: 14px; }
.bc-manquants-progress small { display: block; margin-top: 5px; color: #888; font-size: 12px; }

.bc-manquants-liste {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bc-manquant-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 6px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    transition: background 0.2s;
}
.bc-manquant-item:hover { background: #f0f0f0; }
.bc-manquant-item.bc-statut-recherche { border-color: #d68910; background: #fffbf0; }

.bc-manquant-cover {
    width: 40px; height: 56px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}
.bc-manquant-no-cover {
    width: 40px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: #e0e0e0;
    border-radius: 3px;
    font-size: 18px;
    flex-shrink: 0;
}

.bc-manquant-info {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    line-height: 1.4;
}
.bc-manquant-info strong { display: block; }
.bc-manquant-info small  { color: #888; }

.bc-manquant-actions { flex-shrink: 0; }
.bc-manquant-actions .bc-btn-statut {
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    color: #333;
    white-space: nowrap;
}
.bc-manquant-actions .bc-btn-statut.active {
    background: #d68910;
    border-color: #d68910;
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════
   BOUTON ABONNEMENT
   ═══════════════════════════════════════════════════════════════════ */

.bc-collection-header-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.bc-collection-header-top h2 { margin: 0; }

.bc-btn-abonnement {
    background: #f0f4ff;
    border: 2px solid #1a4a8a;
    color: #1a4a8a;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.bc-btn-abonnement:hover { background: #1a4a8a; color: #fff; }
.bc-btn-abonnement.subscribed { background: #1a4a8a; color: #fff; }
.bc-btn-abonnement.subscribed:hover { background: #c0392b; border-color: #c0392b; }

/* ═══════════════════════════════════════════════════════════════════
   NOTES PRIVÉES
   ═══════════════════════════════════════════════════════════════════ */

.bc-note-preview {
    font-size: 10px;
    color: #d68910;
    background: #fffbf0;
    border-radius: 3px;
    padding: 2px 5px;
    margin-top: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bc-btn-note-toggle {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 10px;
    cursor: pointer;
    margin-top: 6px;
    width: 100%;
}
.bc-btn-note-toggle:hover { background: rgba(255,255,255,0.3); }

/* Modal note */
.bc-note-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
}
.bc-note-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.bc-note-modal-box {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 420px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 1;
}
.bc-note-modal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.bc-note-modal-header h4 { margin: 0; flex: 1; font-size: 15px; }
.bc-note-modal-header small { color: #888; font-size: 11px; }
.bc-note-modal-close {
    background: none; border: none; font-size: 16px;
    cursor: pointer; color: #888; padding: 2px 6px;
    border-radius: 4px; margin-left: auto;
}
.bc-note-modal-close:hover { background: #eee; }
#bc-note-textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    font-size: 13px;
    resize: vertical;
    font-family: inherit;
}
.bc-note-modal-footer {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    justify-content: flex-end;
}
.bc-btn-save-note {
    background: #2d8a4e;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.bc-btn-save-note:hover { background: #27783f; }

/* ═══════════════════════════════════════════════════════════════════
   TABLEAU DE BORD  [bc_tableau_de_bord]
   ═══════════════════════════════════════════════════════════════════ */

.bc-dashboard { max-width: 900px; margin: 0 auto; }
.bc-dashboard-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.bc-dashboard-card h3 { margin: 0 0 16px; font-size: 16px; color: #222; }

/* Hero */
.bc-dashboard-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #1a4a8a, #2d8a4e);
    border-radius: 12px;
    padding: 20px 24px;
    color: #fff;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.bc-dashboard-avatar img { border-radius: 50%; border: 3px solid rgba(255,255,255,0.4); }
.bc-dashboard-welcome { flex: 1; min-width: 200px; }
.bc-dashboard-welcome h2 { margin: 0 0 6px; color: #fff; font-size: 20px; }
.bc-dashboard-welcome p { margin: 0; opacity: 0.9; font-size: 14px; }

/* Cercle de progression global */
.bc-dashboard-pourcent-global { text-align: center; flex-shrink: 0; }
.bc-dashboard-pourcent-global small { display: block; color: rgba(255,255,255,0.8); font-size: 11px; margin-top: 4px; }
.bc-circle-progress {
    position: relative;
    width: 70px; height: 70px;
    display: inline-block;
}
.bc-circle-progress svg { transform: rotate(-90deg); }
.bc-circle-bg { fill: none; stroke: rgba(255,255,255,0.2); stroke-width: 3; }
.bc-circle-fill { fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; transition: stroke-dasharray 1s ease; }
.bc-circle-progress span {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

/* Graphique barres */
.bc-chart-bar-wrap {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
    padding-bottom: 28px;
    position: relative;
}
.bc-chart-bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}
.bc-chart-bar-val { font-size: 12px; font-weight: 700; color: #1a4a8a; margin-bottom: 4px; }
.bc-chart-bar-outer {
    width: 100%;
    background: #eef2f8;
    border-radius: 4px 4px 0 0;
    height: 80px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.bc-chart-bar-inner {
    width: 100%;
    background: linear-gradient(to top, #1a4a8a, #4a8ac4);
    border-radius: 4px 4px 0 0;
    transition: height 0.8s ease;
    min-height: 2px;
}
.bc-chart-bar-label { font-size: 10px; color: #888; text-align: center; margin-top: 4px; white-space: nowrap; }

/* Collections dans le dashboard */
.bc-dashboard-collections { display: flex; flex-direction: column; gap: 10px; }
.bc-dashboard-col-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.bc-dashboard-col-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #1a4a8a;
    text-decoration: none;
    color: inherit;
}
.bc-dashboard-col-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    flex-wrap: wrap;
    gap: 4px;
}
.bc-dashboard-col-info strong { font-size: 14px; }
.bc-dashboard-col-info span { font-size: 12px; color: #888; }
.bc-dashboard-col-progress { display: flex; align-items: center; gap: 10px; }
.bc-dashboard-col-progress .bc-progress-container { flex: 1; height: 6px; }
.bc-dashboard-col-manque { margin-top: 4px; }
.bc-pourcent-badge {
    background: #1a4a8a;
    color: #fff;
    border-radius: 10px;
    padding: 1px 8px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

/* Historique */
.bc-historique-liste { display: flex; flex-direction: column; gap: 6px; }
.bc-historique-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    background: #f8f9fa;
    font-size: 13px;
    flex-wrap: wrap;
}
.bc-h-possede  { border-left: 3px solid #2d8a4e; }
.bc-h-recherche{ border-left: 3px solid #d68910; }
.bc-h-vendu    { border-left: 3px solid #8e44ad; }
.bc-h-supprime { border-left: 3px solid #e74c3c; }
.bc-h-action   { font-weight: 600; white-space: nowrap; min-width: 140px; }
.bc-h-livre    { flex: 1; color: #333; }
.bc-h-livre em { color: #888; font-style: normal; }
.bc-h-livre small { color: #aaa; font-size: 11px; }
.bc-h-date     { color: #aaa; font-size: 11px; white-space: nowrap; }

/* Sélection import en masse */
.bc-masse-card { cursor: pointer; transition: opacity 0.2s, box-shadow 0.2s; }
.bc-masse-card.selected { box-shadow: 0 0 0 3px #2d8a4e; }
.bc-masse-card:not(.selected) { opacity: 0.4; }
.bc-masse-select-badge {
    position: absolute;
    top: 6px; right: 6px;
    background: #2d8a4e;
    color: #fff;
    border-radius: 50%;
    width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 900;
    display: none;
}
.bc-masse-card.selected .bc-masse-select-badge { display: flex; }

/* ═══════════════════════════════════════════════════════════════════
   COPYRIGHT COLLECTION
   ═══════════════════════════════════════════════════════════════════ */

.bc-collection-copyright {
    font-size: 11px;
    color: #888;
    font-style: italic;
    text-align: center;
    padding: 8px 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
    .bc-collection-copyright {
        font-size: 10px;
        padding: 6px 8px;
    }
}
