/* codexzg.xyz footer cleanup: keep brand, copyright and legal links only. */
footer > .container > .grid > :nth-child(n + 2) {
  display: none !important;
}

footer > .container > .grid {
  grid-template-columns: minmax(0, 1fr) !important;
}

footer > .container > .grid > :first-child {
  grid-column: 1 / -1 !important;
}

footer p:has(> a[href="https://github.com/dujiao-next"]) {
  display: none !important;
}

/* Hide the coupon-code card on the checkout page without changing pricing logic. */
div.rounded-2xl.border.bg-card.text-card-foreground.p-6:has(
    > input[placeholder*="优惠券"]
  ) {
  display: none !important;
}
