/* Animated text effects — ported from shomex.com.mx "Shomex Disenia Studio"
   (Fase 3 effects library), re-themed to dowdes.com's green accent instead of
   Shopee/Temu orange. Always-on utility classes, no admin toggle: apply
   .fx-shine / .fx-glow / .fx-gradient to any inline text element. */

@keyframes dowdes-fx-shine { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }
.fx-shine {
    background: linear-gradient(90deg, #4c8a3a 0%, #c8f0b3 25%, #4c8a3a 50%, #c8f0b3 75%, #4c8a3a 100%);
    background-size: 200% auto; -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent; animation: dowdes-fx-shine 3s linear infinite;
}

@keyframes dowdes-fx-glow {
    0%, 100% { text-shadow: 0 0 2px var(--fx-glow-color, #ffd700); }
    50% { text-shadow: 0 0 10px var(--fx-glow-color, #ffd700); }
}
.fx-glow { animation: dowdes-fx-glow 1.8s ease-in-out infinite; }

@keyframes dowdes-fx-gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.fx-gradient {
    background: linear-gradient(270deg, #92c66c, #4c8a3a, #2f9e6f, #92c66c);
    background-size: 600% 600%; -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent; animation: dowdes-fx-gradient 6s ease infinite;
}

@media (prefers-reduced-motion: reduce) {
    .fx-shine, .fx-glow, .fx-gradient { animation: none; }
}
