/* Default custom cursor on body */
body {
    cursor: url("/static/images/cursor/delivery.png") 16 16, auto;
    transition: cursor 0.1s ease;
}

/* Smoke styles */
.smoke {
    position: fixed;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, rgba(90, 90, 90, 0.6) 0%, rgba(128, 128, 128, 0.2) 70%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999999;
    opacity: 0;
    animation: smokeAnimation 1s ease-out forwards;
    mix-blend-mode: multiply;
    transition: opacity 0.2s ease;
    filter: blur(0.5px);
}

/* Smoke animation */
@keyframes smokeAnimation {
    0% {
        transform: scale(0.8) translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    25% { opacity: 0.5; }
    50% { opacity: 0.4; }
    100% {
        transform: scale(2.5) translate(-30px, -60px) rotate(30deg);
        opacity: 0;
    }
}

.smoke:nth-child(even) {
    animation-name: smokeAnimation2;
}

@keyframes smokeAnimation2 {
    0% {
        transform: scale(0.8) translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    25% { opacity: 0.5; }
    50% { opacity: 0.4; }
    100% {
        transform: scale(2.2) translate(-25px, -55px) rotate(25deg);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .smoke {
        display: none;
    }
}

/* Use default pointer for interactive elements */
a,
button,
.btn,
.nav-link,
input[type="submit"],
input[type="button"],
.clickable,
[role="button"],
.form-control:focus {
    cursor: pointer !important;
}
