/**
 * Cute Puppy Cursor Styles
 * 
 * @package PawSteps_Premium
 */

.puppy-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.puppy-cursor svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: puppyIdle 0.6s ease-in-out infinite;
}

.puppy-cursor.running svg {
    animation: puppyRun 0.3s ease-in-out infinite;
}

@keyframes puppyIdle {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.05);
    }
}

@keyframes puppyRun {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-3px) scale(1.1) rotate(-2deg);
    }
    75% {
        transform: translateY(-1px) scale(1.05) rotate(2deg);
    }
}

/* Hide on mobile */
@media (max-width: 768px) {
    .puppy-cursor {
        display: none !important;
    }
}

/* Hide when hovering over interactive elements */
a:hover ~ .puppy-cursor,
button:hover ~ .puppy-cursor,
input:hover ~ .puppy-cursor,
textarea:hover ~ .puppy-cursor,
select:hover ~ .puppy-cursor {
    opacity: 0.5;
}

