.cursor {
    position: fixed;
    pointer-events: none;
}

.cursor--small {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    z-index: 11000;
    background: #803101;
    position: fixed;
    left: -2.5px;
    top: -2.5px;
}

.cursor--canvas {
    width: 100vw;
    height: 100vh;
    z-index: 12000;
    position: fixed;
    left: 0;
    top: 0;
}

/* Masquer le curseur par défaut sur les éléments interactifs */
body,
a,
button,
[role="button"],
.menu-item,
.site-btn,
.link-btn,
.service-card,
.cardd {
    cursor: none !important;
}