/* ========================================
   CUSTOM CURSOR EFFECT - EFFET SOURIS
   ======================================== */

/* Curseur personnalisé sur tout le body */
body {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><circle cx="10" cy="10" r="8" fill="%23ff006b" opacity="0.3"/></svg>') 10 10, auto;
}

/* Curseur personnalisé pour les liens et boutons */
a, button, .btn-primary, .btn-login, .hamburger {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><circle cx="12" cy="12" r="10" fill="%23ff006b" opacity="0.5"/></svg>') 12 12, pointer !important;
}

/* Curseur pour les éléments cliquables */
.feature-tab,
.wrapper-item,
.item-content,
.card-tpop,
.benefit-card,
.help-card,
.faq-item,
input[type="submit"],
input[type="button"] {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><circle cx="12" cy="12" r="10" fill="%23ff006b" opacity="0.5"/></svg>') 12 12, pointer !important;
}
