/* =========================================================
NOE SUITES — WPLP COOKIE BANNER FIXES
========================================================= */
/* Remove the ambiguous close icon.
Visitors must choose Accept, Reject, or Manage Preferences. */
#gdpr-cookie-consent-bar #cookie-banner-cancle-img {
  display: none !important;
}
/* Remove third-party plugin branding. */
#gdpr-cookie-consent-bar .powered-by-credits {
  display: none !important;
}
/* Restore balanced spacing after removing the branding line. */
#gdpr-cookie-consent-bar {
  padding-bottom: 20px !important;
}
/* Visible keyboard focus for all consent controls. */
#gdpr-cookie-consent-bar .gdpr_action_button:focus-visible,
#gdpr-cookie-consent-bar #cookie_action_link:focus-visible {
  outline: 2px solid #243028 !important;
  outline-offset: 3px !important;
}
/* Prevent theme hover styles from weakening contrast. */
#gdpr-cookie-consent-bar #cookie_action_accept_all:hover,
#gdpr-cookie-consent-bar #cookie_action_accept_all:focus-visible {
  color: #ffffff !important;
  background-color: #344239 !important;
  border-color: #344239 !important;
}
#gdpr-cookie-consent-bar #cookie_action_reject:hover,
#gdpr-cookie-consent-bar #cookie_action_reject:focus-visible,
#gdpr-cookie-consent-bar #cookie_action_settings:hover,
#gdpr-cookie-consent-bar #cookie_action_settings:focus-visible {
  color: #243028 !important;
  background-color: #ffffff !important;
}
/* Mobile layout */
@media (max-width: 767px) {
  #gdpr-cookie-consent-bar {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    width: auto !important;
    max-width: none !important;
    padding: 18px !important;
  }
  #gdpr-cookie-consent-bar .gdpr-notice-content-body p {
    font-size: 14px !important;
    line-height: 1.55 !important;
    text-align: left !important;
  }
  #gdpr-cookie-consent-bar .cookie_notice_buttons,
  #gdpr-cookie-consent-bar .left_buttons,
  #gdpr-cookie-consent-bar .right_buttons {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 9px !important;
  }
  #gdpr-cookie-consent-bar .gdpr_action_button {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    min-width: 0 !important;
    text-align: center !important;
  }
}
