/*
 * Amity Home UX fixes (2026-07-20)
 * 1) "CATALOG 2026 - 2027" homepage heading was white on a light background.
 * 2) Lazy-loaded images show a soft warm placeholder instead of stark white.
 */

/* 1) Catalog section heading contrast (homepage, Elementor element c12b98b).
      !important needed to beat Elementor's generated per-element color rule. */
.elementor-element.elementor-element-c12b98b .woodmart-title-container.title {
	color: #3b3b3b !important;
	text-shadow: 0 1px 3px rgba(255, 255, 255, 0.45);
}

/* 2) Placeholder tone for images while they lazy-load (WP Rocket SVG placeholder) */
img[src^="data:image/svg+xml"] {
	background-color: #f4f1ec;
}
