:root {
  /* Brand-specific theme colors - only define what's unique to your application */
  --theme-color-masthead-bg: #ed1c24;
  --theme-color-masthead-text: #000;
  --theme-color-body-bg: #f9fafb;
  --theme-color-primary-interaction-bg: #ed1c24;
  --theme-color-primary-interaction-text: #fff;
  --theme-color-secondary-interaction-hyperlink: #2b90cd;
  /* Login image position */
  --theme-login-image-background-position: center;
}

/* Hide the 'New to Trade Portal? Register your account' block */
.mt-2.text-sm.text-gray-600 {
    display: none !important;
}

/* Hide only the Powered by Sterland footer line */
p.text-gray-500.text-sm {
    display: none !important;
    position: relative;
}

/* Hide the original welcome message */
h2.mt-6.text-3xl.font-bold.text-gray-900 {
    color: transparent !important;
    position: relative;
}

/* Inject new welcome message */
h2.mt-6.text-3xl.font-bold.text-gray-900::after {
    content: "Welcome to your Bretts Account Portal";
    color: #111827; /* Tailwind text-gray-900 */
    position: absolute;
    top: 0;
    left: 0;
}

/* Hide SEARCH button only */
.flex.gap-1.justify-end.flex-1.items-center 
  > .text-masthead.whitespace-nowrap {
    display: none !important;
}

/* Hide the entire cart button anywhere in the masthead */
a[href*="/cart"] {
    display: none !important;
}

/* Hide the Pay Account option (always the second item in the dropdown) */
[data-dropdown-sub-menu-0] > div > div > div:nth-child(2) {
    display: none !important;
}






