/* Added to hide customer registration on 16Jun25 by CoPilot */

/* 
  Magento 2.4.2-p2: Header link overrides
  ---------------------------------------------------------
  Temporarily hides user account links and signup options 
  until products are available for purchase.

  Safe to remove once registration is reinstated.
*/

/* Hide "Create an Account" link in header */
.header.links a[href*="/customer/account/create"] {
  display: none !important;
}

/* Hide "Sign In" link in header */
.header.links a[href*="/customer/account/login"] {
  display: none !important;
}

/* Hide "Create an Account" button on login page */
.customer-account-login .new-users .action.create.primary {
  display: none !important;
}

/* Hide entire "New Customers" section on login page */
.customer-account-login .block-new-customer {
  display: none !important;
}

/* Hide orphaned "or" divider in header */
.header.links li.authorization-link[data-label="or"] {
  display: none !important;
}