/* ============================================
   WISHLIST PAGE - PROFESSIONAL REDESIGN (RETIRED / NO-OP)
   ============================================

   This file previously shipped a full "professional redesign" for the wishlist
   page, but every card rule targeted class names that DO NOT exist in the
   rendered markup:

     .wishlist-product-image   -> real markup uses .shop-product-image
     .wishlist-product-title   -> real markup uses .gk-product-title
     .wishlist-product-info    -> real markup uses .shop-product-info
     .wishlist-product-price   -> real markup uses .shop-product-price / .current-price
     .wishlist-product-actions -> real markup uses .shop-product-controls
     .wishlist-btn-add-cart    -> real markup uses .wishlist-move-to-cart-btn
     .wishlist-stock-badge     -> not rendered

   (The cards are built client-side by assets/js/wishlist-unified.js from the
   markup in inc/wishlist-system.php::render_wishlist_product_card(), which uses
   the canonical .shop-product-card classes.)

   The handful of rules that *did* match real elements were either:
     - superseded by the page template's own, higher-specificity inline <style>
       (page-wishlist-optimized.php: .gk-wishlist-page ... shell/grid/loading), or
     - in conflict with the card redesign now owned by assets/css/wishlist-unified.css
       section 1, scoped to .wishlist-product-card (e.g. this file re-added a
       :hover translateY that the redesign intentionally removed).

   Rather than leave inert selectors that mislead future edits, the body has been
   removed. The card design lives in wishlist-unified.css; the page shell lives in
   the page template's inline <style>. This file is intentionally left as a no-op
   (it is still enqueued on the wishlist page in functions.php; keeping the file
   present avoids a 404 for that handle).
   ============================================ */
