/* Timberland — overrides applied on top of compiled Next.js bundle.
   Safe approach: no HTML/RSC edits, just CSS visibility tweaks. */

/* Hide every link that points at /products/decking/ AND its closest visual ancestor card if it has the relevant Tailwind classes */
a[href="/products/decking/"],
a[href="/products/decking"],
li:has(> a[href="/products/decking/"]),
li:has(> a[href="/products/decking"]),
article:has(a[href="/products/decking/"]),
div[style*="opacity:0"]:has(> a[href="/products/decking/"]) {
  display: none !important;
}

/* Promo strip — overwrite "Cedar Fence Panels from as low as" with "6×8 fence panels starting from" */
#fence-panel-promo p > :not(.text-brand-mint) { display: none; }
#fence-panel-promo p::before {
  content: "6×8 fence panels starting from ";
  font-weight: 600;
}
