/* ============================================================
   CATALOGUE — CONTENEUR GLOBAL
   ============================================================ */

#templateCatalog {
    margin-top: 15px;
    padding: 18px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-height: 80vh;
    overflow-y: auto;
    display: none; /* affiché via JS */
    transition: opacity 0.25s ease;
    opacity: 1;
    position: absolute;
    z-index: 9999;
}

/* Mode plein écran */
#templateCatalog.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 20px;
    overflow-y: auto;
    z-index: 9999;
    border-radius: 0;
    box-shadow: 0 0 20px rgba(0,0,0,0.25);
}

/* ============================================================
   BARRE D’ACTIONS (Retour + Plein écran)
   ============================================================ */

.catalog-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.catalog-back-btn,
.catalog-fullscreen-btn {
    display: none; /* affichés via JS */
    background: #0070ba;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}

.catalog-back-btn:hover,
.catalog-fullscreen-btn:hover {
    background: #005a96;
}

/* ============================================================
   SECTIONS DU CATALOGUE
   ============================================================ */

.catalog-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

/* ============================================================
   CARTES — CATÉGORIES & SOUS-CATÉGORIES
   ============================================================ */

.catalog-card {
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 14px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
    user-select: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.catalog-card:hover {
    background: #ececec;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* ============================================================
   CARTES — TEMPLATES (IMAGES)
   ============================================================ */

#catalogItems .catalog-card {
    padding: 0;
    background: #fff;
    border-radius: 8px;
}

#catalogItems .catalog-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    border: 1px solid #ddd;
    transition: 0.2s ease;
}

#catalogItems .catalog-card img:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
