/**
 * Mobil fejléc „Webshop” gyorsgomb: a head-ben az additionalCSS után töltjük,
 * hogy a lap-specifikus stílusok (pl. homepage-ux) ne írják felül az asztali rejtést.
 */
@media (min-width: 769px) {
    .header-actions .mobile-webshop-btn,
    .header-actions .ms-header-webshop-btn {
        display: none !important;
        animation: none !important;
    }
}

/* Font Awesome / egyéb után is: pulzus biztosan fusson mobilon (@keyframes a main.css-ben) */
@media (max-width: 768px) {
    .header-actions a.mobile-webshop-btn.mobile-webshop-btn--pulse,
    .header-actions .mobile-webshop-btn--pulse.ms-header-webshop-btn {
        animation: mobileWebshopBtnPulse 2.5s ease-in-out infinite !important;
    }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    .header-actions a.mobile-webshop-btn.mobile-webshop-btn--pulse,
    .header-actions .mobile-webshop-btn--pulse.ms-header-webshop-btn {
        animation: none !important;
    }
}
