/* Master Distillers — page loading progress (pour animation)
   The animation itself is SMIL, embedded in the SVG markup (see the
   render function / md-plp-visual-snippet.php) — it does not depend on
   this file, so CSS caching/minification cannot break it.

   Geometry notes (viewBox 0 0 300 240):
   - Bottle: two nested groups. Outer group SMIL-translates
     (54,124) -> (0,-12): at rest the bottle stands upright on the table
     line next to the glass; at full pour it is lifted up-left. Inner
     "rotor" group SMIL-rotates -22deg -> 82deg around SVG point (26, 90)
     (the bottle bottom), on top of a static +22deg pre-rotation — a
     pick-up-and-pour gesture, neck aiming down-right into the bowl.
   - Stream: bottle mouth (205, 125) arcs right then falls to the bowl
     (223, 170); pathLength="100", drawn/retracted via stroke-dashoffset.
   - Glass fill: curved-top gold path clipped to the bowl silhouette
     (clipPath #md-plp-bowl-clip); rises via SMIL translate 36 -> 0 (~96%).
   - Timing: one 2.4s loop, spline easing (0.42 0 0.58 1 = ease-in-out).

   SMIL runs whenever the SVG is rendered; the overlay is only visible
   under .is-loading (critical CSS), so nothing animates on screen
   outside loading. */

/* Reduced motion: SMIL ignores prefers-reduced-motion, so hide the
   animated scene and let the label carry the message. */
@media (prefers-reduced-motion: reduce) {
	.md-page-loading-progress__svg {
		display: none;
	}
}
