/* ========================================
   Custom Cursor System for Yulgang Website
   ======================================== */

/* Default Cursor */
* {
    cursor: url('../../uploads/_cur108.cur'), auto !important;
}

/* Hover Cursor (เมื่อชี้ที่ลิงก์/ปุ่ม) */
a,
button,
.clickable,
[role="button"] {
    cursor: url('../../uploads/_cur108.cur'), pointer !important;
    position: relative;
}

/* Click Effect - Ripple Animation */
/* Old animations removed - now handled by Canvas in custom-cursor.js */

/* Special Cursor for Input Fields */
input,
textarea,
select {
    cursor: url('../../uploads/_cur108.cur'), text !important;
}

/* Disabled Elements */
[disabled],
.disabled {
    cursor: url('../../uploads/_cur108.cur'), not-allowed !important;
    opacity: 0.6;
}

/* Loading Cursor */
.loading {
    cursor: url('../../uploads/_cur108.cur'), wait !important;
}