/* =====================================================================
   The Right Choice — rc-animations.css
   Animation, skeleton loader, empty state, and micro-interaction layer
   Brand: #fb8e28 (orange) · #00364a (teal)
   All animations:
     - GPU-accelerated (transform / opacity only)
     - Honor prefers-reduced-motion
     - Use design tokens (--gt-primary, --gt-bg-card, --gt-text, etc.)
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. Tokens (fallbacks only — host page should already define --gt-*)
   --------------------------------------------------------------------- */
:root {
    /* Shimmer var fallbacks: pre-computed for browsers without color-mix() (Safari < 16.2) */
    --rc-anim-shimmer-bg: #ebecef;
    --rc-anim-shimmer-bg: color-mix(in srgb, var(--gt-bg-card, #ffffff) 92%, var(--gt-text, #0f172a) 8%);
    --rc-anim-shimmer-fg: #cccfd5;
    --rc-anim-shimmer-fg: color-mix(in srgb, var(--gt-bg-card, #ffffff) 80%, var(--gt-text, #0f172a) 20%);
    --rc-anim-orange: var(--gt-primary, #fb8e28);
    --rc-anim-teal: #00364a;
    --rc-anim-radius: 12px;
    --rc-anim-radius-sm: 8px;
    --rc-anim-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --rc-anim-ease-snap: cubic-bezier(0.4, 0, 0.2, 1);
    --rc-anim-fast: 180ms;
    --rc-anim-base: 280ms;
    --rc-anim-slow: 420ms;
}

/* ---------------------------------------------------------------------
   2. Skeleton loaders (shimmer)
   --------------------------------------------------------------------- */
@keyframes rc-shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

.rc-skel,
.rc-skel-text,
.rc-skel-card,
.rc-skel-avatar,
.rc-skel-button,
.rc-skel-line,
.rc-skel-circle,
.rc-skel-thumb {
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--rc-anim-shimmer-bg);
    background-image: linear-gradient(
        90deg,
        var(--rc-anim-shimmer-bg) 0%,
        var(--rc-anim-shimmer-fg) 50%,
        var(--rc-anim-shimmer-bg) 100%
    );
    background-size: 800px 100%;
    animation: rc-shimmer 1.4s linear infinite;
    border-radius: var(--rc-anim-radius-sm);
    will-change: background-position;
}

.rc-skel { width: 100%; height: 1em; }

.rc-skel-text {
    height: 0.85em;
    margin: 0.45em 0;
    width: 100%;
}
.rc-skel-text.short    { width: 35%; }
.rc-skel-text.medium   { width: 60%; }
.rc-skel-text.long     { width: 85%; }
.rc-skel-text.full     { width: 100%; }

.rc-skel-card {
    width: 100%;
    height: 140px;
    border-radius: var(--rc-anim-radius);
    margin-bottom: 14px;
}

.rc-skel-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}
.rc-skel-avatar.sm { width: 32px; height: 32px; }
.rc-skel-avatar.lg { width: 64px; height: 64px; }

.rc-skel-button {
    height: 40px;
    width: 120px;
    border-radius: 999px;
}

.rc-skel-line {
    height: 12px;
    width: 100%;
    margin: 6px 0;
}

.rc-skel-circle {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.rc-skel-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--rc-anim-radius);
}

/* Composite skeletons */
.rc-skel-kpi {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    background: var(--gt-bg-card, #fff);
    border: 1px solid var(--gt-border, #e2e8f0);
    border-radius: var(--rc-anim-radius);
}

.rc-skel-row {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gt-border, #e2e8f0);
}
.rc-skel-row:last-child { border-bottom: 0; }

.rc-skel-row .rc-skel-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rc-skel-table {
    width: 100%;
    border-collapse: collapse;
}
.rc-skel-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--gt-border, #e2e8f0);
}

/* ---------------------------------------------------------------------
   3. Empty states
   --------------------------------------------------------------------- */
.rc-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    color: var(--gt-text-muted, #64748b);
}

.rc-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 142, 40, 0.1); /* fallback */
    background: color-mix(in srgb, var(--rc-anim-orange) 10%, var(--gt-bg-card, #fff));
    color: var(--rc-anim-orange);
    font-size: 30px;
    margin-bottom: 18px;
    animation: rc-empty-float 3.6s ease-in-out infinite;
}

@keyframes rc-empty-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

.rc-empty-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gt-text, #0f172a);
    margin: 0 0 6px 0;
}

.rc-empty-body {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 18px 0;
    max-width: 420px;
}

.rc-empty-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--rc-anim-orange);
    color: #fff;
    border: 0;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--rc-anim-fast) var(--rc-anim-ease-snap),
                box-shadow var(--rc-anim-fast) var(--rc-anim-ease-snap);
}
.rc-empty-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(251, 142, 40, 0.35); /* fallback */
    box-shadow: 0 6px 18px color-mix(in srgb, var(--rc-anim-orange) 35%, transparent);
}
.rc-empty-cta:active { transform: translateY(0); }

/* Error variant */
.rc-empty.is-error .rc-empty-icon {
    background: rgba(239, 68, 68, 0.12); /* fallback */
    background: color-mix(in srgb, #ef4444 12%, var(--gt-bg-card, #fff));
    color: #dc2626;
}

/* ---------------------------------------------------------------------
   4. Loading states
   --------------------------------------------------------------------- */
.rc-loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(248, 250, 252, 0.92); /* fallback */
    background: color-mix(in srgb, var(--gt-bg-body, #f8fafc) 92%, transparent);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--rc-anim-base) var(--rc-anim-ease);
}
.rc-loading-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* .rc-spinner visual lives in rc-design-system.css. The keyframe below
   is the shared animation reference used by spinners and indeterminate
   progress bars. */
@keyframes rc-spin {
    to { transform: rotate(360deg); }
}

.rc-loading-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}
.rc-loading-inline::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: rc-spin 0.7s linear infinite;
}

.rc-loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    z-index: 9999;
    overflow: hidden;
    pointer-events: none;
}
.rc-loading-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--rc-anim-orange) 40%,
        var(--rc-anim-orange) 60%,
        transparent 100%
    );
    transform: translateX(-100%);
    animation: rc-bar-slide 1.4s ease-in-out infinite;
    will-change: transform;
}
@keyframes rc-bar-slide {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Scroll-progress bar (controlled by JS) */
.rc-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--rc-anim-orange);
    z-index: 9999;
    transition: width 80ms linear, opacity 400ms ease;
    will-change: width;
    pointer-events: none;
}
.rc-scroll-progress.is-idle { opacity: 0; }

/* ---------------------------------------------------------------------
   5. Page transitions
   --------------------------------------------------------------------- */
.rc-fade-in {
    animation: rc-fade-in var(--rc-anim-slow) var(--rc-anim-ease) both;
}
@keyframes rc-fade-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.rc-fade-out {
    animation: rc-fade-out var(--rc-anim-base) var(--rc-anim-ease) both;
}
@keyframes rc-fade-out {
    from { opacity: 1; }
    to   { opacity: 0; }
}

.rc-slide-up {
    animation: rc-slide-up var(--rc-anim-base) var(--rc-anim-ease) both;
}
@keyframes rc-slide-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.rc-slide-in-right {
    animation: rc-slide-in-right var(--rc-anim-base) var(--rc-anim-ease) both;
}
@keyframes rc-slide-in-right {
    from { opacity: 0; transform: translateX(28px); }
    to   { opacity: 1; transform: translateX(0); }
}

.rc-slide-in-left {
    animation: rc-slide-in-left var(--rc-anim-base) var(--rc-anim-ease) both;
}
@keyframes rc-slide-in-left {
    from { opacity: 0; transform: translateX(-28px); }
    to   { opacity: 1; transform: translateX(0); }
}

.rc-zoom-in {
    animation: rc-zoom-in var(--rc-anim-base) var(--rc-anim-ease) both;
}
@keyframes rc-zoom-in {
    from { opacity: 0; transform: scale(0.96); }
    to   { opacity: 1; transform: scale(1); }
}

/* Staggered children */
.rc-stagger > * { animation: rc-fade-in var(--rc-anim-slow) var(--rc-anim-ease) both; }
.rc-stagger > *:nth-child(1) { animation-delay: 40ms; }
.rc-stagger > *:nth-child(2) { animation-delay: 80ms; }
.rc-stagger > *:nth-child(3) { animation-delay: 120ms; }
.rc-stagger > *:nth-child(4) { animation-delay: 160ms; }
.rc-stagger > *:nth-child(5) { animation-delay: 200ms; }
.rc-stagger > *:nth-child(6) { animation-delay: 240ms; }
.rc-stagger > *:nth-child(7) { animation-delay: 280ms; }
.rc-stagger > *:nth-child(8) { animation-delay: 320ms; }
.rc-stagger > *:nth-child(9) { animation-delay: 360ms; }
.rc-stagger > *:nth-child(n+10) { animation-delay: 400ms; }

/* ---------------------------------------------------------------------
   6. Micro-interactions
   --------------------------------------------------------------------- */
.rc-tap {
    transition: transform 100ms var(--rc-anim-ease-snap);
}
.rc-tap:active {
    transform: scale(0.96);
}

.rc-press {
    transition: transform 120ms var(--rc-anim-ease-snap),
                box-shadow 120ms var(--rc-anim-ease-snap);
}
.rc-press:active {
    transform: translateY(1px);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
}

.rc-hover-lift {
    transition: transform var(--rc-anim-base) var(--rc-anim-ease),
                box-shadow var(--rc-anim-base) var(--rc-anim-ease);
}
.rc-hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.rc-hover-glow {
    transition: box-shadow var(--rc-anim-base) var(--rc-anim-ease),
                border-color var(--rc-anim-base) var(--rc-anim-ease);
}
.rc-hover-glow:hover {
    box-shadow: 0 0 0 4px rgba(251, 142, 40, 0.2),
                0 8px 22px rgba(251, 142, 40, 0.25); /* fallback */
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--rc-anim-orange) 20%, transparent),
                0 8px 22px color-mix(in srgb, var(--rc-anim-orange) 25%, transparent);
}

.rc-hover-grow {
    transition: transform var(--rc-anim-base) var(--rc-anim-ease);
}
.rc-hover-grow:hover { transform: scale(1.03); }

.rc-link-underline {
    position: relative;
    text-decoration: none;
}
.rc-link-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--rc-anim-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--rc-anim-base) var(--rc-anim-ease);
}
.rc-link-underline:hover::after { transform: scaleX(1); }

/* ---------------------------------------------------------------------
   7. Scroll-triggered reveal (use with rc-animations.js)
   --------------------------------------------------------------------- */
.rc-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms var(--rc-anim-ease),
                transform 700ms var(--rc-anim-ease);
    will-change: opacity, transform;
}
.rc-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.rc-reveal.from-bottom { transform: translateY(40px); }
.rc-reveal.from-top    { transform: translateY(-40px); }
.rc-reveal.from-left   { transform: translateX(-40px); }
.rc-reveal.from-right  { transform: translateX(40px); }
.rc-reveal.zoom-in     { transform: scale(0.94); }
.rc-reveal.zoom-out    { transform: scale(1.06); }

.rc-reveal.from-bottom.is-visible,
.rc-reveal.from-top.is-visible,
.rc-reveal.from-left.is-visible,
.rc-reveal.from-right.is-visible {
    transform: translate(0, 0);
}
.rc-reveal.zoom-in.is-visible,
.rc-reveal.zoom-out.is-visible {
    transform: scale(1);
}

/* Stagger inside reveal containers */
.rc-reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms var(--rc-anim-ease),
                transform 600ms var(--rc-anim-ease);
}
.rc-reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 60ms; }
.rc-reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 120ms; }
.rc-reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 180ms; }
.rc-reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.rc-reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 300ms; }
.rc-reveal-stagger.is-visible > *:nth-child(n+6) { transition-delay: 360ms; }
.rc-reveal-stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------------------------
   8. Pulse animations (alerts, emergency)
   Note: color-mix() inside @keyframes cannot be fallback-shimmed via
   double-declaration. Older Safari/Firefox will simply skip the unknown
   color value and the pulse will animate transparent box-shadows
   (visually equivalent to no pulse glow). Acceptable graceful degradation.
   --------------------------------------------------------------------- */
@keyframes rc-pulse-orange {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251, 142, 40, 0.6); }
    50%      { box-shadow: 0 0 0 14px rgba(251, 142, 40, 0); }
}
@supports (color: color-mix(in srgb, red 50%, blue)) {
    @keyframes rc-pulse-orange {
        0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--rc-anim-orange) 60%, transparent); }
        50%      { box-shadow: 0 0 0 14px color-mix(in srgb, var(--rc-anim-orange) 0%, transparent); }
    }
}
.rc-pulse-orange {
    animation: rc-pulse-orange 1.8s ease-out infinite;
}

@keyframes rc-pulse-red {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.55); }
    50%      { box-shadow: 0 0 0 16px rgba(220, 38, 38, 0); }
}
.rc-pulse-red {
    animation: rc-pulse-red 1.5s ease-out infinite;
}

@keyframes rc-pulse-dot {
    0%, 100% { transform: scale(1);   opacity: 1;   }
    50%      { transform: scale(1.6); opacity: 0.55; }
}
.rc-pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rc-anim-orange);
    animation: rc-pulse-dot 1.4s ease-in-out infinite;
}
.rc-pulse-dot.is-red   { background: #dc2626; }
.rc-pulse-dot.is-green { background: #16a34a; }

/* ---------------------------------------------------------------------
   9. Success burst / confetti container
   --------------------------------------------------------------------- */
.rc-success-burst {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.18); /* fallback */
    background: color-mix(in srgb, #16a34a 18%, var(--gt-bg-card, #fff));
    color: #16a34a;
    font-size: 36px;
    animation: rc-burst-pop 600ms var(--rc-anim-ease) both;
}
.rc-success-burst::before,
.rc-success-burst::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid #16a34a;
    opacity: 0;
    animation: rc-burst-ring 1s var(--rc-anim-ease) both;
    pointer-events: none;
}
.rc-success-burst::after { animation-delay: 200ms; }

@keyframes rc-burst-pop {
    0%   { transform: scale(0.4); opacity: 0; }
    60%  { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1);   opacity: 1; }
}
@keyframes rc-burst-ring {
    0%   { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0;   }
}

/* JS confetti helper styles */
.rc-confetti-piece {
    position: fixed;
    top: -12px;
    width: 8px;
    height: 12px;
    pointer-events: none;
    z-index: 10001;
    will-change: transform, opacity;
}

/* ---------------------------------------------------------------------
   10. Number counter (animated by JS)
   --------------------------------------------------------------------- */
.rc-counter {
    font-variant-numeric: tabular-nums;
    transition: color 200ms ease;
}
.rc-counter.is-counting { color: var(--rc-anim-orange); }

/* ---------------------------------------------------------------------
   11. Typewriter
   --------------------------------------------------------------------- */
.rc-typewriter {
    display: inline-block;
    white-space: pre;
}
.rc-typewriter::after {
    content: "|";
    color: var(--rc-anim-orange);
    margin-left: 2px;
    animation: rc-blink 0.9s steps(2) infinite;
}
.rc-typewriter.is-done::after { display: none; }

@keyframes rc-blink {
    50% { opacity: 0; }
}

/* ---------------------------------------------------------------------
   12. Chevron bounce / scroll-cue
   --------------------------------------------------------------------- */
@keyframes rc-chevron-bounce {
    0%, 100% { transform: translateY(0);   opacity: 0.7; }
    50%      { transform: translateY(8px); opacity: 1;   }
}
.rc-chevron-bounce {
    display: inline-block;
    animation: rc-chevron-bounce 1.6s ease-in-out infinite;
}

/* ---------------------------------------------------------------------
   13. Wave background (decorative)
   --------------------------------------------------------------------- */
.rc-wave-bg {
    position: relative;
    overflow: hidden;
}
.rc-wave-bg::before,
.rc-wave-bg::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(251, 142, 40, 0.14) 0%,
        transparent 40%
    ); /* fallback */
    background: radial-gradient(
        circle at 30% 30%,
        color-mix(in srgb, var(--rc-anim-orange) 14%, transparent) 0%,
        transparent 40%
    );
    animation: rc-wave-rotate 22s linear infinite;
    pointer-events: none;
    z-index: 0;
}
.rc-wave-bg::after {
    background: radial-gradient(
        circle at 70% 70%,
        rgba(0, 54, 74, 0.14) 0%,
        transparent 40%
    ); /* fallback */
    background: radial-gradient(
        circle at 70% 70%,
        color-mix(in srgb, var(--rc-anim-teal) 14%, transparent) 0%,
        transparent 40%
    );
    animation-duration: 32s;
    animation-direction: reverse;
}
.rc-wave-bg > * { position: relative; z-index: 1; }

@keyframes rc-wave-rotate {
    to { transform: rotate(360deg); }
}

/* ---------------------------------------------------------------------
   14. Toast slide animations
   Visual styles (background, border, padding, layout) live in
   rc-design-system.css under .rc-toast / .rc-toast-container.
   This block adds ONLY the entrance/exit animation hooks.
   --------------------------------------------------------------------- */
.rc-toast-holder {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 10002;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
    max-width: min(360px, calc(100vw - 32px));
}

.rc-toast {
    animation: rc-toast-in 320ms var(--rc-anim-ease) both;
}

.rc-toast.is-leaving {
    animation: rc-toast-out 240ms var(--rc-anim-ease) both;
}

@keyframes rc-toast-in {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes rc-toast-out {
    from { opacity: 1; transform: translateX(0); }
    to   { opacity: 0; transform: translateX(24px); }
}

/* ---------------------------------------------------------------------
   15. Alert / inline notice
   Visual styles live in rc-design-system.css. This block adds ONLY the
   entrance animation and the optional close-button transition.
   --------------------------------------------------------------------- */
.rc-alert {
    animation: rc-fade-in 320ms var(--rc-anim-ease) both;
}
.rc-alert .rc-alert-close {
    transition: opacity 160ms ease;
}

/* ---------------------------------------------------------------------
   16. Breadcrumb / 17. Pagination
   Visual styles for both live in rc-design-system.css.
   This animation file contributes no overlay styles for them.
   --------------------------------------------------------------------- */

/* ---------------------------------------------------------------------
   18. Reduced-motion fallback (CRITICAL — accessibility)
   --------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .rc-skel,
    .rc-skel-text,
    .rc-skel-card,
    .rc-skel-avatar,
    .rc-skel-button,
    .rc-skel-line,
    .rc-skel-circle,
    .rc-skel-thumb {
        animation: none !important;
        background: var(--rc-anim-shimmer-bg);
    }

    .rc-spinner,
    .rc-loading-bar::before,
    .rc-pulse-orange,
    .rc-pulse-red,
    .rc-pulse-dot,
    .rc-empty-icon,
    .rc-chevron-bounce,
    .rc-wave-bg::before,
    .rc-wave-bg::after,
    .rc-typewriter::after {
        animation: none !important;
    }

    .rc-reveal,
    .rc-reveal-stagger > * {
        opacity: 1 !important;
        transform: none !important;
    }

    .rc-fade-in,
    .rc-slide-up,
    .rc-slide-in-right,
    .rc-slide-in-left,
    .rc-zoom-in,
    .rc-stagger > *,
    .rc-toast,
    .rc-alert,
    .rc-success-burst {
        animation: none !important;
        opacity: 1;
        transform: none !important;
    }
}

/* ---------------------------------------------------------------------
   19. Print — hide all decorative animations
   --------------------------------------------------------------------- */
@media print {
    .rc-loading-overlay,
    .rc-loading-bar,
    .rc-scroll-progress,
    .rc-toast-holder,
    .rc-confetti-piece,
    .rc-wave-bg::before,
    .rc-wave-bg::after,
    .rc-pulse-dot { display: none !important; }
}
