/* Instant theme transitions */
* {
    /* Remove all transition delays for theme-related properties */
    transition: background-color 0s, color 0s, border-color 0s, fill 0s, stroke 0s !important;
}

/* Only animate specific properties that need smooth transitions */
.mobile-nav-item:active,
.content-card:hover,
.wishlist-btn:hover,
.carousel-nav:hover,
.icon-button:hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

/* Disable transitions during theme change */
[data-theme-transitioning] * {
    transition: none !important;
}