#fw-section-header {

/* Keep hiding the cart (since it's already working) */
.header__cart,
.cart-icon,
[data-testid="cart-icon"],
a[href*="/cart"],
button[aria-label*="Cart" i],
.shopping-bag-icon,
.fw-cart,
.header-cart {
    display: none !important;
}

/* Stronger targeting for the account/person/profile icon */
.header__account,
.header__profile,
.account-icon,
.profile-icon,
.user-icon,
.person-icon,
[data-testid="account-icon"],
[data-testid="profile-icon"],
a[href*="/account"],
a[href*="/login"],
a[href*="/me"],
a[href*="/profile"],
button[aria-label*="Account" i],
button[aria-label*="Profile" i],
button[aria-label*="Sign in" i],
button[aria-label*="Log in" i],
.fw-profile,
.fw-account,
.header-account,
.header-profile,
.header__user,
.header__login {
    display: none !important;
}

/* Extra aggressive: Hide ANY header element that likely contains the person icon (right side utilities) */
.header__icons,
.header__right,
.header-actions,
.header-utilities,
.header__icons-right,
.header__auth,
.header__user-menu,
.header__right-section {
    display: none !important;
}

/* If the icons are in a flex container or list, hide the specific list items */
.header-icons li:has(a[href*="/account"]),
.header-icons li:has(a[href*="/login"]),
.header-icons li:has(button[aria-label*="Account"]),
.header-icons .account-link {
    display: none !important;
}
}